Skip to content

Commit 7f74718

Browse files
authored
Merge pull request #123 from mendix/develop
Release 2.7.3
2 parents 4048091 + c2f831c commit 7f74718

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "atlas-ui-framework",
3-
"version": "2.7.2",
3+
"version": "2.7.3",
44
"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.",
55
"main": "",
66
"scripts": {

styles/native/ts/core/widgets/floatingactionbutton.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { FloatingActionButtonType } from "../../types/widgets";
22
import { background, brand, contrast, font } from "../variables";
3+
34
/*
45
56
DISCLAIMER:
@@ -67,6 +68,8 @@ export const com_mendix_widget_native_floatingactionbutton_FloatingActionButton:
6768
secondaryButtonCaptionContainer: {
6869
// All ViewStyle properties are allowed
6970
marginHorizontal: 5,
71+
backgroundColor: background.secondary,
72+
borderColor: background.secondary,
7073
elevation: 2,
7174
shadowOpacity: 0.3,
7275
shadowRadius: 4,

styles/native/ts/core/widgets/videoplayer.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,16 @@ export const com_mendix_widget_native_videoplayer_VideoPlayer: VideoPlayerType =
2121
video: {
2222
// All ViewStyle properties are allowed
2323
},
24+
fullScreenVideoPlayer: {
25+
// All ViewStyle properties are allowed
26+
},
27+
controlBtnContainerStyle: {
28+
// All ViewStyle properties are allowed
29+
},
30+
fullScreenVideoStyle: {
31+
// All ViewStyle properties are allowed
32+
},
33+
fullScreenActivityIndicatorStyle: {
34+
// All ViewStyle properties are allowed
35+
},
2436
};

styles/native/ts/types/widgets.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,11 @@ export interface VideoPlayerType {
621621
indicator?: {
622622
backgroundColor?: string,
623623
},
624-
video?: ViewStyle
624+
video?: ViewStyle,
625+
fullScreenVideoPlayer?: ViewStyle,
626+
controlBtnContainerStyle?: ViewStyle,
627+
fullScreenVideoStyle?: ViewStyle,
628+
fullScreenActivityIndicatorStyle?: ViewStyle,
625629
}
626630

627631
// Web View

0 commit comments

Comments
 (0)