@alfalab/core-components-notification 5.3.2 → 5.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Component.js +3 -3
- package/cssm/Component.js +2 -2
- package/esm/Component.js +3 -3
- package/esm/index.css +8 -8
- package/index.css +8 -8
- package/modern/Component.js +6 -6
- package/modern/index.css +8 -8
- package/package.json +7 -7
- package/CHANGELOG.md +0 -574
package/Component.js
CHANGED
|
@@ -58,7 +58,7 @@ function __rest(s, e) {
|
|
|
58
58
|
return t;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
var styles = {"notificationComponent":"
|
|
61
|
+
var styles = {"notificationComponent":"notification__notificationComponent_1bxzz","isVisible":"notification__isVisible_1bxzz","isClosing":"notification__isClosing_1bxzz","toastContent":"notification__toastContent_1bxzz","actionSection":"notification__actionSection_1bxzz"};
|
|
62
62
|
require('./index.css')
|
|
63
63
|
|
|
64
64
|
var notificationClassNameSelector = "." + styles.notificationComponent;
|
|
@@ -110,8 +110,8 @@ var Notification = React.forwardRef(function (_a, ref) {
|
|
|
110
110
|
var handleOutsideClick = React.useCallback(function (event) {
|
|
111
111
|
var isTargetNotification = !!event.target.closest(notificationClassNameSelector);
|
|
112
112
|
/*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
113
|
+
* проверка isTargetNotification нужна для предотвращения срабатывания handleOutsideClick
|
|
114
|
+
* при клике на другие нотификации, если их несколько на странице
|
|
115
115
|
*/
|
|
116
116
|
if (onClickOutside && visible && !isTargetNotification) {
|
|
117
117
|
onClickOutside(event);
|
package/cssm/Component.js
CHANGED
|
@@ -109,8 +109,8 @@ var Notification = React.forwardRef(function (_a, ref) {
|
|
|
109
109
|
var handleOutsideClick = React.useCallback(function (event) {
|
|
110
110
|
var isTargetNotification = !!event.target.closest(notificationClassNameSelector);
|
|
111
111
|
/*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
112
|
+
* проверка isTargetNotification нужна для предотвращения срабатывания handleOutsideClick
|
|
113
|
+
* при клике на другие нотификации, если их несколько на странице
|
|
114
114
|
*/
|
|
115
115
|
if (onClickOutside && visible && !isTargetNotification) {
|
|
116
116
|
onClickOutside(event);
|
package/esm/Component.js
CHANGED
|
@@ -47,7 +47,7 @@ function __rest(s, e) {
|
|
|
47
47
|
return t;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
var styles = {"notificationComponent":"
|
|
50
|
+
var styles = {"notificationComponent":"notification__notificationComponent_1bxzz","isVisible":"notification__isVisible_1bxzz","isClosing":"notification__isClosing_1bxzz","toastContent":"notification__toastContent_1bxzz","actionSection":"notification__actionSection_1bxzz"};
|
|
51
51
|
require('./index.css')
|
|
52
52
|
|
|
53
53
|
var notificationClassNameSelector = "." + styles.notificationComponent;
|
|
@@ -99,8 +99,8 @@ var Notification = forwardRef(function (_a, ref) {
|
|
|
99
99
|
var handleOutsideClick = useCallback(function (event) {
|
|
100
100
|
var isTargetNotification = !!event.target.closest(notificationClassNameSelector);
|
|
101
101
|
/*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
102
|
+
* проверка isTargetNotification нужна для предотвращения срабатывания handleOutsideClick
|
|
103
|
+
* при клике на другие нотификации, если их несколько на странице
|
|
104
104
|
*/
|
|
105
105
|
if (onClickOutside && visible && !isTargetNotification) {
|
|
106
106
|
onClickOutside(event);
|
package/esm/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1e3rs */
|
|
2
2
|
:root {
|
|
3
3
|
|
|
4
4
|
/* Hard */
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:root {
|
|
18
18
|
--notification-desktop-content-width: 278px;
|
|
19
19
|
}
|
|
20
|
-
.
|
|
20
|
+
.notification__notificationComponent_1bxzz {
|
|
21
21
|
visibility: hidden;
|
|
22
22
|
position: fixed;
|
|
23
23
|
right: var(--gap-s);
|
|
@@ -30,31 +30,31 @@
|
|
|
30
30
|
transition: transform 0.4s ease-out
|
|
31
31
|
}
|
|
32
32
|
@media screen and (min-width: 600px) {
|
|
33
|
-
.
|
|
33
|
+
.notification__notificationComponent_1bxzz {
|
|
34
34
|
right: var(--gap-4xl);
|
|
35
35
|
width: auto;
|
|
36
36
|
transform: translate(calc(100% + var(--gap-4xl)), 0)
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
.
|
|
39
|
+
.notification__notificationComponent_1bxzz.notification__isVisible_1bxzz {
|
|
40
40
|
visibility: visible;
|
|
41
41
|
transform: translate(0, 0);
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.notification__notificationComponent_1bxzz.notification__isClosing_1bxzz {
|
|
44
44
|
transition: transform 0.1s ease-out;
|
|
45
45
|
transform: translate(100vw, 0)
|
|
46
46
|
}
|
|
47
47
|
@media screen and (min-width: 600px) {
|
|
48
|
-
.
|
|
48
|
+
.notification__notificationComponent_1bxzz.notification__isClosing_1bxzz {
|
|
49
49
|
transform: translate(calc(100% + var(--gap-4xl)), 0)
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
@media screen and (min-width: 600px) {
|
|
53
|
-
.
|
|
53
|
+
.notification__toastContent_1bxzz {
|
|
54
54
|
width: var(--notification-desktop-content-width)
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
.
|
|
57
|
+
.notification__actionSection_1bxzz {
|
|
58
58
|
min-width: 104px;
|
|
59
59
|
min-height: 48px;
|
|
60
60
|
padding: 0 var(--gap-xs);
|
package/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1e3rs */
|
|
2
2
|
:root {
|
|
3
3
|
|
|
4
4
|
/* Hard */
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:root {
|
|
18
18
|
--notification-desktop-content-width: 278px;
|
|
19
19
|
}
|
|
20
|
-
.
|
|
20
|
+
.notification__notificationComponent_1bxzz {
|
|
21
21
|
visibility: hidden;
|
|
22
22
|
position: fixed;
|
|
23
23
|
right: var(--gap-s);
|
|
@@ -30,31 +30,31 @@
|
|
|
30
30
|
transition: transform 0.4s ease-out
|
|
31
31
|
}
|
|
32
32
|
@media screen and (min-width: 600px) {
|
|
33
|
-
.
|
|
33
|
+
.notification__notificationComponent_1bxzz {
|
|
34
34
|
right: var(--gap-4xl);
|
|
35
35
|
width: auto;
|
|
36
36
|
transform: translate(calc(100% + var(--gap-4xl)), 0)
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
.
|
|
39
|
+
.notification__notificationComponent_1bxzz.notification__isVisible_1bxzz {
|
|
40
40
|
visibility: visible;
|
|
41
41
|
transform: translate(0, 0);
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.notification__notificationComponent_1bxzz.notification__isClosing_1bxzz {
|
|
44
44
|
transition: transform 0.1s ease-out;
|
|
45
45
|
transform: translate(100vw, 0)
|
|
46
46
|
}
|
|
47
47
|
@media screen and (min-width: 600px) {
|
|
48
|
-
.
|
|
48
|
+
.notification__notificationComponent_1bxzz.notification__isClosing_1bxzz {
|
|
49
49
|
transform: translate(calc(100% + var(--gap-4xl)), 0)
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
@media screen and (min-width: 600px) {
|
|
53
|
-
.
|
|
53
|
+
.notification__toastContent_1bxzz {
|
|
54
54
|
width: var(--notification-desktop-content-width)
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
.
|
|
57
|
+
.notification__actionSection_1bxzz {
|
|
58
58
|
min-width: 104px;
|
|
59
59
|
min-height: 48px;
|
|
60
60
|
padding: 0 var(--gap-xs);
|
package/modern/Component.js
CHANGED
|
@@ -8,7 +8,7 @@ import { ToastPlate } from '@alfalab/core-components-toast-plate/modern';
|
|
|
8
8
|
import { stackingOrder, Stack } from '@alfalab/core-components-stack/modern';
|
|
9
9
|
import { useClickOutside } from './utils/index.js';
|
|
10
10
|
|
|
11
|
-
var styles = {"notificationComponent":"
|
|
11
|
+
var styles = {"notificationComponent":"notification__notificationComponent_1bxzz","isVisible":"notification__isVisible_1bxzz","isClosing":"notification__isClosing_1bxzz","toastContent":"notification__toastContent_1bxzz","actionSection":"notification__actionSection_1bxzz"};
|
|
12
12
|
require('./index.css')
|
|
13
13
|
|
|
14
14
|
const notificationClassNameSelector = `.${styles.notificationComponent}`;
|
|
@@ -43,24 +43,24 @@ const Notification = forwardRef(({ className, actionSectionClassName, children,
|
|
|
43
43
|
stopAutoCloseTimer();
|
|
44
44
|
};
|
|
45
45
|
}, [startAutoCloseTimer, stopAutoCloseTimer, visible]);
|
|
46
|
-
const handleMouseEnter = useCallback(event => {
|
|
46
|
+
const handleMouseEnter = useCallback((event) => {
|
|
47
47
|
stopAutoCloseTimer();
|
|
48
48
|
if (onMouseEnter) {
|
|
49
49
|
onMouseEnter(event);
|
|
50
50
|
}
|
|
51
51
|
}, [onMouseEnter, stopAutoCloseTimer]);
|
|
52
|
-
const handleMouseLeave = useCallback(event => {
|
|
52
|
+
const handleMouseLeave = useCallback((event) => {
|
|
53
53
|
stopAutoCloseTimer();
|
|
54
54
|
startAutoCloseTimer();
|
|
55
55
|
if (onMouseLeave) {
|
|
56
56
|
onMouseLeave(event);
|
|
57
57
|
}
|
|
58
58
|
}, [onMouseLeave, startAutoCloseTimer, stopAutoCloseTimer]);
|
|
59
|
-
const handleOutsideClick = useCallback(event => {
|
|
59
|
+
const handleOutsideClick = useCallback((event) => {
|
|
60
60
|
const isTargetNotification = !!event.target.closest(notificationClassNameSelector);
|
|
61
61
|
/*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
62
|
+
* проверка isTargetNotification нужна для предотвращения срабатывания handleOutsideClick
|
|
63
|
+
* при клике на другие нотификации, если их несколько на странице
|
|
64
64
|
*/
|
|
65
65
|
if (onClickOutside && visible && !isTargetNotification) {
|
|
66
66
|
onClickOutside(event);
|
package/modern/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1e3rs */
|
|
2
2
|
:root {
|
|
3
3
|
|
|
4
4
|
/* Hard */
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:root {
|
|
18
18
|
--notification-desktop-content-width: 278px;
|
|
19
19
|
}
|
|
20
|
-
.
|
|
20
|
+
.notification__notificationComponent_1bxzz {
|
|
21
21
|
visibility: hidden;
|
|
22
22
|
position: fixed;
|
|
23
23
|
right: var(--gap-s);
|
|
@@ -30,31 +30,31 @@
|
|
|
30
30
|
transition: transform 0.4s ease-out
|
|
31
31
|
}
|
|
32
32
|
@media screen and (min-width: 600px) {
|
|
33
|
-
.
|
|
33
|
+
.notification__notificationComponent_1bxzz {
|
|
34
34
|
right: var(--gap-4xl);
|
|
35
35
|
width: auto;
|
|
36
36
|
transform: translate(calc(100% + var(--gap-4xl)), 0)
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
.
|
|
39
|
+
.notification__notificationComponent_1bxzz.notification__isVisible_1bxzz {
|
|
40
40
|
visibility: visible;
|
|
41
41
|
transform: translate(0, 0);
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.notification__notificationComponent_1bxzz.notification__isClosing_1bxzz {
|
|
44
44
|
transition: transform 0.1s ease-out;
|
|
45
45
|
transform: translate(100vw, 0)
|
|
46
46
|
}
|
|
47
47
|
@media screen and (min-width: 600px) {
|
|
48
|
-
.
|
|
48
|
+
.notification__notificationComponent_1bxzz.notification__isClosing_1bxzz {
|
|
49
49
|
transform: translate(calc(100% + var(--gap-4xl)), 0)
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
@media screen and (min-width: 600px) {
|
|
53
|
-
.
|
|
53
|
+
.notification__toastContent_1bxzz {
|
|
54
54
|
width: var(--notification-desktop-content-width)
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
.
|
|
57
|
+
.notification__actionSection_1bxzz {
|
|
58
58
|
min-width: 104px;
|
|
59
59
|
min-height: 48px;
|
|
60
60
|
padding: 0 var(--gap-xs);
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-notification",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "./dist/modern/index.js",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"postinstall": "node ./send-stats.js
|
|
10
|
+
"postinstall": "node -e \"if (require('fs').existsSync('./send-stats.js')){require('./send-stats.js')} \""
|
|
11
11
|
},
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public",
|
|
14
14
|
"directory": "dist"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"react": "^16.9.0 || ^17.0.1"
|
|
17
|
+
"react": "^16.9.0 || ^17.0.1 || ^18.0.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@alfalab/core-components-portal": "^2.0
|
|
21
|
-
"@alfalab/core-components-stack": "^3.0
|
|
22
|
-
"@alfalab/core-components-toast-plate": "^4.
|
|
23
|
-
"classnames": "^2.
|
|
20
|
+
"@alfalab/core-components-portal": "^2.1.0",
|
|
21
|
+
"@alfalab/core-components-stack": "^3.1.0",
|
|
22
|
+
"@alfalab/core-components-toast-plate": "^4.4.1",
|
|
23
|
+
"classnames": "^2.3.1",
|
|
24
24
|
"element-closest": "^3.0.2",
|
|
25
25
|
"react-merge-refs": "^1.1.0",
|
|
26
26
|
"react-swipeable": "^5.5.1"
|
package/CHANGELOG.md
DELETED
|
@@ -1,574 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [5.3.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.3.1...@alfalab/core-components-notification@5.3.2) (2022-07-15)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [5.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.3.0...@alfalab/core-components-notification@5.3.1) (2022-07-14)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
# [5.3.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.2.10...@alfalab/core-components-notification@5.3.0) (2022-06-28)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
### Features
|
|
29
|
-
|
|
30
|
-
* circumflexus retrieval ([#57](https://github.com/core-ds/core-components/issues/57)) ([3820da8](https://github.com/core-ds/core-components/commit/3820da818bcdcbee6904c648b3e29c3c828fe202))
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## [5.2.10](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.2.9...@alfalab/core-components-notification@5.2.10) (2022-06-24)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* **icon-button:** fix disabled colors ([#104](https://github.com/core-ds/core-components/issues/104)) ([3f03849](https://github.com/core-ds/core-components/commit/3f038495bb63f72cd81ceeedbe55b52119581d57))
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## [5.2.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.2.8...@alfalab/core-components-notification@5.2.9) (2022-06-23)
|
|
48
|
-
|
|
49
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## [5.2.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.2.7...@alfalab/core-components-notification@5.2.8) (2022-06-20)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Bug Fixes
|
|
59
|
-
|
|
60
|
-
* **badge:** fix classname ([#100](https://github.com/core-ds/core-components/issues/100)) ([4b5f2bc](https://github.com/core-ds/core-components/commit/4b5f2bc9ab17daf865a5515828d178eaff94bd2d))
|
|
61
|
-
* **icon-button:** fix loading ([#105](https://github.com/core-ds/core-components/issues/105)) ([0b133f0](https://github.com/core-ds/core-components/commit/0b133f042e86702ec2861915f2cdbcdbad9ca905))
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
## [5.2.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.2.6...@alfalab/core-components-notification@5.2.7) (2022-06-03)
|
|
68
|
-
|
|
69
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
# [5.2.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.1.1...@alfalab/core-components-notification@5.2.0) (2022-03-04)
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
### Features
|
|
79
|
-
|
|
80
|
-
* Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7))
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
## [5.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.1.0...@alfalab/core-components-notification@5.1.1) (2022-02-17)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
# [5.1.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.16...@alfalab/core-components-notification@5.1.0) (2022-02-15)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
### Features
|
|
98
|
-
|
|
99
|
-
* **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e))
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
## [5.0.16](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.15...@alfalab/core-components-notification@5.0.16) (2022-02-09)
|
|
106
|
-
|
|
107
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## [5.0.15](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.14...@alfalab/core-components-notification@5.0.15) (2022-02-03)
|
|
114
|
-
|
|
115
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
## [5.0.14](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.13...@alfalab/core-components-notification@5.0.14) (2022-02-02)
|
|
122
|
-
|
|
123
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
## [5.0.13](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.12...@alfalab/core-components-notification@5.0.13) (2021-12-29)
|
|
130
|
-
|
|
131
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
## [5.0.12](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.11...@alfalab/core-components-notification@5.0.12) (2021-12-14)
|
|
138
|
-
|
|
139
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
## [5.0.11](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.10...@alfalab/core-components-notification@5.0.11) (2021-12-08)
|
|
146
|
-
|
|
147
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
## [5.0.10](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.9...@alfalab/core-components-notification@5.0.10) (2021-12-01)
|
|
154
|
-
|
|
155
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
## [5.0.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.8...@alfalab/core-components-notification@5.0.9) (2021-11-26)
|
|
162
|
-
|
|
163
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
## [5.0.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.7...@alfalab/core-components-notification@5.0.8) (2021-11-16)
|
|
170
|
-
|
|
171
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
## [5.0.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.6...@alfalab/core-components-notification@5.0.7) (2021-10-25)
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
### Bug Fixes
|
|
181
|
-
|
|
182
|
-
* **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7))
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
## [5.0.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.5...@alfalab/core-components-notification@5.0.6) (2021-09-14)
|
|
189
|
-
|
|
190
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
## [5.0.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.4...@alfalab/core-components-notification@5.0.5) (2021-08-27)
|
|
197
|
-
|
|
198
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
## [5.0.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.3...@alfalab/core-components-notification@5.0.4) (2021-08-04)
|
|
205
|
-
|
|
206
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
## [5.0.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.2...@alfalab/core-components-notification@5.0.3) (2021-07-23)
|
|
213
|
-
|
|
214
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
## [5.0.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.1...@alfalab/core-components-notification@5.0.2) (2021-07-19)
|
|
221
|
-
|
|
222
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
## [5.0.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.0.0...@alfalab/core-components-notification@5.0.1) (2021-07-09)
|
|
229
|
-
|
|
230
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
# [5.0.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@4.1.0...@alfalab/core-components-notification@5.0.0) (2021-07-08)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
### Features
|
|
240
|
-
|
|
241
|
-
* upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696))
|
|
242
|
-
|
|
243
|
-
# [4.1.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@4.0.1...@alfalab/core-components-notification@4.1.0) (2021-06-22)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
### Features
|
|
247
|
-
|
|
248
|
-
* **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5))
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
## [4.0.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@4.0.0...@alfalab/core-components-notification@4.0.1) (2021-05-31)
|
|
255
|
-
|
|
256
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
# [4.0.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@3.0.5...@alfalab/core-components-notification@4.0.0) (2021-05-25)
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
### Features
|
|
266
|
-
|
|
267
|
-
* **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657)
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
### BREAKING CHANGES
|
|
271
|
-
|
|
272
|
-
* **button:** remove inverted themes
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
## [3.0.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@3.0.4...@alfalab/core-components-notification@3.0.5) (2021-05-25)
|
|
279
|
-
|
|
280
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
## [3.0.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@3.0.3...@alfalab/core-components-notification@3.0.4) (2021-05-18)
|
|
287
|
-
|
|
288
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
## [3.0.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@3.0.2...@alfalab/core-components-notification@3.0.3) (2021-05-07)
|
|
295
|
-
|
|
296
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
## [3.0.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@3.0.1...@alfalab/core-components-notification@3.0.2) (2021-05-05)
|
|
303
|
-
|
|
304
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
## [3.0.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@3.0.0...@alfalab/core-components-notification@3.0.1) (2021-05-04)
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
### Bug Fixes
|
|
314
|
-
|
|
315
|
-
* **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e))
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
# [3.0.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.2.0...@alfalab/core-components-notification@3.0.0) (2021-04-26)
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
### Features
|
|
325
|
-
|
|
326
|
-
* **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6))
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
### BREAKING CHANGES
|
|
330
|
-
|
|
331
|
-
* **stack:** remove z-index, add stack component
|
|
332
|
-
|
|
333
|
-
* feat(modal): remove z-index, add stack component
|
|
334
|
-
|
|
335
|
-
remove z-index, add stack component
|
|
336
|
-
* **stack:** remove z-index, add stack component
|
|
337
|
-
|
|
338
|
-
* feat(notification-manager): remove z-index, add stack component
|
|
339
|
-
|
|
340
|
-
remove z-index, add stack component
|
|
341
|
-
* **stack:** remove z-index, add stack component
|
|
342
|
-
|
|
343
|
-
* feat(notification): remove z-index, add stack component
|
|
344
|
-
|
|
345
|
-
remove z-index, add stack component
|
|
346
|
-
* **stack:** remove z-index, add stack component
|
|
347
|
-
|
|
348
|
-
* feat(popover): remove z-index, add stack component
|
|
349
|
-
|
|
350
|
-
remove z-index, add stack component
|
|
351
|
-
* **stack:** remove z-index, add stack component
|
|
352
|
-
|
|
353
|
-
* feat(select): remove z-index, add stack component
|
|
354
|
-
|
|
355
|
-
remove z-index, add stack component
|
|
356
|
-
* **stack:** remove z-index, add stack component
|
|
357
|
-
|
|
358
|
-
* feat(toast): remove z-index, add stack component
|
|
359
|
-
|
|
360
|
-
remove z-index, add stack component
|
|
361
|
-
* **stack:** remove z-index, add stack component
|
|
362
|
-
|
|
363
|
-
* feat(tooltip): remove z-index, add stack component
|
|
364
|
-
|
|
365
|
-
remove z-index, add stack component
|
|
366
|
-
* **stack:** remove z-index, add stack component
|
|
367
|
-
|
|
368
|
-
* feat(stack): fix comment
|
|
369
|
-
|
|
370
|
-
* Revert "feat(modal): remove z-index, add stack component"
|
|
371
|
-
|
|
372
|
-
This reverts commit fcae901c6ec58311701cd491296a7b04016a9a65.
|
|
373
|
-
|
|
374
|
-
* feat(base-modal): remove z-index, add stack component
|
|
375
|
-
|
|
376
|
-
remove z-index, add stack component
|
|
377
|
-
* **stack:** remove z-index, add stack component
|
|
378
|
-
|
|
379
|
-
* test(file-upload-item): update snapshot
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
# [2.2.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.1.3...@alfalab/core-components-notification@2.2.0) (2021-04-26)
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
### Bug Fixes
|
|
389
|
-
|
|
390
|
-
* **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552))
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
### Features
|
|
394
|
-
|
|
395
|
-
* **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe))
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
## [2.1.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.1.2...@alfalab/core-components-notification@2.1.3) (2021-04-01)
|
|
402
|
-
|
|
403
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
## [2.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.1.1...@alfalab/core-components-notification@2.1.2) (2021-03-30)
|
|
410
|
-
|
|
411
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
## [2.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.1.0...@alfalab/core-components-notification@2.1.1) (2021-03-30)
|
|
418
|
-
|
|
419
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
# [2.1.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.16...@alfalab/core-components-notification@2.1.0) (2021-03-24)
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
### Features
|
|
429
|
-
|
|
430
|
-
* **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b))
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
## [2.0.16](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.15...@alfalab/core-components-notification@2.0.16) (2021-03-19)
|
|
437
|
-
|
|
438
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
## [2.0.15](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.13...@alfalab/core-components-notification@2.0.15) (2021-03-18)
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
### Bug Fixes
|
|
448
|
-
|
|
449
|
-
* one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc))
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
## [2.0.13](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.11...@alfalab/core-components-notification@2.0.13) (2021-03-16)
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
### Bug Fixes
|
|
459
|
-
|
|
460
|
-
* border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073))
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
## [2.0.11](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.10...@alfalab/core-components-notification@2.0.11) (2021-03-15)
|
|
467
|
-
|
|
468
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
## [2.0.10](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.9...@alfalab/core-components-notification@2.0.10) (2021-03-14)
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
### Bug Fixes
|
|
478
|
-
|
|
479
|
-
* **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e))
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
## [2.0.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.8...@alfalab/core-components-notification@2.0.9) (2021-03-10)
|
|
486
|
-
|
|
487
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
## [2.0.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.7...@alfalab/core-components-notification@2.0.8) (2021-03-04)
|
|
494
|
-
|
|
495
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
## [2.0.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.6...@alfalab/core-components-notification@2.0.7) (2021-03-03)
|
|
502
|
-
|
|
503
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
## [2.0.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.5...@alfalab/core-components-notification@2.0.6) (2021-03-03)
|
|
510
|
-
|
|
511
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
## [2.0.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.4...@alfalab/core-components-notification@2.0.5) (2021-03-03)
|
|
518
|
-
|
|
519
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
## [2.0.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.3...@alfalab/core-components-notification@2.0.4) (2021-02-20)
|
|
526
|
-
|
|
527
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
## [2.0.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.2...@alfalab/core-components-notification@2.0.3) (2021-02-19)
|
|
534
|
-
|
|
535
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
## [2.0.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.1...@alfalab/core-components-notification@2.0.2) (2021-02-19)
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
### Bug Fixes
|
|
545
|
-
|
|
546
|
-
* **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1))
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
## [2.0.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@2.0.0...@alfalab/core-components-notification@2.0.1) (2021-02-19)
|
|
553
|
-
|
|
554
|
-
**Note:** Version bump only for package @alfalab/core-components-notification
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
# [2.0.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@1.4.0...@alfalab/core-components-notification@2.0.0) (2021-02-18)
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
### Bug Fixes
|
|
564
|
-
|
|
565
|
-
* update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70))
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
* Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521)
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
### BREAKING CHANGES
|
|
573
|
-
|
|
574
|
-
* --notification-desktop-width var removed
|