@synerise/ds-alert 1.0.6 → 1.1.0
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 +11 -0
- package/dist/Toast/Toast.d.ts +3 -0
- package/dist/Toast/Toast.js +3 -0
- package/package.json +6 -6
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
|
+
# [1.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@1.0.6...@synerise/ds-alert@1.1.0) (2025-05-07)
|
7
|
+
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* **toast:** toast component ([0cb20d0](https://github.com/Synerise/synerise-design/commit/0cb20d07b48d1c768a0ddf133b1970a4a13444ca))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [1.0.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@1.0.5...@synerise/ds-alert@1.0.6) (2025-04-24)
|
7
18
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-alert
|
package/dist/Toast/Toast.d.ts
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { Props } from './Toast.types';
|
3
|
+
/**
|
4
|
+
* @deprecated - migrate to use synerise/ds-toast instead
|
5
|
+
*/
|
3
6
|
declare const Toast: ({ icon, type, message, description, expander, expandedContent, color, withClose, customColor, customColorIcon, customIcon, colorIcon, customColorText, expanded, onExpand, onCloseClick, button, className, }: Props) => React.JSX.Element;
|
4
7
|
export default Toast;
|
package/dist/Toast/Toast.js
CHANGED
@@ -9,6 +9,9 @@ var ICONS = {
|
|
9
9
|
informative: /*#__PURE__*/React.createElement(InfoFillM, null)
|
10
10
|
};
|
11
11
|
var DEFAULT_ICON = /*#__PURE__*/React.createElement(WarningFillM, null);
|
12
|
+
/**
|
13
|
+
* @deprecated - migrate to use synerise/ds-toast instead
|
14
|
+
*/
|
12
15
|
var Toast = function Toast(_ref) {
|
13
16
|
var icon = _ref.icon,
|
14
17
|
type = _ref.type,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-alert",
|
3
|
-
"version": "1.0
|
3
|
+
"version": "1.1.0",
|
4
4
|
"description": "Alert UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -34,10 +34,10 @@
|
|
34
34
|
],
|
35
35
|
"types": "dist/index.d.ts",
|
36
36
|
"dependencies": {
|
37
|
-
"@synerise/ds-button": "^1.
|
38
|
-
"@synerise/ds-icon": "^1.4.
|
39
|
-
"@synerise/ds-unordered-list": "^1.1.
|
40
|
-
"@synerise/ds-utils": "^1.0
|
37
|
+
"@synerise/ds-button": "^1.2.0",
|
38
|
+
"@synerise/ds-icon": "^1.4.2",
|
39
|
+
"@synerise/ds-unordered-list": "^1.1.2",
|
40
|
+
"@synerise/ds-utils": "^1.1.0",
|
41
41
|
"animate.css": "^4.1.1"
|
42
42
|
},
|
43
43
|
"peerDependencies": {
|
@@ -46,5 +46,5 @@
|
|
46
46
|
"react": ">=16.9.0 <= 18.3.1",
|
47
47
|
"styled-components": "^5.3.3"
|
48
48
|
},
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "90af7549cf0f556340bdd0deec4bb59bacf3e95e"
|
50
50
|
}
|