@synerise/ds-alert 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -0
- package/dist/Notification/Notification.styles.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [0.6.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.6.0...@synerise/ds-alert@0.6.1) (2022-03-31)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **alert:** exporting NotificationProps typing ([985c994](https://github.com/Synerise/synerise-design/commit/985c994a516f0323e2903afddf9ca4bea33a594c))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
# [0.6.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.5.2...@synerise/ds-alert@0.6.0) (2022-03-30)
|
7
18
|
|
8
19
|
|
@@ -3,7 +3,7 @@ import theme from '@synerise/ds-core/dist/js/DSProvider/ThemeProvider/theme';
|
|
3
3
|
export var NotificationsContainer = styled.div.withConfig({
|
4
4
|
displayName: "Notificationstyles__NotificationsContainer",
|
5
5
|
componentId: "sc-1ke52b0-0"
|
6
|
-
})(["background-color:", ";color:white;min-width:588px;padding:8px
|
6
|
+
})(["background-color:", ";color:white;min-width:588px;padding:8px 8px 8px 16px;display:flex;align-items:center;width:100px;min-height:50px;"], function (props) {
|
7
7
|
var _palette;
|
8
8
|
|
9
9
|
return (_palette = ((props == null ? void 0 : props.theme) || theme).palette) == null ? void 0 : _palette['grey-800'];
|
@@ -19,7 +19,7 @@ export var TextLabel = styled.div.withConfig({
|
|
19
19
|
export var NotificationsWrapper = styled.div.withConfig({
|
20
20
|
displayName: "Notificationstyles__NotificationsWrapper",
|
21
21
|
componentId: "sc-1ke52b0-3"
|
22
|
-
})(["& .ant-notification-bottom .ant-notification-hook-holder{margin:
|
22
|
+
})(["& .ant-notification-bottom .ant-notification-hook-holder{margin:0;&:not(:first-child){margin-top:8px;}}& .ant-notification.ant-notification-bottom{right:0;left:0;margin:0 auto;width:588px;bottom:8px;}& .ant-notification-hook-holder{background-color:transparent;box-shadow:none;width:588px;}& .ant-notification-notice{padding:0;background-color:transparent;margin:unset;}& .ant-notification-notice{background-color:transparent;width:588px;border-radius:3px;box-shadow:0 16px 32px 0 ", "1a,0 8px 16px 0 ", "1a;}.ant-notification-notice-icon{display:none;}.ant-notification-notice-with-icon{background-color:transparent;}.ant-notification-notice-close{display:none;}& .ant-notification-notice-message,& .ant-notification-notice-closable .ant-notification-notice-message{padding-right:0;}& .ant-notification-notice-message,& .ant-notification-notice-with-icon .ant-notification-notice-message{margin-left:0;margin-bottom:0;}}"], function (props) {
|
23
23
|
var _palette2;
|
24
24
|
|
25
25
|
return (_palette2 = ((props == null ? void 0 : props.theme) || theme).palette) == null ? void 0 : _palette2['grey-900'];
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
export { default } from './Alert';
|
2
2
|
export * as S from './Notification/Notification.styles';
|
3
3
|
export { default as Notification } from './Notification/Notification';
|
4
|
-
export { NotificationProps } from './Notification/Notification';
|
4
|
+
export type { NotificationProps } from './Notification/Notification';
|
5
5
|
export { notificationOpen } from './Notification/Notification';
|
package/dist/index.js
CHANGED
@@ -2,5 +2,4 @@ export { default } from './Alert';
|
|
2
2
|
import * as _S from './Notification/Notification.styles';
|
3
3
|
export { _S as S };
|
4
4
|
export { default as Notification } from './Notification/Notification';
|
5
|
-
export { NotificationProps } from './Notification/Notification';
|
6
5
|
export { notificationOpen } from './Notification/Notification';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-alert",
|
3
|
-
"version": "0.6.
|
3
|
+
"version": "0.6.1",
|
4
4
|
"description": "Alert UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -47,5 +47,5 @@
|
|
47
47
|
"devDependencies": {
|
48
48
|
"@synerise/ds-utils": "^0.19.0"
|
49
49
|
},
|
50
|
-
"gitHead": "
|
50
|
+
"gitHead": "510d01309981d010c794496292be958796c0b6b6"
|
51
51
|
}
|