@synerise/ds-alert 0.7.51 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -0
- package/dist/InlineAlert/InlineAlert.js +2 -2
- 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.8.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.7.51...@synerise/ds-alert@0.8.0) (2023-12-14)
|
7
|
+
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* **filter:** reorder cruds in filter step conditions ([8d4019b](https://github.com/Synerise/synerise-design/commit/8d4019b49c7579000e093aabbcd31a75626d9c1c))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [0.7.51](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.7.50...@synerise/ds-alert@0.7.51) (2023-12-13)
|
7
18
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-alert
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import Icon, {
|
2
|
+
import Icon, { Check3M, WarningFillM, InfoM } from '@synerise/ds-icon';
|
3
3
|
import * as S from './InlineAlert.styles';
|
4
4
|
var ICONS = {
|
5
|
-
success: /*#__PURE__*/React.createElement(
|
5
|
+
success: /*#__PURE__*/React.createElement(Check3M, null),
|
6
6
|
alert: /*#__PURE__*/React.createElement(WarningFillM, null),
|
7
7
|
warning: /*#__PURE__*/React.createElement(WarningFillM, null),
|
8
8
|
info: /*#__PURE__*/React.createElement(InfoM, null)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-alert",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.8.0",
|
4
4
|
"description": "Alert UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"@testing-library/jest-dom": "5.1.1",
|
52
52
|
"@testing-library/react": "10.0.1"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "0a23e5f431033a6180383d3e0e19e885b5a66778"
|
55
55
|
}
|