@@ -117,6 +117,7 @@ namespace JS {
117
117
folly::Optional<double > cancelButtonIndex () const ;
118
118
folly::Optional<double > anchor () const ;
119
119
folly::Optional<double > tintColor () const ;
120
+ NSString *userInterfaceStyle () const ;
120
121
121
122
SpecShowActionSheetWithOptionsOptions (NSDictionary *const v) : _v (v) {}
122
123
private:
@@ -138,6 +139,7 @@ namespace JS {
138
139
folly::Optional<double > anchor () const ;
139
140
folly::Optional<double > tintColor () const ;
140
141
folly::Optional<facebook::react::LazyVector<NSString *>> excludedActivityTypes () const ;
142
+ NSString *userInterfaceStyle () const ;
141
143
142
144
SpecShowShareActionSheetWithOptionsOptions (NSDictionary *const v) : _v (v) {}
143
145
private:
@@ -2935,6 +2937,11 @@ inline folly::Optional<double> JS::NativeActionSheetManager::SpecShowActionSheet
2935
2937
id const p = _v[@" tintColor" ];
2936
2938
return RCTBridgingToOptionalDouble (p);
2937
2939
}
2940
+ inline NSString *JS::NativeActionSheetManager::SpecShowActionSheetWithOptionsOptions::userInterfaceStyle () const
2941
+ {
2942
+ id const p = _v[@" userInterfaceStyle" ];
2943
+ return RCTBridgingToString (p);
2944
+ }
2938
2945
inline NSString *JS::NativeActionSheetManager::SpecShowShareActionSheetWithOptionsOptions::message () const
2939
2946
{
2940
2947
id const p = _v[@" message" ];
@@ -2965,6 +2972,11 @@ inline folly::Optional<facebook::react::LazyVector<NSString *>> JS::NativeAction
2965
2972
id const p = _v[@" excludedActivityTypes" ];
2966
2973
return RCTBridgingToOptionalVec (p, ^NSString *(id itemValue_0) { return RCTBridgingToString (itemValue_0); });
2967
2974
}
2975
+ inline NSString *JS::NativeActionSheetManager::SpecShowShareActionSheetWithOptionsOptions::userInterfaceStyle () const
2976
+ {
2977
+ id const p = _v[@" userInterfaceStyle" ];
2978
+ return RCTBridgingToString (p);
2979
+ }
2968
2980
inline NSString *JS::NativeActionSheetManager::SpecShowShareActionSheetWithOptionsFailureCallbackError::domain () const
2969
2981
{
2970
2982
id const p = _v[@" domain" ];
0 commit comments