@synerise/ds-broadcast-bar 1.1.13 → 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 CHANGED
@@ -3,6 +3,14 @@
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
+
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)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-broadcast-bar
13
+
6
14
  ## [1.1.13](https://github.com/Synerise/synerise-design/compare/@synerise/ds-broadcast-bar@1.1.12...@synerise/ds-broadcast-bar@1.1.13) (2026-02-12)
7
15
 
8
16
  **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` | `string` | `warning` |
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.13",
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": "pnpm run 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.14.0",
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": "eb495cfbc2ede0bff95548c6c4e80c38dd965391"
45
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
47
46
  }