@openwebf/react-cupertino-ui 0.3.20 → 0.3.22

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
@@ -532,6 +532,103 @@ declare const FlutterCupertinoSlider: React.ForwardRefExoticComponent<FlutterCup
532
532
  children?: React.ReactNode;
533
533
  } & React.RefAttributes<FlutterCupertinoSliderElement>>;
534
534
 
535
+ interface FlutterCupertinoRadioProps {
536
+ /**
537
+ * Value represented by this radio button.
538
+ * When it matches `group-value`, the radio is selected.
539
+ */
540
+ val?: string;
541
+ /**
542
+ * Currently selected value for the radio group.
543
+ * When equal to `val`, this radio appears selected.
544
+ */
545
+ groupValue?: string;
546
+ /**
547
+ * Whether the radio is disabled.
548
+ * When true, the control is non-interactive and dimmed.
549
+ */
550
+ disabled?: boolean;
551
+ /**
552
+ * Whether this radio can be toggled off by tapping it again when selected.
553
+ * When true, on change the group value may be cleared.
554
+ * Default: false.
555
+ */
556
+ toggleable?: boolean;
557
+ /**
558
+ * When true, renders in a checkmark style instead of the default radio style.
559
+ * Default: false.
560
+ */
561
+ useCheckmarkStyle?: boolean;
562
+ /**
563
+ * Color used when this radio is selected.
564
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
565
+ */
566
+ activeColor?: string;
567
+ /**
568
+ * Color used when this radio is not selected.
569
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
570
+ */
571
+ inactiveColor?: string;
572
+ /**
573
+ * Inner fill color when selected.
574
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
575
+ */
576
+ fillColor?: string;
577
+ /**
578
+ * Focus highlight color.
579
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
580
+ */
581
+ focusColor?: string;
582
+ /**
583
+ * Whether this radio should focus itself if nothing else is focused.
584
+ * Default: false.
585
+ */
586
+ autofocus?: boolean;
587
+ /**
588
+ * Fired when this radio is selected or deselected.
589
+ * detail = the new group value (string); when `toggleable` is true and
590
+ * the selection is cleared, detail is the empty string ''.
591
+ */
592
+ onChange?: (event: CustomEvent<string>) => void;
593
+ /**
594
+ * HTML id attribute
595
+ */
596
+ id?: string;
597
+ /**
598
+ * Additional CSS styles
599
+ */
600
+ style?: React.CSSProperties;
601
+ /**
602
+ * Children elements
603
+ */
604
+ children?: React.ReactNode;
605
+ /**
606
+ * Additional CSS class names
607
+ */
608
+ className?: string;
609
+ }
610
+ interface FlutterCupertinoRadioElement extends WebFElementWithMethods<{}> {
611
+ }
612
+ /**
613
+ * Properties for <flutter-cupertino-radio>
614
+ macOS-style radio button.
615
+ *
616
+ * @example
617
+ * ```tsx
618
+ *
619
+ * <FlutterCupertinoRadio
620
+ * // Add props here
621
+ * >
622
+ * Content
623
+ * </FlutterCupertinoRadio>
624
+ * ```
625
+ */
626
+ declare const FlutterCupertinoRadio: React.ForwardRefExoticComponent<FlutterCupertinoRadioProps & {
627
+ className?: string;
628
+ style?: React.CSSProperties;
629
+ children?: React.ReactNode;
630
+ } & React.RefAttributes<FlutterCupertinoRadioElement>>;
631
+
535
632
  interface FlutterCupertinoListSectionProps {
536
633
  /**
537
634
  * Whether to use the inset grouped style (iOS Settings-style sections).
@@ -2248,9 +2345,17 @@ interface FlutterCupertinoCheckboxProps {
2248
2345
  semanticLabel?: string;
2249
2346
  /**
2250
2347
  * Fired when the checkbox value changes.
2251
- * detail = checked state (or null when tristate is enabled and the value is mixed).
2348
+ * detail = checked state as a boolean.
2349
+ */
2350
+ onChange?: (event: CustomEvent<boolean>) => void;
2351
+ /**
2352
+ * Fired when the checkbox value changes, including tristate transitions.
2353
+ * detail = 'checked' | 'unchecked' | 'mixed'.
2354
+ *
2355
+ * Use this event when you need to distinguish the mixed state,
2356
+ * instead of relying on null.
2252
2357
  */
2253
- onChange?: (event: CustomEvent<boolean | null>) => void;
2358
+ onStatechange?: (event: CustomEvent<"checked" | "unchecked" | "mixed">) => void;
2254
2359
  /**
2255
2360
  * HTML id attribute
2256
2361
  */
@@ -3064,79 +3169,6 @@ declare const FlutterCupertinoSearchInput: React.ForwardRefExoticComponent<Flutt
3064
3169
  children?: React.ReactNode;
3065
3170
  } & React.RefAttributes<FlutterCupertinoSearchInputElement>>;
3066
3171
 
3067
- interface FlutterCupertinoRadioProps {
3068
- /**
3069
- * val property
3070
- * @default undefined
3071
- */
3072
- val?: string;
3073
- /**
3074
- * groupValue property
3075
- * @default undefined
3076
- */
3077
- groupValue?: string;
3078
- /**
3079
- * useCheckmarkStyle property
3080
- * @default undefined
3081
- */
3082
- useCheckmarkStyle?: boolean;
3083
- /**
3084
- * disabled property
3085
- * @default undefined
3086
- */
3087
- disabled?: boolean;
3088
- /**
3089
- * activeColor property
3090
- * @default undefined
3091
- */
3092
- activeColor?: string;
3093
- /**
3094
- * focusColor property
3095
- * @default undefined
3096
- */
3097
- focusColor?: string;
3098
- /**
3099
- * change event handler
3100
- */
3101
- onChange?: (event: CustomEvent<string>) => void;
3102
- /**
3103
- * HTML id attribute
3104
- */
3105
- id?: string;
3106
- /**
3107
- * Additional CSS styles
3108
- */
3109
- style?: React.CSSProperties;
3110
- /**
3111
- * Children elements
3112
- */
3113
- children?: React.ReactNode;
3114
- /**
3115
- * Additional CSS class names
3116
- */
3117
- className?: string;
3118
- }
3119
- interface FlutterCupertinoRadioElement extends WebFElementWithMethods<{}> {
3120
- }
3121
- /**
3122
- * FlutterCupertinoRadio - WebF FlutterCupertinoRadio component
3123
- *
3124
- * @example
3125
- * ```tsx
3126
- *
3127
- * <FlutterCupertinoRadio
3128
- * // Add props here
3129
- * >
3130
- * Content
3131
- * </FlutterCupertinoRadio>
3132
- * ```
3133
- */
3134
- declare const FlutterCupertinoRadio: React.ForwardRefExoticComponent<FlutterCupertinoRadioProps & {
3135
- className?: string;
3136
- style?: React.CSSProperties;
3137
- children?: React.ReactNode;
3138
- } & React.RefAttributes<FlutterCupertinoRadioElement>>;
3139
-
3140
3172
  interface FlutterCupertinoPickerProps {
3141
3173
  /**
3142
3174
  * height property
package/dist/index.d.ts CHANGED
@@ -532,6 +532,103 @@ declare const FlutterCupertinoSlider: React.ForwardRefExoticComponent<FlutterCup
532
532
  children?: React.ReactNode;
533
533
  } & React.RefAttributes<FlutterCupertinoSliderElement>>;
534
534
 
535
+ interface FlutterCupertinoRadioProps {
536
+ /**
537
+ * Value represented by this radio button.
538
+ * When it matches `group-value`, the radio is selected.
539
+ */
540
+ val?: string;
541
+ /**
542
+ * Currently selected value for the radio group.
543
+ * When equal to `val`, this radio appears selected.
544
+ */
545
+ groupValue?: string;
546
+ /**
547
+ * Whether the radio is disabled.
548
+ * When true, the control is non-interactive and dimmed.
549
+ */
550
+ disabled?: boolean;
551
+ /**
552
+ * Whether this radio can be toggled off by tapping it again when selected.
553
+ * When true, on change the group value may be cleared.
554
+ * Default: false.
555
+ */
556
+ toggleable?: boolean;
557
+ /**
558
+ * When true, renders in a checkmark style instead of the default radio style.
559
+ * Default: false.
560
+ */
561
+ useCheckmarkStyle?: boolean;
562
+ /**
563
+ * Color used when this radio is selected.
564
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
565
+ */
566
+ activeColor?: string;
567
+ /**
568
+ * Color used when this radio is not selected.
569
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
570
+ */
571
+ inactiveColor?: string;
572
+ /**
573
+ * Inner fill color when selected.
574
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
575
+ */
576
+ fillColor?: string;
577
+ /**
578
+ * Focus highlight color.
579
+ * Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
580
+ */
581
+ focusColor?: string;
582
+ /**
583
+ * Whether this radio should focus itself if nothing else is focused.
584
+ * Default: false.
585
+ */
586
+ autofocus?: boolean;
587
+ /**
588
+ * Fired when this radio is selected or deselected.
589
+ * detail = the new group value (string); when `toggleable` is true and
590
+ * the selection is cleared, detail is the empty string ''.
591
+ */
592
+ onChange?: (event: CustomEvent<string>) => void;
593
+ /**
594
+ * HTML id attribute
595
+ */
596
+ id?: string;
597
+ /**
598
+ * Additional CSS styles
599
+ */
600
+ style?: React.CSSProperties;
601
+ /**
602
+ * Children elements
603
+ */
604
+ children?: React.ReactNode;
605
+ /**
606
+ * Additional CSS class names
607
+ */
608
+ className?: string;
609
+ }
610
+ interface FlutterCupertinoRadioElement extends WebFElementWithMethods<{}> {
611
+ }
612
+ /**
613
+ * Properties for <flutter-cupertino-radio>
614
+ macOS-style radio button.
615
+ *
616
+ * @example
617
+ * ```tsx
618
+ *
619
+ * <FlutterCupertinoRadio
620
+ * // Add props here
621
+ * >
622
+ * Content
623
+ * </FlutterCupertinoRadio>
624
+ * ```
625
+ */
626
+ declare const FlutterCupertinoRadio: React.ForwardRefExoticComponent<FlutterCupertinoRadioProps & {
627
+ className?: string;
628
+ style?: React.CSSProperties;
629
+ children?: React.ReactNode;
630
+ } & React.RefAttributes<FlutterCupertinoRadioElement>>;
631
+
535
632
  interface FlutterCupertinoListSectionProps {
536
633
  /**
537
634
  * Whether to use the inset grouped style (iOS Settings-style sections).
@@ -2248,9 +2345,17 @@ interface FlutterCupertinoCheckboxProps {
2248
2345
  semanticLabel?: string;
2249
2346
  /**
2250
2347
  * Fired when the checkbox value changes.
2251
- * detail = checked state (or null when tristate is enabled and the value is mixed).
2348
+ * detail = checked state as a boolean.
2349
+ */
2350
+ onChange?: (event: CustomEvent<boolean>) => void;
2351
+ /**
2352
+ * Fired when the checkbox value changes, including tristate transitions.
2353
+ * detail = 'checked' | 'unchecked' | 'mixed'.
2354
+ *
2355
+ * Use this event when you need to distinguish the mixed state,
2356
+ * instead of relying on null.
2252
2357
  */
2253
- onChange?: (event: CustomEvent<boolean | null>) => void;
2358
+ onStatechange?: (event: CustomEvent<"checked" | "unchecked" | "mixed">) => void;
2254
2359
  /**
2255
2360
  * HTML id attribute
2256
2361
  */
@@ -3064,79 +3169,6 @@ declare const FlutterCupertinoSearchInput: React.ForwardRefExoticComponent<Flutt
3064
3169
  children?: React.ReactNode;
3065
3170
  } & React.RefAttributes<FlutterCupertinoSearchInputElement>>;
3066
3171
 
3067
- interface FlutterCupertinoRadioProps {
3068
- /**
3069
- * val property
3070
- * @default undefined
3071
- */
3072
- val?: string;
3073
- /**
3074
- * groupValue property
3075
- * @default undefined
3076
- */
3077
- groupValue?: string;
3078
- /**
3079
- * useCheckmarkStyle property
3080
- * @default undefined
3081
- */
3082
- useCheckmarkStyle?: boolean;
3083
- /**
3084
- * disabled property
3085
- * @default undefined
3086
- */
3087
- disabled?: boolean;
3088
- /**
3089
- * activeColor property
3090
- * @default undefined
3091
- */
3092
- activeColor?: string;
3093
- /**
3094
- * focusColor property
3095
- * @default undefined
3096
- */
3097
- focusColor?: string;
3098
- /**
3099
- * change event handler
3100
- */
3101
- onChange?: (event: CustomEvent<string>) => void;
3102
- /**
3103
- * HTML id attribute
3104
- */
3105
- id?: string;
3106
- /**
3107
- * Additional CSS styles
3108
- */
3109
- style?: React.CSSProperties;
3110
- /**
3111
- * Children elements
3112
- */
3113
- children?: React.ReactNode;
3114
- /**
3115
- * Additional CSS class names
3116
- */
3117
- className?: string;
3118
- }
3119
- interface FlutterCupertinoRadioElement extends WebFElementWithMethods<{}> {
3120
- }
3121
- /**
3122
- * FlutterCupertinoRadio - WebF FlutterCupertinoRadio component
3123
- *
3124
- * @example
3125
- * ```tsx
3126
- *
3127
- * <FlutterCupertinoRadio
3128
- * // Add props here
3129
- * >
3130
- * Content
3131
- * </FlutterCupertinoRadio>
3132
- * ```
3133
- */
3134
- declare const FlutterCupertinoRadio: React.ForwardRefExoticComponent<FlutterCupertinoRadioProps & {
3135
- className?: string;
3136
- style?: React.CSSProperties;
3137
- children?: React.ReactNode;
3138
- } & React.RefAttributes<FlutterCupertinoRadioElement>>;
3139
-
3140
3172
  interface FlutterCupertinoPickerProps {
3141
3173
  /**
3142
3174
  * height property
package/dist/index.js CHANGED
@@ -325,9 +325,52 @@ var FlutterCupertinoSlider = (0, import_react_core_ui7.createWebFComponent)({
325
325
  }
326
326
  });
327
327
 
328
- // src/lib/src/list_section.tsx
328
+ // src/lib/src/radio.tsx
329
329
  var import_react_core_ui8 = require("@openwebf/react-core-ui");
330
- var FlutterCupertinoListSection = (0, import_react_core_ui8.createWebFComponent)({
330
+ var FlutterCupertinoRadio = (0, import_react_core_ui8.createWebFComponent)({
331
+ tagName: "flutter-cupertino-radio",
332
+ displayName: "FlutterCupertinoRadio",
333
+ // Map props to attributes
334
+ attributeProps: [
335
+ "val",
336
+ "groupValue",
337
+ "disabled",
338
+ "toggleable",
339
+ "useCheckmarkStyle",
340
+ "activeColor",
341
+ "inactiveColor",
342
+ "fillColor",
343
+ "focusColor",
344
+ "autofocus"
345
+ ],
346
+ // Convert prop names to attribute names if needed
347
+ attributeMap: {
348
+ groupValue: "group-value",
349
+ useCheckmarkStyle: "use-checkmark-style",
350
+ activeColor: "active-color",
351
+ inactiveColor: "inactive-color",
352
+ fillColor: "fill-color",
353
+ focusColor: "focus-color"
354
+ },
355
+ // Event handlers
356
+ events: [
357
+ {
358
+ propName: "onChange",
359
+ eventName: "change",
360
+ handler: (callback) => (event) => {
361
+ callback(event);
362
+ }
363
+ }
364
+ ],
365
+ // Default prop values
366
+ defaultProps: {
367
+ // Add default values here
368
+ }
369
+ });
370
+
371
+ // src/lib/src/list_section.tsx
372
+ var import_react_core_ui9 = require("@openwebf/react-core-ui");
373
+ var FlutterCupertinoListSection = (0, import_react_core_ui9.createWebFComponent)({
331
374
  tagName: "flutter-cupertino-list-section",
332
375
  displayName: "FlutterCupertinoListSection",
333
376
  // Map props to attributes
@@ -345,7 +388,7 @@ var FlutterCupertinoListSection = (0, import_react_core_ui8.createWebFComponent)
345
388
  // Add default values here
346
389
  }
347
390
  });
348
- var FlutterCupertinoListSectionHeader = (0, import_react_core_ui8.createWebFComponent)({
391
+ var FlutterCupertinoListSectionHeader = (0, import_react_core_ui9.createWebFComponent)({
349
392
  tagName: "flutter-cupertino-list-section-header",
350
393
  displayName: "FlutterCupertinoListSectionHeader",
351
394
  // Map props to attributes
@@ -359,7 +402,7 @@ var FlutterCupertinoListSectionHeader = (0, import_react_core_ui8.createWebFComp
359
402
  // Add default values here
360
403
  }
361
404
  });
362
- var FlutterCupertinoListSectionFooter = (0, import_react_core_ui8.createWebFComponent)({
405
+ var FlutterCupertinoListSectionFooter = (0, import_react_core_ui9.createWebFComponent)({
363
406
  tagName: "flutter-cupertino-list-section-footer",
364
407
  displayName: "FlutterCupertinoListSectionFooter",
365
408
  // Map props to attributes
@@ -375,8 +418,8 @@ var FlutterCupertinoListSectionFooter = (0, import_react_core_ui8.createWebFComp
375
418
  });
376
419
 
377
420
  // src/lib/src/icon.tsx
378
- var import_react_core_ui9 = require("@openwebf/react-core-ui");
379
- var FlutterCupertinoIcon = (0, import_react_core_ui9.createWebFComponent)({
421
+ var import_react_core_ui10 = require("@openwebf/react-core-ui");
422
+ var FlutterCupertinoIcon = (0, import_react_core_ui10.createWebFComponent)({
380
423
  tagName: "flutter-cupertino-icon",
381
424
  displayName: "FlutterCupertinoIcon",
382
425
  // Map props to attributes
@@ -393,8 +436,8 @@ var FlutterCupertinoIcon = (0, import_react_core_ui9.createWebFComponent)({
393
436
  });
394
437
 
395
438
  // src/lib/src/context-menu.tsx
396
- var import_react_core_ui10 = require("@openwebf/react-core-ui");
397
- var FlutterCupertinoContextMenu = (0, import_react_core_ui10.createWebFComponent)({
439
+ var import_react_core_ui11 = require("@openwebf/react-core-ui");
440
+ var FlutterCupertinoContextMenu = (0, import_react_core_ui11.createWebFComponent)({
398
441
  tagName: "flutter-cupertino-context-menu",
399
442
  displayName: "FlutterCupertinoContextMenu",
400
443
  // Map props to attributes
@@ -422,8 +465,8 @@ var FlutterCupertinoContextMenu = (0, import_react_core_ui10.createWebFComponent
422
465
  });
423
466
 
424
467
  // src/lib/src/checkbox.tsx
425
- var import_react_core_ui11 = require("@openwebf/react-core-ui");
426
- var FlutterCupertinoCheckbox = (0, import_react_core_ui11.createWebFComponent)({
468
+ var import_react_core_ui12 = require("@openwebf/react-core-ui");
469
+ var FlutterCupertinoCheckbox = (0, import_react_core_ui12.createWebFComponent)({
427
470
  tagName: "flutter-cupertino-checkbox",
428
471
  displayName: "FlutterCupertinoCheckbox",
429
472
  // Map props to attributes
@@ -456,6 +499,13 @@ var FlutterCupertinoCheckbox = (0, import_react_core_ui11.createWebFComponent)({
456
499
  handler: (callback) => (event) => {
457
500
  callback(event);
458
501
  }
502
+ },
503
+ {
504
+ propName: "onStatechange",
505
+ eventName: "statechange",
506
+ handler: (callback) => (event) => {
507
+ callback(event);
508
+ }
459
509
  }
460
510
  ],
461
511
  // Default prop values
@@ -465,8 +515,8 @@ var FlutterCupertinoCheckbox = (0, import_react_core_ui11.createWebFComponent)({
465
515
  });
466
516
 
467
517
  // src/lib/src/button.tsx
468
- var import_react_core_ui12 = require("@openwebf/react-core-ui");
469
- var FlutterCupertinoButton = (0, import_react_core_ui12.createWebFComponent)({
518
+ var import_react_core_ui13 = require("@openwebf/react-core-ui");
519
+ var FlutterCupertinoButton = (0, import_react_core_ui13.createWebFComponent)({
470
520
  tagName: "flutter-cupertino-button",
471
521
  displayName: "FlutterCupertinoButton",
472
522
  // Map props to attributes
@@ -499,8 +549,8 @@ var FlutterCupertinoButton = (0, import_react_core_ui12.createWebFComponent)({
499
549
  });
500
550
 
501
551
  // src/lib/src/alert.tsx
502
- var import_react_core_ui13 = require("@openwebf/react-core-ui");
503
- var FlutterCupertinoAlert = (0, import_react_core_ui13.createWebFComponent)({
552
+ var import_react_core_ui14 = require("@openwebf/react-core-ui");
553
+ var FlutterCupertinoAlert = (0, import_react_core_ui14.createWebFComponent)({
504
554
  tagName: "flutter-cupertino-alert",
505
555
  displayName: "FlutterCupertinoAlert",
506
556
  // Map props to attributes
@@ -551,8 +601,8 @@ var FlutterCupertinoAlert = (0, import_react_core_ui13.createWebFComponent)({
551
601
  });
552
602
 
553
603
  // src/lib/src/action-sheet.tsx
554
- var import_react_core_ui14 = require("@openwebf/react-core-ui");
555
- var FlutterCupertinoActionSheet = (0, import_react_core_ui14.createWebFComponent)({
604
+ var import_react_core_ui15 = require("@openwebf/react-core-ui");
605
+ var FlutterCupertinoActionSheet = (0, import_react_core_ui15.createWebFComponent)({
556
606
  tagName: "flutter-cupertino-action-sheet",
557
607
  displayName: "FlutterCupertinoActionSheet",
558
608
  // Map props to attributes
@@ -576,8 +626,8 @@ var FlutterCupertinoActionSheet = (0, import_react_core_ui14.createWebFComponent
576
626
  });
577
627
 
578
628
  // src/lib/src/legacy/toast.tsx
579
- var import_react_core_ui15 = require("@openwebf/react-core-ui");
580
- var FlutterCupertinoToast = (0, import_react_core_ui15.createWebFComponent)({
629
+ var import_react_core_ui16 = require("@openwebf/react-core-ui");
630
+ var FlutterCupertinoToast = (0, import_react_core_ui16.createWebFComponent)({
581
631
  tagName: "flutter-cupertino-toast",
582
632
  displayName: "FlutterCupertinoToast",
583
633
  // Map props to attributes
@@ -593,8 +643,8 @@ var FlutterCupertinoToast = (0, import_react_core_ui15.createWebFComponent)({
593
643
  });
594
644
 
595
645
  // src/lib/src/legacy/timer-picker.tsx
596
- var import_react_core_ui16 = require("@openwebf/react-core-ui");
597
- var FlutterCupertinoTimerPicker = (0, import_react_core_ui16.createWebFComponent)({
646
+ var import_react_core_ui17 = require("@openwebf/react-core-ui");
647
+ var FlutterCupertinoTimerPicker = (0, import_react_core_ui17.createWebFComponent)({
598
648
  tagName: "flutter-cupertino-timer-picker",
599
649
  displayName: "FlutterCupertinoTimerPicker",
600
650
  // Map props to attributes
@@ -630,8 +680,8 @@ var FlutterCupertinoTimerPicker = (0, import_react_core_ui16.createWebFComponent
630
680
  });
631
681
 
632
682
  // src/lib/src/legacy/textarea.tsx
633
- var import_react_core_ui17 = require("@openwebf/react-core-ui");
634
- var FlutterCupertinoTextarea = (0, import_react_core_ui17.createWebFComponent)({
683
+ var import_react_core_ui18 = require("@openwebf/react-core-ui");
684
+ var FlutterCupertinoTextarea = (0, import_react_core_ui18.createWebFComponent)({
635
685
  tagName: "flutter-cupertino-textarea",
636
686
  displayName: "FlutterCupertinoTextarea",
637
687
  // Map props to attributes
@@ -676,8 +726,8 @@ var FlutterCupertinoTextarea = (0, import_react_core_ui17.createWebFComponent)({
676
726
  });
677
727
 
678
728
  // src/lib/src/legacy/segmented-tab.tsx
679
- var import_react_core_ui18 = require("@openwebf/react-core-ui");
680
- var FlutterCupertinoSegmentedTab = (0, import_react_core_ui18.createWebFComponent)({
729
+ var import_react_core_ui19 = require("@openwebf/react-core-ui");
730
+ var FlutterCupertinoSegmentedTab = (0, import_react_core_ui19.createWebFComponent)({
681
731
  tagName: "flutter-cupertino-segmented-tab",
682
732
  displayName: "FlutterCupertinoSegmentedTab",
683
733
  // Map props to attributes
@@ -699,7 +749,7 @@ var FlutterCupertinoSegmentedTab = (0, import_react_core_ui18.createWebFComponen
699
749
  // Add default values here
700
750
  }
701
751
  });
702
- var FlutterCupertinoSegmentedTabItem = (0, import_react_core_ui18.createWebFComponent)({
752
+ var FlutterCupertinoSegmentedTabItem = (0, import_react_core_ui19.createWebFComponent)({
703
753
  tagName: "flutter-cupertino-segmented-tab-item",
704
754
  displayName: "FlutterCupertinoSegmentedTabItem",
705
755
  // Map props to attributes
@@ -717,8 +767,8 @@ var FlutterCupertinoSegmentedTabItem = (0, import_react_core_ui18.createWebFComp
717
767
  });
718
768
 
719
769
  // src/lib/src/legacy/search-input.tsx
720
- var import_react_core_ui19 = require("@openwebf/react-core-ui");
721
- var FlutterCupertinoSearchInput = (0, import_react_core_ui19.createWebFComponent)({
770
+ var import_react_core_ui20 = require("@openwebf/react-core-ui");
771
+ var FlutterCupertinoSearchInput = (0, import_react_core_ui20.createWebFComponent)({
722
772
  tagName: "flutter-cupertino-search-input",
723
773
  displayName: "FlutterCupertinoSearchInput",
724
774
  // Map props to attributes
@@ -772,43 +822,6 @@ var FlutterCupertinoSearchInput = (0, import_react_core_ui19.createWebFComponent
772
822
  }
773
823
  });
774
824
 
775
- // src/lib/src/legacy/radio.tsx
776
- var import_react_core_ui20 = require("@openwebf/react-core-ui");
777
- var FlutterCupertinoRadio = (0, import_react_core_ui20.createWebFComponent)({
778
- tagName: "flutter-cupertino-radio",
779
- displayName: "FlutterCupertinoRadio",
780
- // Map props to attributes
781
- attributeProps: [
782
- "val",
783
- "groupValue",
784
- "useCheckmarkStyle",
785
- "disabled",
786
- "activeColor",
787
- "focusColor"
788
- ],
789
- // Convert prop names to attribute names if needed
790
- attributeMap: {
791
- groupValue: "group-value",
792
- useCheckmarkStyle: "use-checkmark-style",
793
- activeColor: "active-color",
794
- focusColor: "focus-color"
795
- },
796
- // Event handlers
797
- events: [
798
- {
799
- propName: "onChange",
800
- eventName: "change",
801
- handler: (callback) => (event) => {
802
- callback(event);
803
- }
804
- }
805
- ],
806
- // Default prop values
807
- defaultProps: {
808
- // Add default values here
809
- }
810
- });
811
-
812
825
  // src/lib/src/legacy/picker.tsx
813
826
  var import_react_core_ui21 = require("@openwebf/react-core-ui");
814
827
  var FlutterCupertinoPicker = (0, import_react_core_ui21.createWebFComponent)({