diff --git a/package.json b/package.json index 8f6cb7d9..793610a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atlas-ui-framework", - "version": "2.7.2", + "version": "2.7.3", "description": "Mendix Atlas UI is the foundation of making beautiful apps with Mendix. For more information about the framework go to https://atlas.mendix.com.", "main": "", "scripts": { diff --git a/styles/native/ts/core/widgets/floatingactionbutton.ts b/styles/native/ts/core/widgets/floatingactionbutton.ts index 7a01fc83..12e43cb6 100644 --- a/styles/native/ts/core/widgets/floatingactionbutton.ts +++ b/styles/native/ts/core/widgets/floatingactionbutton.ts @@ -1,5 +1,6 @@ import { FloatingActionButtonType } from "../../types/widgets"; import { background, brand, contrast, font } from "../variables"; + /* DISCLAIMER: @@ -67,6 +68,8 @@ export const com_mendix_widget_native_floatingactionbutton_FloatingActionButton: secondaryButtonCaptionContainer: { // All ViewStyle properties are allowed marginHorizontal: 5, + backgroundColor: background.secondary, + borderColor: background.secondary, elevation: 2, shadowOpacity: 0.3, shadowRadius: 4, diff --git a/styles/native/ts/core/widgets/videoplayer.ts b/styles/native/ts/core/widgets/videoplayer.ts index 48adc8d3..089560ce 100644 --- a/styles/native/ts/core/widgets/videoplayer.ts +++ b/styles/native/ts/core/widgets/videoplayer.ts @@ -21,4 +21,16 @@ export const com_mendix_widget_native_videoplayer_VideoPlayer: VideoPlayerType = video: { // All ViewStyle properties are allowed }, + fullScreenVideoPlayer: { + // All ViewStyle properties are allowed + }, + controlBtnContainerStyle: { + // All ViewStyle properties are allowed + }, + fullScreenVideoStyle: { + // All ViewStyle properties are allowed + }, + fullScreenActivityIndicatorStyle: { + // All ViewStyle properties are allowed + }, }; diff --git a/styles/native/ts/types/widgets.d.ts b/styles/native/ts/types/widgets.d.ts index 1c1f747f..9b140d7f 100644 --- a/styles/native/ts/types/widgets.d.ts +++ b/styles/native/ts/types/widgets.d.ts @@ -621,7 +621,11 @@ export interface VideoPlayerType { indicator?: { backgroundColor?: string, }, - video?: ViewStyle + video?: ViewStyle, + fullScreenVideoPlayer?: ViewStyle, + controlBtnContainerStyle?: ViewStyle, + fullScreenVideoStyle?: ViewStyle, + fullScreenActivityIndicatorStyle?: ViewStyle, } // Web View