@widergy/mobile-ui 1.13.4 → 1.13.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.13.5](https://github.com/widergy/mobile-ui/compare/v1.13.4...v1.13.5) (2024-07-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * next button color ([7934791](https://github.com/widergy/mobile-ui/commit/79347911efb36f70c4a7055e85237d3c0a7ca2a5))
7
+
1
8
  ## [1.13.4](https://github.com/widergy/mobile-ui/compare/v1.13.3...v1.13.4) (2024-07-17)
2
9
 
3
10
 
@@ -8,13 +8,14 @@ import { useTheme } from '../../../../../../../../theming';
8
8
 
9
9
  import ownStyles from './styles';
10
10
 
11
- const ActionButton = ({ hidden, disabled, onPress, label, variant, style }) => {
11
+ const ActionButton = ({ colorTheme, disabled, hidden, label, onPress, style, variant }) => {
12
12
  const theme = useTheme();
13
13
  const themedStyles = merge({}, ownStyles, theme?.UTWorkflowContainer?.actionButton, style);
14
14
 
15
15
  return (
16
16
  <View style={themedStyles.actionButton}>
17
17
  <UTButton
18
+ colorTheme={colorTheme}
18
19
  disabled={disabled || hidden}
19
20
  onPress={onPress}
20
21
  size="large"
@@ -28,11 +29,12 @@ const ActionButton = ({ hidden, disabled, onPress, label, variant, style }) => {
28
29
  };
29
30
 
30
31
  ActionButton.propTypes = {
32
+ colorTheme: string,
31
33
  disabled: bool,
32
34
  hidden: bool,
33
35
  label: string,
34
- variant: string,
35
- onPress: func
36
+ onPress: func,
37
+ variant: string
36
38
  };
37
39
 
38
40
  export default ActionButton;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@widergy/mobile-ui",
3
3
  "description": "Widergy Mobile Components",
4
4
  "author": "widergy",
5
- "version": "1.13.4",
5
+ "version": "1.13.5",
6
6
  "repository": "https://github.com/widergy/mobile-ui.git",
7
7
  "main": "lib/index.js",
8
8
  "files": [