Skip to content

Commit 4048091

Browse files
authored
Merge pull request #121 from mendix/develop
Release 2.7.2
2 parents b9af272 + 1556616 commit 4048091

File tree

4 files changed

+51
-5
lines changed

4 files changed

+51
-5
lines changed

package-lock.json

Lines changed: 42 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.1",
3+
"version": "2.7.2",
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/dropdown.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ export const DropDown: DropDownType = {
7979
},
8080
itemContainer: {
8181
// All ViewStyle properties & rippleColor & activeOpacity & underlayColor are allowed
82-
maxWidth: 500,
82+
width: "100%",
83+
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
8384
paddingVertical: 6,
8485
paddingHorizontal: 16,
8586
backgroundColor: input.backgroundColor,
@@ -99,6 +100,8 @@ export const DropDown: DropDownType = {
99100
},
100101
selectedItemContainer: {
101102
// All ViewStyle properties are allowed
103+
width: "100%",
104+
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
102105
backgroundColor: contrast.lowest,
103106
},
104107
/* New dropdown styles end */

styles/native/ts/core/widgets/referenceselector.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ export const ReferenceSelector: DropDownType = {
8181
},
8282
itemContainer: {
8383
// All ViewStyle properties & rippleColor & activeOpacity & underlayColor are allowed
84-
maxWidth: 500,
84+
width: "100%",
85+
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
8586
paddingVertical: 6,
8687
paddingHorizontal: 16,
8788
backgroundColor: input.backgroundColor,
@@ -101,6 +102,8 @@ export const ReferenceSelector: DropDownType = {
101102
},
102103
selectedItemContainer: {
103104
// All ViewStyle properties are allowed
105+
width: "100%",
106+
maxWidth: undefined, // unset core widget's default maxWidth value (prior to 8.18.7)
104107
backgroundColor: contrast.lowest,
105108
},
106109
/* New dropdown styles end */

0 commit comments

Comments
 (0)