File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export const com_mendix_widget_native_popupmenu_PopupMenu: PopupMenuType = {
2626 itemStyle : {
2727 rippleColor : contrast . lower ,
2828 } ,
29- containerStyle : {
29+ container : {
3030 // All ViewStyle properties are allowed
3131 } ,
3232 } ,
@@ -51,7 +51,7 @@ export const com_mendix_widget_native_popupmenu_PopupMenu: PopupMenuType = {
5151 // All TextStyle properties are allowed
5252 } ,
5353 } ,
54- containerStyle : {
54+ container : {
5555 // All ViewStyle properties are allowed
5656 height : 40 ,
5757 } ,
Original file line number Diff line number Diff line change @@ -338,24 +338,25 @@ export interface PopupMenuType {
338338}
339339
340340interface CustomItemStyle extends ViewStyle {
341- containerStyle ?: ViewStyle ;
341+ container ?: ViewStyle ;
342342 itemStyle : { rippleColor ?: string } ;
343343}
344344
345345interface BasicItemStyle {
346346 itemStyle ?: ItemStyle ;
347- containerStyle ?: ViewStyle ;
347+ container ?: ViewStyle ;
348348 dividerColor ?: string ;
349349}
350+
350351interface ItemStyle {
352+ rippleColor ?: string ;
351353 ellipsizeMode ?: TextProps [ "ellipsizeMode" ] ;
352354 defaultStyle ?: TextStyle ;
353355 primaryStyle ?: TextStyle ;
354356 dangerStyle ?: TextStyle ;
355357 customStyle ?: TextStyle ;
356358}
357359
358-
359360// QR Code
360361export interface QRCodeType {
361362 container ?: ViewStyle ,
You can’t perform that action at this time.
0 commit comments