@widergy/mobile-ui 0.40.0 → 0.40.1

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.
@@ -0,0 +1,5 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="eye-off">
3
+ <path id="Vector (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M1.91078 1.91058C2.23622 1.58514 2.76386 1.58514 3.0893 1.91058L14.9861 13.8074C15.0321 13.8444 15.0748 13.8867 15.113 13.9343L18.0893 16.9106C18.4147 17.236 18.4147 17.7637 18.0893 18.0891C17.7639 18.4145 17.2362 18.4145 16.9108 18.0891L14.3384 15.5167C13.0039 16.2804 11.5544 16.6665 10 16.6665C6.2667 16.6665 3.25604 14.4606 0.943181 10.4133C0.796755 10.1571 0.796773 9.8425 0.943227 9.58629C1.92481 7.86906 3.03083 6.48078 4.27262 5.45092L1.91078 3.08909C1.58535 2.76366 1.58535 2.23602 1.91078 1.91058ZM5.45722 6.63553C4.45474 7.43811 3.5102 8.55088 2.63331 9.99993C4.71491 13.442 7.17738 14.9998 10 14.9998C11.1045 14.9998 12.1366 14.763 13.1068 14.2851L11.0783 12.2566C10.744 12.4166 10.3751 12.502 9.99748 12.5018C9.33435 12.5016 8.69848 12.2379 8.22974 11.7689C7.761 11.2998 7.4978 10.6637 7.49803 10.0006C7.49816 9.62354 7.58346 9.25529 7.74327 8.92157L5.45722 6.63553ZM9.3635 10.5418C9.37784 10.5587 9.39291 10.575 9.40867 10.5908C9.42457 10.6067 9.44104 10.6219 9.45805 10.6364L9.3635 10.5418ZM9.99709 4.99983C9.33243 4.99748 8.67077 5.08906 8.03173 5.27186C7.58925 5.39845 7.12792 5.14235 7.00134 4.69986C6.87476 4.25738 7.13086 3.79605 7.57335 3.66947C8.36287 3.44362 9.18033 3.3304 10.0015 3.33317C13.7342 3.33375 16.7443 5.53961 19.0569 9.58637C19.2033 9.84261 19.2033 10.1572 19.0568 10.4134C18.3832 11.5918 17.6523 12.6144 16.8595 13.4721C16.5471 13.8101 16.0199 13.8309 15.6819 13.5185C15.3439 13.2061 15.3232 12.6789 15.6356 12.3409C16.2384 11.6886 16.8161 10.9099 17.3668 9.99975C15.2852 6.55771 12.8227 4.99984 10 4.99984L9.99709 4.99983Z" fill="#677489"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.15986 12C5.65779 16.1305 8.61278 18 12 18C15.3872 18 18.3422 16.1305 20.8401 12C18.3422 7.86948 15.3872 6 12 6C8.61278 6 5.65779 7.86948 3.15986 12ZM1.13177 11.5038C3.9072 6.64709 7.51999 4 12 4C16.48 4 20.0928 6.64709 22.8682 11.5038C23.0439 11.8113 23.0439 12.1887 22.8682 12.4962C20.0928 17.3529 16.48 20 12 20C7.51999 20 3.9072 17.3529 1.13177 12.4962C0.956077 12.1887 0.956077 11.8113 1.13177 11.5038ZM12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11ZM9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12Z" fill="#677489"/>
3
+ </svg>
@@ -10,8 +10,8 @@ import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome';
10
10
  import SimpleLineIcon from 'react-native-vector-icons/SimpleLineIcons';
11
11
  import FeatherIcon from 'react-native-vector-icons/Feather';
12
12
  import AntIcon from 'react-native-vector-icons/AntDesign';
13
-
14
- import { horizontalScale } from '../../utils/scaleUtils';
13
+ import VisibilityOff from './assets/eye-off.svg';
14
+ import Visibility from './assets/eye.svg';
15
15
 
16
16
  const DEFAULT_ICON_COMPONENT = MaterialIcon;
17
17
  export const DEFAULT_ICON_TYPE = 'material';
@@ -28,9 +28,11 @@ const ICON_TYPES = {
28
28
  'material-community': MaterialCommunityIcon,
29
29
  octicon: OcticonIcon,
30
30
  'simple-line-icon': SimpleLineIcon,
31
+ visibility: Visibility,
32
+ 'visibility-off': VisibilityOff,
31
33
  zocial: ZocialIcon
32
34
  };
33
35
 
34
36
  export const getIconComponent = type => ICON_TYPES[type] || DEFAULT_ICON_COMPONENT;
35
37
 
36
- export const DEFAULT_ICON_SIZE = horizontalScale(25);
38
+ export const DEFAULT_ICON_SIZE = 20;
@@ -3,16 +3,18 @@ import React from 'react';
3
3
  import propTypes from './propTypes';
4
4
  import { getIconComponent, DEFAULT_ICON_TYPE, DEFAULT_ICON_SIZE } from './constants';
5
5
 
6
- const Icon = ({ color, name, size, style, type }) => {
6
+ const Icon = ({ color, height, name, size, style, type, width }) => {
7
7
  const IconComponent = getIconComponent(type);
8
- return <IconComponent style={style} color={color} name={name} size={size} type={type} />;
8
+ return <IconComponent color={color} height={height} name={name} size={size} style={style} type={type} width={width}/>;
9
9
  };
10
10
 
11
11
  Icon.propTypes = propTypes;
12
12
 
13
13
  Icon.defaultProps = {
14
+ height: DEFAULT_ICON_SIZE,
15
+ size: DEFAULT_ICON_SIZE,
14
16
  type: DEFAULT_ICON_TYPE,
15
- size: DEFAULT_ICON_SIZE
17
+ width: DEFAULT_ICON_SIZE
16
18
  };
17
19
 
18
20
  export default Icon;
@@ -3,8 +3,10 @@ import { number, string } from 'prop-types';
3
3
 
4
4
  export default {
5
5
  color: string,
6
+ height: number,
6
7
  name: string.isRequired,
7
8
  size: number,
8
9
  style: ViewPropTypes.style,
9
- type: string
10
+ type: string,
11
+ width: number
10
12
  };
@@ -70,9 +70,7 @@ const BaseInput = forwardRef(
70
70
 
71
71
  const hiddenInputProps = hiddenInput
72
72
  ? {
73
- name: showInput ? VISIBILITY : VISIBILITY_OFF,
74
- size: ICON_SIZE,
75
- color: theme.UTTextInput?.passwordEyeColor || theme.colors.primary,
73
+ type: showInput ? VISIBILITY : VISIBILITY_OFF,
76
74
  ...(RightIcon || {})
77
75
  }
78
76
  : {};
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": "0.40.0",
5
+ "version": "0.40.1",
6
6
  "repository": "https://github.com/widergy/mobile-ui.git",
7
7
  "main": "lib/index.js",
8
8
  "files": [
package/CHANGELOG.md DELETED
@@ -1,894 +0,0 @@
1
- # [0.40.0](https://github.com/widergy/mobile-ui/compare/v0.39.4...v0.40.0) (2023-10-31)
2
-
3
-
4
- ### Features
5
-
6
- * adds step change functionality ([#252](https://github.com/widergy/mobile-ui/issues/252)) ([da14033](https://github.com/widergy/mobile-ui/commit/da14033a75deeb70b8992760fcf5f8961d609554))
7
-
8
- ## [0.39.4](https://github.com/widergy/mobile-ui/compare/v0.39.3...v0.39.4) (2023-10-26)
9
-
10
-
11
- ### Bug Fixes
12
-
13
- * add support for active admin config ([d992629](https://github.com/widergy/mobile-ui/commit/d992629424aeb71dfff5bf3a8aeb6c86818f3dc7))
14
- * label text overflow can now be controlled ([98a0056](https://github.com/widergy/mobile-ui/commit/98a0056d94d7dca60eb65df0f1ea6b5a9e61a6fc))
15
-
16
- ## [0.39.3](https://github.com/widergy/mobile-ui/compare/v0.39.2...v0.39.3) (2023-08-25)
17
-
18
-
19
- ### Bug Fixes
20
-
21
- * removes rates from bar ([41c180f](https://github.com/widergy/mobile-ui/commit/41c180fe71f739f923fd1dc707aaac70c719e96d))
22
-
23
- ## [0.39.2](https://github.com/widergy/mobile-ui/compare/v0.39.1...v0.39.2) (2023-08-24)
24
-
25
-
26
- ### Bug Fixes
27
-
28
- * process tracking by logs when capturing photos ([8150040](https://github.com/widergy/mobile-ui/commit/8150040a17142f042c079668c3e4b96d0a331d5c))
29
-
30
- ## [0.39.1](https://github.com/widergy/mobile-ui/compare/v0.39.0...v0.39.1) (2023-08-14)
31
-
32
-
33
- ### Bug Fixes
34
-
35
- * add markdown in UTWorkflowContainer ([2666788](https://github.com/widergy/mobile-ui/commit/2666788a7fdfb70f3828ad29b084b1384a134767))
36
-
37
- # [0.39.0](https://github.com/widergy/mobile-ui/compare/v0.38.0...v0.39.0) (2023-08-11)
38
-
39
-
40
- ### Features
41
-
42
- * add disabled ([#247](https://github.com/widergy/mobile-ui/issues/247)) ([39c8fb4](https://github.com/widergy/mobile-ui/commit/39c8fb45d0b4ae90b48d4c3a00e25cdb719f12ed))
43
-
44
- # [0.38.0](https://github.com/widergy/mobile-ui/compare/v0.37.7...v0.38.0) (2023-08-11)
45
-
46
-
47
- ### Features
48
-
49
- * add disabled prop ([139f5ba](https://github.com/widergy/mobile-ui/commit/139f5ba1c9247d2e1dd5c38c5868cff1ea02e676))
50
- * fix comments ([6731f8e](https://github.com/widergy/mobile-ui/commit/6731f8e3b33b28d68ce1dfd5ceebb2ae12b54099))
51
-
52
- ## [0.37.7](https://github.com/widergy/mobile-ui/compare/v0.37.6...v0.37.7) (2023-07-26)
53
-
54
-
55
- ### Bug Fixes
56
-
57
- * hide step number ([#243](https://github.com/widergy/mobile-ui/issues/243)) ([fa8cb6f](https://github.com/widergy/mobile-ui/commit/fa8cb6fa98c0cc8d1400ff3cdf467c75f84f5d1c))
58
-
59
- ## [0.37.6](https://github.com/widergy/mobile-ui/compare/v0.37.5...v0.37.6) (2023-06-27)
60
-
61
-
62
- ### Bug Fixes
63
-
64
- * delete auto-assign config ([fb7fc09](https://github.com/widergy/mobile-ui/commit/fb7fc092d20334077c8ed08c2b65b50607177080))
65
- * update energybot config ([34df445](https://github.com/widergy/mobile-ui/commit/34df4456547cb251f42b20ad07b58e22eb74ace3))
66
-
67
- ## [0.37.5](https://github.com/widergy/mobile-ui/compare/v0.37.4...v0.37.5) (2023-06-14)
68
-
69
-
70
- ### Bug Fixes
71
-
72
- * added property for error number of lines ([#242](https://github.com/widergy/mobile-ui/issues/242)) ([b263d60](https://github.com/widergy/mobile-ui/commit/b263d6036920a70e6a8758f967a5ba355989e019))
73
-
74
- ## [0.37.4](https://github.com/widergy/mobile-ui/compare/v0.37.3...v0.37.4) (2023-06-06)
75
-
76
-
77
- ### Bug Fixes
78
-
79
- * image radio ([#240](https://github.com/widergy/mobile-ui/issues/240)) ([d834b8c](https://github.com/widergy/mobile-ui/commit/d834b8c149b636e4c772ed02ecae8b517be61eea))
80
-
81
- ## [0.37.3](https://github.com/widergy/mobile-ui/compare/v0.37.2...v0.37.3) (2023-03-11)
82
-
83
-
84
- ### Bug Fixes
85
-
86
- * update auto_assign.yml ([045b376](https://github.com/widergy/mobile-ui/commit/045b376432f822a4e0d719a62c32faabf850f1e9))
87
-
88
- ## [0.37.2](https://github.com/widergy/mobile-ui/compare/v0.37.1...v0.37.2) (2023-03-11)
89
-
90
-
91
- ### Bug Fixes
92
-
93
- * create auto_assign.yml ([203fd41](https://github.com/widergy/mobile-ui/commit/203fd411f059f83b8e421091fc94476b9215cf11))
94
-
95
- ## [0.37.1](https://github.com/widergy/mobile-ui/compare/v0.37.0...v0.37.1) (2023-03-11)
96
-
97
-
98
- ### Bug Fixes
99
-
100
- * delete semantic.yml ([b0f9c70](https://github.com/widergy/mobile-ui/commit/b0f9c7069d7575dafafa4994d1c48e26af72d388))
101
- * update energy-bot.yml ([a2a4879](https://github.com/widergy/mobile-ui/commit/a2a4879ec36366dce868c3827566428dbe51998b))
102
- * update pull request template ([8098450](https://github.com/widergy/mobile-ui/commit/8098450e976756cb66f71dbacf9580053bb92ecc))
103
-
104
- # [0.37.0](https://github.com/widergy/mobile-ui/compare/v0.36.6...v0.37.0) (2023-03-10)
105
-
106
-
107
- ### Features
108
-
109
- * functionality of new preferences option for observation ([#239](https://github.com/widergy/mobile-ui/issues/239)) ([2b6f0b9](https://github.com/widergy/mobile-ui/commit/2b6f0b93cca25d2c5e5f7ab4112d1658ecd62245))
110
-
111
- ## [0.36.6](https://github.com/widergy/mobile-ui/compare/v0.36.5...v0.36.6) (2023-02-10)
112
-
113
-
114
- ### Bug Fixes
115
-
116
- * checklist handles flatListProps ([#238](https://github.com/widergy/mobile-ui/issues/238)) ([70070e6](https://github.com/widergy/mobile-ui/commit/70070e6a500f8f7239e600d324e57e0dfb291935))
117
-
118
- ## [0.36.5](https://github.com/widergy/mobile-ui/compare/v0.36.4...v0.36.5) (2023-01-25)
119
-
120
-
121
- ### Bug Fixes
122
-
123
- * scrollviews ([#236](https://github.com/widergy/mobile-ui/issues/236)) ([ec2d461](https://github.com/widergy/mobile-ui/commit/ec2d461b5d2b3908996fe8c7847a74d2c198e228))
124
-
125
- ## [0.36.4](https://github.com/widergy/mobile-ui/compare/v0.36.3...v0.36.4) (2023-01-24)
126
-
127
-
128
- ### Bug Fixes
129
-
130
- * forward disable ([#235](https://github.com/widergy/mobile-ui/issues/235)) ([18a087d](https://github.com/widergy/mobile-ui/commit/18a087de1e9d94b0e4e50e834fd152b249c47cc1))
131
-
132
- ## [0.36.3](https://github.com/widergy/mobile-ui/compare/v0.36.2...v0.36.3) (2023-01-24)
133
-
134
-
135
- ### Bug Fixes
136
-
137
- * disabled prop ([#237](https://github.com/widergy/mobile-ui/issues/237)) ([8b77874](https://github.com/widergy/mobile-ui/commit/8b778749283aaf8972044af4bcf17923ee6e9416))
138
-
139
- ## [0.36.2](https://github.com/widergy/mobile-ui/compare/v0.36.1...v0.36.2) (2023-01-18)
140
-
141
-
142
- ### Bug Fixes
143
-
144
- * read only radio group ([#234](https://github.com/widergy/mobile-ui/issues/234)) ([ffcd1d5](https://github.com/widergy/mobile-ui/commit/ffcd1d5bb914a95336e85f0b81775b3b71ebf091))
145
-
146
- ## [0.36.1](https://github.com/widergy/mobile-ui/compare/v0.36.0...v0.36.1) (2023-01-09)
147
-
148
-
149
- ### Bug Fixes
150
-
151
- * avoid automatic selection of first option ([#233](https://github.com/widergy/mobile-ui/issues/233)) ([fecb7e0](https://github.com/widergy/mobile-ui/commit/fecb7e0002786de872d54c0e3957d5164dc0b37d))
152
-
153
- # [0.36.0](https://github.com/widergy/mobile-ui/compare/v0.35.8...v0.36.0) (2022-12-02)
154
-
155
-
156
- ### Features
157
-
158
- * rate chart ([#232](https://github.com/widergy/mobile-ui/issues/232)) ([7d7f06d](https://github.com/widergy/mobile-ui/commit/7d7f06d6f0d01422af3ec28126aad3836ff5c321))
159
-
160
- ## [0.35.8](https://github.com/widergy/mobile-ui/compare/v0.35.7...v0.35.8) (2022-11-14)
161
-
162
-
163
- ### Bug Fixes
164
-
165
- * added disable color for select field ([#231](https://github.com/widergy/mobile-ui/issues/231)) ([116e827](https://github.com/widergy/mobile-ui/commit/116e8275de542d6dbb766f2a9fd7c0d60bd07f37))
166
-
167
- ## [0.35.7](https://github.com/widergy/mobile-ui/compare/v0.35.6...v0.35.7) (2022-11-11)
168
-
169
-
170
- ### Bug Fixes
171
-
172
- * now blob gets converted to file when returning ([#230](https://github.com/widergy/mobile-ui/issues/230)) ([7d1c01f](https://github.com/widergy/mobile-ui/commit/7d1c01f0d06eb5c0bb098316512adc23f8c4f3ab))
173
-
174
- ## [0.35.6](https://github.com/widergy/mobile-ui/compare/v0.35.5...v0.35.6) (2022-10-28)
175
-
176
-
177
- ### Bug Fixes
178
-
179
- * tooltip text ([#229](https://github.com/widergy/mobile-ui/issues/229)) ([b20d8e1](https://github.com/widergy/mobile-ui/commit/b20d8e11ca52e7b762587c7dc06182bcbb0dd2a3))
180
-
181
- ## [0.35.5](https://github.com/widergy/mobile-ui/compare/v0.35.4...v0.35.5) (2022-10-27)
182
-
183
-
184
- ### Bug Fixes
185
-
186
- * viewproptypes library import change ([#227](https://github.com/widergy/mobile-ui/issues/227)) ([7976f2a](https://github.com/widergy/mobile-ui/commit/7976f2a1e37cbe75f82b256c4da8fb60d38de548))
187
-
188
- ## [0.35.4](https://github.com/widergy/mobile-ui/compare/v0.35.3...v0.35.4) (2022-10-25)
189
-
190
-
191
- ### Bug Fixes
192
-
193
- * added label to tooltip content ([#228](https://github.com/widergy/mobile-ui/issues/228)) ([dee88d6](https://github.com/widergy/mobile-ui/commit/dee88d6e9cc0e306d0efabae284b29dcb2869b9f))
194
-
195
- ## [0.35.3](https://github.com/widergy/mobile-ui/compare/v0.35.2...v0.35.3) (2022-08-29)
196
-
197
-
198
- ### Bug Fixes
199
-
200
- * pr corrections ([b5a48ff](https://github.com/widergy/mobile-ui/commit/b5a48ff9748b20a6c1f4d50eb0be9a3bee5e4882))
201
- * re-rendering of utmenu ([b0bd3eb](https://github.com/widergy/mobile-ui/commit/b0bd3eb868b8183a52cfd54186d6992c63966c4e))
202
-
203
- ## [0.35.2](https://github.com/widergy/mobile-ui/compare/v0.35.1...v0.35.2) (2022-08-12)
204
-
205
-
206
- ### Bug Fixes
207
-
208
- * added subtitle and separator bar ([#225](https://github.com/widergy/mobile-ui/issues/225)) ([29dc57e](https://github.com/widergy/mobile-ui/commit/29dc57e9b777228ce22f3edadf3dffb3d568a06e))
209
-
210
- ## [0.35.1](https://github.com/widergy/mobile-ui/compare/v0.35.0...v0.35.1) (2022-07-14)
211
-
212
-
213
- ### Bug Fixes
214
-
215
- * adding a parameter to utswitch ([#223](https://github.com/widergy/mobile-ui/issues/223)) ([2c3bb48](https://github.com/widergy/mobile-ui/commit/2c3bb480da94325c20480f834ffa1f166be9b135))
216
-
217
- # [0.35.0](https://github.com/widergy/mobile-ui/compare/v0.34.3...v0.35.0) (2022-06-03)
218
-
219
-
220
- ### Bug Fixes
221
-
222
- * added opacity when disabled button ([6d75fdb](https://github.com/widergy/mobile-ui/commit/6d75fdb3023308ffaa6cbd5c70d88deb338440b6))
223
- * adjusted loading in modal ([4b175e4](https://github.com/widergy/mobile-ui/commit/4b175e4b8f220444db5abebcee7b2a69c61f8eae))
224
- * avoid falsy condition in buttons and adjusted its style ([1d83ab4](https://github.com/widergy/mobile-ui/commit/1d83ab4096418c678da0988b41ef2a1c691c5759))
225
- * avoid falsy condition in title ([8a364dd](https://github.com/widergy/mobile-ui/commit/8a364dd3b61131ae64dca26153e79477658ded49))
226
- * backgroundImg prop ([ea7d415](https://github.com/widergy/mobile-ui/commit/ea7d415a14a7960252fa1ef20a73e38a5b367e69))
227
- * delete outsideContent prop ([5c2bbbc](https://github.com/widergy/mobile-ui/commit/5c2bbbc10057ad0ee3a4acc4c7c7acce92b70656))
228
- * deleted withTheme hook and left useTheme hoc ([775ca6b](https://github.com/widergy/mobile-ui/commit/775ca6bd7ddb142be721b73868ca44776b87f306))
229
- * separted img and backgound img styles ([e347885](https://github.com/widergy/mobile-ui/commit/e347885847883b5912624e1add844a630ab30c5b))
230
- * UTModal and Modal components in mobile ui ([23dc89b](https://github.com/widergy/mobile-ui/commit/23dc89b26bd3776cb78206474b95ce7c01bbdb0b))
231
-
232
-
233
- ### Features
234
-
235
- * add UTModal component ([8303a57](https://github.com/widergy/mobile-ui/commit/8303a5732600f21f600ebecbbe37dfcc321eab90))
236
-
237
- ## [0.34.3](https://github.com/widergy/mobile-ui/compare/v0.34.2...v0.34.3) (2022-05-19)
238
-
239
-
240
- ### Bug Fixes
241
-
242
- * added host portal in example capture ([acda0b2](https://github.com/widergy/mobile-ui/commit/acda0b2f9caa78cf2a47622e20bec02613118b2e))
243
- * cases of the text of selection of photos in plural contemplated ([d0f0ebc](https://github.com/widergy/mobile-ui/commit/d0f0ebc2087cb3dc3f0ce10b334906effb12ade2))
244
- * onRequestClose added to photo application modal ([83d95f4](https://github.com/widergy/mobile-ui/commit/83d95f43a24771dc1e0aad71b70a9385465b85b6))
245
- * pr corrections ([e58ab51](https://github.com/widergy/mobile-ui/commit/e58ab51c3138c5bcf3463df82ffe69c1ded04c96))
246
-
247
- ## [0.34.2](https://github.com/widergy/mobile-ui/compare/v0.34.1...v0.34.2) (2022-05-06)
248
-
249
-
250
- ### Bug Fixes
251
-
252
- * modify radio button components and others ([#221](https://github.com/widergy/mobile-ui/issues/221)) ([530345a](https://github.com/widergy/mobile-ui/commit/530345a3cb103ce761a4d780544b72f101d6a5e8))
253
-
254
- ## [0.34.1](https://github.com/widergy/mobile-ui/compare/v0.34.0...v0.34.1) (2022-04-26)
255
-
256
-
257
- ### Bug Fixes
258
-
259
- * undefined is not a function ([#219](https://github.com/widergy/mobile-ui/issues/219)) ([ca80c4d](https://github.com/widergy/mobile-ui/commit/ca80c4d6b90176376f980234be432da87f6ed5ff))
260
-
261
- # [0.34.0](https://github.com/widergy/mobile-ui/compare/v0.33.0...v0.34.0) (2022-04-11)
262
-
263
-
264
- ### Features
265
-
266
- * photo album and capture component added ([08f0749](https://github.com/widergy/mobile-ui/commit/08f07498f274b36bfc2a3be901527bd73f338a7a))
267
-
268
- # [0.33.0](https://github.com/widergy/mobile-ui/compare/v0.32.4...v0.33.0) (2022-03-25)
269
-
270
-
271
- ### Features
272
-
273
- * allow any mime type ([#217](https://github.com/widergy/mobile-ui/issues/217)) ([9b99614](https://github.com/widergy/mobile-ui/commit/9b99614b93d98e14a57c409f0e7674c5832d1b58))
274
-
275
- ## [0.32.4](https://github.com/widergy/mobile-ui/compare/v0.32.3...v0.32.4) (2022-03-07)
276
-
277
-
278
- ### Bug Fixes
279
-
280
- * round the percentage in progress bar in routes ([#216](https://github.com/widergy/mobile-ui/issues/216)) ([9a1c459](https://github.com/widergy/mobile-ui/commit/9a1c4593fbce214c700bc708aecd16c8b10716cd))
281
-
282
- ## [0.32.3](https://github.com/widergy/mobile-ui/compare/v0.32.2...v0.32.3) (2022-02-25)
283
-
284
-
285
- ### Bug Fixes
286
-
287
- * show image on updates (ImagePicker) ([#213](https://github.com/widergy/mobile-ui/issues/213)) ([1b55704](https://github.com/widergy/mobile-ui/commit/1b55704c7e8a42eb057da35872f85ac8b7d11506))
288
-
289
- ## [0.32.2](https://github.com/widergy/mobile-ui/compare/v0.32.1...v0.32.2) (2022-02-11)
290
-
291
-
292
- ### Bug Fixes
293
-
294
- * deprecated keyboard ([#214](https://github.com/widergy/mobile-ui/issues/214)) ([57b3775](https://github.com/widergy/mobile-ui/commit/57b37756155c7bf759e586ce35f090e86834fa89))
295
-
296
- ## [0.32.1](https://github.com/widergy/mobile-ui/compare/v0.32.0...v0.32.1) (2022-01-19)
297
-
298
-
299
- ### Bug Fixes
300
-
301
- * bounce on scrollview component ([#211](https://github.com/widergy/mobile-ui/issues/211)) ([aa6249b](https://github.com/widergy/mobile-ui/commit/aa6249b3f508bdf9ad7828ab5c0fcc371d600935))
302
-
303
- # [0.32.0](https://github.com/widergy/mobile-ui/compare/v0.31.5...v0.32.0) (2021-12-10)
304
-
305
-
306
- ### Features
307
-
308
- * new borderless prop for borderless searchbar ([#209](https://github.com/widergy/mobile-ui/issues/209)) ([8d5f9ae](https://github.com/widergy/mobile-ui/commit/8d5f9ae55d7e8ed6dea53d3d9e16b0a9dfcdf7b3))
309
-
310
- ## [0.31.5](https://github.com/widergy/mobile-ui/compare/v0.31.4...v0.31.5) (2021-11-16)
311
-
312
-
313
- ### Bug Fixes
314
-
315
- * improve image radio ([#206](https://github.com/widergy/mobile-ui/issues/206)) ([dd415e4](https://github.com/widergy/mobile-ui/commit/dd415e41323c2dd3ac7d9a43a490f86fa8947400))
316
-
317
- ## [0.31.4](https://github.com/widergy/mobile-ui/compare/v0.31.3...v0.31.4) (2021-11-09)
318
-
319
-
320
- ### Bug Fixes
321
-
322
- * add disabled props to select all checkbox ([#207](https://github.com/widergy/mobile-ui/issues/207)) ([6657729](https://github.com/widergy/mobile-ui/commit/6657729d9178d8d193459162da9ee68c6268da27))
323
-
324
- ## [0.31.3](https://github.com/widergy/mobile-ui/compare/v0.31.2...v0.31.3) (2021-11-09)
325
-
326
-
327
- ### Bug Fixes
328
-
329
- * application update to api 30 ([#205](https://github.com/widergy/mobile-ui/issues/205)) ([7c8480b](https://github.com/widergy/mobile-ui/commit/7c8480bcf1d66958840680d9769a72a163be6d96))
330
-
331
- ## [0.31.2](https://github.com/widergy/mobile-ui/compare/v0.31.1...v0.31.2) (2021-11-03)
332
-
333
-
334
- ### Bug Fixes
335
-
336
- * changed analytics screen log method ([#192](https://github.com/widergy/mobile-ui/issues/192)) ([92a141c](https://github.com/widergy/mobile-ui/commit/92a141c60c1aa852af423492e25706962761e4f3))
337
-
338
- ## [0.31.1](https://github.com/widergy/mobile-ui/compare/v0.31.0...v0.31.1) (2021-11-03)
339
-
340
-
341
- ### Bug Fixes
342
-
343
- * fix cbu crash when no entities config ([#204](https://github.com/widergy/mobile-ui/issues/204)) ([47e7f26](https://github.com/widergy/mobile-ui/commit/47e7f269bcec1103a164b4e87074b91a2fd22bb7))
344
-
345
- # [0.31.0](https://github.com/widergy/mobile-ui/compare/v0.30.7...v0.31.0) (2021-10-05)
346
-
347
-
348
- ### Features
349
-
350
- * image radio component ([#203](https://github.com/widergy/mobile-ui/issues/203)) ([0d83774](https://github.com/widergy/mobile-ui/commit/0d83774a4bdc6478bce31802266da9385dccd0d5))
351
-
352
- ## [0.30.7](https://github.com/widergy/mobile-ui/compare/v0.30.6...v0.30.7) (2021-09-30)
353
-
354
-
355
- ### Bug Fixes
356
-
357
- * password requirements padding ([#202](https://github.com/widergy/mobile-ui/issues/202)) ([21256e4](https://github.com/widergy/mobile-ui/commit/21256e47e8a223c298d80e032de66100259bdc37))
358
-
359
- ## [0.30.6](https://github.com/widergy/mobile-ui/compare/v0.30.5...v0.30.6) (2021-09-24)
360
-
361
-
362
- ### Bug Fixes
363
-
364
- * better label update performance ([#201](https://github.com/widergy/mobile-ui/issues/201)) ([58f55f5](https://github.com/widergy/mobile-ui/commit/58f55f5c6a8042e9c4f035085d74464aeff6ee88))
365
-
366
- ## [0.30.5](https://github.com/widergy/mobile-ui/compare/v0.30.4...v0.30.5) (2021-09-24)
367
-
368
-
369
- ### Bug Fixes
370
-
371
- * change of Fragment component from implicit to explicit ([#200](https://github.com/widergy/mobile-ui/issues/200)) ([ec37faf](https://github.com/widergy/mobile-ui/commit/ec37faf9400a578af814e9575e53ea986fc6e740))
372
-
373
- ## [0.30.4](https://github.com/widergy/mobile-ui/compare/v0.30.3...v0.30.4) (2021-09-13)
374
-
375
-
376
- ### Bug Fixes
377
-
378
- * added conditional chaining ([#199](https://github.com/widergy/mobile-ui/issues/199)) ([49ff8a5](https://github.com/widergy/mobile-ui/commit/49ff8a573bc31d838ae792f65f8216b88318b468))
379
-
380
- ## [0.30.3](https://github.com/widergy/mobile-ui/compare/v0.30.2...v0.30.3) (2021-09-13)
381
-
382
-
383
- ### Bug Fixes
384
-
385
- * remove use markdown default true ([#198](https://github.com/widergy/mobile-ui/issues/198)) ([708f33d](https://github.com/widergy/mobile-ui/commit/708f33d78522fcfae1bc2dca50497b53d6aaf24c))
386
-
387
- ## [0.30.2](https://github.com/widergy/mobile-ui/compare/v0.30.1...v0.30.2) (2021-09-10)
388
-
389
-
390
- ### Bug Fixes
391
-
392
- * change textinput styles ([#197](https://github.com/widergy/mobile-ui/issues/197)) ([9e49300](https://github.com/widergy/mobile-ui/commit/9e4930096e707b137e99f6a3a58853955a239300))
393
-
394
- ## [0.30.1](https://github.com/widergy/mobile-ui/compare/v0.30.0...v0.30.1) (2021-09-07)
395
-
396
-
397
- ### Bug Fixes
398
-
399
- * corrections ([3c9029e](https://github.com/widergy/mobile-ui/commit/3c9029ead6624da95ecf86d451994e2bbec62bf8))
400
- * corrections ([cba2273](https://github.com/widergy/mobile-ui/commit/cba2273e9eb067049855a3d857dce5976d6b25dd))
401
- * deleted select state & selectedOption is an internal variable ([9a24f4a](https://github.com/widergy/mobile-ui/commit/9a24f4abc4203696817374c15c273a0bde855e91))
402
- * example UTSelect ([d13818f](https://github.com/widergy/mobile-ui/commit/d13818f3f1a800ec564df796b9c6eaf2676b0d8f))
403
- * isMultiple prop ([167095e](https://github.com/widergy/mobile-ui/commit/167095e7ee3ffd5213e30e7f76a0d7634c880470))
404
- * memoized value ([83df778](https://github.com/widergy/mobile-ui/commit/83df77846e4aefd9b0881eaa7743d6bae119ca5c))
405
- * menuOptions styles ([3c6c288](https://github.com/widergy/mobile-ui/commit/3c6c288842f68ce11040e2a1786a7a37a3d7f2a5))
406
- * selected option style ([86be815](https://github.com/widergy/mobile-ui/commit/86be81516bda9f5407bf1c61ab26511bd7461abf))
407
- * value has an empty text & disabled prop propagation ([f6b5c27](https://github.com/widergy/mobile-ui/commit/f6b5c27864a2bcac7a9588a401f612761d5f390c))
408
- * values & labels ([b0bbe15](https://github.com/widergy/mobile-ui/commit/b0bbe153387bb18301d3dedf45b31f901c93a8de))
409
-
410
- # [0.30.0](https://github.com/widergy/mobile-ui/compare/v0.29.0...v0.30.0) (2021-09-03)
411
-
412
-
413
- ### Features
414
-
415
- * header & iconButton props ([#196](https://github.com/widergy/mobile-ui/issues/196)) ([d7e318b](https://github.com/widergy/mobile-ui/commit/d7e318b9b2c4956cf15039424d046e69c1f7ea0e))
416
-
417
- # [0.29.0](https://github.com/widergy/mobile-ui/compare/v0.28.1...v0.29.0) (2021-09-03)
418
-
419
-
420
- ### Features
421
-
422
- * styles to ordered and unordered lists with markdown ([#195](https://github.com/widergy/mobile-ui/issues/195)) ([77443ee](https://github.com/widergy/mobile-ui/commit/77443eeb3e5ecf9a8414361355371739167746a7))
423
-
424
- ## [0.28.1](https://github.com/widergy/mobile-ui/compare/v0.28.0...v0.28.1) (2021-08-13)
425
-
426
-
427
- ### Bug Fixes
428
-
429
- * Removed markdown from picker ([#189](https://github.com/widergy/mobile-ui/issues/189)) ([8706fb9](https://github.com/widergy/mobile-ui/commit/8706fb9c3e15e0ca8bc07de8e479921969649ddd))
430
-
431
- # [0.28.0](https://github.com/widergy/mobile-ui/compare/v0.27.2...v0.28.0) (2021-08-06)
432
-
433
-
434
- ### Features
435
-
436
- * conditional rendering in title & subtitle ([#191](https://github.com/widergy/mobile-ui/issues/191)) ([25d7492](https://github.com/widergy/mobile-ui/commit/25d74925cfc9f14ff09f98c66ee42d6d3cfcfb88))
437
-
438
- ## [0.27.2](https://github.com/widergy/mobile-ui/compare/v0.27.1...v0.27.2) (2021-08-06)
439
-
440
-
441
- ### Bug Fixes
442
-
443
- * cbu empty value ([#193](https://github.com/widergy/mobile-ui/issues/193)) ([9c52b61](https://github.com/widergy/mobile-ui/commit/9c52b6164d9ebf12ddc5f75bb7e926fe70adeb5b))
444
-
445
- ## [0.27.1](https://github.com/widergy/mobile-ui/compare/v0.27.0...v0.27.1) (2021-08-06)
446
-
447
-
448
- ### Bug Fixes
449
-
450
- * UTSwitch thumb limit position ([#190](https://github.com/widergy/mobile-ui/issues/190)) ([3ca00da](https://github.com/widergy/mobile-ui/commit/3ca00dacb022c019e7b9c96fdd9044c6ec57167f))
451
-
452
- # [0.27.0](https://github.com/widergy/mobile-ui/compare/v0.26.1...v0.27.0) (2021-07-30)
453
-
454
-
455
- ### Features
456
-
457
- * Markdown implementation in Label component ([#178](https://github.com/widergy/mobile-ui/issues/178)) ([32a8000](https://github.com/widergy/mobile-ui/commit/32a80005205649446ad0a592e31011fa3f87359b))
458
-
459
- ## [0.26.1](https://github.com/widergy/mobile-ui/compare/v0.26.0...v0.26.1) (2021-07-23)
460
-
461
-
462
- ### Bug Fixes
463
-
464
- * checklist default values ([#186](https://github.com/widergy/mobile-ui/issues/186)) ([61904b2](https://github.com/widergy/mobile-ui/commit/61904b23d97c70c39dd457c9a7ef9014b58c621f))
465
-
466
- # [0.26.0](https://github.com/widergy/mobile-ui/compare/v0.25.0...v0.26.0) (2021-07-23)
467
-
468
-
469
- ### Features
470
-
471
- * animate stepFeedback triangle ([#187](https://github.com/widergy/mobile-ui/issues/187)) ([01b0074](https://github.com/widergy/mobile-ui/commit/01b0074f6c664a1e1fc102a378c5d320ab66559d))
472
-
473
- # [0.25.0](https://github.com/widergy/mobile-ui/compare/v0.24.0...v0.25.0) (2021-07-20)
474
-
475
-
476
- ### Features
477
-
478
- * UTPasswordField ([#184](https://github.com/widergy/mobile-ui/issues/184)) ([1495936](https://github.com/widergy/mobile-ui/commit/14959365f3b0a98c98ea59ac7b3894f6ea467b55))
479
-
480
- # [0.24.0](https://github.com/widergy/mobile-ui/compare/v0.23.1...v0.24.0) (2021-07-16)
481
-
482
-
483
- ### Features
484
-
485
- * UTAutocomplete ([#185](https://github.com/widergy/mobile-ui/issues/185)) ([41667d1](https://github.com/widergy/mobile-ui/commit/41667d182032836685752781dd9c6584b24e2101))
486
-
487
- ## [0.23.1](https://github.com/widergy/mobile-ui/compare/v0.23.0...v0.23.1) (2021-07-15)
488
-
489
-
490
- ### Bug Fixes
491
-
492
- * handle onBlur ([#183](https://github.com/widergy/mobile-ui/issues/183)) ([ac0d148](https://github.com/widergy/mobile-ui/commit/ac0d1485d354ac4f35fc4ae0baa0130c1c809b0b))
493
-
494
- # [0.23.0](https://github.com/widergy/mobile-ui/compare/v0.22.0...v0.23.0) (2021-07-14)
495
-
496
-
497
- ### Features
498
-
499
- * touchable component fail when have more than one children ([#182](https://github.com/widergy/mobile-ui/issues/182)) ([31f2dbb](https://github.com/widergy/mobile-ui/commit/31f2dbba417e272b345ca89be92375198d2c9879)), closes [#177](https://github.com/widergy/mobile-ui/issues/177) [#177](https://github.com/widergy/mobile-ui/issues/177)
500
-
501
- # [0.22.0](https://github.com/widergy/mobile-ui/compare/v0.21.0...v0.22.0) (2021-07-13)
502
-
503
-
504
- ### Features
505
-
506
- * add UTCBUInput ([#177](https://github.com/widergy/mobile-ui/issues/177)) ([872dd05](https://github.com/widergy/mobile-ui/commit/872dd050fd221bb60b4e80748d5480ed56c9bc14))
507
-
508
- # [0.21.0](https://github.com/widergy/mobile-ui/compare/v0.20.2...v0.21.0) (2021-07-08)
509
-
510
-
511
- ### Features
512
-
513
- * stepFeedBack component ([#181](https://github.com/widergy/mobile-ui/issues/181)) ([939180a](https://github.com/widergy/mobile-ui/commit/939180aba90b68cd860d67b7e5f2451e9038f280))
514
-
515
- ## [0.20.2](https://github.com/widergy/mobile-ui/compare/v0.20.1...v0.20.2) (2021-07-08)
516
-
517
-
518
- ### Bug Fixes
519
-
520
- * value change in constant MEGABYTE ([#179](https://github.com/widergy/mobile-ui/issues/179)) ([ea56286](https://github.com/widergy/mobile-ui/commit/ea562867ad8007057a6d3dae050c84cbff4bd9dc))
521
-
522
- ## [0.20.1](https://github.com/widergy/mobile-ui/compare/v0.20.0...v0.20.1) (2021-06-29)
523
-
524
-
525
- ### Bug Fixes
526
-
527
- * added test id to button ([#180](https://github.com/widergy/mobile-ui/issues/180)) ([6583657](https://github.com/widergy/mobile-ui/commit/6583657bbde5eed470e7d87847f705e782eaef72))
528
-
529
- # [0.20.0](https://github.com/widergy/mobile-ui/compare/v0.19.10...v0.20.0) (2021-06-15)
530
-
531
-
532
- ### Features
533
-
534
- * UTSwitch ([#176](https://github.com/widergy/mobile-ui/issues/176)) ([cae9fb0](https://github.com/widergy/mobile-ui/commit/cae9fb0bb46d8d3f14330ff03fa705232f35959a))
535
-
536
- ## [0.19.10](https://github.com/widergy/mobile-ui/compare/v0.19.9...v0.19.10) (2021-06-15)
537
-
538
-
539
- ### Bug Fixes
540
-
541
- * fixed checklist re render ([22ce408](https://github.com/widergy/mobile-ui/commit/22ce408af5114e00af4c841c88a27e74c1c86f89))
542
- * fixed hook ([a6acdff](https://github.com/widergy/mobile-ui/commit/a6acdffe00fa7406b8b108bc46e42741785fa5c5))
543
- * fixed styles ([19c018f](https://github.com/widergy/mobile-ui/commit/19c018f8c8d3ae580593224c9cc1d8e8a37e4814))
544
- * refactored to class component ([0d1d30a](https://github.com/widergy/mobile-ui/commit/0d1d30aed3a8356d0e9341f4807741ee7039bb82))
545
- * updated hook ([5ac2a66](https://github.com/widergy/mobile-ui/commit/5ac2a6637f3d603fff2c17711e4bb06ceeb159bf))
546
-
547
- ## [0.19.9](https://github.com/widergy/mobile-ui/compare/v0.19.8...v0.19.9) (2021-06-01)
548
-
549
-
550
- ### Bug Fixes
551
-
552
- * keep initial values on images and files ([#174](https://github.com/widergy/mobile-ui/issues/174)) ([b976985](https://github.com/widergy/mobile-ui/commit/b976985cf847a656c72f99cea5518eb0a34dc1e0))
553
-
554
- ## [0.19.8](https://github.com/widergy/mobile-ui/compare/v0.19.7...v0.19.8) (2021-05-26)
555
-
556
-
557
- ### Bug Fixes
558
-
559
- * Tooltip positioning fix ([#173](https://github.com/widergy/mobile-ui/issues/173)) ([47fb265](https://github.com/widergy/mobile-ui/commit/47fb2651deaad35790022cd6dc2ee6e70fbaa720))
560
-
561
- ## [0.19.7](https://github.com/widergy/mobile-ui/compare/v0.19.6...v0.19.7) (2021-05-26)
562
-
563
-
564
- ### Bug Fixes
565
-
566
- * fix tooltip align in multiline input text ([#172](https://github.com/widergy/mobile-ui/issues/172)) ([52f38eb](https://github.com/widergy/mobile-ui/commit/52f38eb47aed56620c40a647783959fbe08735e8))
567
-
568
- ## [0.19.6](https://github.com/widergy/mobile-ui/compare/v0.19.5...v0.19.6) (2021-05-04)
569
-
570
-
571
- ### Bug Fixes
572
-
573
- * change input text component ([#171](https://github.com/widergy/mobile-ui/issues/171)) ([0c34675](https://github.com/widergy/mobile-ui/commit/0c34675877b166672fac7d93076411652c3d35c3))
574
-
575
- ## [0.19.5](https://github.com/widergy/mobile-ui/compare/v0.19.4...v0.19.5) (2021-04-23)
576
-
577
-
578
- ### Bug Fixes
579
-
580
- * fix loading crash when is not boolean ([#170](https://github.com/widergy/mobile-ui/issues/170)) ([3cd20d3](https://github.com/widergy/mobile-ui/commit/3cd20d3a5c41fcc62f257828425899552d75156c))
581
-
582
- ## [0.19.4](https://github.com/widergy/mobile-ui/compare/v0.19.3...v0.19.4) (2021-04-14)
583
-
584
-
585
- ### Bug Fixes
586
-
587
- * fix theme on stepsHandler and header ([#169](https://github.com/widergy/mobile-ui/issues/169)) ([acf3988](https://github.com/widergy/mobile-ui/commit/acf398882393f40c236c51a7e467604aee20da5f))
588
-
589
- ## [0.19.3](https://github.com/widergy/mobile-ui/compare/v0.19.2...v0.19.3) (2021-04-14)
590
-
591
-
592
- ### Bug Fixes
593
-
594
- * fix theme merge order ([#168](https://github.com/widergy/mobile-ui/issues/168)) ([87b81b6](https://github.com/widergy/mobile-ui/commit/87b81b6b9798eaabc0a6ffb597a526d11a7fdfdb))
595
-
596
- ## [0.19.2](https://github.com/widergy/mobile-ui/compare/v0.19.1...v0.19.2) (2021-04-07)
597
-
598
-
599
- ### Bug Fixes
600
-
601
- * added default prop for allowFontScaling ([#166](https://github.com/widergy/mobile-ui/issues/166)) ([5f192bb](https://github.com/widergy/mobile-ui/commit/5f192bb11211c17a0bfdb63c8f3a27cde523db73))
602
-
603
- ## [0.19.1](https://github.com/widergy/mobile-ui/compare/v0.19.0...v0.19.1) (2021-04-07)
604
-
605
-
606
- ### Bug Fixes
607
-
608
- * fixed icon library for example app ([#167](https://github.com/widergy/mobile-ui/issues/167)) ([2024982](https://github.com/widergy/mobile-ui/commit/202498284f48048ec7a87481fd26d9ab9af79bb6))
609
-
610
- # [0.19.0](https://github.com/widergy/mobile-ui/compare/v0.18.0...v0.19.0) (2021-03-31)
611
-
612
-
613
- ### Features
614
-
615
- * add tooltip Input & UTTextInput ([#165](https://github.com/widergy/mobile-ui/issues/165)) ([93b5a7d](https://github.com/widergy/mobile-ui/commit/93b5a7de67b1b35a901e7d8ac4c749115ba9c34f))
616
-
617
- # [0.18.0](https://github.com/widergy/mobile-ui/compare/v0.17.1...v0.18.0) (2021-03-18)
618
-
619
-
620
- ### Features
621
-
622
- * now pickers support markdown titles ([#164](https://github.com/widergy/mobile-ui/issues/164)) ([5e43f9e](https://github.com/widergy/mobile-ui/commit/5e43f9e2a11c60320fcee0675abc426f65250d86))
623
-
624
- ## [0.17.1](https://github.com/widergy/mobile-ui/compare/v0.17.0...v0.17.1) (2021-03-12)
625
-
626
-
627
- ### Bug Fixes
628
-
629
- * markdown styles ([#163](https://github.com/widergy/mobile-ui/issues/163)) ([2a78ec4](https://github.com/widergy/mobile-ui/commit/2a78ec4231d2d716537f5d9451d06d0d94373128))
630
- * markdown styles ([#163](https://github.com/widergy/mobile-ui/issues/163)) ([70049f9](https://github.com/widergy/mobile-ui/commit/70049f90075bbfb20b043ab24fec43c931506db6))
631
-
632
- # [0.17.0](https://github.com/widergy/mobile-ui/compare/v0.16.0...v0.17.0) (2021-03-10)
633
-
634
-
635
- ### Features
636
-
637
- * added overflow to progressBar, bottomHandler to workflow ([#162](https://github.com/widergy/mobile-ui/issues/162)) ([dfca415](https://github.com/widergy/mobile-ui/commit/dfca415f20e1db1c09d66b6db81bf5758b649e69))
638
-
639
- # [0.16.0](https://github.com/widergy/mobile-ui/compare/v0.15.1...v0.16.0) (2021-03-01)
640
-
641
-
642
- ### Features
643
-
644
- * added changeOnCloseProp to utselect ([#161](https://github.com/widergy/mobile-ui/issues/161)) ([fba8cf8](https://github.com/widergy/mobile-ui/commit/fba8cf8b8adbd79ea72696eadeddf2472d289689))
645
-
646
- ## [0.15.1](https://github.com/widergy/mobile-ui/compare/v0.15.0...v0.15.1) (2021-03-01)
647
-
648
-
649
- ### Bug Fixes
650
-
651
- * pass item to MenuOptionComponente in UTMenu ([#160](https://github.com/widergy/mobile-ui/issues/160)) ([deabcfd](https://github.com/widergy/mobile-ui/commit/deabcfde20894897665270b17f5b7adbb0e79f27))
652
-
653
- # [0.15.0](https://github.com/widergy/mobile-ui/compare/v0.14.0...v0.15.0) (2021-02-25)
654
-
655
-
656
- ### Features
657
-
658
- * add Multiple Select option for UTSelect ([#159](https://github.com/widergy/mobile-ui/issues/159)) ([916d7d9](https://github.com/widergy/mobile-ui/commit/916d7d9cb1074b2c3a1d3abf96909b884fc363ca))
659
-
660
- # [0.14.0](https://github.com/widergy/mobile-ui/compare/v0.13.1...v0.14.0) (2021-02-18)
661
-
662
-
663
- ### Features
664
-
665
- * added markdown to UTWorkflow ([#157](https://github.com/widergy/mobile-ui/issues/157)) ([dd5977f](https://github.com/widergy/mobile-ui/commit/dd5977fccef964cb1fdc170005700bf2c8b7d938))
666
-
667
- ## [0.13.1](https://github.com/widergy/mobile-ui/compare/v0.13.0...v0.13.1) (2021-02-18)
668
-
669
-
670
- ### Bug Fixes
671
-
672
- * UTTextInput fix ([#158](https://github.com/widergy/mobile-ui/issues/158)) ([e9f2150](https://github.com/widergy/mobile-ui/commit/e9f215004f95e2a5fc176ef5fa2edd7dd44e241c))
673
-
674
- # [0.13.0](https://github.com/widergy/mobile-ui/compare/v0.12.4...v0.13.0) (2021-02-10)
675
-
676
-
677
- ### Features
678
-
679
- * improve UTMenu ([#156](https://github.com/widergy/mobile-ui/issues/156)) ([d5511ea](https://github.com/widergy/mobile-ui/commit/d5511ea3ab177e9b057418a1b244f26a8eca8e77))
680
-
681
- ## [0.12.4](https://github.com/widergy/mobile-ui/compare/v0.12.3...v0.12.4) (2021-01-20)
682
-
683
-
684
- ### Bug Fixes
685
-
686
- * android duplicate characters ([#153](https://github.com/widergy/mobile-ui/issues/153)) ([558d8e8](https://github.com/widergy/mobile-ui/commit/558d8e898e3b36db6c0b3e9074bb747f548c2f66))
687
-
688
- ## [0.12.3](https://github.com/widergy/mobile-ui/compare/v0.12.2...v0.12.3) (2021-01-13)
689
-
690
-
691
- ### Bug Fixes
692
-
693
- * fixed mistake in UTTextInput ([#155](https://github.com/widergy/mobile-ui/issues/155)) ([786530c](https://github.com/widergy/mobile-ui/commit/786530cdad21c26edfb67afbc619b2e847588212))
694
-
695
- ## [0.12.2](https://github.com/widergy/mobile-ui/compare/v0.12.1...v0.12.2) (2021-01-13)
696
-
697
-
698
- ### Bug Fixes
699
-
700
- * diferent styles for UTTextInpunt ([#154](https://github.com/widergy/mobile-ui/issues/154)) ([de8ffdc](https://github.com/widergy/mobile-ui/commit/de8ffdcbbf98199dcb24db1be148b2437847610a))
701
-
702
- ## [0.12.1](https://github.com/widergy/mobile-ui/compare/v0.12.0...v0.12.1) (2021-01-08)
703
-
704
-
705
- ### Bug Fixes
706
-
707
- * fix custom error message for PDF format on filePiecker ([#152](https://github.com/widergy/mobile-ui/issues/152)) ([df20098](https://github.com/widergy/mobile-ui/commit/df20098f17f06e5dca5b6eeb9596a8c5b1e3e306))
708
-
709
- # [0.12.0](https://github.com/widergy/mobile-ui/compare/v0.11.2...v0.12.0) (2021-01-07)
710
-
711
-
712
- ### Features
713
-
714
- * filepicker pdf format validation ([#151](https://github.com/widergy/mobile-ui/issues/151)) ([15653d6](https://github.com/widergy/mobile-ui/commit/15653d654d52db972441c3c8044c2aae18bae0f5))
715
-
716
- ## [0.11.2](https://github.com/widergy/mobile-ui/compare/v0.11.1...v0.11.2) (2020-12-18)
717
-
718
-
719
- ### Bug Fixes
720
-
721
- * tooltip positioning revamped ([#150](https://github.com/widergy/mobile-ui/issues/150)) ([2e5c777](https://github.com/widergy/mobile-ui/commit/2e5c7779b145b600501ee584e43ac6ce01caddbc))
722
-
723
- ## [0.11.1](https://github.com/widergy/mobile-ui/compare/v0.11.0...v0.11.1) (2020-12-16)
724
-
725
-
726
- ### Bug Fixes
727
-
728
- * UTOnBoarding error when pressing nextPage fast ([#149](https://github.com/widergy/mobile-ui/issues/149)) ([c0cc07d](https://github.com/widergy/mobile-ui/commit/c0cc07da424d1579740d99d4a72b04d4acf5fa5b))
729
-
730
- # [0.11.0](https://github.com/widergy/mobile-ui/compare/v0.10.4...v0.11.0) (2020-12-15)
731
-
732
-
733
- ### Features
734
-
735
- * tooltip ([#147](https://github.com/widergy/mobile-ui/issues/147)) ([e692c17](https://github.com/widergy/mobile-ui/commit/e692c1732c692e574df29ff00929df51c1c948e5))
736
-
737
- ## [0.10.4](https://github.com/widergy/mobile-ui/compare/v0.10.3...v0.10.4) (2020-12-03)
738
-
739
-
740
- ### Bug Fixes
741
-
742
- * fix hidden button ([#148](https://github.com/widergy/mobile-ui/issues/148)) ([3489d73](https://github.com/widergy/mobile-ui/commit/3489d73d81af5a310afaa68b9d77322eb8fd320f))
743
-
744
- ## [0.10.3](https://github.com/widergy/mobile-ui/compare/v0.10.2...v0.10.3) (2020-10-22)
745
-
746
-
747
- ### Bug Fixes
748
-
749
- * allow right icon React elements ([#146](https://github.com/widergy/mobile-ui/issues/146)) ([d85222d](https://github.com/widergy/mobile-ui/commit/d85222dae08a82c1fa5553f69862b0f841e0ebd3))
750
-
751
- ## [0.10.2](https://github.com/widergy/mobile-ui/compare/v0.10.1...v0.10.2) (2020-10-14)
752
-
753
-
754
- ### Bug Fixes
755
-
756
- * fixed UTMenu horizontal position ([#145](https://github.com/widergy/mobile-ui/issues/145)) ([3eb4a7a](https://github.com/widergy/mobile-ui/commit/3eb4a7a30643208da2f71a1bb68f63fcf0551c2a))
757
-
758
- ## [0.10.1](https://github.com/widergy/mobile-ui/compare/v0.10.0...v0.10.1) (2020-10-09)
759
-
760
-
761
- ### Bug Fixes
762
-
763
- * useTogglabeState caused infinite re-render ([#144](https://github.com/widergy/mobile-ui/issues/144)) ([27951ef](https://github.com/widergy/mobile-ui/commit/27951efb40511c3960f40bbe6a768c109593f071))
764
-
765
- # [0.10.0](https://github.com/widergy/mobile-ui/compare/v0.9.1...v0.10.0) (2020-10-09)
766
-
767
-
768
- ### Features
769
-
770
- * Select, Menu and Input ([#143](https://github.com/widergy/mobile-ui/issues/143)) ([d5e16e8](https://github.com/widergy/mobile-ui/commit/d5e16e8604a87c0eb805f1c04332de73a1758a86))
771
-
772
- ## [0.9.1](https://github.com/widergy/mobile-ui/compare/v0.9.0...v0.9.1) (2020-09-14)
773
-
774
-
775
- ### Bug Fixes
776
-
777
- * fix on Portal for fabButton ([#142](https://github.com/widergy/mobile-ui/issues/142)) ([77537b1](https://github.com/widergy/mobile-ui/commit/77537b1a4500c6e96ac12630a675fb431af2005e))
778
-
779
- # [0.9.0](https://github.com/widergy/mobile-ui/compare/v0.8.0...v0.9.0) (2020-09-03)
780
-
781
-
782
- ### Features
783
-
784
- * OnBoarding component ([#141](https://github.com/widergy/mobile-ui/issues/141)) ([12d239b](https://github.com/widergy/mobile-ui/commit/12d239be07e7add570b6f748372483918931efff))
785
-
786
- # [0.8.0](https://github.com/widergy/mobile-ui/compare/v0.7.4...v0.8.0) (2020-08-28)
787
-
788
-
789
- ### Features
790
-
791
- * UTProgressBar ([#139](https://github.com/widergy/mobile-ui/issues/139)) ([41fa642](https://github.com/widergy/mobile-ui/commit/41fa64260f2b79a0662c2f0761d3dcdba089416b))
792
-
793
- ## [0.7.4](https://github.com/widergy/mobile-ui/compare/v0.7.3...v0.7.4) (2020-08-27)
794
-
795
-
796
- ### Bug Fixes
797
-
798
- * added only pdf check ([#140](https://github.com/widergy/mobile-ui/issues/140)) ([20952da](https://github.com/widergy/mobile-ui/commit/20952dad0019484dea54ae2c4b620bbe13b1fa36))
799
-
800
- ## [0.7.3](https://github.com/widergy/mobile-ui/compare/v0.7.2...v0.7.3) (2020-08-10)
801
-
802
-
803
- ### Bug Fixes
804
-
805
- * Overlay dimensions ([#138](https://github.com/widergy/mobile-ui/issues/138)) ([6ee8aee](https://github.com/widergy/mobile-ui/commit/6ee8aeed81f593ea9e87f879919c63ef2dee6748))
806
-
807
- ## [0.7.2](https://github.com/widergy/mobile-ui/compare/v0.7.1...v0.7.2) (2020-07-22)
808
-
809
-
810
- ### Bug Fixes
811
-
812
- * fixed select all when mounted ([#137](https://github.com/widergy/mobile-ui/issues/137)) ([7a0dd85](https://github.com/widergy/mobile-ui/commit/7a0dd85cdbe5342b706733620d7c92838df093b4))
813
-
814
- ## [0.7.1](https://github.com/widergy/mobile-ui/compare/v0.7.0...v0.7.1) (2020-07-21)
815
-
816
-
817
- ### Bug Fixes
818
-
819
- * File picker ([#136](https://github.com/widergy/mobile-ui/issues/136)) ([abe9c04](https://github.com/widergy/mobile-ui/commit/abe9c04dd4fccaeb5e62d447081204c57ed7791a))
820
-
821
- # [0.7.0](https://github.com/widergy/mobile-ui/compare/v0.6.1...v0.7.0) (2020-06-13)
822
-
823
-
824
- ### Features
825
-
826
- * add title for UTDetailDrawer ([#135](https://github.com/widergy/mobile-ui/issues/135)) ([c3fd2a4](https://github.com/widergy/mobile-ui/commit/c3fd2a45ef41c42f648278a634f286e6ec243d1e))
827
-
828
- ## [0.6.1](https://github.com/widergy/mobile-ui/compare/v0.6.0...v0.6.1) (2020-06-10)
829
-
830
-
831
- ### Bug Fixes
832
-
833
- * Using prop-types from react-native components is forbidden in rn0.62 ([#123](https://github.com/widergy/mobile-ui/issues/123)) ([779bfe4](https://github.com/widergy/mobile-ui/commit/779bfe433879f54773d7b70fc6a8e387ec923ac0))
834
-
835
- # [0.6.0](https://github.com/widergy/mobile-ui/compare/v0.5.0...v0.6.0) (2020-06-09)
836
-
837
-
838
- ### Features
839
-
840
- * add textProps for checklist and checkbox label ([#134](https://github.com/widergy/mobile-ui/issues/134)) ([57484cd](https://github.com/widergy/mobile-ui/commit/57484cd3e4c8f5bd3a655c5134bba92b66a6acfa))
841
-
842
- # [0.5.0](https://github.com/widergy/mobile-ui/compare/v0.4.1...v0.5.0) (2020-06-09)
843
-
844
-
845
- ### Features
846
-
847
- * add alternated color styles props and disabled styles props ([#133](https://github.com/widergy/mobile-ui/issues/133)) ([71d0b6a](https://github.com/widergy/mobile-ui/commit/71d0b6abd29941e0e1b296abb7f2851b3549440d))
848
-
849
- ## [0.4.1](https://github.com/widergy/mobile-ui/compare/v0.4.0...v0.4.1) (2020-06-05)
850
-
851
-
852
- ### Bug Fixes
853
-
854
- * fixed all values selected at init ([#132](https://github.com/widergy/mobile-ui/issues/132)) ([b6f674f](https://github.com/widergy/mobile-ui/commit/b6f674f1049b2357d5d784bc851b5b56e2028a85))
855
-
856
- # [0.4.0](https://github.com/widergy/mobile-ui/compare/v0.3.0...v0.4.0) (2020-06-05)
857
-
858
-
859
- ### Features
860
-
861
- * Loader components rework ([#120](https://github.com/widergy/mobile-ui/issues/120)) ([16441c0](https://github.com/widergy/mobile-ui/commit/16441c04769c5bd10d8cb4db6a39e1f6f699912d))
862
-
863
- # [0.3.0](https://github.com/widergy/mobile-ui/compare/v0.2.1...v0.3.0) (2020-06-04)
864
-
865
-
866
- ### Features
867
-
868
- * add checkbox container style to checklist ([#131](https://github.com/widergy/mobile-ui/issues/131)) ([4af3061](https://github.com/widergy/mobile-ui/commit/4af30610ef5ab49b397036a473fb190d5b6fa99e))
869
-
870
- ## [0.2.1](https://github.com/widergy/mobile-ui/compare/v0.2.0...v0.2.1) (2020-06-04)
871
-
872
-
873
- ### Bug Fixes
874
-
875
- * fixed checklist ([#130](https://github.com/widergy/mobile-ui/issues/130)) ([736d806](https://github.com/widergy/mobile-ui/commit/736d8069a7a8e6f3698e82ade53b3f428da42ae2))
876
-
877
- # [0.2.0](https://github.com/widergy/mobile-ui/compare/v0.1.0...v0.2.0) (2020-06-03)
878
-
879
-
880
- ### Features
881
-
882
- * adding checklist ([#128](https://github.com/widergy/mobile-ui/issues/128)) ([5359c76](https://github.com/widergy/mobile-ui/commit/5359c7673e0e953e3ffe6b6197b4a7603fa6b2e7))
883
-
884
- # [0.1.0](https://github.com/widergy/mobile-ui/compare/v0.0.26...v0.1.0) (2020-06-03)
885
-
886
-
887
- ### Bug Fixes
888
-
889
- * remove post version script ([d2a2fc2](https://github.com/widergy/mobile-ui/commit/d2a2fc2704bac3ce29ae3561c9450fc79127089f))
890
-
891
-
892
- ### Features
893
-
894
- * automated release flow ([#129](https://github.com/widergy/mobile-ui/issues/129)) ([e1a21b0](https://github.com/widergy/mobile-ui/commit/e1a21b05ee01b6b9684aa9432d237e951d9d8b3d))