@openwebf/react-cupertino-ui 0.3.18 → 0.3.19

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 CHANGED
@@ -2246,11 +2246,6 @@ interface FlutterCupertinoCheckboxProps {
2246
2246
  * Semantic label announced by screen readers (not visible in the UI).
2247
2247
  */
2248
2248
  semanticLabel?: string;
2249
- /**
2250
- * Fired when the checkbox value changes.
2251
- * detail = checked state (or null when tristate is enabled and the value is mixed).
2252
- */
2253
- onChange?: (event: CustomEvent<any>) => void;
2254
2249
  /**
2255
2250
  * HTML id attribute
2256
2251
  */
package/dist/index.d.ts CHANGED
@@ -2246,11 +2246,6 @@ interface FlutterCupertinoCheckboxProps {
2246
2246
  * Semantic label announced by screen readers (not visible in the UI).
2247
2247
  */
2248
2248
  semanticLabel?: string;
2249
- /**
2250
- * Fired when the checkbox value changes.
2251
- * detail = checked state (or null when tristate is enabled and the value is mixed).
2252
- */
2253
- onChange?: (event: CustomEvent<any>) => void;
2254
2249
  /**
2255
2250
  * HTML id attribute
2256
2251
  */
package/dist/index.js CHANGED
@@ -449,15 +449,7 @@ var FlutterCupertinoCheckbox = (0, import_react_core_ui11.createWebFComponent)({
449
449
  semanticLabel: "semantic-label"
450
450
  },
451
451
  // Event handlers
452
- events: [
453
- {
454
- propName: "onChange",
455
- eventName: "change",
456
- handler: (callback) => (event) => {
457
- callback(event);
458
- }
459
- }
460
- ],
452
+ events: [],
461
453
  // Default prop values
462
454
  defaultProps: {
463
455
  // Add default values here