From d78ea5c526206c65175e149c3e68fa699efcb4d6 Mon Sep 17 00:00:00 2001 From: Wesley Date: Wed, 11 Mar 2020 13:41:32 +0100 Subject: [PATCH 1/9] fix(native-switch): update thumb colors --- styles/native/core/widgets/checkbox.js | 6 +++--- styles/native/core/widgets/feedback.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/styles/native/core/widgets/checkbox.js b/styles/native/core/widgets/checkbox.js index e97adba3..e23d42b4 100644 --- a/styles/native/core/widgets/checkbox.js +++ b/styles/native/core/widgets/checkbox.js @@ -43,7 +43,7 @@ export const CheckBox = { ...TextBox.inputError, thumbColorOn: background.primary, trackColorOn: brand.danger, - thumbColorOff: background.lowest, + thumbColorOff: contrast.lower, trackColorOff: contrast.lowest, }, validationMessage: { @@ -67,11 +67,11 @@ export const CheckBoxVertical = { ...TextBoxVertical.inputError, thumbColorOn: background.primary, trackColorOn: brand.danger, - thumbColorOff: background.lowest, + thumbColorOff: contrast.lower, trackColorOff: contrast.lowest, }, validationMessage: { ...TextBoxVertical.validationMessage, alignSelf: "stretch", }, -}; \ No newline at end of file +}; diff --git a/styles/native/core/widgets/feedback.js b/styles/native/core/widgets/feedback.js index 574228ad..56f9c9f5 100644 --- a/styles/native/core/widgets/feedback.js +++ b/styles/native/core/widgets/feedback.js @@ -74,7 +74,7 @@ export const com_mendix_widget_native_feedback_Feedback = { marginRight: Platform.select({ ios: 0, android: -5 }), thumbColorOn: background.primary, trackColorOn: brand.success, - thumbColorOff: background.lowest, + thumbColorOff: contrast.lower, trackColorOff: contrast.lowest, }, button: { From bc38fc3f13b59c859443b39a376df8664356180c Mon Sep 17 00:00:00 2001 From: Wesley Date: Wed, 11 Mar 2020 13:41:32 +0100 Subject: [PATCH 2/9] fix(native-switch): update thumb colors --- styles/native/core/widgets/checkbox.js | 6 +++--- styles/native/core/widgets/feedback.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/styles/native/core/widgets/checkbox.js b/styles/native/core/widgets/checkbox.js index e97adba3..e23d42b4 100644 --- a/styles/native/core/widgets/checkbox.js +++ b/styles/native/core/widgets/checkbox.js @@ -43,7 +43,7 @@ export const CheckBox = { ...TextBox.inputError, thumbColorOn: background.primary, trackColorOn: brand.danger, - thumbColorOff: background.lowest, + thumbColorOff: contrast.lower, trackColorOff: contrast.lowest, }, validationMessage: { @@ -67,11 +67,11 @@ export const CheckBoxVertical = { ...TextBoxVertical.inputError, thumbColorOn: background.primary, trackColorOn: brand.danger, - thumbColorOff: background.lowest, + thumbColorOff: contrast.lower, trackColorOff: contrast.lowest, }, validationMessage: { ...TextBoxVertical.validationMessage, alignSelf: "stretch", }, -}; \ No newline at end of file +}; diff --git a/styles/native/core/widgets/feedback.js b/styles/native/core/widgets/feedback.js index 574228ad..56f9c9f5 100644 --- a/styles/native/core/widgets/feedback.js +++ b/styles/native/core/widgets/feedback.js @@ -74,7 +74,7 @@ export const com_mendix_widget_native_feedback_Feedback = { marginRight: Platform.select({ ios: 0, android: -5 }), thumbColorOn: background.primary, trackColorOn: brand.success, - thumbColorOff: background.lowest, + thumbColorOff: contrast.lower, trackColorOff: contrast.lowest, }, button: { From 465b7d354f6a0e9ef5f34b1d5a5eca128163a4b9 Mon Sep 17 00:00:00 2001 From: Wesley Date: Tue, 17 Mar 2020 16:59:36 +0100 Subject: [PATCH 3/9] fix(native-tabcontainer): change labels to uppercase --- styles/native/app/custom-variables.js | 2 ++ styles/native/core/variables.js | 2 ++ styles/native/core/widgets/tabcontainer.js | 2 ++ 3 files changed, 6 insertions(+) diff --git a/styles/native/app/custom-variables.js b/styles/native/app/custom-variables.js index 47bd7db0..8452ff30 100644 --- a/styles/native/app/custom-variables.js +++ b/styles/native/app/custom-variables.js @@ -206,10 +206,12 @@ export const tabcontainer = { label: { color: contrast.highest, fontWeight: font.weightBold, + textTransform: "uppercase", }, activeLabel: { color: brand.primary, fontWeight: font.weightBold, + textTransform: "uppercase", }, }; diff --git a/styles/native/core/variables.js b/styles/native/core/variables.js index 4c2f5f76..0b7771f1 100644 --- a/styles/native/core/variables.js +++ b/styles/native/core/variables.js @@ -208,10 +208,12 @@ let tabcontainer = { label: { color: contrast.highest, fontWeight: font.weightBold, + textTransform: "uppercase" }, activeLabel: { color: brand.primary, fontWeight: font.weightBold, + textTransform: "uppercase" }, }; tabcontainer = merge(tabcontainer, custom.tabcontainer || {}); diff --git a/styles/native/core/widgets/tabcontainer.js b/styles/native/core/widgets/tabcontainer.js index 0ed95e32..d1e9cb5d 100644 --- a/styles/native/core/widgets/tabcontainer.js +++ b/styles/native/core/widgets/tabcontainer.js @@ -40,11 +40,13 @@ export const TabContainer = { color: tabcontainer.label.color, fontFamily: font.family, fontWeight: tabcontainer.label.fontWeight, + textTransform: tabcontainer.label.textTransform, }, activeLabel: { // All TextStyle properties are allowed color: tabcontainer.activeLabel.color, fontFamily: font.family, fontWeight: tabcontainer.activeLabel.fontWeight, + textTransform: tabcontainer.activeLabel.textTransform, }, }; From 093fc1c5e6ac1b49a9a58673a9f9c25e91338bee Mon Sep 17 00:00:00 2001 From: Wesley Date: Thu, 19 Mar 2020 17:58:06 +0100 Subject: [PATCH 4/9] fix(native): update shadow widgets --- styles/native/app/custom-variables.js | 3 +-- styles/native/core/variables.js | 7 +++---- styles/native/core/widgets/carousel.js | 7 +++---- styles/native/core/widgets/feedback.js | 5 ++--- .../core/widgets/floatingactionbutton.js | 18 ++++++++---------- styles/native/core/widgets/introscreen.js | 11 +++++------ styles/native/core/widgets/navigation.js | 2 +- styles/native/core/widgets/slider.js | 5 ++--- styles/native/core/widgets/tabcontainer.js | 1 + .../atlas_ui_resources/buildingblocks/card.js | 5 ++--- 10 files changed, 28 insertions(+), 36 deletions(-) diff --git a/styles/native/app/custom-variables.js b/styles/native/app/custom-variables.js index 8452ff30..1865d98b 100644 --- a/styles/native/app/custom-variables.js +++ b/styles/native/app/custom-variables.js @@ -5,7 +5,6 @@ import { setColorBasedOnBackground, setContrastScale, } from "../core/helpers/_functions/convertcolors"; -import { shadeBlendConvert } from "../core/helpers/_functions/shadeblendconvert.js"; /* ==> You can find a copy of the core variables below. (From styles/native/core/variables.js) @@ -188,7 +187,7 @@ export const navigation = { activityIndicatorColor: font.color, backgroundColor: `rgba(0, 0, 0, 0.5)`, containerBackgroundColor: background.secondary, - shadowColor: shadeBlendConvert(-0.6, background.primary), // Only for iOS + shadowColor: "#000", // Only for iOS fontSize: font.size, }, }; diff --git a/styles/native/core/variables.js b/styles/native/core/variables.js index 0b7771f1..5a4fb333 100644 --- a/styles/native/core/variables.js +++ b/styles/native/core/variables.js @@ -4,7 +4,6 @@ import adjustFont, { height, width } from "./helpers/_function import { setColorBasedOnBackground, setContrastScale } from "./helpers/_functions/convertcolors"; import { anyColorToRgbString } from "./helpers/_functions/convertcolors.js"; import merge from "./helpers/_functions/mergeobjects"; -import { shadeBlendConvert } from "./helpers/_functions/shadeblendconvert.js"; //== Global variables //## Variables to be used during styling @@ -189,7 +188,7 @@ let navigation = { activityIndicatorColor: font.color, backgroundColor: `rgba(0, 0, 0, 0.5)`, containerBackgroundColor: background.secondary, - shadowColor: shadeBlendConvert(-0.6, background.primary), // Only for iOS + shadowColor: "#000", // Only for iOS fontSize: font.size, }, }; @@ -208,12 +207,12 @@ let tabcontainer = { label: { color: contrast.highest, fontWeight: font.weightBold, - textTransform: "uppercase" + textTransform: "uppercase", }, activeLabel: { color: brand.primary, fontWeight: font.weightBold, - textTransform: "uppercase" + textTransform: "uppercase", }, }; tabcontainer = merge(tabcontainer, custom.tabcontainer || {}); diff --git a/styles/native/core/widgets/carousel.js b/styles/native/core/widgets/carousel.js index f9ca48d3..ca6cc5bf 100644 --- a/styles/native/core/widgets/carousel.js +++ b/styles/native/core/widgets/carousel.js @@ -1,5 +1,4 @@ -import { shadeBlendConvert } from "../helpers/_functions/shadeblendconvert.js"; -import { background, brand, contrast, font, spacing } from "../variables.js"; +import { brand, contrast, font, spacing } from "../variables.js"; // // DISCLAIMER: @@ -70,8 +69,8 @@ const carouselCardLayout = { padding: 8, paddingBottom: spacing.regular, elevation: 1.5, - shadowColor: shadeBlendConvert(-0.5, background.primary), - shadowOpacity: 0.6, + shadowColor: "#000", + shadowOpacity: 0.5, shadowRadius: 6, shadowOffset: { width: 0, diff --git a/styles/native/core/widgets/feedback.js b/styles/native/core/widgets/feedback.js index 56f9c9f5..54245180 100644 --- a/styles/native/core/widgets/feedback.js +++ b/styles/native/core/widgets/feedback.js @@ -1,5 +1,4 @@ import { Platform } from "react-native"; -import { shadeBlendConvert } from "../helpers/_functions/shadeblendconvert.js"; import { background, border, brand, button, contrast, font, input } from "../variables"; // @@ -23,8 +22,8 @@ export const com_mendix_widget_native_feedback_Feedback = { borderTopLeftRadius: button.borderRadius, borderBottomLeftRadius: button.borderRadius, elevation: 1.5, - shadowColor: shadeBlendConvert(-0.2, background.primary), - shadowOpacity: 0.7, + shadowColor: "#000", + shadowOpacity: 0.2, shadowRadius: 10, shadowOffset: { width: 0, diff --git a/styles/native/core/widgets/floatingactionbutton.js b/styles/native/core/widgets/floatingactionbutton.js index f5d2c0ce..c23537e3 100644 --- a/styles/native/core/widgets/floatingactionbutton.js +++ b/styles/native/core/widgets/floatingactionbutton.js @@ -1,4 +1,3 @@ -import { shadeBlendConvert } from "../helpers/_functions/shadeblendconvert.js"; import { background, brand, contrast, font } from "../variables"; // @@ -22,14 +21,14 @@ export const com_mendix_widget_native_floatingactionbutton_FloatingActionButton size: 50, rippleColor: contrast.lowest, backgroundColor: brand.primary, - shadowColor: shadeBlendConvert(-0.3, background.primary), - shadowOpacity: 0.9, + elevation: 2, + shadowColor: "#000", + shadowOpacity: 0.3, shadowRadius: 4, shadowOffset: { width: 0, height: 2, }, - elevation: 2, }, buttonIcon: { size: font.sizeLarge, @@ -38,14 +37,14 @@ export const com_mendix_widget_native_floatingactionbutton_FloatingActionButton secondaryButton: { size: 30, backgroundColor: background.secondary, - shadowColor: shadeBlendConvert(-0.2, background.primary), - shadowOpacity: 0.9, + elevation: 2, + shadowColor: "#000", + shadowOpacity: 0.3, shadowRadius: 4, shadowOffset: { width: 0, height: 2, }, - elevation: 2, }, secondaryButtonIcon: { size: font.sizeSmall, @@ -54,13 +53,12 @@ export const com_mendix_widget_native_floatingactionbutton_FloatingActionButton secondaryButtonCaption: {}, secondaryButtonCaptionContainer: { marginHorizontal: 5, - shadowColor: shadeBlendConvert(-0.2, background.primary), - shadowOpacity: 0.9, + elevation: 2, + shadowOpacity: 0.3, shadowRadius: 4, shadowOffset: { width: 0, height: 2, }, - elevation: 2, }, }; diff --git a/styles/native/core/widgets/introscreen.js b/styles/native/core/widgets/introscreen.js index dc6478ef..6fc95943 100644 --- a/styles/native/core/widgets/introscreen.js +++ b/styles/native/core/widgets/introscreen.js @@ -1,6 +1,5 @@ -import { isIphoneWithNotch } from "../helpers/_functions/device.js"; -import { shadeBlendConvert } from "../helpers/_functions/shadeblendconvert.js"; -import { background, button, font, spacing } from "../variables.js"; +import { isIphoneWithNotch } from "../helpers/_functions/device.js"; +import { background, button, contrast, font, spacing } from "../variables.js"; // @@ -17,7 +16,7 @@ import { background, button, font, spacing } from "../variables.js"; ========================================================================== */ // Button styles when the chose to show the indicator above the buttons -export const introScreenButtonPaginationAbove = { +const introScreenButtonPaginationAbove = { container: { // Ripplecolor and all ViewStyle properties are allowed flexDirection: "row", @@ -43,7 +42,7 @@ export const introScreenButtonPaginationAbove = { }, }; // Button styles when the chose to show the indicator between the buttons -export const introScreenButtonPaginationBetween = { +const introScreenButtonPaginationBetween = { container: { // Ripplecolor and all ViewStyle properties are allowed flexDirection: "row", @@ -97,7 +96,7 @@ export const com_mendix_widget_native_introscreen_IntroScreen = { }, dotStyle: { // All ViewStyle properties are allowed - backgroundColor: shadeBlendConvert(0.5, background.brandPrimary), + backgroundColor: contrast.lower, transform: [{ scale: 0.5 }], }, activeDotStyle: { diff --git a/styles/native/core/widgets/navigation.js b/styles/native/core/widgets/navigation.js index cb1c9e10..965ab582 100644 --- a/styles/native/core/widgets/navigation.js +++ b/styles/native/core/widgets/navigation.js @@ -56,7 +56,7 @@ export const navigationStyle = { borderRadius: border.radius, elevation: 1.5, shadowColor: navigation.progressOverlay.shadowColor, - shadowOpacity: 0.7, + shadowOpacity: 0.1, shadowRadius: 10, shadowOffset: { width: 0, diff --git a/styles/native/core/widgets/slider.js b/styles/native/core/widgets/slider.js index abb63704..92a58382 100644 --- a/styles/native/core/widgets/slider.js +++ b/styles/native/core/widgets/slider.js @@ -1,5 +1,4 @@ import { Platform } from "react-native"; -import { shadeBlendConvert } from "../helpers/_functions/shadeblendconvert.js"; import { background, border, brand, contrast, font, input } from "../variables"; // @@ -44,7 +43,7 @@ export const com_mendix_widget_native_slider_Slider = { ios: { width: 30, height: 30, - shadowColor: shadeBlendConvert(-0.3, background.primary), + shadowColor: "#000", shadowOpacity: 0.2, borderColor: contrast.lowest, shadowOffset: { width: 0, height: 1 }, @@ -75,7 +74,7 @@ export const com_mendix_widget_native_slider_Slider = { ios: { borderColor: contrast.lowest, backgroundColor: background.secondary, - shadowColor: shadeBlendConvert(-0.3, background.primary), + shadowColor: "#000", shadowOpacity: 0.2, shadowOffset: { width: 0, height: 1 }, }, diff --git a/styles/native/core/widgets/tabcontainer.js b/styles/native/core/widgets/tabcontainer.js index d1e9cb5d..180263e1 100644 --- a/styles/native/core/widgets/tabcontainer.js +++ b/styles/native/core/widgets/tabcontainer.js @@ -25,6 +25,7 @@ export const TabContainer = { pressOpacity: 0.8, backgroundColor: tabcontainer.tabBar.backgroundColor, scrollEnabled: false, + paddingVertical: spacing.smaller, }, indicator: { // All ViewStyle properties are allowed diff --git a/styles/native/ui_resources/atlas_ui_resources/buildingblocks/card.js b/styles/native/ui_resources/atlas_ui_resources/buildingblocks/card.js index 2a007b69..d2fb30fb 100644 --- a/styles/native/ui_resources/atlas_ui_resources/buildingblocks/card.js +++ b/styles/native/ui_resources/atlas_ui_resources/buildingblocks/card.js @@ -1,5 +1,4 @@ import { Platform } from "react-native"; -import { shadeBlendConvert } from "../../../core/helpers/_functions/shadeblendconvert.js"; import { background, border, contrast, spacing } from "../../../core/variables"; /* ========================================================================== @@ -20,8 +19,8 @@ export const card = { }, }), elevation: 1.5, - shadowColor: shadeBlendConvert(-0.2, background.primary), - shadowOpacity: 0.7, + shadowColor: "#000", + shadowOpacity: 0.1, shadowRadius: 10, shadowOffset: { width: 0, From 8ee61add42e5a8943984d2058d53460017bda85c Mon Sep 17 00:00:00 2001 From: Wesley Date: Thu, 19 Mar 2020 17:58:39 +0100 Subject: [PATCH 5/9] first draft --- styles/native/core/widgets/bottomsheet.js | 33 +++++++++++++++++++++++ styles/native/main.js | 1 + 2 files changed, 34 insertions(+) create mode 100644 styles/native/core/widgets/bottomsheet.js diff --git a/styles/native/core/widgets/bottomsheet.js b/styles/native/core/widgets/bottomsheet.js new file mode 100644 index 00000000..65b1bd42 --- /dev/null +++ b/styles/native/core/widgets/bottomsheet.js @@ -0,0 +1,33 @@ +import { background, border } from "../variables"; + +// +// DISCLAIMER: +// Do not change this file because it is core styling. +// Customizing core files will make updating Atlas much more difficult in the future. +// To customize any core styling, copy the part you want to customize to styles/native/app/ so the core styling is overwritten. +// + +/* ========================================================================== + Bottom Sheet + + Default Class For Mendix Bottom Sheet Widget +========================================================================== */ + + +export const com_mendix_widget_native_bottomsheet_BottomSheet = { + container: { + // All ViewStyle properties are allowed + backgroundColor: background.primary, + flex: 1, + borderRadius: border.radius, + elevation: 1.5, + shadowColor: "#000", + shadowOpacity: 0.3, + shadowRadius: 6, + shadowOffset: { + width: 0, + height: -4, + }, + }, +}; + diff --git a/styles/native/main.js b/styles/native/main.js index f4b62537..bab9b5a1 100644 --- a/styles/native/main.js +++ b/styles/native/main.js @@ -12,6 +12,7 @@ export * from "./core/helpers/activityindicator"; export * from "./core/widgets/animation"; export * from "./core/widgets/badge"; export * from "./core/helpers/badge"; +export * from "./core/widgets/bottomsheet"; export * from "./core/widgets/buttons"; export * from "./core/helpers/buttons"; export * from "./core/widgets/carousel"; From 16bd87fbb99348cba9a81210957bf7d757885e38 Mon Sep 17 00:00:00 2001 From: Wesley Date: Thu, 26 Mar 2020 11:09:24 +0100 Subject: [PATCH 6/9] fix(native-bottomsheet): updated styles --- styles/native/core/widgets/bottomsheet.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/styles/native/core/widgets/bottomsheet.js b/styles/native/core/widgets/bottomsheet.js index 65b1bd42..254b659f 100644 --- a/styles/native/core/widgets/bottomsheet.js +++ b/styles/native/core/widgets/bottomsheet.js @@ -18,16 +18,20 @@ export const com_mendix_widget_native_bottomsheet_BottomSheet = { container: { // All ViewStyle properties are allowed backgroundColor: background.primary, - flex: 1, borderRadius: border.radius, - elevation: 1.5, + elevation: 20, shadowColor: "#000", - shadowOpacity: 0.3, + shadowOpacity: 0.1, shadowRadius: 6, shadowOffset: { width: 0, height: -4, }, }, + containerWhenExpandedFullscreen: { + height: "100%", + alignSelf: "stretch", + backgroundColor: background.primary, + }, }; From 38a24c0859f9984ae8fe63a28a3fd9c6ed0a11fd Mon Sep 17 00:00:00 2001 From: Wesley Date: Thu, 26 Mar 2020 11:09:47 +0100 Subject: [PATCH 7/9] feat(native-buttons): add btnIcon class --- styles/native/core/helpers/buttons.js | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/styles/native/core/helpers/buttons.js b/styles/native/core/helpers/buttons.js index a260c9cb..89a67cd5 100644 --- a/styles/native/core/helpers/buttons.js +++ b/styles/native/core/helpers/buttons.js @@ -93,7 +93,7 @@ export const btnSecondaryInversed = { }; // Button Icon Only -export const btnIconPrimary = { +export const btnIcon = { container: { borderWidth: 0, backgroundColor: "transparent", @@ -101,33 +101,38 @@ export const btnIconPrimary = { paddingHorizontal: 0, }, icon: { - color: button.primary.backgroundColor, + color: font.color, }, caption: { fontSize: 0, }, }; -export const btnIconSecondary = merge(btnIconPrimary, { +export const btnIconPrimary = merge(btnIcon, { + icon: { + color: button.primary.backgroundColor, + }, +}); +export const btnIconSecondary = merge(btnIcon, { icon: { color: contrast.low, }, }); -export const btnIconSuccess = merge(btnIconPrimary, { +export const btnIconSuccess = merge(btnIcon, { icon: { color: button.success.backgroundColor, }, }); -export const btnIconWarning = merge(btnIconPrimary, { +export const btnIconWarning = merge(btnIcon, { icon: { color: button.warning.backgroundColor, }, }); -export const btnIconDanger = merge(btnIconPrimary, { +export const btnIconDanger = merge(btnIcon, { icon: { color: button.danger.backgroundColor, }, }); -export const btnIconWhite = merge(btnIconPrimary, { +export const btnIconWhite = merge(btnIcon, { icon: { color: "#FFF", }, From 03962d518947cfbb4bb73fb62c49bb5115eae059 Mon Sep 17 00:00:00 2001 From: Wesley Date: Mon, 30 Mar 2020 17:13:58 +0200 Subject: [PATCH 8/9] feat(native-backgroundimage): add default styles --- styles/native/core/widgets/backgroundimage.js | 23 +++++++++++++++++++ styles/native/main.js | 1 + 2 files changed, 24 insertions(+) create mode 100644 styles/native/core/widgets/backgroundimage.js diff --git a/styles/native/core/widgets/backgroundimage.js b/styles/native/core/widgets/backgroundimage.js new file mode 100644 index 00000000..1ee477cc --- /dev/null +++ b/styles/native/core/widgets/backgroundimage.js @@ -0,0 +1,23 @@ +// +// DISCLAIMER: +// Do not change this file because it is core styling. +// Customizing core files will make updating Atlas much more difficult in the future. +// To customize any core styling, copy the part you want to customize to styles/native/app/ so the core styling is overwritten. +// + +/* ========================================================================== + Background Image + + Default Class For Mendix Background Image Widget +========================================================================== */ + + +export const com_mendix_widget_native_backgroundimage_BackgroundImage = { + container: { + // All ViewStyle properties are allowed + }, + image: { + // svgColor and all ImageStyle properties are allowed + }, +}; + diff --git a/styles/native/main.js b/styles/native/main.js index bab9b5a1..3a20c2c8 100644 --- a/styles/native/main.js +++ b/styles/native/main.js @@ -10,6 +10,7 @@ export * from "./core/base/spacing"; export * from "./core/widgets/activityindicator"; export * from "./core/helpers/activityindicator"; export * from "./core/widgets/animation"; +export * from "./core/widgets/backgroundimage"; export * from "./core/widgets/badge"; export * from "./core/helpers/badge"; export * from "./core/widgets/bottomsheet"; From 5938485e5b298b2c77e76b361f1a6748fe7c227f Mon Sep 17 00:00:00 2001 From: Wesley Date: Tue, 31 Mar 2020 10:53:59 +0200 Subject: [PATCH 9/9] bump version patch --- package.json | 2 +- styles/native/core/manifest.json | 2 +- styles/web/sass/core/manifest.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ea286259..7c13747c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atlas-ui-framework", - "version": "2.5.3", + "version": "2.5.4", "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/core/manifest.json b/styles/native/core/manifest.json index d2941054..faa4f668 100644 --- a/styles/native/core/manifest.json +++ b/styles/native/core/manifest.json @@ -1,4 +1,4 @@ { "name": "Atlas-UI-Framework", - "version": "2.5.3" + "version": "2.5.4" } \ No newline at end of file diff --git a/styles/web/sass/core/manifest.json b/styles/web/sass/core/manifest.json index d2941054..faa4f668 100644 --- a/styles/web/sass/core/manifest.json +++ b/styles/web/sass/core/manifest.json @@ -1,4 +1,4 @@ { "name": "Atlas-UI-Framework", - "version": "2.5.3" + "version": "2.5.4" } \ No newline at end of file