@synerise/ds-banner 1.2.8 → 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.
- package/CHANGELOG.md +4 -0
- package/README.md +2 -2
- package/package.json +10 -10
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.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
|
+
|
|
6
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)
|
|
7
11
|
|
|
8
12
|
**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 |
|
|
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
|
-
|
|
|
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.
|
|
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": "
|
|
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.
|
|
39
|
-
"@synerise/ds-icon": "^1.
|
|
40
|
-
"@synerise/ds-tag": "^1.4.
|
|
41
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
42
|
-
"@synerise/ds-typography": "^1.1.
|
|
43
|
-
"@synerise/ds-utils": "^1.
|
|
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": "
|
|
54
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
55
55
|
}
|