@openwebf/react-cupertino-ui 0.3.18 → 0.3.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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2250,7 +2250,7 @@ interface FlutterCupertinoCheckboxProps {
|
|
|
2250
2250
|
* Fired when the checkbox value changes.
|
|
2251
2251
|
* detail = checked state (or null when tristate is enabled and the value is mixed).
|
|
2252
2252
|
*/
|
|
2253
|
-
onChange?: (event: CustomEvent<
|
|
2253
|
+
onChange?: (event: CustomEvent<boolean | null>) => void;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* HTML id attribute
|
|
2256
2256
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -2250,7 +2250,7 @@ interface FlutterCupertinoCheckboxProps {
|
|
|
2250
2250
|
* Fired when the checkbox value changes.
|
|
2251
2251
|
* detail = checked state (or null when tristate is enabled and the value is mixed).
|
|
2252
2252
|
*/
|
|
2253
|
-
onChange?: (event: CustomEvent<
|
|
2253
|
+
onChange?: (event: CustomEvent<boolean | null>) => void;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* HTML id attribute
|
|
2256
2256
|
*/
|