@synerise/ds-banner 1.2.7 → 1.2.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +2 -2
  3. package/package.json +10 -10
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.2.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-banner@1.2.8...@synerise/ds-banner@1.2.9) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-banner
9
+
10
+ ## [1.2.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-banner@1.2.7...@synerise/ds-banner@1.2.8) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-banner
13
+
6
14
  ## [1.2.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-banner@1.2.6...@synerise/ds-banner@1.2.7) (2026-02-23)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-banner
package/README.md CHANGED
@@ -53,7 +53,7 @@ import Banner from '@synerise/ds-banner'
53
53
  | Property | Description | Type | Default |
54
54
  | ----------- | --------------------------------- | -------------------------- | ------- |
55
55
  | titlePrefix | icon / avatar prefix of the title | ReactNode | - |
56
- | titleStatus | Title status tag | StatusProps, see ds-status | - |
56
+ | titleStatus | Title status tag | Pick<TagProps, 'textColor' \| 'color' \| 'name'> | - |
57
57
  | title | Slide title | ReactNode | - |
58
58
  | buttons | Slide buttons | ReactNode | - |
59
59
  | description | Slide description text | ReactNode | - |
@@ -70,7 +70,7 @@ import Banner from '@synerise/ds-banner'
70
70
  | -------- | ---------------------- | --------- | ------- |
71
71
  | title | Top bar title text | ReactNode | - |
72
72
  | icon | Top bar icon prefix | ReactNode | - |
73
- | expanded | default exapnded state | boolean | true |
73
+ | isExpanded | initial expanded state | boolean | true |
74
74
 
75
75
  ### BannerTexts
76
76
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-banner",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "Banner 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
  "check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
30
30
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
@@ -35,12 +35,12 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.15",
39
- "@synerise/ds-icon": "^1.14.1",
40
- "@synerise/ds-tag": "^1.4.15",
41
- "@synerise/ds-tooltip": "^1.4.7",
42
- "@synerise/ds-typography": "^1.1.10",
43
- "@synerise/ds-utils": "^1.6.0",
38
+ "@synerise/ds-button": "^1.5.17",
39
+ "@synerise/ds-icon": "^1.15.0",
40
+ "@synerise/ds-tag": "^1.4.17",
41
+ "@synerise/ds-tooltip": "^1.4.9",
42
+ "@synerise/ds-typography": "^1.1.12",
43
+ "@synerise/ds-utils": "^1.7.0",
44
44
  "uuid": "^8.3.2"
45
45
  },
46
46
  "peerDependencies": {
@@ -51,5 +51,5 @@
51
51
  "styled-components": "^5.3.3",
52
52
  "vitest": "4"
53
53
  },
54
- "gitHead": "2997f77d657c1aed2fc39901d3e0b8f88b05cc53"
54
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
55
55
  }