Skip to content

Commit

Permalink
Merge pull request #121 from mendix/develop
Browse files Browse the repository at this point in the history
Release 2.7.2
  • Loading branch information
jordanch committed Jul 5, 2021
2 parents b9af272 + 1556616 commit 4048091
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 5 deletions.
44 changes: 42 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atlas-ui-framework",
"version": "2.7.1",
"version": "2.7.2",
"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": {
Expand Down
5 changes: 4 additions & 1 deletion styles/native/ts/core/widgets/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ export const DropDown: DropDownType = {
},
itemContainer: {
// All ViewStyle properties & rippleColor & activeOpacity & underlayColor are allowed
maxWidth: 500,
width: "100%",
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
paddingVertical: 6,
paddingHorizontal: 16,
backgroundColor: input.backgroundColor,
Expand All @@ -99,6 +100,8 @@ export const DropDown: DropDownType = {
},
selectedItemContainer: {
// All ViewStyle properties are allowed
width: "100%",
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
backgroundColor: contrast.lowest,
},
/* New dropdown styles end */
Expand Down
5 changes: 4 additions & 1 deletion styles/native/ts/core/widgets/referenceselector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ export const ReferenceSelector: DropDownType = {
},
itemContainer: {
// All ViewStyle properties & rippleColor & activeOpacity & underlayColor are allowed
maxWidth: 500,
width: "100%",
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
paddingVertical: 6,
paddingHorizontal: 16,
backgroundColor: input.backgroundColor,
Expand All @@ -101,6 +102,8 @@ export const ReferenceSelector: DropDownType = {
},
selectedItemContainer: {
// All ViewStyle properties are allowed
width: "100%",
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
backgroundColor: contrast.lowest,
},
/* New dropdown styles end */
Expand Down

0 comments on commit 4048091

Please sign in to comment.