@synerise/ds-checkbox 1.2.18 → 1.2.20

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.2.20](https://github.com/synerise/synerise-design/compare/@synerise/ds-checkbox@1.2.19...@synerise/ds-checkbox@1.2.20) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-checkbox
9
+
10
+ ## [1.2.19](https://github.com/synerise/synerise-design/compare/@synerise/ds-checkbox@1.2.18...@synerise/ds-checkbox@1.2.19) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-checkbox
13
+
6
14
  ## [1.2.18](https://github.com/synerise/synerise-design/compare/@synerise/ds-checkbox@1.2.17...@synerise/ds-checkbox@1.2.18) (2026-02-26)
7
15
 
8
16
  ### Bug Fixes
package/README.md CHANGED
@@ -16,7 +16,7 @@ Based on [Ant Design Checkbox](https://ant.design/components/checkbox/)
16
16
  | autoFocus | Get focus when component mounted | boolean | `false` |
17
17
  | checked | Specifies whether the checkbox is selected. | boolean | `false` |
18
18
  | defaultChecked | Specifies the initial state: whether or not the checkbox is selected. | boolean | `false` |
19
- | description | Checkbox description | string | - |
19
+ | description | Checkbox description | ReactNode | - |
20
20
  | disabled | Disable checkbox | boolean | `false` |
21
21
  | errorText | Error message, if provided sets error state on checkbox | string | - |
22
22
  | hasError | Determines if checkbox is in error state | boolean | `false` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-checkbox",
3
- "version": "1.2.18",
3
+ "version": "1.2.20",
4
4
  "description": "Checkbox 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"
@@ -34,7 +34,7 @@
34
34
  "*.less"
35
35
  ],
36
36
  "dependencies": {
37
- "@synerise/ds-typography": "^1.1.10"
37
+ "@synerise/ds-typography": "^1.1.12"
38
38
  },
39
39
  "devDependencies": {
40
40
  "vitest": "4"
@@ -45,5 +45,5 @@
45
45
  "react": ">=16.9.0 <= 18.3.1",
46
46
  "styled-components": "^5.3.3"
47
47
  },
48
- "gitHead": "4ffbd56e9bf6277c4507efeaf000b66b9bb09781"
48
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
49
49
  }