@synerise/ds-alert 0.7.37 → 0.7.39

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.7.39](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.7.38...@synerise/ds-alert@0.7.39) (2023-08-25)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-alert
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.7.38](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.7.37...@synerise/ds-alert@0.7.38) (2023-08-22)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-alert
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.7.37](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.7.36...@synerise/ds-alert@0.7.37) (2023-08-20)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-alert
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-alert",
3
- "version": "0.7.37",
3
+ "version": "0.7.39",
4
4
  "description": "Alert UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -35,7 +35,7 @@
35
35
  "@synerise/ds-button": "^0.18.0",
36
36
  "@synerise/ds-icon": "^0.58.0",
37
37
  "@synerise/ds-typography": "^0.12.8",
38
- "@synerise/ds-unordered-list": "^0.2.46",
38
+ "@synerise/ds-unordered-list": "^0.2.48",
39
39
  "animate.css": "^4.1.1",
40
40
  "react-animate-height": "^2.0.23",
41
41
  "react-mount-animation": "0.0.9"
@@ -47,5 +47,5 @@
47
47
  "devDependencies": {
48
48
  "@synerise/ds-utils": "^0.19.0"
49
49
  },
50
- "gitHead": "0795eb5071d9160e429731ba8f8807c1ae509085"
50
+ "gitHead": "9d424b025fe368bbf3beccea2102f000f4d7e82c"
51
51
  }
@@ -1,29 +0,0 @@
1
- describe('notification', function () {
2
- it.todo('notification message should allow passing jsx component');
3
- it.todo('notification should have close-button');
4
- it.todo('notification holder should have no padding nor margin');
5
- it.todo('by default there should be no icon');
6
- it.todo('notifications should be closable with a close icon-click');
7
- it.todo('notifications should dissapear after given time');
8
- it.todo('pass duration and other props to the notification.open api');
9
- it.todo('should mount in a styled-components NotificationWrapper wrapper (not next to as a e.g. sibling)');
10
- it.todo('notification message can handle multiline and/or long messages');
11
- it.todo('notifications appear correctly even after destroying notifications instance');
12
- it.todo('notification container has no background (so border-radius on the content can be applied)');
13
- it.todo('container has background-color of gray-900 and 3px border-radius, padding-left is 16px');
14
- it.todo('shadow has gray-800');
15
- it.todo('default text font-size is 13px');
16
- it.todo('button label font-size is 13px');
17
- it.todo('notification has min-height of 50px (NotificationsContainer)');
18
- it.todo('ant-notification-hook-holder should have 0px height if empty (including margins)');
19
- it.todo('first ant-notification-hook-handler has margin-top 0px, the other ones have 8px');
20
- it.todo('.ant-notification > div should have transparent background');
21
- it.todo('close button and action button can be shown separately (even exclusively)');
22
- it.todo("Notification's message can accept special characters \"&'");
23
- it.todo('placement bottom applies .ant-notification-bottom class to the container');
24
- it.todo('sending notification with another placement handles it correctly');
25
- it.todo('getContainer should always point at NotificationsWrapper element');
26
- it.todo('.ant-notification-bottom should be properly styled even if e.g. .ant-notification-topLeft was added first (`.ant-notification{, }.ant-notification-bottom`)');
27
- it.todo('notificationOpen works with useEffect');
28
- it.todo('if running from useEffect handle it so works, do not force used to rely on useLayoutEffect');
29
- });