@openwebf/react-cupertino-ui 0.3.16 → 0.3.18
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 +278 -164
- package/dist/index.d.ts +278 -164
- package/dist/index.js +184 -131
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -131
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -329,44 +329,27 @@ declare const FlutterCupertinoSwitch: React.ForwardRefExoticComponent<FlutterCup
|
|
|
329
329
|
children?: React.ReactNode;
|
|
330
330
|
} & React.RefAttributes<FlutterCupertinoSwitchElement>>;
|
|
331
331
|
|
|
332
|
-
interface
|
|
333
|
-
/**
|
|
334
|
-
* Current value of the slider.
|
|
335
|
-
* Default: 0.0.
|
|
336
|
-
*/
|
|
337
|
-
val?: number;
|
|
332
|
+
interface FlutterCupertinoSlidingSegmentedControlProps {
|
|
338
333
|
/**
|
|
339
|
-
*
|
|
340
|
-
* Default: 0.
|
|
341
|
-
*/
|
|
342
|
-
min?: number;
|
|
343
|
-
/**
|
|
344
|
-
* Maximum value of the slider range.
|
|
345
|
-
* Default: 100.0.
|
|
334
|
+
* Zero-based index of the selected segment.
|
|
335
|
+
* Default: 0. Values outside range are clamped.
|
|
346
336
|
*/
|
|
347
|
-
|
|
337
|
+
currentIndex?: number;
|
|
348
338
|
/**
|
|
349
|
-
*
|
|
350
|
-
*
|
|
339
|
+
* Background color of the segmented control track.
|
|
340
|
+
* Hex string: '#RRGGBB' or '#AARRGGBB'.
|
|
351
341
|
*/
|
|
352
|
-
|
|
342
|
+
backgroundColor?: string;
|
|
353
343
|
/**
|
|
354
|
-
*
|
|
355
|
-
*
|
|
344
|
+
* Color of the sliding thumb.
|
|
345
|
+
* Hex string: '#RRGGBB' or '#AARRGGBB'.
|
|
356
346
|
*/
|
|
357
|
-
|
|
347
|
+
thumbColor?: string;
|
|
358
348
|
/**
|
|
359
|
-
* Fired
|
|
349
|
+
* Fired when the selected segment changes.
|
|
350
|
+
* detail = zero-based selected index.
|
|
360
351
|
*/
|
|
361
352
|
onChange?: (event: CustomEvent<number>) => void;
|
|
362
|
-
/**
|
|
363
|
-
* Fired when the user starts interacting with the slider.
|
|
364
|
-
*/
|
|
365
|
-
onChangestart?: (event: CustomEvent<number>) => void;
|
|
366
|
-
/**
|
|
367
|
-
* Fired when the user stops interacting with the slider.
|
|
368
|
-
*/
|
|
369
|
-
onChangeend?: (event: CustomEvent<number>) => void;
|
|
370
353
|
/**
|
|
371
354
|
* HTML id attribute
|
|
372
355
|
*/
|
|
@@ -384,61 +367,32 @@ interface FlutterCupertinoSliderProps {
|
|
|
384
367
|
*/
|
|
385
368
|
className?: string;
|
|
386
369
|
}
|
|
387
|
-
|
|
388
|
-
* Element interface with methods accessible via ref
|
|
389
|
-
* @example
|
|
390
|
-
* ```tsx
|
|
391
|
-
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
392
|
-
* // Call methods on the element
|
|
393
|
-
* ref.current?.finishRefresh('success');
|
|
394
|
-
* ```
|
|
395
|
-
*/
|
|
396
|
-
interface FlutterCupertinoSliderElement extends WebFElementWithMethods<{
|
|
397
|
-
/**
|
|
398
|
-
* Get the current value.
|
|
399
|
-
*/
|
|
400
|
-
getValue(): number;
|
|
401
|
-
/**
|
|
402
|
-
* Set the current value (clamped between min and max).
|
|
403
|
-
*/
|
|
404
|
-
setValue(val: number): void;
|
|
405
|
-
}> {
|
|
370
|
+
interface FlutterCupertinoSlidingSegmentedControlElement extends WebFElementWithMethods<{}> {
|
|
406
371
|
}
|
|
407
372
|
/**
|
|
408
|
-
* Properties for <flutter-cupertino-
|
|
409
|
-
iOS-style
|
|
373
|
+
* Properties for <flutter-cupertino-sliding-segmented-control>
|
|
374
|
+
iOS-style segmented control with a sliding thumb.
|
|
410
375
|
*
|
|
411
376
|
* @example
|
|
412
377
|
* ```tsx
|
|
413
|
-
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
414
378
|
*
|
|
415
|
-
* <
|
|
416
|
-
* ref={ref}
|
|
379
|
+
* <FlutterCupertinoSlidingSegmentedControl
|
|
417
380
|
* // Add props here
|
|
418
381
|
* >
|
|
419
382
|
* Content
|
|
420
|
-
* </
|
|
421
|
-
*
|
|
422
|
-
* // Call methods on the element
|
|
423
|
-
* ref.current?.finishRefresh('success');
|
|
383
|
+
* </FlutterCupertinoSlidingSegmentedControl>
|
|
424
384
|
* ```
|
|
425
385
|
*/
|
|
426
|
-
declare const
|
|
386
|
+
declare const FlutterCupertinoSlidingSegmentedControl: React.ForwardRefExoticComponent<FlutterCupertinoSlidingSegmentedControlProps & {
|
|
427
387
|
className?: string;
|
|
428
388
|
style?: React.CSSProperties;
|
|
429
389
|
children?: React.ReactNode;
|
|
430
|
-
} & React.RefAttributes<
|
|
431
|
-
|
|
432
|
-
interface FlutterCupertinoSegmentedTabProps {
|
|
433
|
-
/**
|
|
434
|
-
* Zero-based index of the selected segment.
|
|
435
|
-
* Default: 0.
|
|
436
|
-
*/
|
|
437
|
-
currentIndex?: number;
|
|
390
|
+
} & React.RefAttributes<FlutterCupertinoSlidingSegmentedControlElement>>;
|
|
391
|
+
interface FlutterCupertinoSlidingSegmentedControlItemProps {
|
|
438
392
|
/**
|
|
439
|
-
*
|
|
393
|
+
* Text label shown for this segment.
|
|
440
394
|
*/
|
|
441
|
-
|
|
395
|
+
title?: string;
|
|
442
396
|
/**
|
|
443
397
|
* HTML id attribute
|
|
444
398
|
*/
|
|
@@ -456,32 +410,66 @@ interface FlutterCupertinoSegmentedTabProps {
|
|
|
456
410
|
*/
|
|
457
411
|
className?: string;
|
|
458
412
|
}
|
|
459
|
-
interface
|
|
413
|
+
interface FlutterCupertinoSlidingSegmentedControlItemElement extends WebFElementWithMethods<{}> {
|
|
460
414
|
}
|
|
461
415
|
/**
|
|
462
|
-
*
|
|
463
|
-
|
|
416
|
+
* Segment item for <flutter-cupertino-sliding-segmented-control>.
|
|
417
|
+
Acts as a logical segment with a title.
|
|
464
418
|
*
|
|
465
419
|
* @example
|
|
466
420
|
* ```tsx
|
|
467
421
|
*
|
|
468
|
-
* <
|
|
422
|
+
* <FlutterCupertinoSlidingSegmentedControlItem
|
|
469
423
|
* // Add props here
|
|
470
424
|
* >
|
|
471
425
|
* Content
|
|
472
|
-
* </
|
|
426
|
+
* </FlutterCupertinoSlidingSegmentedControlItem>
|
|
473
427
|
* ```
|
|
474
428
|
*/
|
|
475
|
-
declare const
|
|
429
|
+
declare const FlutterCupertinoSlidingSegmentedControlItem: React.ForwardRefExoticComponent<FlutterCupertinoSlidingSegmentedControlItemProps & {
|
|
476
430
|
className?: string;
|
|
477
431
|
style?: React.CSSProperties;
|
|
478
432
|
children?: React.ReactNode;
|
|
479
|
-
} & React.RefAttributes<
|
|
480
|
-
|
|
433
|
+
} & React.RefAttributes<FlutterCupertinoSlidingSegmentedControlItemElement>>;
|
|
434
|
+
|
|
435
|
+
interface FlutterCupertinoSliderProps {
|
|
481
436
|
/**
|
|
482
|
-
*
|
|
437
|
+
* Current value of the slider.
|
|
438
|
+
* Default: 0.0.
|
|
483
439
|
*/
|
|
484
|
-
|
|
440
|
+
val?: number;
|
|
441
|
+
/**
|
|
442
|
+
* Minimum value of the slider range.
|
|
443
|
+
* Default: 0.0.
|
|
444
|
+
*/
|
|
445
|
+
min?: number;
|
|
446
|
+
/**
|
|
447
|
+
* Maximum value of the slider range.
|
|
448
|
+
* Default: 100.0.
|
|
449
|
+
*/
|
|
450
|
+
max?: number;
|
|
451
|
+
/**
|
|
452
|
+
* Number of discrete divisions between min and max.
|
|
453
|
+
* When omitted, the slider is continuous.
|
|
454
|
+
*/
|
|
455
|
+
step?: number;
|
|
456
|
+
/**
|
|
457
|
+
* Whether the slider is disabled.
|
|
458
|
+
* Default: false.
|
|
459
|
+
*/
|
|
460
|
+
disabled?: boolean;
|
|
461
|
+
/**
|
|
462
|
+
* Fired whenever the slider value changes. detail = value.
|
|
463
|
+
*/
|
|
464
|
+
onChange?: (event: CustomEvent<number>) => void;
|
|
465
|
+
/**
|
|
466
|
+
* Fired when the user starts interacting with the slider.
|
|
467
|
+
*/
|
|
468
|
+
onChangestart?: (event: CustomEvent<number>) => void;
|
|
469
|
+
/**
|
|
470
|
+
* Fired when the user stops interacting with the slider.
|
|
471
|
+
*/
|
|
472
|
+
onChangeend?: (event: CustomEvent<number>) => void;
|
|
485
473
|
/**
|
|
486
474
|
* HTML id attribute
|
|
487
475
|
*/
|
|
@@ -499,27 +487,50 @@ interface FlutterCupertinoSegmentedTabItemProps {
|
|
|
499
487
|
*/
|
|
500
488
|
className?: string;
|
|
501
489
|
}
|
|
502
|
-
|
|
490
|
+
/**
|
|
491
|
+
* Element interface with methods accessible via ref
|
|
492
|
+
* @example
|
|
493
|
+
* ```tsx
|
|
494
|
+
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
495
|
+
* // Call methods on the element
|
|
496
|
+
* ref.current?.finishRefresh('success');
|
|
497
|
+
* ```
|
|
498
|
+
*/
|
|
499
|
+
interface FlutterCupertinoSliderElement extends WebFElementWithMethods<{
|
|
500
|
+
/**
|
|
501
|
+
* Get the current value.
|
|
502
|
+
*/
|
|
503
|
+
getValue(): number;
|
|
504
|
+
/**
|
|
505
|
+
* Set the current value (clamped between min and max).
|
|
506
|
+
*/
|
|
507
|
+
setValue(val: number): void;
|
|
508
|
+
}> {
|
|
503
509
|
}
|
|
504
510
|
/**
|
|
505
|
-
* Properties for <flutter-cupertino-
|
|
506
|
-
|
|
511
|
+
* Properties for <flutter-cupertino-slider>
|
|
512
|
+
iOS-style continuous or stepped slider.
|
|
507
513
|
*
|
|
508
514
|
* @example
|
|
509
515
|
* ```tsx
|
|
516
|
+
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
510
517
|
*
|
|
511
|
-
* <
|
|
518
|
+
* <FlutterCupertinoSlider
|
|
519
|
+
* ref={ref}
|
|
512
520
|
* // Add props here
|
|
513
521
|
* >
|
|
514
522
|
* Content
|
|
515
|
-
* </
|
|
523
|
+
* </FlutterCupertinoSlider>
|
|
524
|
+
*
|
|
525
|
+
* // Call methods on the element
|
|
526
|
+
* ref.current?.finishRefresh('success');
|
|
516
527
|
* ```
|
|
517
528
|
*/
|
|
518
|
-
declare const
|
|
529
|
+
declare const FlutterCupertinoSlider: React.ForwardRefExoticComponent<FlutterCupertinoSliderProps & {
|
|
519
530
|
className?: string;
|
|
520
531
|
style?: React.CSSProperties;
|
|
521
532
|
children?: React.ReactNode;
|
|
522
|
-
} & React.RefAttributes<
|
|
533
|
+
} & React.RefAttributes<FlutterCupertinoSliderElement>>;
|
|
523
534
|
|
|
524
535
|
interface FlutterCupertinoListSectionProps {
|
|
525
536
|
/**
|
|
@@ -2184,6 +2195,101 @@ declare const FlutterCupertinoContextMenu: React.ForwardRefExoticComponent<Flutt
|
|
|
2184
2195
|
children?: React.ReactNode;
|
|
2185
2196
|
} & React.RefAttributes<FlutterCupertinoContextMenuElement>>;
|
|
2186
2197
|
|
|
2198
|
+
interface FlutterCupertinoCheckboxProps {
|
|
2199
|
+
/**
|
|
2200
|
+
* Whether the checkbox is checked.
|
|
2201
|
+
* Default: false.
|
|
2202
|
+
*/
|
|
2203
|
+
checked?: boolean;
|
|
2204
|
+
/**
|
|
2205
|
+
* Whether the checkbox is disabled.
|
|
2206
|
+
* Default: false.
|
|
2207
|
+
*/
|
|
2208
|
+
disabled?: boolean;
|
|
2209
|
+
/**
|
|
2210
|
+
* Whether the checkbox supports a third, mixed state.
|
|
2211
|
+
* When true, Flutter's checkbox cycles false → true → null → false.
|
|
2212
|
+
* Default: false.
|
|
2213
|
+
*/
|
|
2214
|
+
tristate?: boolean;
|
|
2215
|
+
/**
|
|
2216
|
+
* Color of the checkbox when selected.
|
|
2217
|
+
* Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
|
|
2218
|
+
*/
|
|
2219
|
+
activeColor?: string;
|
|
2220
|
+
/**
|
|
2221
|
+
* Color of the check icon.
|
|
2222
|
+
* Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
|
|
2223
|
+
*/
|
|
2224
|
+
checkColor?: string;
|
|
2225
|
+
/**
|
|
2226
|
+
* Focus highlight color.
|
|
2227
|
+
* Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
|
|
2228
|
+
*/
|
|
2229
|
+
focusColor?: string;
|
|
2230
|
+
/**
|
|
2231
|
+
* Fill color when the checkbox is selected.
|
|
2232
|
+
* Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
|
|
2233
|
+
*/
|
|
2234
|
+
fillColorSelected?: string;
|
|
2235
|
+
/**
|
|
2236
|
+
* Fill color when the checkbox is disabled.
|
|
2237
|
+
* Hex string '#RRGGBB' or '#AARRGGBB', or any CSS color supported by WebF.
|
|
2238
|
+
*/
|
|
2239
|
+
fillColorDisabled?: string;
|
|
2240
|
+
/**
|
|
2241
|
+
* Whether this checkbox should focus itself if nothing else is focused.
|
|
2242
|
+
* Default: false.
|
|
2243
|
+
*/
|
|
2244
|
+
autofocus?: boolean;
|
|
2245
|
+
/**
|
|
2246
|
+
* Semantic label announced by screen readers (not visible in the UI).
|
|
2247
|
+
*/
|
|
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
|
+
/**
|
|
2255
|
+
* HTML id attribute
|
|
2256
|
+
*/
|
|
2257
|
+
id?: string;
|
|
2258
|
+
/**
|
|
2259
|
+
* Additional CSS styles
|
|
2260
|
+
*/
|
|
2261
|
+
style?: React.CSSProperties;
|
|
2262
|
+
/**
|
|
2263
|
+
* Children elements
|
|
2264
|
+
*/
|
|
2265
|
+
children?: React.ReactNode;
|
|
2266
|
+
/**
|
|
2267
|
+
* Additional CSS class names
|
|
2268
|
+
*/
|
|
2269
|
+
className?: string;
|
|
2270
|
+
}
|
|
2271
|
+
interface FlutterCupertinoCheckboxElement extends WebFElementWithMethods<{}> {
|
|
2272
|
+
}
|
|
2273
|
+
/**
|
|
2274
|
+
* Properties for <flutter-cupertino-checkbox>
|
|
2275
|
+
iOS-style checkbox.
|
|
2276
|
+
*
|
|
2277
|
+
* @example
|
|
2278
|
+
* ```tsx
|
|
2279
|
+
*
|
|
2280
|
+
* <FlutterCupertinoCheckbox
|
|
2281
|
+
* // Add props here
|
|
2282
|
+
* >
|
|
2283
|
+
* Content
|
|
2284
|
+
* </FlutterCupertinoCheckbox>
|
|
2285
|
+
* ```
|
|
2286
|
+
*/
|
|
2287
|
+
declare const FlutterCupertinoCheckbox: React.ForwardRefExoticComponent<FlutterCupertinoCheckboxProps & {
|
|
2288
|
+
className?: string;
|
|
2289
|
+
style?: React.CSSProperties;
|
|
2290
|
+
children?: React.ReactNode;
|
|
2291
|
+
} & React.RefAttributes<FlutterCupertinoCheckboxElement>>;
|
|
2292
|
+
|
|
2187
2293
|
interface FlutterCupertinoButtonProps {
|
|
2188
2294
|
/**
|
|
2189
2295
|
* Visual variant of the button.
|
|
@@ -2752,6 +2858,92 @@ declare const FlutterCupertinoTextarea: React.ForwardRefExoticComponent<FlutterC
|
|
|
2752
2858
|
children?: React.ReactNode;
|
|
2753
2859
|
} & React.RefAttributes<FlutterCupertinoTextareaElement>>;
|
|
2754
2860
|
|
|
2861
|
+
interface FlutterCupertinoSegmentedTabProps {
|
|
2862
|
+
/**
|
|
2863
|
+
* change event handler
|
|
2864
|
+
*/
|
|
2865
|
+
onChange?: (event: CustomEvent<number>) => void;
|
|
2866
|
+
/**
|
|
2867
|
+
* HTML id attribute
|
|
2868
|
+
*/
|
|
2869
|
+
id?: string;
|
|
2870
|
+
/**
|
|
2871
|
+
* Additional CSS styles
|
|
2872
|
+
*/
|
|
2873
|
+
style?: React.CSSProperties;
|
|
2874
|
+
/**
|
|
2875
|
+
* Children elements
|
|
2876
|
+
*/
|
|
2877
|
+
children?: React.ReactNode;
|
|
2878
|
+
/**
|
|
2879
|
+
* Additional CSS class names
|
|
2880
|
+
*/
|
|
2881
|
+
className?: string;
|
|
2882
|
+
}
|
|
2883
|
+
interface FlutterCupertinoSegmentedTabElement extends WebFElementWithMethods<{}> {
|
|
2884
|
+
}
|
|
2885
|
+
/**
|
|
2886
|
+
* FlutterCupertinoSegmentedTab - WebF FlutterCupertinoSegmentedTab component
|
|
2887
|
+
*
|
|
2888
|
+
* @example
|
|
2889
|
+
* ```tsx
|
|
2890
|
+
*
|
|
2891
|
+
* <FlutterCupertinoSegmentedTab
|
|
2892
|
+
* // Add props here
|
|
2893
|
+
* >
|
|
2894
|
+
* Content
|
|
2895
|
+
* </FlutterCupertinoSegmentedTab>
|
|
2896
|
+
* ```
|
|
2897
|
+
*/
|
|
2898
|
+
declare const FlutterCupertinoSegmentedTab: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabProps & {
|
|
2899
|
+
className?: string;
|
|
2900
|
+
style?: React.CSSProperties;
|
|
2901
|
+
children?: React.ReactNode;
|
|
2902
|
+
} & React.RefAttributes<FlutterCupertinoSegmentedTabElement>>;
|
|
2903
|
+
interface FlutterCupertinoSegmentedTabItemProps {
|
|
2904
|
+
/**
|
|
2905
|
+
* title property
|
|
2906
|
+
* @default undefined
|
|
2907
|
+
*/
|
|
2908
|
+
title?: string;
|
|
2909
|
+
/**
|
|
2910
|
+
* HTML id attribute
|
|
2911
|
+
*/
|
|
2912
|
+
id?: string;
|
|
2913
|
+
/**
|
|
2914
|
+
* Additional CSS styles
|
|
2915
|
+
*/
|
|
2916
|
+
style?: React.CSSProperties;
|
|
2917
|
+
/**
|
|
2918
|
+
* Children elements
|
|
2919
|
+
*/
|
|
2920
|
+
children?: React.ReactNode;
|
|
2921
|
+
/**
|
|
2922
|
+
* Additional CSS class names
|
|
2923
|
+
*/
|
|
2924
|
+
className?: string;
|
|
2925
|
+
}
|
|
2926
|
+
interface FlutterCupertinoSegmentedTabItemElement extends WebFElementWithMethods<{}> {
|
|
2927
|
+
}
|
|
2928
|
+
/**
|
|
2929
|
+
* FlutterCupertinoSegmentedTabItem - WebF FlutterCupertinoSegmentedTabItem component
|
|
2930
|
+
*
|
|
2931
|
+
* @example
|
|
2932
|
+
* ```tsx
|
|
2933
|
+
*
|
|
2934
|
+
* <FlutterCupertinoSegmentedTabItem
|
|
2935
|
+
* // Add props here
|
|
2936
|
+
* >
|
|
2937
|
+
* Content
|
|
2938
|
+
* </FlutterCupertinoSegmentedTabItem>
|
|
2939
|
+
* ```
|
|
2940
|
+
*/
|
|
2941
|
+
declare const FlutterCupertinoSegmentedTabItem: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabItemProps & {
|
|
2942
|
+
className?: string;
|
|
2943
|
+
style?: React.CSSProperties;
|
|
2944
|
+
children?: React.ReactNode;
|
|
2945
|
+
} & React.RefAttributes<FlutterCupertinoSegmentedTabItemElement>>;
|
|
2946
|
+
|
|
2755
2947
|
interface FlutterCupertinoSearchInputProps {
|
|
2756
2948
|
/**
|
|
2757
2949
|
* val property
|
|
@@ -3966,82 +4158,4 @@ declare const FlutterCupertinoDatePicker: React.ForwardRefExoticComponent<Flutte
|
|
|
3966
4158
|
children?: React.ReactNode;
|
|
3967
4159
|
} & React.RefAttributes<FlutterCupertinoDatePickerElement>>;
|
|
3968
4160
|
|
|
3969
|
-
|
|
3970
|
-
/**
|
|
3971
|
-
* val property
|
|
3972
|
-
* @default undefined
|
|
3973
|
-
*/
|
|
3974
|
-
val?: string;
|
|
3975
|
-
/**
|
|
3976
|
-
* disabled property
|
|
3977
|
-
* @default undefined
|
|
3978
|
-
*/
|
|
3979
|
-
disabled?: boolean;
|
|
3980
|
-
/**
|
|
3981
|
-
* activeColor property
|
|
3982
|
-
* @default undefined
|
|
3983
|
-
*/
|
|
3984
|
-
activeColor?: string;
|
|
3985
|
-
/**
|
|
3986
|
-
* checkColor property
|
|
3987
|
-
* @default undefined
|
|
3988
|
-
*/
|
|
3989
|
-
checkColor?: string;
|
|
3990
|
-
/**
|
|
3991
|
-
* focusColor property
|
|
3992
|
-
* @default undefined
|
|
3993
|
-
*/
|
|
3994
|
-
focusColor?: string;
|
|
3995
|
-
/**
|
|
3996
|
-
* fillColorSelected property
|
|
3997
|
-
* @default undefined
|
|
3998
|
-
*/
|
|
3999
|
-
fillColorSelected?: string;
|
|
4000
|
-
/**
|
|
4001
|
-
* fillColorDisabled property
|
|
4002
|
-
* @default undefined
|
|
4003
|
-
*/
|
|
4004
|
-
fillColorDisabled?: string;
|
|
4005
|
-
/**
|
|
4006
|
-
* change event handler
|
|
4007
|
-
*/
|
|
4008
|
-
onChange?: (event: CustomEvent<boolean>) => void;
|
|
4009
|
-
/**
|
|
4010
|
-
* HTML id attribute
|
|
4011
|
-
*/
|
|
4012
|
-
id?: string;
|
|
4013
|
-
/**
|
|
4014
|
-
* Additional CSS styles
|
|
4015
|
-
*/
|
|
4016
|
-
style?: React.CSSProperties;
|
|
4017
|
-
/**
|
|
4018
|
-
* Children elements
|
|
4019
|
-
*/
|
|
4020
|
-
children?: React.ReactNode;
|
|
4021
|
-
/**
|
|
4022
|
-
* Additional CSS class names
|
|
4023
|
-
*/
|
|
4024
|
-
className?: string;
|
|
4025
|
-
}
|
|
4026
|
-
interface FlutterCupertinoCheckboxElement extends WebFElementWithMethods<{}> {
|
|
4027
|
-
}
|
|
4028
|
-
/**
|
|
4029
|
-
* FlutterCupertinoCheckbox - WebF FlutterCupertinoCheckbox component
|
|
4030
|
-
*
|
|
4031
|
-
* @example
|
|
4032
|
-
* ```tsx
|
|
4033
|
-
*
|
|
4034
|
-
* <FlutterCupertinoCheckbox
|
|
4035
|
-
* // Add props here
|
|
4036
|
-
* >
|
|
4037
|
-
* Content
|
|
4038
|
-
* </FlutterCupertinoCheckbox>
|
|
4039
|
-
* ```
|
|
4040
|
-
*/
|
|
4041
|
-
declare const FlutterCupertinoCheckbox: React.ForwardRefExoticComponent<FlutterCupertinoCheckboxProps & {
|
|
4042
|
-
className?: string;
|
|
4043
|
-
style?: React.CSSProperties;
|
|
4044
|
-
children?: React.ReactNode;
|
|
4045
|
-
} & React.RefAttributes<FlutterCupertinoCheckboxElement>>;
|
|
4046
|
-
|
|
4047
|
-
export { CupertinoColors, CupertinoIcons, FlutterCupertinoActionSheet, type FlutterCupertinoActionSheetElement, FlutterCupertinoAlert, type FlutterCupertinoAlertElement, FlutterCupertinoButton, type FlutterCupertinoButtonElement, FlutterCupertinoCheckbox, type FlutterCupertinoCheckboxElement, FlutterCupertinoContextMenu, type FlutterCupertinoContextMenuElement, FlutterCupertinoDatePicker, type FlutterCupertinoDatePickerElement, FlutterCupertinoFormRow, type FlutterCupertinoFormRowElement, FlutterCupertinoFormRowError, type FlutterCupertinoFormRowErrorElement, FlutterCupertinoFormRowHelper, type FlutterCupertinoFormRowHelperElement, FlutterCupertinoFormRowPrefix, type FlutterCupertinoFormRowPrefixElement, FlutterCupertinoFormSection, type FlutterCupertinoFormSectionElement, FlutterCupertinoFormSectionFooter, type FlutterCupertinoFormSectionFooterElement, FlutterCupertinoFormSectionHeader, type FlutterCupertinoFormSectionHeaderElement, FlutterCupertinoIcon, type FlutterCupertinoIconElement, FlutterCupertinoInput, type FlutterCupertinoInputElement, FlutterCupertinoInputPrefix, type FlutterCupertinoInputPrefixElement, FlutterCupertinoInputSuffix, type FlutterCupertinoInputSuffixElement, FlutterCupertinoListSection, type FlutterCupertinoListSectionElement, FlutterCupertinoListSectionFooter, type FlutterCupertinoListSectionFooterElement, FlutterCupertinoListSectionHeader, type FlutterCupertinoListSectionHeaderElement, FlutterCupertinoListTile, FlutterCupertinoListTileAdditionalInfo, type FlutterCupertinoListTileAdditionalInfoElement, type FlutterCupertinoListTileElement, FlutterCupertinoListTileLeading, type FlutterCupertinoListTileLeadingElement, FlutterCupertinoListTileSubtitle, type FlutterCupertinoListTileSubtitleElement, FlutterCupertinoListTileTrailing, type FlutterCupertinoListTileTrailingElement, FlutterCupertinoLoading, type FlutterCupertinoLoadingElement, FlutterCupertinoModalPopup, type FlutterCupertinoModalPopupElement, FlutterCupertinoPicker, type FlutterCupertinoPickerElement, FlutterCupertinoPickerItem, type FlutterCupertinoPickerItemElement, FlutterCupertinoRadio, type FlutterCupertinoRadioElement, FlutterCupertinoSearchInput, type FlutterCupertinoSearchInputElement, FlutterCupertinoSegmentedTab, type FlutterCupertinoSegmentedTabElement, FlutterCupertinoSegmentedTabItem, type FlutterCupertinoSegmentedTabItemElement, FlutterCupertinoSlider, type FlutterCupertinoSliderElement, FlutterCupertinoSwitch, type FlutterCupertinoSwitchElement, FlutterCupertinoTabBar, type FlutterCupertinoTabBarElement, FlutterCupertinoTabBarItem, type FlutterCupertinoTabBarItemElement, FlutterCupertinoTabScaffold, type FlutterCupertinoTabScaffoldElement, FlutterCupertinoTabScaffoldTab, type FlutterCupertinoTabScaffoldTabElement, FlutterCupertinoTabView, type FlutterCupertinoTabViewElement, FlutterCupertinoTextarea, type FlutterCupertinoTextareaElement, FlutterCupertinoTimerPicker, type FlutterCupertinoTimerPickerElement, FlutterCupertinoToast, type FlutterCupertinoToastElement };
|
|
4161
|
+
export { CupertinoColors, CupertinoIcons, FlutterCupertinoActionSheet, type FlutterCupertinoActionSheetElement, FlutterCupertinoAlert, type FlutterCupertinoAlertElement, FlutterCupertinoButton, type FlutterCupertinoButtonElement, FlutterCupertinoCheckbox, type FlutterCupertinoCheckboxElement, FlutterCupertinoContextMenu, type FlutterCupertinoContextMenuElement, FlutterCupertinoDatePicker, type FlutterCupertinoDatePickerElement, FlutterCupertinoFormRow, type FlutterCupertinoFormRowElement, FlutterCupertinoFormRowError, type FlutterCupertinoFormRowErrorElement, FlutterCupertinoFormRowHelper, type FlutterCupertinoFormRowHelperElement, FlutterCupertinoFormRowPrefix, type FlutterCupertinoFormRowPrefixElement, FlutterCupertinoFormSection, type FlutterCupertinoFormSectionElement, FlutterCupertinoFormSectionFooter, type FlutterCupertinoFormSectionFooterElement, FlutterCupertinoFormSectionHeader, type FlutterCupertinoFormSectionHeaderElement, FlutterCupertinoIcon, type FlutterCupertinoIconElement, FlutterCupertinoInput, type FlutterCupertinoInputElement, FlutterCupertinoInputPrefix, type FlutterCupertinoInputPrefixElement, FlutterCupertinoInputSuffix, type FlutterCupertinoInputSuffixElement, FlutterCupertinoListSection, type FlutterCupertinoListSectionElement, FlutterCupertinoListSectionFooter, type FlutterCupertinoListSectionFooterElement, FlutterCupertinoListSectionHeader, type FlutterCupertinoListSectionHeaderElement, FlutterCupertinoListTile, FlutterCupertinoListTileAdditionalInfo, type FlutterCupertinoListTileAdditionalInfoElement, type FlutterCupertinoListTileElement, FlutterCupertinoListTileLeading, type FlutterCupertinoListTileLeadingElement, FlutterCupertinoListTileSubtitle, type FlutterCupertinoListTileSubtitleElement, FlutterCupertinoListTileTrailing, type FlutterCupertinoListTileTrailingElement, FlutterCupertinoLoading, type FlutterCupertinoLoadingElement, FlutterCupertinoModalPopup, type FlutterCupertinoModalPopupElement, FlutterCupertinoPicker, type FlutterCupertinoPickerElement, FlutterCupertinoPickerItem, type FlutterCupertinoPickerItemElement, FlutterCupertinoRadio, type FlutterCupertinoRadioElement, FlutterCupertinoSearchInput, type FlutterCupertinoSearchInputElement, FlutterCupertinoSegmentedTab, type FlutterCupertinoSegmentedTabElement, FlutterCupertinoSegmentedTabItem, type FlutterCupertinoSegmentedTabItemElement, FlutterCupertinoSlider, type FlutterCupertinoSliderElement, FlutterCupertinoSlidingSegmentedControl, type FlutterCupertinoSlidingSegmentedControlElement, FlutterCupertinoSlidingSegmentedControlItem, type FlutterCupertinoSlidingSegmentedControlItemElement, FlutterCupertinoSwitch, type FlutterCupertinoSwitchElement, FlutterCupertinoTabBar, type FlutterCupertinoTabBarElement, FlutterCupertinoTabBarItem, type FlutterCupertinoTabBarItemElement, FlutterCupertinoTabScaffold, type FlutterCupertinoTabScaffoldElement, FlutterCupertinoTabScaffoldTab, type FlutterCupertinoTabScaffoldTabElement, FlutterCupertinoTabView, type FlutterCupertinoTabViewElement, FlutterCupertinoTextarea, type FlutterCupertinoTextareaElement, FlutterCupertinoTimerPicker, type FlutterCupertinoTimerPickerElement, FlutterCupertinoToast, type FlutterCupertinoToastElement };
|