@openwebf/react-cupertino-ui 0.3.13 → 0.3.15
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 +257 -200
- package/dist/index.d.ts +257 -200
- package/dist/index.js +145 -123
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +144 -123
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -265,6 +265,262 @@ declare const FlutterCupertinoTabScaffoldTab: React.ForwardRefExoticComponent<Fl
|
|
|
265
265
|
children?: React.ReactNode;
|
|
266
266
|
} & React.RefAttributes<FlutterCupertinoTabScaffoldTabElement>>;
|
|
267
267
|
|
|
268
|
+
interface FlutterCupertinoSwitchProps {
|
|
269
|
+
/**
|
|
270
|
+
* Whether the switch is on.
|
|
271
|
+
* Default: false.
|
|
272
|
+
*/
|
|
273
|
+
checked?: boolean;
|
|
274
|
+
/**
|
|
275
|
+
* Whether the switch is disabled.
|
|
276
|
+
* Default: false.
|
|
277
|
+
*/
|
|
278
|
+
disabled?: boolean;
|
|
279
|
+
/**
|
|
280
|
+
* Track color when the switch is on.
|
|
281
|
+
* Hex string '#RRGGBB' or '#AARRGGBB'.
|
|
282
|
+
*/
|
|
283
|
+
activeColor?: string;
|
|
284
|
+
/**
|
|
285
|
+
* Track color when the switch is off.
|
|
286
|
+
* Hex string '#RRGGBB' or '#AARRGGBB'.
|
|
287
|
+
*/
|
|
288
|
+
inactiveColor?: string;
|
|
289
|
+
/**
|
|
290
|
+
* Fired when the switch value changes. detail = checked state
|
|
291
|
+
*/
|
|
292
|
+
onChange?: (event: CustomEvent<boolean>) => void;
|
|
293
|
+
/**
|
|
294
|
+
* HTML id attribute
|
|
295
|
+
*/
|
|
296
|
+
id?: string;
|
|
297
|
+
/**
|
|
298
|
+
* Additional CSS styles
|
|
299
|
+
*/
|
|
300
|
+
style?: React.CSSProperties;
|
|
301
|
+
/**
|
|
302
|
+
* Children elements
|
|
303
|
+
*/
|
|
304
|
+
children?: React.ReactNode;
|
|
305
|
+
/**
|
|
306
|
+
* Additional CSS class names
|
|
307
|
+
*/
|
|
308
|
+
className?: string;
|
|
309
|
+
}
|
|
310
|
+
interface FlutterCupertinoSwitchElement extends WebFElementWithMethods<{}> {
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Properties for <flutter-cupertino-switch>
|
|
314
|
+
iOS-style toggle switch.
|
|
315
|
+
*
|
|
316
|
+
* @example
|
|
317
|
+
* ```tsx
|
|
318
|
+
*
|
|
319
|
+
* <FlutterCupertinoSwitch
|
|
320
|
+
* // Add props here
|
|
321
|
+
* >
|
|
322
|
+
* Content
|
|
323
|
+
* </FlutterCupertinoSwitch>
|
|
324
|
+
* ```
|
|
325
|
+
*/
|
|
326
|
+
declare const FlutterCupertinoSwitch: React.ForwardRefExoticComponent<FlutterCupertinoSwitchProps & {
|
|
327
|
+
className?: string;
|
|
328
|
+
style?: React.CSSProperties;
|
|
329
|
+
children?: React.ReactNode;
|
|
330
|
+
} & React.RefAttributes<FlutterCupertinoSwitchElement>>;
|
|
331
|
+
|
|
332
|
+
interface FlutterCupertinoSliderProps {
|
|
333
|
+
/**
|
|
334
|
+
* Current value of the slider.
|
|
335
|
+
* Default: 0.0.
|
|
336
|
+
*/
|
|
337
|
+
val?: number;
|
|
338
|
+
/**
|
|
339
|
+
* Minimum value of the slider range.
|
|
340
|
+
* Default: 0.0.
|
|
341
|
+
*/
|
|
342
|
+
min?: number;
|
|
343
|
+
/**
|
|
344
|
+
* Maximum value of the slider range.
|
|
345
|
+
* Default: 100.0.
|
|
346
|
+
*/
|
|
347
|
+
max?: number;
|
|
348
|
+
/**
|
|
349
|
+
* Number of discrete divisions between min and max.
|
|
350
|
+
* When omitted, the slider is continuous.
|
|
351
|
+
*/
|
|
352
|
+
step?: number;
|
|
353
|
+
/**
|
|
354
|
+
* Whether the slider is disabled.
|
|
355
|
+
* Default: false.
|
|
356
|
+
*/
|
|
357
|
+
disabled?: boolean;
|
|
358
|
+
/**
|
|
359
|
+
* Fired whenever the slider value changes. detail = value.
|
|
360
|
+
*/
|
|
361
|
+
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
|
+
/**
|
|
371
|
+
* HTML id attribute
|
|
372
|
+
*/
|
|
373
|
+
id?: string;
|
|
374
|
+
/**
|
|
375
|
+
* Additional CSS styles
|
|
376
|
+
*/
|
|
377
|
+
style?: React.CSSProperties;
|
|
378
|
+
/**
|
|
379
|
+
* Children elements
|
|
380
|
+
*/
|
|
381
|
+
children?: React.ReactNode;
|
|
382
|
+
/**
|
|
383
|
+
* Additional CSS class names
|
|
384
|
+
*/
|
|
385
|
+
className?: string;
|
|
386
|
+
}
|
|
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
|
+
}> {
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* Properties for <flutter-cupertino-slider>
|
|
409
|
+
iOS-style continuous or stepped slider.
|
|
410
|
+
*
|
|
411
|
+
* @example
|
|
412
|
+
* ```tsx
|
|
413
|
+
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
414
|
+
*
|
|
415
|
+
* <FlutterCupertinoSlider
|
|
416
|
+
* ref={ref}
|
|
417
|
+
* // Add props here
|
|
418
|
+
* >
|
|
419
|
+
* Content
|
|
420
|
+
* </FlutterCupertinoSlider>
|
|
421
|
+
*
|
|
422
|
+
* // Call methods on the element
|
|
423
|
+
* ref.current?.finishRefresh('success');
|
|
424
|
+
* ```
|
|
425
|
+
*/
|
|
426
|
+
declare const FlutterCupertinoSlider: React.ForwardRefExoticComponent<FlutterCupertinoSliderProps & {
|
|
427
|
+
className?: string;
|
|
428
|
+
style?: React.CSSProperties;
|
|
429
|
+
children?: React.ReactNode;
|
|
430
|
+
} & React.RefAttributes<FlutterCupertinoSliderElement>>;
|
|
431
|
+
|
|
432
|
+
interface FlutterCupertinoSegmentedTabProps {
|
|
433
|
+
/**
|
|
434
|
+
* Zero-based index of the selected segment.
|
|
435
|
+
* Default: 0.
|
|
436
|
+
*/
|
|
437
|
+
currentIndex?: number;
|
|
438
|
+
/**
|
|
439
|
+
* Fired when the selected segment changes. detail = selected index
|
|
440
|
+
*/
|
|
441
|
+
onChange?: (event: CustomEvent<number>) => void;
|
|
442
|
+
/**
|
|
443
|
+
* HTML id attribute
|
|
444
|
+
*/
|
|
445
|
+
id?: string;
|
|
446
|
+
/**
|
|
447
|
+
* Additional CSS styles
|
|
448
|
+
*/
|
|
449
|
+
style?: React.CSSProperties;
|
|
450
|
+
/**
|
|
451
|
+
* Children elements
|
|
452
|
+
*/
|
|
453
|
+
children?: React.ReactNode;
|
|
454
|
+
/**
|
|
455
|
+
* Additional CSS class names
|
|
456
|
+
*/
|
|
457
|
+
className?: string;
|
|
458
|
+
}
|
|
459
|
+
interface FlutterCupertinoSegmentedTabElement extends WebFElementWithMethods<{}> {
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
* Properties for <flutter-cupertino-segmented-tab>
|
|
463
|
+
Sliding segmented control with tabbed content.
|
|
464
|
+
*
|
|
465
|
+
* @example
|
|
466
|
+
* ```tsx
|
|
467
|
+
*
|
|
468
|
+
* <FlutterCupertinoSegmentedTab
|
|
469
|
+
* // Add props here
|
|
470
|
+
* >
|
|
471
|
+
* Content
|
|
472
|
+
* </FlutterCupertinoSegmentedTab>
|
|
473
|
+
* ```
|
|
474
|
+
*/
|
|
475
|
+
declare const FlutterCupertinoSegmentedTab: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabProps & {
|
|
476
|
+
className?: string;
|
|
477
|
+
style?: React.CSSProperties;
|
|
478
|
+
children?: React.ReactNode;
|
|
479
|
+
} & React.RefAttributes<FlutterCupertinoSegmentedTabElement>>;
|
|
480
|
+
interface FlutterCupertinoSegmentedTabItemProps {
|
|
481
|
+
/**
|
|
482
|
+
* Label text shown in the segment.
|
|
483
|
+
*/
|
|
484
|
+
title?: string;
|
|
485
|
+
/**
|
|
486
|
+
* HTML id attribute
|
|
487
|
+
*/
|
|
488
|
+
id?: string;
|
|
489
|
+
/**
|
|
490
|
+
* Additional CSS styles
|
|
491
|
+
*/
|
|
492
|
+
style?: React.CSSProperties;
|
|
493
|
+
/**
|
|
494
|
+
* Children elements
|
|
495
|
+
*/
|
|
496
|
+
children?: React.ReactNode;
|
|
497
|
+
/**
|
|
498
|
+
* Additional CSS class names
|
|
499
|
+
*/
|
|
500
|
+
className?: string;
|
|
501
|
+
}
|
|
502
|
+
interface FlutterCupertinoSegmentedTabItemElement extends WebFElementWithMethods<{}> {
|
|
503
|
+
}
|
|
504
|
+
/**
|
|
505
|
+
* Properties for <flutter-cupertino-segmented-tab-item>
|
|
506
|
+
Child item representing a single segment.
|
|
507
|
+
*
|
|
508
|
+
* @example
|
|
509
|
+
* ```tsx
|
|
510
|
+
*
|
|
511
|
+
* <FlutterCupertinoSegmentedTabItem
|
|
512
|
+
* // Add props here
|
|
513
|
+
* >
|
|
514
|
+
* Content
|
|
515
|
+
* </FlutterCupertinoSegmentedTabItem>
|
|
516
|
+
* ```
|
|
517
|
+
*/
|
|
518
|
+
declare const FlutterCupertinoSegmentedTabItem: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabItemProps & {
|
|
519
|
+
className?: string;
|
|
520
|
+
style?: React.CSSProperties;
|
|
521
|
+
children?: React.ReactNode;
|
|
522
|
+
} & React.RefAttributes<FlutterCupertinoSegmentedTabItemElement>>;
|
|
523
|
+
|
|
268
524
|
interface FlutterCupertinoListSectionProps {
|
|
269
525
|
/**
|
|
270
526
|
* Whether to use the inset grouped style (iOS Settings-style sections).
|
|
@@ -2496,205 +2752,6 @@ declare const FlutterCupertinoTextarea: React.ForwardRefExoticComponent<FlutterC
|
|
|
2496
2752
|
children?: React.ReactNode;
|
|
2497
2753
|
} & React.RefAttributes<FlutterCupertinoTextareaElement>>;
|
|
2498
2754
|
|
|
2499
|
-
interface FlutterCupertinoSwitchProps {
|
|
2500
|
-
/**
|
|
2501
|
-
* checked property
|
|
2502
|
-
* @default undefined
|
|
2503
|
-
*/
|
|
2504
|
-
checked?: boolean;
|
|
2505
|
-
/**
|
|
2506
|
-
* disabled property
|
|
2507
|
-
* @default undefined
|
|
2508
|
-
*/
|
|
2509
|
-
disabled?: boolean;
|
|
2510
|
-
/**
|
|
2511
|
-
* activeColor property
|
|
2512
|
-
* @default undefined
|
|
2513
|
-
*/
|
|
2514
|
-
activeColor?: string;
|
|
2515
|
-
/**
|
|
2516
|
-
* inactiveColor property
|
|
2517
|
-
* @default undefined
|
|
2518
|
-
*/
|
|
2519
|
-
inactiveColor?: string;
|
|
2520
|
-
/**
|
|
2521
|
-
* change event handler
|
|
2522
|
-
*/
|
|
2523
|
-
onChange?: (event: CustomEvent<boolean>) => void;
|
|
2524
|
-
/**
|
|
2525
|
-
* HTML id attribute
|
|
2526
|
-
*/
|
|
2527
|
-
id?: string;
|
|
2528
|
-
/**
|
|
2529
|
-
* Additional CSS styles
|
|
2530
|
-
*/
|
|
2531
|
-
style?: React.CSSProperties;
|
|
2532
|
-
/**
|
|
2533
|
-
* Children elements
|
|
2534
|
-
*/
|
|
2535
|
-
children?: React.ReactNode;
|
|
2536
|
-
/**
|
|
2537
|
-
* Additional CSS class names
|
|
2538
|
-
*/
|
|
2539
|
-
className?: string;
|
|
2540
|
-
}
|
|
2541
|
-
interface FlutterCupertinoSwitchElement extends WebFElementWithMethods<{}> {
|
|
2542
|
-
}
|
|
2543
|
-
/**
|
|
2544
|
-
* FlutterCupertinoSwitch - WebF FlutterCupertinoSwitch component
|
|
2545
|
-
*
|
|
2546
|
-
* @example
|
|
2547
|
-
* ```tsx
|
|
2548
|
-
*
|
|
2549
|
-
* <FlutterCupertinoSwitch
|
|
2550
|
-
* // Add props here
|
|
2551
|
-
* >
|
|
2552
|
-
* Content
|
|
2553
|
-
* </FlutterCupertinoSwitch>
|
|
2554
|
-
* ```
|
|
2555
|
-
*/
|
|
2556
|
-
declare const FlutterCupertinoSwitch: React.ForwardRefExoticComponent<FlutterCupertinoSwitchProps & {
|
|
2557
|
-
className?: string;
|
|
2558
|
-
style?: React.CSSProperties;
|
|
2559
|
-
children?: React.ReactNode;
|
|
2560
|
-
} & React.RefAttributes<FlutterCupertinoSwitchElement>>;
|
|
2561
|
-
|
|
2562
|
-
interface FlutterCupertinoSliderProps {
|
|
2563
|
-
/**
|
|
2564
|
-
* val property
|
|
2565
|
-
* @default undefined
|
|
2566
|
-
*/
|
|
2567
|
-
val?: number;
|
|
2568
|
-
/**
|
|
2569
|
-
* min property
|
|
2570
|
-
* @default undefined
|
|
2571
|
-
*/
|
|
2572
|
-
min?: number;
|
|
2573
|
-
/**
|
|
2574
|
-
* max property
|
|
2575
|
-
* @default undefined
|
|
2576
|
-
*/
|
|
2577
|
-
max?: number;
|
|
2578
|
-
/**
|
|
2579
|
-
* step property
|
|
2580
|
-
* @default undefined
|
|
2581
|
-
*/
|
|
2582
|
-
step?: number;
|
|
2583
|
-
/**
|
|
2584
|
-
* disabled property
|
|
2585
|
-
* @default undefined
|
|
2586
|
-
*/
|
|
2587
|
-
disabled?: boolean;
|
|
2588
|
-
/**
|
|
2589
|
-
* change event handler
|
|
2590
|
-
*/
|
|
2591
|
-
onChange?: (event: CustomEvent<number>) => void;
|
|
2592
|
-
/**
|
|
2593
|
-
* changestart event handler
|
|
2594
|
-
*/
|
|
2595
|
-
onChangestart?: (event: CustomEvent<number>) => void;
|
|
2596
|
-
/**
|
|
2597
|
-
* changeend event handler
|
|
2598
|
-
*/
|
|
2599
|
-
onChangeend?: (event: CustomEvent<number>) => void;
|
|
2600
|
-
/**
|
|
2601
|
-
* HTML id attribute
|
|
2602
|
-
*/
|
|
2603
|
-
id?: string;
|
|
2604
|
-
/**
|
|
2605
|
-
* Additional CSS styles
|
|
2606
|
-
*/
|
|
2607
|
-
style?: React.CSSProperties;
|
|
2608
|
-
/**
|
|
2609
|
-
* Children elements
|
|
2610
|
-
*/
|
|
2611
|
-
children?: React.ReactNode;
|
|
2612
|
-
/**
|
|
2613
|
-
* Additional CSS class names
|
|
2614
|
-
*/
|
|
2615
|
-
className?: string;
|
|
2616
|
-
}
|
|
2617
|
-
/**
|
|
2618
|
-
* Element interface with methods accessible via ref
|
|
2619
|
-
* @example
|
|
2620
|
-
* ```tsx
|
|
2621
|
-
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
2622
|
-
* // Call methods on the element
|
|
2623
|
-
* ref.current?.finishRefresh('success');
|
|
2624
|
-
* ```
|
|
2625
|
-
*/
|
|
2626
|
-
interface FlutterCupertinoSliderElement extends WebFElementWithMethods<{
|
|
2627
|
-
getValue(): number;
|
|
2628
|
-
setValue(val: number): void;
|
|
2629
|
-
}> {
|
|
2630
|
-
}
|
|
2631
|
-
/**
|
|
2632
|
-
* FlutterCupertinoSlider - WebF FlutterCupertinoSlider component
|
|
2633
|
-
*
|
|
2634
|
-
* @example
|
|
2635
|
-
* ```tsx
|
|
2636
|
-
* const ref = useRef<FlutterCupertinoSliderElement>(null);
|
|
2637
|
-
*
|
|
2638
|
-
* <FlutterCupertinoSlider
|
|
2639
|
-
* ref={ref}
|
|
2640
|
-
* // Add props here
|
|
2641
|
-
* >
|
|
2642
|
-
* Content
|
|
2643
|
-
* </FlutterCupertinoSlider>
|
|
2644
|
-
*
|
|
2645
|
-
* // Call methods on the element
|
|
2646
|
-
* ref.current?.finishRefresh('success');
|
|
2647
|
-
* ```
|
|
2648
|
-
*/
|
|
2649
|
-
declare const FlutterCupertinoSlider: React.ForwardRefExoticComponent<FlutterCupertinoSliderProps & {
|
|
2650
|
-
className?: string;
|
|
2651
|
-
style?: React.CSSProperties;
|
|
2652
|
-
children?: React.ReactNode;
|
|
2653
|
-
} & React.RefAttributes<FlutterCupertinoSliderElement>>;
|
|
2654
|
-
|
|
2655
|
-
interface FlutterCupertinoSegmentedTabProps {
|
|
2656
|
-
/**
|
|
2657
|
-
* change event handler
|
|
2658
|
-
*/
|
|
2659
|
-
onChange?: (event: CustomEvent<number>) => void;
|
|
2660
|
-
/**
|
|
2661
|
-
* HTML id attribute
|
|
2662
|
-
*/
|
|
2663
|
-
id?: string;
|
|
2664
|
-
/**
|
|
2665
|
-
* Additional CSS styles
|
|
2666
|
-
*/
|
|
2667
|
-
style?: React.CSSProperties;
|
|
2668
|
-
/**
|
|
2669
|
-
* Children elements
|
|
2670
|
-
*/
|
|
2671
|
-
children?: React.ReactNode;
|
|
2672
|
-
/**
|
|
2673
|
-
* Additional CSS class names
|
|
2674
|
-
*/
|
|
2675
|
-
className?: string;
|
|
2676
|
-
}
|
|
2677
|
-
interface FlutterCupertinoSegmentedTabElement extends WebFElementWithMethods<{}> {
|
|
2678
|
-
}
|
|
2679
|
-
/**
|
|
2680
|
-
* FlutterCupertinoSegmentedTab - WebF FlutterCupertinoSegmentedTab component
|
|
2681
|
-
*
|
|
2682
|
-
* @example
|
|
2683
|
-
* ```tsx
|
|
2684
|
-
*
|
|
2685
|
-
* <FlutterCupertinoSegmentedTab
|
|
2686
|
-
* // Add props here
|
|
2687
|
-
* >
|
|
2688
|
-
* Content
|
|
2689
|
-
* </FlutterCupertinoSegmentedTab>
|
|
2690
|
-
* ```
|
|
2691
|
-
*/
|
|
2692
|
-
declare const FlutterCupertinoSegmentedTab: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabProps & {
|
|
2693
|
-
className?: string;
|
|
2694
|
-
style?: React.CSSProperties;
|
|
2695
|
-
children?: React.ReactNode;
|
|
2696
|
-
} & React.RefAttributes<FlutterCupertinoSegmentedTabElement>>;
|
|
2697
|
-
|
|
2698
2755
|
interface FlutterCupertinoSearchInputProps {
|
|
2699
2756
|
/**
|
|
2700
2757
|
* val property
|
|
@@ -3987,4 +4044,4 @@ declare const FlutterCupertinoCheckbox: React.ForwardRefExoticComponent<FlutterC
|
|
|
3987
4044
|
children?: React.ReactNode;
|
|
3988
4045
|
} & React.RefAttributes<FlutterCupertinoCheckboxElement>>;
|
|
3989
4046
|
|
|
3990
|
-
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, 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 };
|
|
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 };
|