@spark-ui/checkbox 2.0.13 → 2.0.14
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 +6 -0
- package/dist/CheckboxInput.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
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
|
+
## [2.0.14](https://github.com/adevinta/spark/compare/@spark-ui/checkbox@2.0.13...@spark-ui/checkbox@2.0.14) (2023-08-30)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **checkbox:** remove misleading onChange props from types as it is not actually supported ([a83cc44](https://github.com/adevinta/spark/commit/a83cc44e22f1b319cc8fa805962fd17bea7dee03)), closes [#1320](https://github.com/adevinta/spark/issues/1320)
|
11
|
+
|
6
12
|
## [2.0.13](https://github.com/adevinta/spark/compare/@spark-ui/checkbox@2.0.12...@spark-ui/checkbox@2.0.13) (2023-08-29)
|
7
13
|
|
8
14
|
**Note:** Version bump only for package @spark-ui/checkbox
|
package/dist/CheckboxInput.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
2
2
|
import { type CheckboxInputStylesProps } from './CheckboxInput.styles';
|
3
3
|
type CheckedStatus = boolean | 'indeterminate';
|
4
|
-
export interface CheckboxInputProps extends CheckboxInputStylesProps, Omit<ComponentPropsWithoutRef<'button'>, 'value' | 'checked' | 'defaultChecked'> {
|
4
|
+
export interface CheckboxInputProps extends CheckboxInputStylesProps, Omit<ComponentPropsWithoutRef<'button'>, 'onChange' | 'value' | 'checked' | 'defaultChecked'> {
|
5
5
|
/**
|
6
6
|
* The checked icon to use.
|
7
7
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@spark-ui/checkbox",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.14",
|
4
4
|
"description": "A control that allows the user to toggle between checked and not checked.",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -49,5 +49,5 @@
|
|
49
49
|
},
|
50
50
|
"homepage": "https://sparkui.vercel.app",
|
51
51
|
"license": "MIT",
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "9ebb4d70f1e893cd8a140c5f8cf0c9f6a807bc62"
|
53
53
|
}
|