@openwebf/react-cupertino-ui 0.3.23 → 0.3.25
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 +118 -1288
- package/dist/index.d.ts +118 -1288
- package/dist/index.js +61 -615
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -594
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -629,21 +629,121 @@ declare const FlutterCupertinoRadio: React.ForwardRefExoticComponent<FlutterCupe
|
|
|
629
629
|
children?: React.ReactNode;
|
|
630
630
|
} & React.RefAttributes<FlutterCupertinoRadioElement>>;
|
|
631
631
|
|
|
632
|
+
interface FlutterCupertinoModalPopupProps {
|
|
633
|
+
/**
|
|
634
|
+
* Whether the popup is currently visible.
|
|
635
|
+
*
|
|
636
|
+
* Usually controlled via the imperative `show()` / `hide()` methods,
|
|
637
|
+
* but can also be toggled directly via this property.
|
|
638
|
+
*/
|
|
639
|
+
visible?: boolean;
|
|
640
|
+
/**
|
|
641
|
+
* Fixed height of the popup content in logical pixels.
|
|
642
|
+
* Example: 200 for ~200px popup height.
|
|
643
|
+
* When omitted, the popup height is driven by its content.
|
|
644
|
+
*/
|
|
645
|
+
height?: number;
|
|
646
|
+
/**
|
|
647
|
+
* Whether the popup surface should use the standard Cupertino
|
|
648
|
+
* background and border styling.
|
|
649
|
+
* Default: true.
|
|
650
|
+
*/
|
|
651
|
+
surfacePainted?: boolean;
|
|
652
|
+
/**
|
|
653
|
+
* Whether tapping on the background mask should dismiss the popup.
|
|
654
|
+
* Default: true.
|
|
655
|
+
*/
|
|
656
|
+
maskClosable?: boolean;
|
|
657
|
+
/**
|
|
658
|
+
* Background mask opacity (0.0–1.0).
|
|
659
|
+
* Default: 0.4 (semi-opaque).
|
|
660
|
+
*/
|
|
661
|
+
backgroundOpacity?: number;
|
|
662
|
+
/**
|
|
663
|
+
* Fired when the popup is dismissed, either by:
|
|
664
|
+
* - tapping the mask (when maskClosable is true),
|
|
665
|
+
* - calling hide(),
|
|
666
|
+
* - or system back gesture.
|
|
667
|
+
*/
|
|
668
|
+
onClose?: (event: CustomEvent<void>) => void;
|
|
669
|
+
/**
|
|
670
|
+
* HTML id attribute
|
|
671
|
+
*/
|
|
672
|
+
id?: string;
|
|
673
|
+
/**
|
|
674
|
+
* Additional CSS styles
|
|
675
|
+
*/
|
|
676
|
+
style?: React.CSSProperties;
|
|
677
|
+
/**
|
|
678
|
+
* Children elements
|
|
679
|
+
*/
|
|
680
|
+
children?: React.ReactNode;
|
|
681
|
+
/**
|
|
682
|
+
* Additional CSS class names
|
|
683
|
+
*/
|
|
684
|
+
className?: string;
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* Element interface with methods accessible via ref
|
|
688
|
+
* @example
|
|
689
|
+
* ```tsx
|
|
690
|
+
* const ref = useRef<FlutterCupertinoModalPopupElement>(null);
|
|
691
|
+
* // Call methods on the element
|
|
692
|
+
* ref.current?.finishRefresh('success');
|
|
693
|
+
* ```
|
|
694
|
+
*/
|
|
695
|
+
interface FlutterCupertinoModalPopupElement extends WebFElementWithMethods<{
|
|
696
|
+
/**
|
|
697
|
+
* Show the popup.
|
|
698
|
+
*/
|
|
699
|
+
show(): void;
|
|
700
|
+
/**
|
|
701
|
+
* Hide the popup if it is currently visible.
|
|
702
|
+
*/
|
|
703
|
+
hide(): void;
|
|
704
|
+
}> {
|
|
705
|
+
}
|
|
706
|
+
/**
|
|
707
|
+
* Properties for <flutter-cupertino-modal-popup>.
|
|
708
|
+
Generic Cupertino-style modal popup overlay driven by WebF and Flutter.
|
|
709
|
+
Content is provided by the element's children and is shown in a bottom
|
|
710
|
+
sheet using Flutter's `showCupertinoModalPopup`.
|
|
711
|
+
*
|
|
712
|
+
* @example
|
|
713
|
+
* ```tsx
|
|
714
|
+
* const ref = useRef<FlutterCupertinoModalPopupElement>(null);
|
|
715
|
+
*
|
|
716
|
+
* <FlutterCupertinoModalPopup
|
|
717
|
+
* ref={ref}
|
|
718
|
+
* // Add props here
|
|
719
|
+
* >
|
|
720
|
+
* Content
|
|
721
|
+
* </FlutterCupertinoModalPopup>
|
|
722
|
+
*
|
|
723
|
+
* // Call methods on the element
|
|
724
|
+
* ref.current?.finishRefresh('success');
|
|
725
|
+
* ```
|
|
726
|
+
*/
|
|
727
|
+
declare const FlutterCupertinoModalPopup: React.ForwardRefExoticComponent<FlutterCupertinoModalPopupProps & {
|
|
728
|
+
className?: string;
|
|
729
|
+
style?: React.CSSProperties;
|
|
730
|
+
children?: React.ReactNode;
|
|
731
|
+
} & React.RefAttributes<FlutterCupertinoModalPopupElement>>;
|
|
732
|
+
|
|
632
733
|
interface FlutterCupertinoListTileProps {
|
|
633
734
|
/**
|
|
634
|
-
* Whether to
|
|
635
|
-
* When true,
|
|
735
|
+
* Whether to render the iOS-style chevron indicator on the trailing edge.
|
|
736
|
+
* When true and no custom trailing slot is provided, a default chevron is shown.
|
|
636
737
|
* Default: false.
|
|
637
738
|
*/
|
|
638
|
-
|
|
739
|
+
showChevron?: boolean;
|
|
639
740
|
/**
|
|
640
|
-
* Whether to
|
|
641
|
-
* no explicit trailing slot is provided.
|
|
741
|
+
* Whether to use the "notched" visual style for this tile.
|
|
642
742
|
* Default: false.
|
|
643
743
|
*/
|
|
644
|
-
|
|
744
|
+
notched?: boolean;
|
|
645
745
|
/**
|
|
646
|
-
* Fired when the tile is tapped
|
|
746
|
+
* Fired when the tile is tapped.
|
|
647
747
|
*/
|
|
648
748
|
onClick?: (event: Event) => void;
|
|
649
749
|
/**
|
|
@@ -667,7 +767,7 @@ interface FlutterCupertinoListTileElement extends WebFElementWithMethods<{}> {
|
|
|
667
767
|
}
|
|
668
768
|
/**
|
|
669
769
|
* Properties for <flutter-cupertino-list-tile>
|
|
670
|
-
iOS-style list row
|
|
770
|
+
iOS-style list row used inside <flutter-cupertino-list-section>.
|
|
671
771
|
*
|
|
672
772
|
* @example
|
|
673
773
|
* ```tsx
|
|
@@ -705,8 +805,8 @@ interface FlutterCupertinoListTileLeadingProps {
|
|
|
705
805
|
interface FlutterCupertinoListTileLeadingElement extends WebFElementWithMethods<{}> {
|
|
706
806
|
}
|
|
707
807
|
/**
|
|
708
|
-
* Properties for <flutter-cupertino-list-tile-leading
|
|
709
|
-
Slot for leading
|
|
808
|
+
* Properties for <flutter-cupertino-list-tile-leading>
|
|
809
|
+
Slot container for the leading widget (icon, avatar, etc.).
|
|
710
810
|
*
|
|
711
811
|
* @example
|
|
712
812
|
* ```tsx
|
|
@@ -744,8 +844,8 @@ interface FlutterCupertinoListTileSubtitleProps {
|
|
|
744
844
|
interface FlutterCupertinoListTileSubtitleElement extends WebFElementWithMethods<{}> {
|
|
745
845
|
}
|
|
746
846
|
/**
|
|
747
|
-
* Properties for <flutter-cupertino-list-tile-subtitle
|
|
748
|
-
Slot for
|
|
847
|
+
* Properties for <flutter-cupertino-list-tile-subtitle>
|
|
848
|
+
Slot container for the subtitle widget shown under the title.
|
|
749
849
|
*
|
|
750
850
|
* @example
|
|
751
851
|
* ```tsx
|
|
@@ -783,8 +883,8 @@ interface FlutterCupertinoListTileAdditionalInfoProps {
|
|
|
783
883
|
interface FlutterCupertinoListTileAdditionalInfoElement extends WebFElementWithMethods<{}> {
|
|
784
884
|
}
|
|
785
885
|
/**
|
|
786
|
-
* Properties for <flutter-cupertino-list-tile-additional-info
|
|
787
|
-
Slot for right-aligned secondary
|
|
886
|
+
* Properties for <flutter-cupertino-list-tile-additional-info>
|
|
887
|
+
Slot container for right-aligned secondary label text.
|
|
788
888
|
*
|
|
789
889
|
* @example
|
|
790
890
|
* ```tsx
|
|
@@ -822,8 +922,9 @@ interface FlutterCupertinoListTileTrailingProps {
|
|
|
822
922
|
interface FlutterCupertinoListTileTrailingElement extends WebFElementWithMethods<{}> {
|
|
823
923
|
}
|
|
824
924
|
/**
|
|
825
|
-
* Properties for <flutter-cupertino-list-tile-trailing
|
|
826
|
-
Slot for custom trailing widget (
|
|
925
|
+
* Properties for <flutter-cupertino-list-tile-trailing>
|
|
926
|
+
Slot container for a custom trailing widget (switch, badge, etc.).
|
|
927
|
+
When present, it replaces the default chevron.
|
|
827
928
|
*
|
|
828
929
|
* @example
|
|
829
930
|
* ```tsx
|
|
@@ -2931,1275 +3032,4 @@ declare const FlutterCupertinoActionSheet: React.ForwardRefExoticComponent<Flutt
|
|
|
2931
3032
|
children?: React.ReactNode;
|
|
2932
3033
|
} & React.RefAttributes<FlutterCupertinoActionSheetElement>>;
|
|
2933
3034
|
|
|
2934
|
-
|
|
2935
|
-
content: string;
|
|
2936
|
-
type?: 'normal' | 'success' | 'warning' | 'error' | 'loading';
|
|
2937
|
-
duration?: number;
|
|
2938
|
-
}
|
|
2939
|
-
interface FlutterCupertinoToastProps {
|
|
2940
|
-
/**
|
|
2941
|
-
* HTML id attribute
|
|
2942
|
-
*/
|
|
2943
|
-
id?: string;
|
|
2944
|
-
/**
|
|
2945
|
-
* Additional CSS styles
|
|
2946
|
-
*/
|
|
2947
|
-
style?: React.CSSProperties;
|
|
2948
|
-
/**
|
|
2949
|
-
* Children elements
|
|
2950
|
-
*/
|
|
2951
|
-
children?: React.ReactNode;
|
|
2952
|
-
/**
|
|
2953
|
-
* Additional CSS class names
|
|
2954
|
-
*/
|
|
2955
|
-
className?: string;
|
|
2956
|
-
}
|
|
2957
|
-
/**
|
|
2958
|
-
* Element interface with methods accessible via ref
|
|
2959
|
-
* @example
|
|
2960
|
-
* ```tsx
|
|
2961
|
-
* const ref = useRef<FlutterCupertinoToastElement>(null);
|
|
2962
|
-
* // Call methods on the element
|
|
2963
|
-
* ref.current?.finishRefresh('success');
|
|
2964
|
-
* ```
|
|
2965
|
-
*/
|
|
2966
|
-
interface FlutterCupertinoToastElement extends WebFElementWithMethods<{
|
|
2967
|
-
show(options: FlutterCupertinoToastOptions): void;
|
|
2968
|
-
close(): void;
|
|
2969
|
-
}> {
|
|
2970
|
-
}
|
|
2971
|
-
/**
|
|
2972
|
-
* FlutterCupertinoToast - WebF FlutterCupertinoToast component
|
|
2973
|
-
*
|
|
2974
|
-
* @example
|
|
2975
|
-
* ```tsx
|
|
2976
|
-
* const ref = useRef<FlutterCupertinoToastElement>(null);
|
|
2977
|
-
*
|
|
2978
|
-
* <FlutterCupertinoToast
|
|
2979
|
-
* ref={ref}
|
|
2980
|
-
* // Add props here
|
|
2981
|
-
* >
|
|
2982
|
-
* Content
|
|
2983
|
-
* </FlutterCupertinoToast>
|
|
2984
|
-
*
|
|
2985
|
-
* // Call methods on the element
|
|
2986
|
-
* ref.current?.finishRefresh('success');
|
|
2987
|
-
* ```
|
|
2988
|
-
*/
|
|
2989
|
-
declare const FlutterCupertinoToast: React.ForwardRefExoticComponent<FlutterCupertinoToastProps & {
|
|
2990
|
-
className?: string;
|
|
2991
|
-
style?: React.CSSProperties;
|
|
2992
|
-
children?: React.ReactNode;
|
|
2993
|
-
} & React.RefAttributes<FlutterCupertinoToastElement>>;
|
|
2994
|
-
|
|
2995
|
-
interface FlutterCupertinoTimerPickerProps {
|
|
2996
|
-
/**
|
|
2997
|
-
* mode property
|
|
2998
|
-
* @default undefined
|
|
2999
|
-
*/
|
|
3000
|
-
mode?: string;
|
|
3001
|
-
/**
|
|
3002
|
-
* initialTimerDuration property
|
|
3003
|
-
* @default undefined
|
|
3004
|
-
*/
|
|
3005
|
-
initialTimerDuration?: number;
|
|
3006
|
-
/**
|
|
3007
|
-
* minuteInterval property
|
|
3008
|
-
* @default undefined
|
|
3009
|
-
*/
|
|
3010
|
-
minuteInterval?: number;
|
|
3011
|
-
/**
|
|
3012
|
-
* secondInterval property
|
|
3013
|
-
* @default undefined
|
|
3014
|
-
*/
|
|
3015
|
-
secondInterval?: number;
|
|
3016
|
-
/**
|
|
3017
|
-
* backgroundColor property
|
|
3018
|
-
* @default undefined
|
|
3019
|
-
*/
|
|
3020
|
-
backgroundColor?: string;
|
|
3021
|
-
/**
|
|
3022
|
-
* height property
|
|
3023
|
-
* @default undefined
|
|
3024
|
-
*/
|
|
3025
|
-
height?: number;
|
|
3026
|
-
/**
|
|
3027
|
-
* change event handler
|
|
3028
|
-
*/
|
|
3029
|
-
onChange?: (event: CustomEvent<number>) => void;
|
|
3030
|
-
/**
|
|
3031
|
-
* HTML id attribute
|
|
3032
|
-
*/
|
|
3033
|
-
id?: string;
|
|
3034
|
-
/**
|
|
3035
|
-
* Additional CSS styles
|
|
3036
|
-
*/
|
|
3037
|
-
style?: React.CSSProperties;
|
|
3038
|
-
/**
|
|
3039
|
-
* Children elements
|
|
3040
|
-
*/
|
|
3041
|
-
children?: React.ReactNode;
|
|
3042
|
-
/**
|
|
3043
|
-
* Additional CSS class names
|
|
3044
|
-
*/
|
|
3045
|
-
className?: string;
|
|
3046
|
-
}
|
|
3047
|
-
interface FlutterCupertinoTimerPickerElement extends WebFElementWithMethods<{}> {
|
|
3048
|
-
}
|
|
3049
|
-
/**
|
|
3050
|
-
* FlutterCupertinoTimerPicker - WebF FlutterCupertinoTimerPicker component
|
|
3051
|
-
*
|
|
3052
|
-
* @example
|
|
3053
|
-
* ```tsx
|
|
3054
|
-
*
|
|
3055
|
-
* <FlutterCupertinoTimerPicker
|
|
3056
|
-
* // Add props here
|
|
3057
|
-
* >
|
|
3058
|
-
* Content
|
|
3059
|
-
* </FlutterCupertinoTimerPicker>
|
|
3060
|
-
* ```
|
|
3061
|
-
*/
|
|
3062
|
-
declare const FlutterCupertinoTimerPicker: React.ForwardRefExoticComponent<FlutterCupertinoTimerPickerProps & {
|
|
3063
|
-
className?: string;
|
|
3064
|
-
style?: React.CSSProperties;
|
|
3065
|
-
children?: React.ReactNode;
|
|
3066
|
-
} & React.RefAttributes<FlutterCupertinoTimerPickerElement>>;
|
|
3067
|
-
|
|
3068
|
-
interface FlutterCupertinoTextareaProps {
|
|
3069
|
-
/**
|
|
3070
|
-
* val property
|
|
3071
|
-
* @default undefined
|
|
3072
|
-
*/
|
|
3073
|
-
val?: string;
|
|
3074
|
-
/**
|
|
3075
|
-
* placeholder property
|
|
3076
|
-
* @default undefined
|
|
3077
|
-
*/
|
|
3078
|
-
placeholder?: string;
|
|
3079
|
-
/**
|
|
3080
|
-
* disabled property
|
|
3081
|
-
* @default undefined
|
|
3082
|
-
*/
|
|
3083
|
-
disabled?: boolean;
|
|
3084
|
-
/**
|
|
3085
|
-
* readonly property
|
|
3086
|
-
* @default undefined
|
|
3087
|
-
*/
|
|
3088
|
-
readonly?: boolean;
|
|
3089
|
-
/**
|
|
3090
|
-
* maxLength property
|
|
3091
|
-
* @default undefined
|
|
3092
|
-
*/
|
|
3093
|
-
maxLength?: number;
|
|
3094
|
-
/**
|
|
3095
|
-
* rows property
|
|
3096
|
-
* @default undefined
|
|
3097
|
-
*/
|
|
3098
|
-
rows?: number;
|
|
3099
|
-
/**
|
|
3100
|
-
* showCount property
|
|
3101
|
-
* @default undefined
|
|
3102
|
-
*/
|
|
3103
|
-
showCount?: boolean;
|
|
3104
|
-
/**
|
|
3105
|
-
* autoSize property
|
|
3106
|
-
* @default undefined
|
|
3107
|
-
*/
|
|
3108
|
-
autoSize?: boolean;
|
|
3109
|
-
/**
|
|
3110
|
-
* transparent property
|
|
3111
|
-
* @default undefined
|
|
3112
|
-
*/
|
|
3113
|
-
transparent?: boolean;
|
|
3114
|
-
/**
|
|
3115
|
-
* input event handler
|
|
3116
|
-
*/
|
|
3117
|
-
onInput?: (event: CustomEvent<string>) => void;
|
|
3118
|
-
/**
|
|
3119
|
-
* complete event handler
|
|
3120
|
-
*/
|
|
3121
|
-
onComplete?: (event: Event) => void;
|
|
3122
|
-
/**
|
|
3123
|
-
* HTML id attribute
|
|
3124
|
-
*/
|
|
3125
|
-
id?: string;
|
|
3126
|
-
/**
|
|
3127
|
-
* Additional CSS styles
|
|
3128
|
-
*/
|
|
3129
|
-
style?: React.CSSProperties;
|
|
3130
|
-
/**
|
|
3131
|
-
* Children elements
|
|
3132
|
-
*/
|
|
3133
|
-
children?: React.ReactNode;
|
|
3134
|
-
/**
|
|
3135
|
-
* Additional CSS class names
|
|
3136
|
-
*/
|
|
3137
|
-
className?: string;
|
|
3138
|
-
}
|
|
3139
|
-
/**
|
|
3140
|
-
* Element interface with methods accessible via ref
|
|
3141
|
-
* @example
|
|
3142
|
-
* ```tsx
|
|
3143
|
-
* const ref = useRef<FlutterCupertinoTextareaElement>(null);
|
|
3144
|
-
* // Call methods on the element
|
|
3145
|
-
* ref.current?.finishRefresh('success');
|
|
3146
|
-
* ```
|
|
3147
|
-
*/
|
|
3148
|
-
interface FlutterCupertinoTextareaElement extends WebFElementWithMethods<{
|
|
3149
|
-
focus(): void;
|
|
3150
|
-
blur(): void;
|
|
3151
|
-
clear(): void;
|
|
3152
|
-
}> {
|
|
3153
|
-
}
|
|
3154
|
-
/**
|
|
3155
|
-
* FlutterCupertinoTextarea - WebF FlutterCupertinoTextarea component
|
|
3156
|
-
*
|
|
3157
|
-
* @example
|
|
3158
|
-
* ```tsx
|
|
3159
|
-
* const ref = useRef<FlutterCupertinoTextareaElement>(null);
|
|
3160
|
-
*
|
|
3161
|
-
* <FlutterCupertinoTextarea
|
|
3162
|
-
* ref={ref}
|
|
3163
|
-
* // Add props here
|
|
3164
|
-
* >
|
|
3165
|
-
* Content
|
|
3166
|
-
* </FlutterCupertinoTextarea>
|
|
3167
|
-
*
|
|
3168
|
-
* // Call methods on the element
|
|
3169
|
-
* ref.current?.finishRefresh('success');
|
|
3170
|
-
* ```
|
|
3171
|
-
*/
|
|
3172
|
-
declare const FlutterCupertinoTextarea: React.ForwardRefExoticComponent<FlutterCupertinoTextareaProps & {
|
|
3173
|
-
className?: string;
|
|
3174
|
-
style?: React.CSSProperties;
|
|
3175
|
-
children?: React.ReactNode;
|
|
3176
|
-
} & React.RefAttributes<FlutterCupertinoTextareaElement>>;
|
|
3177
|
-
|
|
3178
|
-
interface FlutterCupertinoSegmentedTabProps {
|
|
3179
|
-
/**
|
|
3180
|
-
* change event handler
|
|
3181
|
-
*/
|
|
3182
|
-
onChange?: (event: CustomEvent<number>) => void;
|
|
3183
|
-
/**
|
|
3184
|
-
* HTML id attribute
|
|
3185
|
-
*/
|
|
3186
|
-
id?: string;
|
|
3187
|
-
/**
|
|
3188
|
-
* Additional CSS styles
|
|
3189
|
-
*/
|
|
3190
|
-
style?: React.CSSProperties;
|
|
3191
|
-
/**
|
|
3192
|
-
* Children elements
|
|
3193
|
-
*/
|
|
3194
|
-
children?: React.ReactNode;
|
|
3195
|
-
/**
|
|
3196
|
-
* Additional CSS class names
|
|
3197
|
-
*/
|
|
3198
|
-
className?: string;
|
|
3199
|
-
}
|
|
3200
|
-
interface FlutterCupertinoSegmentedTabElement extends WebFElementWithMethods<{}> {
|
|
3201
|
-
}
|
|
3202
|
-
/**
|
|
3203
|
-
* FlutterCupertinoSegmentedTab - WebF FlutterCupertinoSegmentedTab component
|
|
3204
|
-
*
|
|
3205
|
-
* @example
|
|
3206
|
-
* ```tsx
|
|
3207
|
-
*
|
|
3208
|
-
* <FlutterCupertinoSegmentedTab
|
|
3209
|
-
* // Add props here
|
|
3210
|
-
* >
|
|
3211
|
-
* Content
|
|
3212
|
-
* </FlutterCupertinoSegmentedTab>
|
|
3213
|
-
* ```
|
|
3214
|
-
*/
|
|
3215
|
-
declare const FlutterCupertinoSegmentedTab: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabProps & {
|
|
3216
|
-
className?: string;
|
|
3217
|
-
style?: React.CSSProperties;
|
|
3218
|
-
children?: React.ReactNode;
|
|
3219
|
-
} & React.RefAttributes<FlutterCupertinoSegmentedTabElement>>;
|
|
3220
|
-
interface FlutterCupertinoSegmentedTabItemProps {
|
|
3221
|
-
/**
|
|
3222
|
-
* title property
|
|
3223
|
-
* @default undefined
|
|
3224
|
-
*/
|
|
3225
|
-
title?: string;
|
|
3226
|
-
/**
|
|
3227
|
-
* HTML id attribute
|
|
3228
|
-
*/
|
|
3229
|
-
id?: string;
|
|
3230
|
-
/**
|
|
3231
|
-
* Additional CSS styles
|
|
3232
|
-
*/
|
|
3233
|
-
style?: React.CSSProperties;
|
|
3234
|
-
/**
|
|
3235
|
-
* Children elements
|
|
3236
|
-
*/
|
|
3237
|
-
children?: React.ReactNode;
|
|
3238
|
-
/**
|
|
3239
|
-
* Additional CSS class names
|
|
3240
|
-
*/
|
|
3241
|
-
className?: string;
|
|
3242
|
-
}
|
|
3243
|
-
interface FlutterCupertinoSegmentedTabItemElement extends WebFElementWithMethods<{}> {
|
|
3244
|
-
}
|
|
3245
|
-
/**
|
|
3246
|
-
* FlutterCupertinoSegmentedTabItem - WebF FlutterCupertinoSegmentedTabItem component
|
|
3247
|
-
*
|
|
3248
|
-
* @example
|
|
3249
|
-
* ```tsx
|
|
3250
|
-
*
|
|
3251
|
-
* <FlutterCupertinoSegmentedTabItem
|
|
3252
|
-
* // Add props here
|
|
3253
|
-
* >
|
|
3254
|
-
* Content
|
|
3255
|
-
* </FlutterCupertinoSegmentedTabItem>
|
|
3256
|
-
* ```
|
|
3257
|
-
*/
|
|
3258
|
-
declare const FlutterCupertinoSegmentedTabItem: React.ForwardRefExoticComponent<FlutterCupertinoSegmentedTabItemProps & {
|
|
3259
|
-
className?: string;
|
|
3260
|
-
style?: React.CSSProperties;
|
|
3261
|
-
children?: React.ReactNode;
|
|
3262
|
-
} & React.RefAttributes<FlutterCupertinoSegmentedTabItemElement>>;
|
|
3263
|
-
|
|
3264
|
-
interface FlutterCupertinoSearchInputProps {
|
|
3265
|
-
/**
|
|
3266
|
-
* val property
|
|
3267
|
-
* @default undefined
|
|
3268
|
-
*/
|
|
3269
|
-
val?: string;
|
|
3270
|
-
/**
|
|
3271
|
-
* placeholder property
|
|
3272
|
-
* @default undefined
|
|
3273
|
-
*/
|
|
3274
|
-
placeholder?: string;
|
|
3275
|
-
/**
|
|
3276
|
-
* disabled property
|
|
3277
|
-
* @default undefined
|
|
3278
|
-
*/
|
|
3279
|
-
disabled?: boolean;
|
|
3280
|
-
/**
|
|
3281
|
-
* type property
|
|
3282
|
-
* @default undefined
|
|
3283
|
-
*/
|
|
3284
|
-
type?: string;
|
|
3285
|
-
/**
|
|
3286
|
-
* prefixIcon property
|
|
3287
|
-
* @default undefined
|
|
3288
|
-
*/
|
|
3289
|
-
prefixIcon?: string;
|
|
3290
|
-
/**
|
|
3291
|
-
* suffixIcon property
|
|
3292
|
-
* @default undefined
|
|
3293
|
-
*/
|
|
3294
|
-
suffixIcon?: string;
|
|
3295
|
-
/**
|
|
3296
|
-
* suffixModel property
|
|
3297
|
-
* @default undefined
|
|
3298
|
-
*/
|
|
3299
|
-
suffixModel?: string;
|
|
3300
|
-
/**
|
|
3301
|
-
* itemColor property
|
|
3302
|
-
* @default undefined
|
|
3303
|
-
*/
|
|
3304
|
-
itemColor?: string;
|
|
3305
|
-
/**
|
|
3306
|
-
* itemSize property
|
|
3307
|
-
* @default undefined
|
|
3308
|
-
*/
|
|
3309
|
-
itemSize?: number;
|
|
3310
|
-
/**
|
|
3311
|
-
* autofocus property
|
|
3312
|
-
*/
|
|
3313
|
-
autofocus: boolean;
|
|
3314
|
-
/**
|
|
3315
|
-
* input event handler
|
|
3316
|
-
*/
|
|
3317
|
-
onInput?: (event: CustomEvent<string>) => void;
|
|
3318
|
-
/**
|
|
3319
|
-
* search event handler
|
|
3320
|
-
*/
|
|
3321
|
-
onSearch?: (event: CustomEvent<string>) => void;
|
|
3322
|
-
/**
|
|
3323
|
-
* clear event handler
|
|
3324
|
-
*/
|
|
3325
|
-
onClear?: (event: CustomEvent) => void;
|
|
3326
|
-
/**
|
|
3327
|
-
* HTML id attribute
|
|
3328
|
-
*/
|
|
3329
|
-
id?: string;
|
|
3330
|
-
/**
|
|
3331
|
-
* Additional CSS styles
|
|
3332
|
-
*/
|
|
3333
|
-
style?: React.CSSProperties;
|
|
3334
|
-
/**
|
|
3335
|
-
* Children elements
|
|
3336
|
-
*/
|
|
3337
|
-
children?: React.ReactNode;
|
|
3338
|
-
/**
|
|
3339
|
-
* Additional CSS class names
|
|
3340
|
-
*/
|
|
3341
|
-
className?: string;
|
|
3342
|
-
}
|
|
3343
|
-
/**
|
|
3344
|
-
* Element interface with methods accessible via ref
|
|
3345
|
-
* @example
|
|
3346
|
-
* ```tsx
|
|
3347
|
-
* const ref = useRef<FlutterCupertinoSearchInputElement>(null);
|
|
3348
|
-
* // Call methods on the element
|
|
3349
|
-
* ref.current?.finishRefresh('success');
|
|
3350
|
-
* ```
|
|
3351
|
-
*/
|
|
3352
|
-
interface FlutterCupertinoSearchInputElement extends WebFElementWithMethods<{
|
|
3353
|
-
getValue(): string;
|
|
3354
|
-
setValue(value: string): void;
|
|
3355
|
-
focus(): void;
|
|
3356
|
-
blur(): void;
|
|
3357
|
-
clear(): void;
|
|
3358
|
-
}> {
|
|
3359
|
-
}
|
|
3360
|
-
/**
|
|
3361
|
-
* FlutterCupertinoSearchInput - WebF FlutterCupertinoSearchInput component
|
|
3362
|
-
*
|
|
3363
|
-
* @example
|
|
3364
|
-
* ```tsx
|
|
3365
|
-
* const ref = useRef<FlutterCupertinoSearchInputElement>(null);
|
|
3366
|
-
*
|
|
3367
|
-
* <FlutterCupertinoSearchInput
|
|
3368
|
-
* ref={ref}
|
|
3369
|
-
* // Add props here
|
|
3370
|
-
* >
|
|
3371
|
-
* Content
|
|
3372
|
-
* </FlutterCupertinoSearchInput>
|
|
3373
|
-
*
|
|
3374
|
-
* // Call methods on the element
|
|
3375
|
-
* ref.current?.finishRefresh('success');
|
|
3376
|
-
* ```
|
|
3377
|
-
*/
|
|
3378
|
-
declare const FlutterCupertinoSearchInput: React.ForwardRefExoticComponent<FlutterCupertinoSearchInputProps & {
|
|
3379
|
-
className?: string;
|
|
3380
|
-
style?: React.CSSProperties;
|
|
3381
|
-
children?: React.ReactNode;
|
|
3382
|
-
} & React.RefAttributes<FlutterCupertinoSearchInputElement>>;
|
|
3383
|
-
|
|
3384
|
-
interface FlutterCupertinoPickerProps {
|
|
3385
|
-
/**
|
|
3386
|
-
* height property
|
|
3387
|
-
* @default undefined
|
|
3388
|
-
*/
|
|
3389
|
-
height?: number;
|
|
3390
|
-
/**
|
|
3391
|
-
* itemHeight property
|
|
3392
|
-
* @default undefined
|
|
3393
|
-
*/
|
|
3394
|
-
itemHeight?: number;
|
|
3395
|
-
/**
|
|
3396
|
-
* change event handler
|
|
3397
|
-
*/
|
|
3398
|
-
onChange?: (event: CustomEvent<string>) => void;
|
|
3399
|
-
/**
|
|
3400
|
-
* HTML id attribute
|
|
3401
|
-
*/
|
|
3402
|
-
id?: string;
|
|
3403
|
-
/**
|
|
3404
|
-
* Additional CSS styles
|
|
3405
|
-
*/
|
|
3406
|
-
style?: React.CSSProperties;
|
|
3407
|
-
/**
|
|
3408
|
-
* Children elements
|
|
3409
|
-
*/
|
|
3410
|
-
children?: React.ReactNode;
|
|
3411
|
-
/**
|
|
3412
|
-
* Additional CSS class names
|
|
3413
|
-
*/
|
|
3414
|
-
className?: string;
|
|
3415
|
-
}
|
|
3416
|
-
interface FlutterCupertinoPickerElement extends WebFElementWithMethods<{}> {
|
|
3417
|
-
}
|
|
3418
|
-
/**
|
|
3419
|
-
* FlutterCupertinoPicker - WebF FlutterCupertinoPicker component
|
|
3420
|
-
*
|
|
3421
|
-
* @example
|
|
3422
|
-
* ```tsx
|
|
3423
|
-
*
|
|
3424
|
-
* <FlutterCupertinoPicker
|
|
3425
|
-
* // Add props here
|
|
3426
|
-
* >
|
|
3427
|
-
* Content
|
|
3428
|
-
* </FlutterCupertinoPicker>
|
|
3429
|
-
* ```
|
|
3430
|
-
*/
|
|
3431
|
-
declare const FlutterCupertinoPicker: React.ForwardRefExoticComponent<FlutterCupertinoPickerProps & {
|
|
3432
|
-
className?: string;
|
|
3433
|
-
style?: React.CSSProperties;
|
|
3434
|
-
children?: React.ReactNode;
|
|
3435
|
-
} & React.RefAttributes<FlutterCupertinoPickerElement>>;
|
|
3436
|
-
|
|
3437
|
-
interface FlutterCupertinoPickerItemProps {
|
|
3438
|
-
/**
|
|
3439
|
-
* label property
|
|
3440
|
-
* @default undefined
|
|
3441
|
-
*/
|
|
3442
|
-
label?: string;
|
|
3443
|
-
/**
|
|
3444
|
-
* val property
|
|
3445
|
-
* @default undefined
|
|
3446
|
-
*/
|
|
3447
|
-
val?: string;
|
|
3448
|
-
/**
|
|
3449
|
-
* HTML id attribute
|
|
3450
|
-
*/
|
|
3451
|
-
id?: string;
|
|
3452
|
-
/**
|
|
3453
|
-
* Additional CSS styles
|
|
3454
|
-
*/
|
|
3455
|
-
style?: React.CSSProperties;
|
|
3456
|
-
/**
|
|
3457
|
-
* Children elements
|
|
3458
|
-
*/
|
|
3459
|
-
children?: React.ReactNode;
|
|
3460
|
-
/**
|
|
3461
|
-
* Additional CSS class names
|
|
3462
|
-
*/
|
|
3463
|
-
className?: string;
|
|
3464
|
-
}
|
|
3465
|
-
interface FlutterCupertinoPickerItemElement extends WebFElementWithMethods<{}> {
|
|
3466
|
-
}
|
|
3467
|
-
/**
|
|
3468
|
-
* FlutterCupertinoPickerItem - WebF FlutterCupertinoPickerItem component
|
|
3469
|
-
*
|
|
3470
|
-
* @example
|
|
3471
|
-
* ```tsx
|
|
3472
|
-
*
|
|
3473
|
-
* <FlutterCupertinoPickerItem
|
|
3474
|
-
* // Add props here
|
|
3475
|
-
* >
|
|
3476
|
-
* Content
|
|
3477
|
-
* </FlutterCupertinoPickerItem>
|
|
3478
|
-
* ```
|
|
3479
|
-
*/
|
|
3480
|
-
declare const FlutterCupertinoPickerItem: React.ForwardRefExoticComponent<FlutterCupertinoPickerItemProps & {
|
|
3481
|
-
className?: string;
|
|
3482
|
-
style?: React.CSSProperties;
|
|
3483
|
-
children?: React.ReactNode;
|
|
3484
|
-
} & React.RefAttributes<FlutterCupertinoPickerItemElement>>;
|
|
3485
|
-
|
|
3486
|
-
interface FlutterCupertinoModalPopupProps {
|
|
3487
|
-
/**
|
|
3488
|
-
* visible property
|
|
3489
|
-
* @default undefined
|
|
3490
|
-
*/
|
|
3491
|
-
visible?: boolean;
|
|
3492
|
-
/**
|
|
3493
|
-
* height property
|
|
3494
|
-
* @default undefined
|
|
3495
|
-
*/
|
|
3496
|
-
height?: number;
|
|
3497
|
-
/**
|
|
3498
|
-
* surfacePainted property
|
|
3499
|
-
* @default undefined
|
|
3500
|
-
*/
|
|
3501
|
-
surfacePainted?: boolean;
|
|
3502
|
-
/**
|
|
3503
|
-
* maskClosable property
|
|
3504
|
-
* @default undefined
|
|
3505
|
-
*/
|
|
3506
|
-
maskClosable?: boolean;
|
|
3507
|
-
/**
|
|
3508
|
-
* backgroundOpacity property
|
|
3509
|
-
* @default undefined
|
|
3510
|
-
*/
|
|
3511
|
-
backgroundOpacity?: number;
|
|
3512
|
-
/**
|
|
3513
|
-
* close event handler
|
|
3514
|
-
*/
|
|
3515
|
-
onClose?: (event: CustomEvent) => void;
|
|
3516
|
-
/**
|
|
3517
|
-
* HTML id attribute
|
|
3518
|
-
*/
|
|
3519
|
-
id?: string;
|
|
3520
|
-
/**
|
|
3521
|
-
* Additional CSS styles
|
|
3522
|
-
*/
|
|
3523
|
-
style?: React.CSSProperties;
|
|
3524
|
-
/**
|
|
3525
|
-
* Children elements
|
|
3526
|
-
*/
|
|
3527
|
-
children?: React.ReactNode;
|
|
3528
|
-
/**
|
|
3529
|
-
* Additional CSS class names
|
|
3530
|
-
*/
|
|
3531
|
-
className?: string;
|
|
3532
|
-
}
|
|
3533
|
-
/**
|
|
3534
|
-
* Element interface with methods accessible via ref
|
|
3535
|
-
* @example
|
|
3536
|
-
* ```tsx
|
|
3537
|
-
* const ref = useRef<FlutterCupertinoModalPopupElement>(null);
|
|
3538
|
-
* // Call methods on the element
|
|
3539
|
-
* ref.current?.finishRefresh('success');
|
|
3540
|
-
* ```
|
|
3541
|
-
*/
|
|
3542
|
-
interface FlutterCupertinoModalPopupElement extends WebFElementWithMethods<{
|
|
3543
|
-
show(): void;
|
|
3544
|
-
hide(): void;
|
|
3545
|
-
}> {
|
|
3546
|
-
}
|
|
3547
|
-
/**
|
|
3548
|
-
* FlutterCupertinoModalPopup - WebF FlutterCupertinoModalPopup component
|
|
3549
|
-
*
|
|
3550
|
-
* @example
|
|
3551
|
-
* ```tsx
|
|
3552
|
-
* const ref = useRef<FlutterCupertinoModalPopupElement>(null);
|
|
3553
|
-
*
|
|
3554
|
-
* <FlutterCupertinoModalPopup
|
|
3555
|
-
* ref={ref}
|
|
3556
|
-
* // Add props here
|
|
3557
|
-
* >
|
|
3558
|
-
* Content
|
|
3559
|
-
* </FlutterCupertinoModalPopup>
|
|
3560
|
-
*
|
|
3561
|
-
* // Call methods on the element
|
|
3562
|
-
* ref.current?.finishRefresh('success');
|
|
3563
|
-
* ```
|
|
3564
|
-
*/
|
|
3565
|
-
declare const FlutterCupertinoModalPopup: React.ForwardRefExoticComponent<FlutterCupertinoModalPopupProps & {
|
|
3566
|
-
className?: string;
|
|
3567
|
-
style?: React.CSSProperties;
|
|
3568
|
-
children?: React.ReactNode;
|
|
3569
|
-
} & React.RefAttributes<FlutterCupertinoModalPopupElement>>;
|
|
3570
|
-
|
|
3571
|
-
interface FlutterCupertinoLoadingOptions {
|
|
3572
|
-
text?: string;
|
|
3573
|
-
}
|
|
3574
|
-
interface FlutterCupertinoLoadingProps {
|
|
3575
|
-
/**
|
|
3576
|
-
* maskClosable property
|
|
3577
|
-
* @default undefined
|
|
3578
|
-
*/
|
|
3579
|
-
maskClosable?: boolean;
|
|
3580
|
-
/**
|
|
3581
|
-
* HTML id attribute
|
|
3582
|
-
*/
|
|
3583
|
-
id?: string;
|
|
3584
|
-
/**
|
|
3585
|
-
* Additional CSS styles
|
|
3586
|
-
*/
|
|
3587
|
-
style?: React.CSSProperties;
|
|
3588
|
-
/**
|
|
3589
|
-
* Children elements
|
|
3590
|
-
*/
|
|
3591
|
-
children?: React.ReactNode;
|
|
3592
|
-
/**
|
|
3593
|
-
* Additional CSS class names
|
|
3594
|
-
*/
|
|
3595
|
-
className?: string;
|
|
3596
|
-
}
|
|
3597
|
-
/**
|
|
3598
|
-
* Element interface with methods accessible via ref
|
|
3599
|
-
* @example
|
|
3600
|
-
* ```tsx
|
|
3601
|
-
* const ref = useRef<FlutterCupertinoLoadingElement>(null);
|
|
3602
|
-
* // Call methods on the element
|
|
3603
|
-
* ref.current?.finishRefresh('success');
|
|
3604
|
-
* ```
|
|
3605
|
-
*/
|
|
3606
|
-
interface FlutterCupertinoLoadingElement extends WebFElementWithMethods<{
|
|
3607
|
-
show(options: FlutterCupertinoLoadingOptions): void;
|
|
3608
|
-
hide(): void;
|
|
3609
|
-
}> {
|
|
3610
|
-
}
|
|
3611
|
-
/**
|
|
3612
|
-
* FlutterCupertinoLoading - WebF FlutterCupertinoLoading component
|
|
3613
|
-
*
|
|
3614
|
-
* @example
|
|
3615
|
-
* ```tsx
|
|
3616
|
-
* const ref = useRef<FlutterCupertinoLoadingElement>(null);
|
|
3617
|
-
*
|
|
3618
|
-
* <FlutterCupertinoLoading
|
|
3619
|
-
* ref={ref}
|
|
3620
|
-
* // Add props here
|
|
3621
|
-
* >
|
|
3622
|
-
* Content
|
|
3623
|
-
* </FlutterCupertinoLoading>
|
|
3624
|
-
*
|
|
3625
|
-
* // Call methods on the element
|
|
3626
|
-
* ref.current?.finishRefresh('success');
|
|
3627
|
-
* ```
|
|
3628
|
-
*/
|
|
3629
|
-
declare const FlutterCupertinoLoading: React.ForwardRefExoticComponent<FlutterCupertinoLoadingProps & {
|
|
3630
|
-
className?: string;
|
|
3631
|
-
style?: React.CSSProperties;
|
|
3632
|
-
children?: React.ReactNode;
|
|
3633
|
-
} & React.RefAttributes<FlutterCupertinoLoadingElement>>;
|
|
3634
|
-
|
|
3635
|
-
interface FlutterCupertinoInputProps {
|
|
3636
|
-
/**
|
|
3637
|
-
* val property
|
|
3638
|
-
* @default undefined
|
|
3639
|
-
*/
|
|
3640
|
-
val?: string;
|
|
3641
|
-
/**
|
|
3642
|
-
* placeholder property
|
|
3643
|
-
* @default undefined
|
|
3644
|
-
*/
|
|
3645
|
-
placeholder?: string;
|
|
3646
|
-
/**
|
|
3647
|
-
* type property
|
|
3648
|
-
* @default undefined
|
|
3649
|
-
*/
|
|
3650
|
-
type?: string;
|
|
3651
|
-
/**
|
|
3652
|
-
* disabled property
|
|
3653
|
-
* @default undefined
|
|
3654
|
-
*/
|
|
3655
|
-
disabled?: boolean;
|
|
3656
|
-
/**
|
|
3657
|
-
* autofocus property
|
|
3658
|
-
*/
|
|
3659
|
-
autofocus: boolean;
|
|
3660
|
-
/**
|
|
3661
|
-
* clearable property
|
|
3662
|
-
* @default undefined
|
|
3663
|
-
*/
|
|
3664
|
-
clearable?: boolean;
|
|
3665
|
-
/**
|
|
3666
|
-
* maxlength property
|
|
3667
|
-
* @default undefined
|
|
3668
|
-
*/
|
|
3669
|
-
maxlength?: number;
|
|
3670
|
-
/**
|
|
3671
|
-
* readonly property
|
|
3672
|
-
* @default undefined
|
|
3673
|
-
*/
|
|
3674
|
-
readonly?: boolean;
|
|
3675
|
-
/**
|
|
3676
|
-
* input event handler
|
|
3677
|
-
*/
|
|
3678
|
-
onInput?: (event: CustomEvent<string>) => void;
|
|
3679
|
-
/**
|
|
3680
|
-
* submit event handler
|
|
3681
|
-
*/
|
|
3682
|
-
onSubmit?: (event: CustomEvent<string>) => void;
|
|
3683
|
-
/**
|
|
3684
|
-
* focus event handler
|
|
3685
|
-
*/
|
|
3686
|
-
onFocus?: (event: CustomEvent) => void;
|
|
3687
|
-
/**
|
|
3688
|
-
* blur event handler
|
|
3689
|
-
*/
|
|
3690
|
-
onBlur?: (event: CustomEvent) => void;
|
|
3691
|
-
/**
|
|
3692
|
-
* clear event handler
|
|
3693
|
-
*/
|
|
3694
|
-
onClear?: (event: CustomEvent) => void;
|
|
3695
|
-
/**
|
|
3696
|
-
* HTML id attribute
|
|
3697
|
-
*/
|
|
3698
|
-
id?: string;
|
|
3699
|
-
/**
|
|
3700
|
-
* Additional CSS styles
|
|
3701
|
-
*/
|
|
3702
|
-
style?: React.CSSProperties;
|
|
3703
|
-
/**
|
|
3704
|
-
* Children elements
|
|
3705
|
-
*/
|
|
3706
|
-
children?: React.ReactNode;
|
|
3707
|
-
/**
|
|
3708
|
-
* Additional CSS class names
|
|
3709
|
-
*/
|
|
3710
|
-
className?: string;
|
|
3711
|
-
}
|
|
3712
|
-
/**
|
|
3713
|
-
* Element interface with methods accessible via ref
|
|
3714
|
-
* @example
|
|
3715
|
-
* ```tsx
|
|
3716
|
-
* const ref = useRef<FlutterCupertinoInputElement>(null);
|
|
3717
|
-
* // Call methods on the element
|
|
3718
|
-
* ref.current?.finishRefresh('success');
|
|
3719
|
-
* ```
|
|
3720
|
-
*/
|
|
3721
|
-
interface FlutterCupertinoInputElement extends WebFElementWithMethods<{
|
|
3722
|
-
getValue(): string;
|
|
3723
|
-
setValue(value: string): void;
|
|
3724
|
-
focus(): void;
|
|
3725
|
-
blur(): void;
|
|
3726
|
-
clear(): void;
|
|
3727
|
-
}> {
|
|
3728
|
-
}
|
|
3729
|
-
/**
|
|
3730
|
-
* FlutterCupertinoInput - WebF FlutterCupertinoInput component
|
|
3731
|
-
*
|
|
3732
|
-
* @example
|
|
3733
|
-
* ```tsx
|
|
3734
|
-
* const ref = useRef<FlutterCupertinoInputElement>(null);
|
|
3735
|
-
*
|
|
3736
|
-
* <FlutterCupertinoInput
|
|
3737
|
-
* ref={ref}
|
|
3738
|
-
* // Add props here
|
|
3739
|
-
* >
|
|
3740
|
-
* Content
|
|
3741
|
-
* </FlutterCupertinoInput>
|
|
3742
|
-
*
|
|
3743
|
-
* // Call methods on the element
|
|
3744
|
-
* ref.current?.finishRefresh('success');
|
|
3745
|
-
* ```
|
|
3746
|
-
*/
|
|
3747
|
-
declare const FlutterCupertinoInput: React.ForwardRefExoticComponent<FlutterCupertinoInputProps & {
|
|
3748
|
-
className?: string;
|
|
3749
|
-
style?: React.CSSProperties;
|
|
3750
|
-
children?: React.ReactNode;
|
|
3751
|
-
} & React.RefAttributes<FlutterCupertinoInputElement>>;
|
|
3752
|
-
interface FlutterCupertinoInputPrefixProps {
|
|
3753
|
-
/**
|
|
3754
|
-
* HTML id attribute
|
|
3755
|
-
*/
|
|
3756
|
-
id?: string;
|
|
3757
|
-
/**
|
|
3758
|
-
* Additional CSS styles
|
|
3759
|
-
*/
|
|
3760
|
-
style?: React.CSSProperties;
|
|
3761
|
-
/**
|
|
3762
|
-
* Children elements
|
|
3763
|
-
*/
|
|
3764
|
-
children?: React.ReactNode;
|
|
3765
|
-
/**
|
|
3766
|
-
* Additional CSS class names
|
|
3767
|
-
*/
|
|
3768
|
-
className?: string;
|
|
3769
|
-
}
|
|
3770
|
-
interface FlutterCupertinoInputPrefixElement extends WebFElementWithMethods<{}> {
|
|
3771
|
-
}
|
|
3772
|
-
/**
|
|
3773
|
-
* FlutterCupertinoInputPrefix - WebF FlutterCupertinoInputPrefix component
|
|
3774
|
-
*
|
|
3775
|
-
* @example
|
|
3776
|
-
* ```tsx
|
|
3777
|
-
*
|
|
3778
|
-
* <FlutterCupertinoInputPrefix
|
|
3779
|
-
* // Add props here
|
|
3780
|
-
* >
|
|
3781
|
-
* Content
|
|
3782
|
-
* </FlutterCupertinoInputPrefix>
|
|
3783
|
-
* ```
|
|
3784
|
-
*/
|
|
3785
|
-
declare const FlutterCupertinoInputPrefix: React.ForwardRefExoticComponent<FlutterCupertinoInputPrefixProps & {
|
|
3786
|
-
className?: string;
|
|
3787
|
-
style?: React.CSSProperties;
|
|
3788
|
-
children?: React.ReactNode;
|
|
3789
|
-
} & React.RefAttributes<FlutterCupertinoInputPrefixElement>>;
|
|
3790
|
-
interface FlutterCupertinoInputSuffixProps {
|
|
3791
|
-
/**
|
|
3792
|
-
* HTML id attribute
|
|
3793
|
-
*/
|
|
3794
|
-
id?: string;
|
|
3795
|
-
/**
|
|
3796
|
-
* Additional CSS styles
|
|
3797
|
-
*/
|
|
3798
|
-
style?: React.CSSProperties;
|
|
3799
|
-
/**
|
|
3800
|
-
* Children elements
|
|
3801
|
-
*/
|
|
3802
|
-
children?: React.ReactNode;
|
|
3803
|
-
/**
|
|
3804
|
-
* Additional CSS class names
|
|
3805
|
-
*/
|
|
3806
|
-
className?: string;
|
|
3807
|
-
}
|
|
3808
|
-
interface FlutterCupertinoInputSuffixElement extends WebFElementWithMethods<{}> {
|
|
3809
|
-
}
|
|
3810
|
-
/**
|
|
3811
|
-
* FlutterCupertinoInputSuffix - WebF FlutterCupertinoInputSuffix component
|
|
3812
|
-
*
|
|
3813
|
-
* @example
|
|
3814
|
-
* ```tsx
|
|
3815
|
-
*
|
|
3816
|
-
* <FlutterCupertinoInputSuffix
|
|
3817
|
-
* // Add props here
|
|
3818
|
-
* >
|
|
3819
|
-
* Content
|
|
3820
|
-
* </FlutterCupertinoInputSuffix>
|
|
3821
|
-
* ```
|
|
3822
|
-
*/
|
|
3823
|
-
declare const FlutterCupertinoInputSuffix: React.ForwardRefExoticComponent<FlutterCupertinoInputSuffixProps & {
|
|
3824
|
-
className?: string;
|
|
3825
|
-
style?: React.CSSProperties;
|
|
3826
|
-
children?: React.ReactNode;
|
|
3827
|
-
} & React.RefAttributes<FlutterCupertinoInputSuffixElement>>;
|
|
3828
|
-
|
|
3829
|
-
interface FlutterCupertinoFormSectionProps {
|
|
3830
|
-
/**
|
|
3831
|
-
* insetGrouped property
|
|
3832
|
-
* @default undefined
|
|
3833
|
-
*/
|
|
3834
|
-
insetGrouped?: string;
|
|
3835
|
-
/**
|
|
3836
|
-
* clipBehavior property
|
|
3837
|
-
* @default undefined
|
|
3838
|
-
*/
|
|
3839
|
-
clipBehavior?: string;
|
|
3840
|
-
/**
|
|
3841
|
-
* HTML id attribute
|
|
3842
|
-
*/
|
|
3843
|
-
id?: string;
|
|
3844
|
-
/**
|
|
3845
|
-
* Additional CSS styles
|
|
3846
|
-
*/
|
|
3847
|
-
style?: React.CSSProperties;
|
|
3848
|
-
/**
|
|
3849
|
-
* Children elements
|
|
3850
|
-
*/
|
|
3851
|
-
children?: React.ReactNode;
|
|
3852
|
-
/**
|
|
3853
|
-
* Additional CSS class names
|
|
3854
|
-
*/
|
|
3855
|
-
className?: string;
|
|
3856
|
-
}
|
|
3857
|
-
interface FlutterCupertinoFormSectionElement extends WebFElementWithMethods<{}> {
|
|
3858
|
-
}
|
|
3859
|
-
/**
|
|
3860
|
-
* FlutterCupertinoFormSection - WebF FlutterCupertinoFormSection component
|
|
3861
|
-
*
|
|
3862
|
-
* @example
|
|
3863
|
-
* ```tsx
|
|
3864
|
-
*
|
|
3865
|
-
* <FlutterCupertinoFormSection
|
|
3866
|
-
* // Add props here
|
|
3867
|
-
* >
|
|
3868
|
-
* Content
|
|
3869
|
-
* </FlutterCupertinoFormSection>
|
|
3870
|
-
* ```
|
|
3871
|
-
*/
|
|
3872
|
-
declare const FlutterCupertinoFormSection: React.ForwardRefExoticComponent<FlutterCupertinoFormSectionProps & {
|
|
3873
|
-
className?: string;
|
|
3874
|
-
style?: React.CSSProperties;
|
|
3875
|
-
children?: React.ReactNode;
|
|
3876
|
-
} & React.RefAttributes<FlutterCupertinoFormSectionElement>>;
|
|
3877
|
-
interface FlutterCupertinoFormSectionHeaderProps {
|
|
3878
|
-
/**
|
|
3879
|
-
* HTML id attribute
|
|
3880
|
-
*/
|
|
3881
|
-
id?: string;
|
|
3882
|
-
/**
|
|
3883
|
-
* Additional CSS styles
|
|
3884
|
-
*/
|
|
3885
|
-
style?: React.CSSProperties;
|
|
3886
|
-
/**
|
|
3887
|
-
* Children elements
|
|
3888
|
-
*/
|
|
3889
|
-
children?: React.ReactNode;
|
|
3890
|
-
/**
|
|
3891
|
-
* Additional CSS class names
|
|
3892
|
-
*/
|
|
3893
|
-
className?: string;
|
|
3894
|
-
}
|
|
3895
|
-
interface FlutterCupertinoFormSectionHeaderElement extends WebFElementWithMethods<{}> {
|
|
3896
|
-
}
|
|
3897
|
-
/**
|
|
3898
|
-
* FlutterCupertinoFormSectionHeader - WebF FlutterCupertinoFormSectionHeader component
|
|
3899
|
-
*
|
|
3900
|
-
* @example
|
|
3901
|
-
* ```tsx
|
|
3902
|
-
*
|
|
3903
|
-
* <FlutterCupertinoFormSectionHeader
|
|
3904
|
-
* // Add props here
|
|
3905
|
-
* >
|
|
3906
|
-
* Content
|
|
3907
|
-
* </FlutterCupertinoFormSectionHeader>
|
|
3908
|
-
* ```
|
|
3909
|
-
*/
|
|
3910
|
-
declare const FlutterCupertinoFormSectionHeader: React.ForwardRefExoticComponent<FlutterCupertinoFormSectionHeaderProps & {
|
|
3911
|
-
className?: string;
|
|
3912
|
-
style?: React.CSSProperties;
|
|
3913
|
-
children?: React.ReactNode;
|
|
3914
|
-
} & React.RefAttributes<FlutterCupertinoFormSectionHeaderElement>>;
|
|
3915
|
-
interface FlutterCupertinoFormSectionFooterProps {
|
|
3916
|
-
/**
|
|
3917
|
-
* HTML id attribute
|
|
3918
|
-
*/
|
|
3919
|
-
id?: string;
|
|
3920
|
-
/**
|
|
3921
|
-
* Additional CSS styles
|
|
3922
|
-
*/
|
|
3923
|
-
style?: React.CSSProperties;
|
|
3924
|
-
/**
|
|
3925
|
-
* Children elements
|
|
3926
|
-
*/
|
|
3927
|
-
children?: React.ReactNode;
|
|
3928
|
-
/**
|
|
3929
|
-
* Additional CSS class names
|
|
3930
|
-
*/
|
|
3931
|
-
className?: string;
|
|
3932
|
-
}
|
|
3933
|
-
interface FlutterCupertinoFormSectionFooterElement extends WebFElementWithMethods<{}> {
|
|
3934
|
-
}
|
|
3935
|
-
/**
|
|
3936
|
-
* FlutterCupertinoFormSectionFooter - WebF FlutterCupertinoFormSectionFooter component
|
|
3937
|
-
*
|
|
3938
|
-
* @example
|
|
3939
|
-
* ```tsx
|
|
3940
|
-
*
|
|
3941
|
-
* <FlutterCupertinoFormSectionFooter
|
|
3942
|
-
* // Add props here
|
|
3943
|
-
* >
|
|
3944
|
-
* Content
|
|
3945
|
-
* </FlutterCupertinoFormSectionFooter>
|
|
3946
|
-
* ```
|
|
3947
|
-
*/
|
|
3948
|
-
declare const FlutterCupertinoFormSectionFooter: React.ForwardRefExoticComponent<FlutterCupertinoFormSectionFooterProps & {
|
|
3949
|
-
className?: string;
|
|
3950
|
-
style?: React.CSSProperties;
|
|
3951
|
-
children?: React.ReactNode;
|
|
3952
|
-
} & React.RefAttributes<FlutterCupertinoFormSectionFooterElement>>;
|
|
3953
|
-
|
|
3954
|
-
interface FlutterCupertinoFormRowProps {
|
|
3955
|
-
/**
|
|
3956
|
-
* HTML id attribute
|
|
3957
|
-
*/
|
|
3958
|
-
id?: string;
|
|
3959
|
-
/**
|
|
3960
|
-
* Additional CSS styles
|
|
3961
|
-
*/
|
|
3962
|
-
style?: React.CSSProperties;
|
|
3963
|
-
/**
|
|
3964
|
-
* Children elements
|
|
3965
|
-
*/
|
|
3966
|
-
children?: React.ReactNode;
|
|
3967
|
-
/**
|
|
3968
|
-
* Additional CSS class names
|
|
3969
|
-
*/
|
|
3970
|
-
className?: string;
|
|
3971
|
-
}
|
|
3972
|
-
interface FlutterCupertinoFormRowElement extends WebFElementWithMethods<{}> {
|
|
3973
|
-
}
|
|
3974
|
-
/**
|
|
3975
|
-
* FlutterCupertinoFormRow - WebF FlutterCupertinoFormRow component
|
|
3976
|
-
*
|
|
3977
|
-
* @example
|
|
3978
|
-
* ```tsx
|
|
3979
|
-
*
|
|
3980
|
-
* <FlutterCupertinoFormRow
|
|
3981
|
-
* // Add props here
|
|
3982
|
-
* >
|
|
3983
|
-
* Content
|
|
3984
|
-
* </FlutterCupertinoFormRow>
|
|
3985
|
-
* ```
|
|
3986
|
-
*/
|
|
3987
|
-
declare const FlutterCupertinoFormRow: React.ForwardRefExoticComponent<FlutterCupertinoFormRowProps & {
|
|
3988
|
-
className?: string;
|
|
3989
|
-
style?: React.CSSProperties;
|
|
3990
|
-
children?: React.ReactNode;
|
|
3991
|
-
} & React.RefAttributes<FlutterCupertinoFormRowElement>>;
|
|
3992
|
-
interface FlutterCupertinoFormRowPrefixProps {
|
|
3993
|
-
/**
|
|
3994
|
-
* HTML id attribute
|
|
3995
|
-
*/
|
|
3996
|
-
id?: string;
|
|
3997
|
-
/**
|
|
3998
|
-
* Additional CSS styles
|
|
3999
|
-
*/
|
|
4000
|
-
style?: React.CSSProperties;
|
|
4001
|
-
/**
|
|
4002
|
-
* Children elements
|
|
4003
|
-
*/
|
|
4004
|
-
children?: React.ReactNode;
|
|
4005
|
-
/**
|
|
4006
|
-
* Additional CSS class names
|
|
4007
|
-
*/
|
|
4008
|
-
className?: string;
|
|
4009
|
-
}
|
|
4010
|
-
interface FlutterCupertinoFormRowPrefixElement extends WebFElementWithMethods<{}> {
|
|
4011
|
-
}
|
|
4012
|
-
/**
|
|
4013
|
-
* FlutterCupertinoFormRowPrefix - WebF FlutterCupertinoFormRowPrefix component
|
|
4014
|
-
*
|
|
4015
|
-
* @example
|
|
4016
|
-
* ```tsx
|
|
4017
|
-
*
|
|
4018
|
-
* <FlutterCupertinoFormRowPrefix
|
|
4019
|
-
* // Add props here
|
|
4020
|
-
* >
|
|
4021
|
-
* Content
|
|
4022
|
-
* </FlutterCupertinoFormRowPrefix>
|
|
4023
|
-
* ```
|
|
4024
|
-
*/
|
|
4025
|
-
declare const FlutterCupertinoFormRowPrefix: React.ForwardRefExoticComponent<FlutterCupertinoFormRowPrefixProps & {
|
|
4026
|
-
className?: string;
|
|
4027
|
-
style?: React.CSSProperties;
|
|
4028
|
-
children?: React.ReactNode;
|
|
4029
|
-
} & React.RefAttributes<FlutterCupertinoFormRowPrefixElement>>;
|
|
4030
|
-
interface FlutterCupertinoFormRowHelperProps {
|
|
4031
|
-
/**
|
|
4032
|
-
* HTML id attribute
|
|
4033
|
-
*/
|
|
4034
|
-
id?: string;
|
|
4035
|
-
/**
|
|
4036
|
-
* Additional CSS styles
|
|
4037
|
-
*/
|
|
4038
|
-
style?: React.CSSProperties;
|
|
4039
|
-
/**
|
|
4040
|
-
* Children elements
|
|
4041
|
-
*/
|
|
4042
|
-
children?: React.ReactNode;
|
|
4043
|
-
/**
|
|
4044
|
-
* Additional CSS class names
|
|
4045
|
-
*/
|
|
4046
|
-
className?: string;
|
|
4047
|
-
}
|
|
4048
|
-
interface FlutterCupertinoFormRowHelperElement extends WebFElementWithMethods<{}> {
|
|
4049
|
-
}
|
|
4050
|
-
/**
|
|
4051
|
-
* FlutterCupertinoFormRowHelper - WebF FlutterCupertinoFormRowHelper component
|
|
4052
|
-
*
|
|
4053
|
-
* @example
|
|
4054
|
-
* ```tsx
|
|
4055
|
-
*
|
|
4056
|
-
* <FlutterCupertinoFormRowHelper
|
|
4057
|
-
* // Add props here
|
|
4058
|
-
* >
|
|
4059
|
-
* Content
|
|
4060
|
-
* </FlutterCupertinoFormRowHelper>
|
|
4061
|
-
* ```
|
|
4062
|
-
*/
|
|
4063
|
-
declare const FlutterCupertinoFormRowHelper: React.ForwardRefExoticComponent<FlutterCupertinoFormRowHelperProps & {
|
|
4064
|
-
className?: string;
|
|
4065
|
-
style?: React.CSSProperties;
|
|
4066
|
-
children?: React.ReactNode;
|
|
4067
|
-
} & React.RefAttributes<FlutterCupertinoFormRowHelperElement>>;
|
|
4068
|
-
interface FlutterCupertinoFormRowErrorProps {
|
|
4069
|
-
/**
|
|
4070
|
-
* HTML id attribute
|
|
4071
|
-
*/
|
|
4072
|
-
id?: string;
|
|
4073
|
-
/**
|
|
4074
|
-
* Additional CSS styles
|
|
4075
|
-
*/
|
|
4076
|
-
style?: React.CSSProperties;
|
|
4077
|
-
/**
|
|
4078
|
-
* Children elements
|
|
4079
|
-
*/
|
|
4080
|
-
children?: React.ReactNode;
|
|
4081
|
-
/**
|
|
4082
|
-
* Additional CSS class names
|
|
4083
|
-
*/
|
|
4084
|
-
className?: string;
|
|
4085
|
-
}
|
|
4086
|
-
interface FlutterCupertinoFormRowErrorElement extends WebFElementWithMethods<{}> {
|
|
4087
|
-
}
|
|
4088
|
-
/**
|
|
4089
|
-
* FlutterCupertinoFormRowError - WebF FlutterCupertinoFormRowError component
|
|
4090
|
-
*
|
|
4091
|
-
* @example
|
|
4092
|
-
* ```tsx
|
|
4093
|
-
*
|
|
4094
|
-
* <FlutterCupertinoFormRowError
|
|
4095
|
-
* // Add props here
|
|
4096
|
-
* >
|
|
4097
|
-
* Content
|
|
4098
|
-
* </FlutterCupertinoFormRowError>
|
|
4099
|
-
* ```
|
|
4100
|
-
*/
|
|
4101
|
-
declare const FlutterCupertinoFormRowError: React.ForwardRefExoticComponent<FlutterCupertinoFormRowErrorProps & {
|
|
4102
|
-
className?: string;
|
|
4103
|
-
style?: React.CSSProperties;
|
|
4104
|
-
children?: React.ReactNode;
|
|
4105
|
-
} & React.RefAttributes<FlutterCupertinoFormRowErrorElement>>;
|
|
4106
|
-
|
|
4107
|
-
interface FlutterCupertinoDatePickerProps {
|
|
4108
|
-
/**
|
|
4109
|
-
* mode property
|
|
4110
|
-
* @default undefined
|
|
4111
|
-
*/
|
|
4112
|
-
mode?: string;
|
|
4113
|
-
/**
|
|
4114
|
-
* minimumDate property
|
|
4115
|
-
* @default undefined
|
|
4116
|
-
*/
|
|
4117
|
-
minimumDate?: string;
|
|
4118
|
-
/**
|
|
4119
|
-
* maximumDate property
|
|
4120
|
-
* @default undefined
|
|
4121
|
-
*/
|
|
4122
|
-
maximumDate?: string;
|
|
4123
|
-
/**
|
|
4124
|
-
* minuteInterval property
|
|
4125
|
-
* @default undefined
|
|
4126
|
-
*/
|
|
4127
|
-
minuteInterval?: string;
|
|
4128
|
-
/**
|
|
4129
|
-
* value property
|
|
4130
|
-
* @default undefined
|
|
4131
|
-
*/
|
|
4132
|
-
value?: string;
|
|
4133
|
-
/**
|
|
4134
|
-
* minimumYear property
|
|
4135
|
-
* @default undefined
|
|
4136
|
-
*/
|
|
4137
|
-
minimumYear?: string;
|
|
4138
|
-
/**
|
|
4139
|
-
* maximumYear property
|
|
4140
|
-
* @default undefined
|
|
4141
|
-
*/
|
|
4142
|
-
maximumYear?: string;
|
|
4143
|
-
/**
|
|
4144
|
-
* showDayOfWeek property
|
|
4145
|
-
* @default undefined
|
|
4146
|
-
*/
|
|
4147
|
-
showDayOfWeek?: string;
|
|
4148
|
-
/**
|
|
4149
|
-
* dateOrder property
|
|
4150
|
-
* @default undefined
|
|
4151
|
-
*/
|
|
4152
|
-
dateOrder?: string;
|
|
4153
|
-
/**
|
|
4154
|
-
* height property
|
|
4155
|
-
* @default undefined
|
|
4156
|
-
*/
|
|
4157
|
-
height?: string;
|
|
4158
|
-
/**
|
|
4159
|
-
* use24H property
|
|
4160
|
-
* @default undefined
|
|
4161
|
-
*/
|
|
4162
|
-
use24H?: boolean;
|
|
4163
|
-
/**
|
|
4164
|
-
* change event handler
|
|
4165
|
-
*/
|
|
4166
|
-
onChange?: (event: CustomEvent<string>) => void;
|
|
4167
|
-
/**
|
|
4168
|
-
* HTML id attribute
|
|
4169
|
-
*/
|
|
4170
|
-
id?: string;
|
|
4171
|
-
/**
|
|
4172
|
-
* Additional CSS styles
|
|
4173
|
-
*/
|
|
4174
|
-
style?: React.CSSProperties;
|
|
4175
|
-
/**
|
|
4176
|
-
* Children elements
|
|
4177
|
-
*/
|
|
4178
|
-
children?: React.ReactNode;
|
|
4179
|
-
/**
|
|
4180
|
-
* Additional CSS class names
|
|
4181
|
-
*/
|
|
4182
|
-
className?: string;
|
|
4183
|
-
}
|
|
4184
|
-
interface FlutterCupertinoDatePickerElement extends WebFElementWithMethods<{}> {
|
|
4185
|
-
}
|
|
4186
|
-
/**
|
|
4187
|
-
* FlutterCupertinoDatePicker - WebF FlutterCupertinoDatePicker component
|
|
4188
|
-
*
|
|
4189
|
-
* @example
|
|
4190
|
-
* ```tsx
|
|
4191
|
-
*
|
|
4192
|
-
* <FlutterCupertinoDatePicker
|
|
4193
|
-
* // Add props here
|
|
4194
|
-
* >
|
|
4195
|
-
* Content
|
|
4196
|
-
* </FlutterCupertinoDatePicker>
|
|
4197
|
-
* ```
|
|
4198
|
-
*/
|
|
4199
|
-
declare const FlutterCupertinoDatePicker: React.ForwardRefExoticComponent<FlutterCupertinoDatePickerProps & {
|
|
4200
|
-
className?: string;
|
|
4201
|
-
style?: React.CSSProperties;
|
|
4202
|
-
children?: React.ReactNode;
|
|
4203
|
-
} & React.RefAttributes<FlutterCupertinoDatePickerElement>>;
|
|
4204
|
-
|
|
4205
|
-
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 };
|
|
3035
|
+
export { CupertinoColors, CupertinoIcons, FlutterCupertinoActionSheet, type FlutterCupertinoActionSheetElement, FlutterCupertinoAlert, type FlutterCupertinoAlertElement, FlutterCupertinoButton, type FlutterCupertinoButtonElement, FlutterCupertinoCheckbox, type FlutterCupertinoCheckboxElement, FlutterCupertinoContextMenu, type FlutterCupertinoContextMenuElement, FlutterCupertinoIcon, type FlutterCupertinoIconElement, FlutterCupertinoListSection, type FlutterCupertinoListSectionElement, FlutterCupertinoListSectionFooter, type FlutterCupertinoListSectionFooterElement, FlutterCupertinoListSectionHeader, type FlutterCupertinoListSectionHeaderElement, FlutterCupertinoListTile, FlutterCupertinoListTileAdditionalInfo, type FlutterCupertinoListTileAdditionalInfoElement, type FlutterCupertinoListTileElement, FlutterCupertinoListTileLeading, type FlutterCupertinoListTileLeadingElement, FlutterCupertinoListTileSubtitle, type FlutterCupertinoListTileSubtitleElement, FlutterCupertinoListTileTrailing, type FlutterCupertinoListTileTrailingElement, FlutterCupertinoModalPopup, type FlutterCupertinoModalPopupElement, FlutterCupertinoRadio, type FlutterCupertinoRadioElement, 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 };
|