@synerise/ds-broadcast-bar 1.1.14 → 1.1.15
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 +4 -0
- package/README.md +3 -3
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-broadcast-bar@1.1.14...@synerise/ds-broadcast-bar@1.1.15) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-broadcast-bar
|
|
9
|
+
|
|
6
10
|
## [1.1.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-broadcast-bar@1.1.13...@synerise/ds-broadcast-bar@1.1.14) (2026-02-19)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @synerise/ds-broadcast-bar
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ yarn add @synerise/ds-broadcast-bar
|
|
|
18
18
|
```
|
|
19
19
|
import BroadcastBar from '@synerise/ds-broadcast-bar'
|
|
20
20
|
|
|
21
|
-
<BroadcastBar />
|
|
21
|
+
<BroadcastBar type="warning" description="Message" />
|
|
22
22
|
|
|
23
23
|
```
|
|
24
24
|
|
|
@@ -30,8 +30,8 @@ import BroadcastBar from '@synerise/ds-broadcast-bar'
|
|
|
30
30
|
|
|
31
31
|
| Property | Description | Type | Default |
|
|
32
32
|
| ------------ | ----------------------------------------------------------------------- | ----------------- | --------- |
|
|
33
|
-
| type | Type of Broadcast-bar styles, options: `success`, `warning`, `negative` | `
|
|
34
|
-
| onCloseClick | callback fired when close icon clicked | `void`
|
|
33
|
+
| type | Type of Broadcast-bar styles, options: `success`, `warning`, `negative` | `'success' \| 'warning' \| 'negative'` | - |
|
|
34
|
+
| onCloseClick | callback fired when close icon clicked | `() => void` | - |
|
|
35
35
|
| withClose | prop to set closeIcon | `boolean` | - |
|
|
36
36
|
| button | prop to set button | `React.ReactNode` | - |
|
|
37
37
|
| customIcon | prop to set icon | `React.ReactNode` | - |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-broadcast-bar",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"description": "BroadcastBar UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
24
24
|
"pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
|
|
25
25
|
"prepublish": "pnpm run build",
|
|
26
|
-
"test": "vitest",
|
|
27
|
-
"test:watch": "
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
28
28
|
"types": "tsc --noEmit",
|
|
29
29
|
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
|
|
30
30
|
},
|
|
@@ -34,8 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-icon": "^1.
|
|
38
|
-
"animate.css": "^4.1.1"
|
|
37
|
+
"@synerise/ds-icon": "^1.15.0"
|
|
39
38
|
},
|
|
40
39
|
"peerDependencies": {
|
|
41
40
|
"@synerise/ds-core": "*",
|
|
@@ -43,5 +42,5 @@
|
|
|
43
42
|
"styled-components": "^5.3.3",
|
|
44
43
|
"vitest": "4"
|
|
45
44
|
},
|
|
46
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
47
46
|
}
|