@synerise/ds-button-group 1.1.41 → 1.1.42

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,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.42](https://github.com/Synerise/synerise-design/compare/@synerise/ds-button-group@1.1.41...@synerise/ds-button-group@1.1.42) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-button-group
9
+
6
10
  ## [1.1.41](https://github.com/Synerise/synerise-design/compare/@synerise/ds-button-group@1.1.40...@synerise/ds-button-group@1.1.41) (2026-03-09)
7
11
 
8
12
  **Note:** Version bump only for package @synerise/ds-button-group
package/README.md CHANGED
@@ -54,8 +54,11 @@ import ButtonGroup from '@synerise/ds-button-group'
54
54
  | --------------- | -------------------------------------------------------- | --------------------------- | -------- |
55
55
  | title | The title of the group | string | - |
56
56
  | description | The description of the group | string | - |
57
- | size | Defines the size of the button. | `small`/ `middle` / `large` | `middle` |
57
+ | size | Defines the size of the button. | `small`/ `middle` / `large` | - |
58
58
  | buttonsPosition | Defines the horizontal position of buttons. | `left` / `center` / `right` | `center` |
59
59
  | fullWidth | Set buttons width to fill all available space | boolean | `false` |
60
60
  | children | Buttons used in the group | React.ReactNode | - |
61
61
  | splitMode | Enables split mode - adds borders to single-icon buttons | boolean | `false` |
62
+ | compact | Zero gap between buttons with square corners (true) or 8px gap with rounded corners (false) | boolean | `true` |
63
+ | error | In splitMode, switches divider borders to red and adjusts hover shadows | boolean | - |
64
+ | disabled | Passed to the container; suppresses hover effects in splitMode via CSS selectors | boolean | - |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-button-group",
3
- "version": "1.1.41",
3
+ "version": "1.1.42",
4
4
  "description": "Button-Group 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,9 +35,9 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.16",
39
- "@synerise/ds-divider": "^1.3.0",
40
- "@synerise/ds-utils": "^1.6.0"
38
+ "@synerise/ds-button": "^1.5.17",
39
+ "@synerise/ds-divider": "^1.3.1",
40
+ "@synerise/ds-utils": "^1.7.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@synerise/ds-core": "*",
@@ -46,5 +46,5 @@
46
46
  "styled-components": "^5.3.3",
47
47
  "vitest": "4"
48
48
  },
49
- "gitHead": "8dfafc5d7278f09d430f1e7499782d05c76b47c0"
49
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
50
50
  }