@konoma-development/react-components 0.2.2 → 0.2.3
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.
|
@@ -2415,6 +2415,7 @@ function Checkbox({
|
|
|
2415
2415
|
name,
|
|
2416
2416
|
className: "h-0 w-0 appearance-none",
|
|
2417
2417
|
defaultChecked: !!defaultValue,
|
|
2418
|
+
"data-testid": dataTestId,
|
|
2418
2419
|
onChange: (e) => onChange(e.target.checked, e),
|
|
2419
2420
|
disabled
|
|
2420
2421
|
}
|
|
@@ -2434,6 +2435,7 @@ function Checkbox({
|
|
|
2434
2435
|
value: 0,
|
|
2435
2436
|
className: "h-0 w-0 appearance-none",
|
|
2436
2437
|
defaultChecked: !!defaultValue,
|
|
2438
|
+
"data-testid": dataTestId,
|
|
2437
2439
|
onChange: (e) => onChange(e.target.checked, e),
|
|
2438
2440
|
disabled
|
|
2439
2441
|
}
|