@synerise/ds-checkbox-tristate 1.1.28 → 1.1.30
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 +8 -0
- package/README.md +4 -2
- package/package.json +3 -3
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.30](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@1.1.29...@synerise/ds-checkbox-tristate@1.1.30) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-checkbox-tristate
|
|
9
|
+
|
|
10
|
+
## [1.1.29](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@1.1.28...@synerise/ds-checkbox-tristate@1.1.29) (2026-03-09)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-checkbox-tristate
|
|
13
|
+
|
|
6
14
|
## [1.1.28](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@1.1.27...@synerise/ds-checkbox-tristate@1.1.28) (2026-02-26)
|
|
7
15
|
|
|
8
16
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@ id: checkbox-tristate
|
|
|
3
3
|
title: CheckboxTristate
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
> **DEPRECATED.** Use `<Checkbox tristate />` from `@synerise/ds-checkbox` instead. This package is a thin compatibility shim and will be removed in a future release.
|
|
7
|
+
|
|
6
8
|
CheckboxTristate UI Component - Expands Checkbox to third undefined state.
|
|
7
9
|
|
|
8
10
|
## Installation
|
|
@@ -38,9 +40,9 @@ import CheckboxTristate, { CheckboxTristateChangeEvent } from '@synerise/ds-chec
|
|
|
38
40
|
| autoFocus | Get focus when component mounted | boolean | `false` |
|
|
39
41
|
| checked | Specifies whether the checkbox is selected or indeterminate | boolean | undefined | `undefined` |
|
|
40
42
|
| defaultChecked | Specifies the initial state: whether or not the checkbox is selected. | boolean | `false` |
|
|
41
|
-
| description | Checkbox description |
|
|
43
|
+
| description | Checkbox description | ReactNode | - |
|
|
42
44
|
| disabled | Disable checkbox | boolean | `false` |
|
|
43
|
-
| errorText | Error message, if provided sets error state on checkbox |
|
|
45
|
+
| errorText | Error message, if provided sets error state on checkbox | ReactNode | - |
|
|
44
46
|
| hasError | Determines if checkbox is in error state | boolean | `false` |
|
|
45
47
|
| onChange | The callback function that is triggered when the state changes. | (e:CheckboxTristateChangeEvent)=>void | - |
|
|
46
48
|
| withoutPadding | Reset padding of CheckboxWrapper | boolean | `false` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-checkbox-tristate",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"description": "Checkbox Tristate UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"types": "dist/index.d.ts",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@synerise/ds-checkbox": "^1.2.
|
|
42
|
+
"@synerise/ds-checkbox": "^1.2.20"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"vitest": "4"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"antd": "4.24.16",
|
|
50
50
|
"react": ">=16.9.0 <= 18.3.1"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
53
53
|
}
|