@synerise/ds-alert 0.9.0 → 0.9.2
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 +16 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +6 -6
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.9.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.9.1...@synerise/ds-alert@0.9.2) (2025-02-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-alert
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.9.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.9.0...@synerise/ds-alert@0.9.1) (2025-02-07)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-alert
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [0.9.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-alert@0.8.46...@synerise/ds-alert@0.9.0) (2025-01-29)
|
|
7
23
|
|
|
8
24
|
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare const AlertStyles: {
|
|
|
12
12
|
export { default as SectionMessage } from './SectionMessage/SectionMessage';
|
|
13
13
|
export type { Props as SectionMessageProps, ColorType as SectionMessageColorType, AlertTypes as SectionMessageAlertTypes, } from './SectionMessage/SectionMessage.types';
|
|
14
14
|
export { default as Toast } from './Toast/Toast';
|
|
15
|
+
export { default as BroadcastBar } from './BroadcastBar/BroadcastBar';
|
|
15
16
|
export { default as IconAlert } from './IconAlert/IconAlert';
|
|
16
17
|
export type { IconAlertType } from './IconAlert/IconAlert.types';
|
|
17
18
|
export { default as InlineAlert } from './InlineAlert/InlineAlert';
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,7 @@ export var AlertStyles = {
|
|
|
11
11
|
};
|
|
12
12
|
export { default as SectionMessage } from './SectionMessage/SectionMessage';
|
|
13
13
|
export { default as Toast } from './Toast/Toast';
|
|
14
|
+
export { default as BroadcastBar } from './BroadcastBar/BroadcastBar';
|
|
14
15
|
export { default as IconAlert } from './IconAlert/IconAlert';
|
|
15
16
|
export { default as InlineAlert } from './InlineAlert/InlineAlert';
|
|
16
17
|
export { default as AlertInfo } from './AlertInfo/AlertInfo';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-alert",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
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": "^0.23.
|
|
38
|
-
"@synerise/ds-icon": "^0.71.
|
|
39
|
-
"@synerise/ds-unordered-list": "^0.4.
|
|
40
|
-
"@synerise/ds-utils": "^0.32.
|
|
37
|
+
"@synerise/ds-button": "^0.23.1",
|
|
38
|
+
"@synerise/ds-icon": "^0.71.1",
|
|
39
|
+
"@synerise/ds-unordered-list": "^0.4.2",
|
|
40
|
+
"@synerise/ds-utils": "^0.32.1",
|
|
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": "38cb22e1c46d175306dd87e10649410eb93a4e44"
|
|
50
50
|
}
|