@widergy/mobile-ui 0.40.1 → 1.1.0
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 +921 -0
- package/lib/components/Button/index.js +10 -6
- package/lib/components/Button/styles.js +5 -5
- package/lib/components/Capture/index.js +3 -3
- package/lib/components/Carousel/components/CarouselComponent/index.js +2 -0
- package/lib/components/Carousel/components/CarouselContainer/index.js +2 -10
- package/lib/components/CheckList/components/CheckBoxRenderer/index.js +1 -0
- package/lib/components/CheckList/index.js +5 -3
- package/lib/components/CheckList/proptypes.js +2 -2
- package/lib/components/Checkbox/styles.js +3 -3
- package/lib/components/Dropdown/index.js +12 -10
- package/lib/components/FilePicker/utils.js +2 -2
- package/lib/components/Icon/constants.js +1 -0
- package/lib/components/Icon/index.js +11 -1
- package/lib/components/ImageIcon/index.js +8 -1
- package/lib/components/ImageRadio/index.js +21 -12
- package/lib/components/Loading/index.js +1 -0
- package/lib/components/Overlay/index.js +2 -10
- package/lib/components/PhotoAlbum/index.js +8 -9
- package/lib/components/Picker/index.js +2 -2
- package/lib/components/Portal/components/Manager/index.js +7 -4
- package/lib/components/RadioGroup/components/RadioButton/index.js +5 -5
- package/lib/components/RateChart/components/RateStagesGraph/components/Indicator/index.js +3 -3
- package/lib/components/RateChart/components/RateStagesGraph/components/Indicator/utils.js +1 -1
- package/lib/components/TransformView/constants.js +1 -1
- package/lib/components/TransformView/utils.js +674 -0
- package/lib/components/UTAutocomplete/index.js +4 -4
- package/lib/components/UTBanner/index.js +42 -0
- package/lib/components/UTBanner/styles.js +14 -0
- package/lib/components/UTCBUInput/index.js +2 -2
- package/lib/components/UTHeader/index.js +56 -0
- package/lib/components/UTHeader/styles.js +16 -0
- package/lib/components/UTMenu/components/ListView/index.js +4 -2
- package/lib/components/UTMenu/components/MenuOption/index.js +1 -0
- package/lib/components/UTMenu/index.js +3 -3
- package/lib/components/UTMenu/proptypes.js +2 -2
- package/lib/components/UTOnBoarding/components/CardContent/index.js +3 -3
- package/lib/components/UTOnBoarding/index.js +4 -4
- package/lib/components/UTPasswordField/components/PasswordValidations/index.js +2 -6
- package/lib/components/UTSelect/componentes/MultipleItem/index.js +1 -0
- package/lib/components/UTSelect/proptypes.js +1 -0
- package/lib/components/UTStepFeedback/components/CircleNumber/index.js +12 -10
- package/lib/components/UTStepFeedback/index.js +36 -37
- package/lib/components/UTStepper/components/Connectors/index.js +33 -0
- package/lib/components/UTStepper/components/Connectors/styles.js +26 -0
- package/lib/components/UTStepper/components/Step/index.js +50 -0
- package/lib/components/UTStepper/components/Step/styles.js +47 -0
- package/lib/components/UTStepper/index.js +34 -0
- package/lib/components/UTStepper/styles.js +12 -0
- package/lib/components/UTStepper/types.js +3 -0
- package/lib/components/UTSwitch/proptypes.js +1 -0
- package/lib/components/UTTextInput/components/BaseInput/index.js +10 -12
- package/lib/components/UTTextInput/proptypes.js +1 -0
- package/lib/components/UTTopbar/index.js +64 -0
- package/lib/components/UTTopbar/styles.js +16 -0
- package/lib/components/UTTopbar/types.js +8 -0
- package/lib/components/UTWorkflowContainer/index.js +10 -102
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/BottomStepHandler/index.js +4 -4
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/BottomStepHandler/styles.js +3 -3
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/Header/index.js +9 -9
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/Header/styles.js +3 -3
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/components/ActionButton/index.js +2 -2
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/components/ActionButton/styles.js +12 -12
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/components/ActionButton/types.js +9 -9
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/index.js +6 -6
- package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/styles.js +3 -3
- package/lib/components/UTWorkflowContainer/versions/V0/index.js +108 -0
- package/lib/components/UTWorkflowContainer/{styles.js → versions/V0/styles.js} +4 -4
- package/lib/components/UTWorkflowContainer/versions/V1/components/BottomActions/components/ActionButton/index.js +35 -0
- package/lib/components/UTWorkflowContainer/versions/V1/components/BottomActions/components/ActionButton/styles.js +13 -0
- package/lib/components/UTWorkflowContainer/versions/V1/components/BottomActions/components/ActionButton/types.js +9 -0
- package/lib/components/UTWorkflowContainer/versions/V1/components/BottomActions/constants.js +2 -0
- package/lib/components/UTWorkflowContainer/versions/V1/components/BottomActions/index.js +110 -0
- package/lib/components/UTWorkflowContainer/versions/V1/components/BottomActions/styles.js +75 -0
- package/lib/components/UTWorkflowContainer/versions/V1/index.js +94 -0
- package/lib/components/UTWorkflowContainer/versions/V1/styles.js +14 -0
- package/lib/components/UTWorkflowContainer/versions/V1/types.js +24 -0
- package/lib/theming/DefaultTheme.js +1 -0
- package/lib/utils/fileUtils.js/index.js +20 -5
- package/package.json +47 -71
- /package/lib/components/UTWorkflowContainer/{README.md → versions/V0/README.md} +0 -0
- /package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/Header/utils.js +0 -0
- /package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/constants.js +0 -0
- /package/lib/components/UTWorkflowContainer/{components → versions/V0/components}/StepsHandler/utils.js +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,921 @@
|
|
|
1
|
+
# [1.1.0](https://github.com/widergy/mobile-ui/compare/v1.0.0...v1.1.0) (2024-02-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* utworkflowcontainer revamp ([#256](https://github.com/widergy/mobile-ui/issues/256)) ([ae89e85](https://github.com/widergy/mobile-ui/commit/ae89e85ab5617c6711d99f7e6ba6c61ada47dd29))
|
|
7
|
+
|
|
8
|
+
# [1.0.0](https://github.com/widergy/mobile-ui/compare/v0.40.0...v1.0.0) (2023-11-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* branch name hook ([#253](https://github.com/widergy/mobile-ui/issues/253)) ([46527ae](https://github.com/widergy/mobile-ui/commit/46527ae9ad7baa0c1e1e4d6bfe2ba9b12ad1d7ce))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### chore
|
|
17
|
+
|
|
18
|
+
* dependencies update ([#250](https://github.com/widergy/mobile-ui/issues/250)) ([53fd690](https://github.com/widergy/mobile-ui/commit/53fd6902949a6151e2bd7b577cb50f242df15bb4))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### BREAKING CHANGES
|
|
22
|
+
|
|
23
|
+
* dependencies
|
|
24
|
+
* dependencies
|
|
25
|
+
* dependencies
|
|
26
|
+
* dependencies
|
|
27
|
+
|
|
28
|
+
# [0.40.0](https://github.com/widergy/mobile-ui/compare/v0.39.4...v0.40.0) (2023-10-31)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* adds step change functionality ([#252](https://github.com/widergy/mobile-ui/issues/252)) ([da14033](https://github.com/widergy/mobile-ui/commit/da14033a75deeb70b8992760fcf5f8961d609554))
|
|
34
|
+
|
|
35
|
+
## [0.39.4](https://github.com/widergy/mobile-ui/compare/v0.39.3...v0.39.4) (2023-10-26)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* add support for active admin config ([d992629](https://github.com/widergy/mobile-ui/commit/d992629424aeb71dfff5bf3a8aeb6c86818f3dc7))
|
|
41
|
+
* label text overflow can now be controlled ([98a0056](https://github.com/widergy/mobile-ui/commit/98a0056d94d7dca60eb65df0f1ea6b5a9e61a6fc))
|
|
42
|
+
|
|
43
|
+
## [0.39.3](https://github.com/widergy/mobile-ui/compare/v0.39.2...v0.39.3) (2023-08-25)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* removes rates from bar ([41c180f](https://github.com/widergy/mobile-ui/commit/41c180fe71f739f923fd1dc707aaac70c719e96d))
|
|
49
|
+
|
|
50
|
+
## [0.39.2](https://github.com/widergy/mobile-ui/compare/v0.39.1...v0.39.2) (2023-08-24)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
* process tracking by logs when capturing photos ([8150040](https://github.com/widergy/mobile-ui/commit/8150040a17142f042c079668c3e4b96d0a331d5c))
|
|
56
|
+
|
|
57
|
+
## [0.39.1](https://github.com/widergy/mobile-ui/compare/v0.39.0...v0.39.1) (2023-08-14)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* add markdown in UTWorkflowContainer ([2666788](https://github.com/widergy/mobile-ui/commit/2666788a7fdfb70f3828ad29b084b1384a134767))
|
|
63
|
+
|
|
64
|
+
# [0.39.0](https://github.com/widergy/mobile-ui/compare/v0.38.0...v0.39.0) (2023-08-11)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Features
|
|
68
|
+
|
|
69
|
+
* add disabled ([#247](https://github.com/widergy/mobile-ui/issues/247)) ([39c8fb4](https://github.com/widergy/mobile-ui/commit/39c8fb45d0b4ae90b48d4c3a00e25cdb719f12ed))
|
|
70
|
+
|
|
71
|
+
# [0.38.0](https://github.com/widergy/mobile-ui/compare/v0.37.7...v0.38.0) (2023-08-11)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Features
|
|
75
|
+
|
|
76
|
+
* add disabled prop ([139f5ba](https://github.com/widergy/mobile-ui/commit/139f5ba1c9247d2e1dd5c38c5868cff1ea02e676))
|
|
77
|
+
* fix comments ([6731f8e](https://github.com/widergy/mobile-ui/commit/6731f8e3b33b28d68ce1dfd5ceebb2ae12b54099))
|
|
78
|
+
|
|
79
|
+
## [0.37.7](https://github.com/widergy/mobile-ui/compare/v0.37.6...v0.37.7) (2023-07-26)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
* hide step number ([#243](https://github.com/widergy/mobile-ui/issues/243)) ([fa8cb6f](https://github.com/widergy/mobile-ui/commit/fa8cb6fa98c0cc8d1400ff3cdf467c75f84f5d1c))
|
|
85
|
+
|
|
86
|
+
## [0.37.6](https://github.com/widergy/mobile-ui/compare/v0.37.5...v0.37.6) (2023-06-27)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Bug Fixes
|
|
90
|
+
|
|
91
|
+
* delete auto-assign config ([fb7fc09](https://github.com/widergy/mobile-ui/commit/fb7fc092d20334077c8ed08c2b65b50607177080))
|
|
92
|
+
* update energybot config ([34df445](https://github.com/widergy/mobile-ui/commit/34df4456547cb251f42b20ad07b58e22eb74ace3))
|
|
93
|
+
|
|
94
|
+
## [0.37.5](https://github.com/widergy/mobile-ui/compare/v0.37.4...v0.37.5) (2023-06-14)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Bug Fixes
|
|
98
|
+
|
|
99
|
+
* 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))
|
|
100
|
+
|
|
101
|
+
## [0.37.4](https://github.com/widergy/mobile-ui/compare/v0.37.3...v0.37.4) (2023-06-06)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* image radio ([#240](https://github.com/widergy/mobile-ui/issues/240)) ([d834b8c](https://github.com/widergy/mobile-ui/commit/d834b8c149b636e4c772ed02ecae8b517be61eea))
|
|
107
|
+
|
|
108
|
+
## [0.37.3](https://github.com/widergy/mobile-ui/compare/v0.37.2...v0.37.3) (2023-03-11)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Bug Fixes
|
|
112
|
+
|
|
113
|
+
* update auto_assign.yml ([045b376](https://github.com/widergy/mobile-ui/commit/045b376432f822a4e0d719a62c32faabf850f1e9))
|
|
114
|
+
|
|
115
|
+
## [0.37.2](https://github.com/widergy/mobile-ui/compare/v0.37.1...v0.37.2) (2023-03-11)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* create auto_assign.yml ([203fd41](https://github.com/widergy/mobile-ui/commit/203fd411f059f83b8e421091fc94476b9215cf11))
|
|
121
|
+
|
|
122
|
+
## [0.37.1](https://github.com/widergy/mobile-ui/compare/v0.37.0...v0.37.1) (2023-03-11)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Bug Fixes
|
|
126
|
+
|
|
127
|
+
* delete semantic.yml ([b0f9c70](https://github.com/widergy/mobile-ui/commit/b0f9c7069d7575dafafa4994d1c48e26af72d388))
|
|
128
|
+
* update energy-bot.yml ([a2a4879](https://github.com/widergy/mobile-ui/commit/a2a4879ec36366dce868c3827566428dbe51998b))
|
|
129
|
+
* update pull request template ([8098450](https://github.com/widergy/mobile-ui/commit/8098450e976756cb66f71dbacf9580053bb92ecc))
|
|
130
|
+
|
|
131
|
+
# [0.37.0](https://github.com/widergy/mobile-ui/compare/v0.36.6...v0.37.0) (2023-03-10)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
* 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))
|
|
137
|
+
|
|
138
|
+
## [0.36.6](https://github.com/widergy/mobile-ui/compare/v0.36.5...v0.36.6) (2023-02-10)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Bug Fixes
|
|
142
|
+
|
|
143
|
+
* checklist handles flatListProps ([#238](https://github.com/widergy/mobile-ui/issues/238)) ([70070e6](https://github.com/widergy/mobile-ui/commit/70070e6a500f8f7239e600d324e57e0dfb291935))
|
|
144
|
+
|
|
145
|
+
## [0.36.5](https://github.com/widergy/mobile-ui/compare/v0.36.4...v0.36.5) (2023-01-25)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Bug Fixes
|
|
149
|
+
|
|
150
|
+
* scrollviews ([#236](https://github.com/widergy/mobile-ui/issues/236)) ([ec2d461](https://github.com/widergy/mobile-ui/commit/ec2d461b5d2b3908996fe8c7847a74d2c198e228))
|
|
151
|
+
|
|
152
|
+
## [0.36.4](https://github.com/widergy/mobile-ui/compare/v0.36.3...v0.36.4) (2023-01-24)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Bug Fixes
|
|
156
|
+
|
|
157
|
+
* forward disable ([#235](https://github.com/widergy/mobile-ui/issues/235)) ([18a087d](https://github.com/widergy/mobile-ui/commit/18a087de1e9d94b0e4e50e834fd152b249c47cc1))
|
|
158
|
+
|
|
159
|
+
## [0.36.3](https://github.com/widergy/mobile-ui/compare/v0.36.2...v0.36.3) (2023-01-24)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Bug Fixes
|
|
163
|
+
|
|
164
|
+
* disabled prop ([#237](https://github.com/widergy/mobile-ui/issues/237)) ([8b77874](https://github.com/widergy/mobile-ui/commit/8b778749283aaf8972044af4bcf17923ee6e9416))
|
|
165
|
+
|
|
166
|
+
## [0.36.2](https://github.com/widergy/mobile-ui/compare/v0.36.1...v0.36.2) (2023-01-18)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
### Bug Fixes
|
|
170
|
+
|
|
171
|
+
* read only radio group ([#234](https://github.com/widergy/mobile-ui/issues/234)) ([ffcd1d5](https://github.com/widergy/mobile-ui/commit/ffcd1d5bb914a95336e85f0b81775b3b71ebf091))
|
|
172
|
+
|
|
173
|
+
## [0.36.1](https://github.com/widergy/mobile-ui/compare/v0.36.0...v0.36.1) (2023-01-09)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Bug Fixes
|
|
177
|
+
|
|
178
|
+
* avoid automatic selection of first option ([#233](https://github.com/widergy/mobile-ui/issues/233)) ([fecb7e0](https://github.com/widergy/mobile-ui/commit/fecb7e0002786de872d54c0e3957d5164dc0b37d))
|
|
179
|
+
|
|
180
|
+
# [0.36.0](https://github.com/widergy/mobile-ui/compare/v0.35.8...v0.36.0) (2022-12-02)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Features
|
|
184
|
+
|
|
185
|
+
* rate chart ([#232](https://github.com/widergy/mobile-ui/issues/232)) ([7d7f06d](https://github.com/widergy/mobile-ui/commit/7d7f06d6f0d01422af3ec28126aad3836ff5c321))
|
|
186
|
+
|
|
187
|
+
## [0.35.8](https://github.com/widergy/mobile-ui/compare/v0.35.7...v0.35.8) (2022-11-14)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Bug Fixes
|
|
191
|
+
|
|
192
|
+
* added disable color for select field ([#231](https://github.com/widergy/mobile-ui/issues/231)) ([116e827](https://github.com/widergy/mobile-ui/commit/116e8275de542d6dbb766f2a9fd7c0d60bd07f37))
|
|
193
|
+
|
|
194
|
+
## [0.35.7](https://github.com/widergy/mobile-ui/compare/v0.35.6...v0.35.7) (2022-11-11)
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
### Bug Fixes
|
|
198
|
+
|
|
199
|
+
* 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))
|
|
200
|
+
|
|
201
|
+
## [0.35.6](https://github.com/widergy/mobile-ui/compare/v0.35.5...v0.35.6) (2022-10-28)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
### Bug Fixes
|
|
205
|
+
|
|
206
|
+
* tooltip text ([#229](https://github.com/widergy/mobile-ui/issues/229)) ([b20d8e1](https://github.com/widergy/mobile-ui/commit/b20d8e11ca52e7b762587c7dc06182bcbb0dd2a3))
|
|
207
|
+
|
|
208
|
+
## [0.35.5](https://github.com/widergy/mobile-ui/compare/v0.35.4...v0.35.5) (2022-10-27)
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
### Bug Fixes
|
|
212
|
+
|
|
213
|
+
* viewproptypes library import change ([#227](https://github.com/widergy/mobile-ui/issues/227)) ([7976f2a](https://github.com/widergy/mobile-ui/commit/7976f2a1e37cbe75f82b256c4da8fb60d38de548))
|
|
214
|
+
|
|
215
|
+
## [0.35.4](https://github.com/widergy/mobile-ui/compare/v0.35.3...v0.35.4) (2022-10-25)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
* added label to tooltip content ([#228](https://github.com/widergy/mobile-ui/issues/228)) ([dee88d6](https://github.com/widergy/mobile-ui/commit/dee88d6e9cc0e306d0efabae284b29dcb2869b9f))
|
|
221
|
+
|
|
222
|
+
## [0.35.3](https://github.com/widergy/mobile-ui/compare/v0.35.2...v0.35.3) (2022-08-29)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Bug Fixes
|
|
226
|
+
|
|
227
|
+
* pr corrections ([b5a48ff](https://github.com/widergy/mobile-ui/commit/b5a48ff9748b20a6c1f4d50eb0be9a3bee5e4882))
|
|
228
|
+
* re-rendering of utmenu ([b0bd3eb](https://github.com/widergy/mobile-ui/commit/b0bd3eb868b8183a52cfd54186d6992c63966c4e))
|
|
229
|
+
|
|
230
|
+
## [0.35.2](https://github.com/widergy/mobile-ui/compare/v0.35.1...v0.35.2) (2022-08-12)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
### Bug Fixes
|
|
234
|
+
|
|
235
|
+
* added subtitle and separator bar ([#225](https://github.com/widergy/mobile-ui/issues/225)) ([29dc57e](https://github.com/widergy/mobile-ui/commit/29dc57e9b777228ce22f3edadf3dffb3d568a06e))
|
|
236
|
+
|
|
237
|
+
## [0.35.1](https://github.com/widergy/mobile-ui/compare/v0.35.0...v0.35.1) (2022-07-14)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Bug Fixes
|
|
241
|
+
|
|
242
|
+
* adding a parameter to utswitch ([#223](https://github.com/widergy/mobile-ui/issues/223)) ([2c3bb48](https://github.com/widergy/mobile-ui/commit/2c3bb480da94325c20480f834ffa1f166be9b135))
|
|
243
|
+
|
|
244
|
+
# [0.35.0](https://github.com/widergy/mobile-ui/compare/v0.34.3...v0.35.0) (2022-06-03)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Bug Fixes
|
|
248
|
+
|
|
249
|
+
* added opacity when disabled button ([6d75fdb](https://github.com/widergy/mobile-ui/commit/6d75fdb3023308ffaa6cbd5c70d88deb338440b6))
|
|
250
|
+
* adjusted loading in modal ([4b175e4](https://github.com/widergy/mobile-ui/commit/4b175e4b8f220444db5abebcee7b2a69c61f8eae))
|
|
251
|
+
* avoid falsy condition in buttons and adjusted its style ([1d83ab4](https://github.com/widergy/mobile-ui/commit/1d83ab4096418c678da0988b41ef2a1c691c5759))
|
|
252
|
+
* avoid falsy condition in title ([8a364dd](https://github.com/widergy/mobile-ui/commit/8a364dd3b61131ae64dca26153e79477658ded49))
|
|
253
|
+
* backgroundImg prop ([ea7d415](https://github.com/widergy/mobile-ui/commit/ea7d415a14a7960252fa1ef20a73e38a5b367e69))
|
|
254
|
+
* delete outsideContent prop ([5c2bbbc](https://github.com/widergy/mobile-ui/commit/5c2bbbc10057ad0ee3a4acc4c7c7acce92b70656))
|
|
255
|
+
* deleted withTheme hook and left useTheme hoc ([775ca6b](https://github.com/widergy/mobile-ui/commit/775ca6bd7ddb142be721b73868ca44776b87f306))
|
|
256
|
+
* separted img and backgound img styles ([e347885](https://github.com/widergy/mobile-ui/commit/e347885847883b5912624e1add844a630ab30c5b))
|
|
257
|
+
* UTModal and Modal components in mobile ui ([23dc89b](https://github.com/widergy/mobile-ui/commit/23dc89b26bd3776cb78206474b95ce7c01bbdb0b))
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
### Features
|
|
261
|
+
|
|
262
|
+
* add UTModal component ([8303a57](https://github.com/widergy/mobile-ui/commit/8303a5732600f21f600ebecbbe37dfcc321eab90))
|
|
263
|
+
|
|
264
|
+
## [0.34.3](https://github.com/widergy/mobile-ui/compare/v0.34.2...v0.34.3) (2022-05-19)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
### Bug Fixes
|
|
268
|
+
|
|
269
|
+
* added host portal in example capture ([acda0b2](https://github.com/widergy/mobile-ui/commit/acda0b2f9caa78cf2a47622e20bec02613118b2e))
|
|
270
|
+
* cases of the text of selection of photos in plural contemplated ([d0f0ebc](https://github.com/widergy/mobile-ui/commit/d0f0ebc2087cb3dc3f0ce10b334906effb12ade2))
|
|
271
|
+
* onRequestClose added to photo application modal ([83d95f4](https://github.com/widergy/mobile-ui/commit/83d95f43a24771dc1e0aad71b70a9385465b85b6))
|
|
272
|
+
* pr corrections ([e58ab51](https://github.com/widergy/mobile-ui/commit/e58ab51c3138c5bcf3463df82ffe69c1ded04c96))
|
|
273
|
+
|
|
274
|
+
## [0.34.2](https://github.com/widergy/mobile-ui/compare/v0.34.1...v0.34.2) (2022-05-06)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
### Bug Fixes
|
|
278
|
+
|
|
279
|
+
* modify radio button components and others ([#221](https://github.com/widergy/mobile-ui/issues/221)) ([530345a](https://github.com/widergy/mobile-ui/commit/530345a3cb103ce761a4d780544b72f101d6a5e8))
|
|
280
|
+
|
|
281
|
+
## [0.34.1](https://github.com/widergy/mobile-ui/compare/v0.34.0...v0.34.1) (2022-04-26)
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
### Bug Fixes
|
|
285
|
+
|
|
286
|
+
* undefined is not a function ([#219](https://github.com/widergy/mobile-ui/issues/219)) ([ca80c4d](https://github.com/widergy/mobile-ui/commit/ca80c4d6b90176376f980234be432da87f6ed5ff))
|
|
287
|
+
|
|
288
|
+
# [0.34.0](https://github.com/widergy/mobile-ui/compare/v0.33.0...v0.34.0) (2022-04-11)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
### Features
|
|
292
|
+
|
|
293
|
+
* photo album and capture component added ([08f0749](https://github.com/widergy/mobile-ui/commit/08f07498f274b36bfc2a3be901527bd73f338a7a))
|
|
294
|
+
|
|
295
|
+
# [0.33.0](https://github.com/widergy/mobile-ui/compare/v0.32.4...v0.33.0) (2022-03-25)
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
### Features
|
|
299
|
+
|
|
300
|
+
* allow any mime type ([#217](https://github.com/widergy/mobile-ui/issues/217)) ([9b99614](https://github.com/widergy/mobile-ui/commit/9b99614b93d98e14a57c409f0e7674c5832d1b58))
|
|
301
|
+
|
|
302
|
+
## [0.32.4](https://github.com/widergy/mobile-ui/compare/v0.32.3...v0.32.4) (2022-03-07)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
### Bug Fixes
|
|
306
|
+
|
|
307
|
+
* 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))
|
|
308
|
+
|
|
309
|
+
## [0.32.3](https://github.com/widergy/mobile-ui/compare/v0.32.2...v0.32.3) (2022-02-25)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
### Bug Fixes
|
|
313
|
+
|
|
314
|
+
* show image on updates (ImagePicker) ([#213](https://github.com/widergy/mobile-ui/issues/213)) ([1b55704](https://github.com/widergy/mobile-ui/commit/1b55704c7e8a42eb057da35872f85ac8b7d11506))
|
|
315
|
+
|
|
316
|
+
## [0.32.2](https://github.com/widergy/mobile-ui/compare/v0.32.1...v0.32.2) (2022-02-11)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
### Bug Fixes
|
|
320
|
+
|
|
321
|
+
* deprecated keyboard ([#214](https://github.com/widergy/mobile-ui/issues/214)) ([57b3775](https://github.com/widergy/mobile-ui/commit/57b37756155c7bf759e586ce35f090e86834fa89))
|
|
322
|
+
|
|
323
|
+
## [0.32.1](https://github.com/widergy/mobile-ui/compare/v0.32.0...v0.32.1) (2022-01-19)
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
### Bug Fixes
|
|
327
|
+
|
|
328
|
+
* bounce on scrollview component ([#211](https://github.com/widergy/mobile-ui/issues/211)) ([aa6249b](https://github.com/widergy/mobile-ui/commit/aa6249b3f508bdf9ad7828ab5c0fcc371d600935))
|
|
329
|
+
|
|
330
|
+
# [0.32.0](https://github.com/widergy/mobile-ui/compare/v0.31.5...v0.32.0) (2021-12-10)
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
### Features
|
|
334
|
+
|
|
335
|
+
* new borderless prop for borderless searchbar ([#209](https://github.com/widergy/mobile-ui/issues/209)) ([8d5f9ae](https://github.com/widergy/mobile-ui/commit/8d5f9ae55d7e8ed6dea53d3d9e16b0a9dfcdf7b3))
|
|
336
|
+
|
|
337
|
+
## [0.31.5](https://github.com/widergy/mobile-ui/compare/v0.31.4...v0.31.5) (2021-11-16)
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
### Bug Fixes
|
|
341
|
+
|
|
342
|
+
* improve image radio ([#206](https://github.com/widergy/mobile-ui/issues/206)) ([dd415e4](https://github.com/widergy/mobile-ui/commit/dd415e41323c2dd3ac7d9a43a490f86fa8947400))
|
|
343
|
+
|
|
344
|
+
## [0.31.4](https://github.com/widergy/mobile-ui/compare/v0.31.3...v0.31.4) (2021-11-09)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
### Bug Fixes
|
|
348
|
+
|
|
349
|
+
* 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))
|
|
350
|
+
|
|
351
|
+
## [0.31.3](https://github.com/widergy/mobile-ui/compare/v0.31.2...v0.31.3) (2021-11-09)
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
### Bug Fixes
|
|
355
|
+
|
|
356
|
+
* application update to api 30 ([#205](https://github.com/widergy/mobile-ui/issues/205)) ([7c8480b](https://github.com/widergy/mobile-ui/commit/7c8480bcf1d66958840680d9769a72a163be6d96))
|
|
357
|
+
|
|
358
|
+
## [0.31.2](https://github.com/widergy/mobile-ui/compare/v0.31.1...v0.31.2) (2021-11-03)
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Bug Fixes
|
|
362
|
+
|
|
363
|
+
* changed analytics screen log method ([#192](https://github.com/widergy/mobile-ui/issues/192)) ([92a141c](https://github.com/widergy/mobile-ui/commit/92a141c60c1aa852af423492e25706962761e4f3))
|
|
364
|
+
|
|
365
|
+
## [0.31.1](https://github.com/widergy/mobile-ui/compare/v0.31.0...v0.31.1) (2021-11-03)
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
### Bug Fixes
|
|
369
|
+
|
|
370
|
+
* 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))
|
|
371
|
+
|
|
372
|
+
# [0.31.0](https://github.com/widergy/mobile-ui/compare/v0.30.7...v0.31.0) (2021-10-05)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
### Features
|
|
376
|
+
|
|
377
|
+
* image radio component ([#203](https://github.com/widergy/mobile-ui/issues/203)) ([0d83774](https://github.com/widergy/mobile-ui/commit/0d83774a4bdc6478bce31802266da9385dccd0d5))
|
|
378
|
+
|
|
379
|
+
## [0.30.7](https://github.com/widergy/mobile-ui/compare/v0.30.6...v0.30.7) (2021-09-30)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Bug Fixes
|
|
383
|
+
|
|
384
|
+
* password requirements padding ([#202](https://github.com/widergy/mobile-ui/issues/202)) ([21256e4](https://github.com/widergy/mobile-ui/commit/21256e47e8a223c298d80e032de66100259bdc37))
|
|
385
|
+
|
|
386
|
+
## [0.30.6](https://github.com/widergy/mobile-ui/compare/v0.30.5...v0.30.6) (2021-09-24)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
### Bug Fixes
|
|
390
|
+
|
|
391
|
+
* better label update performance ([#201](https://github.com/widergy/mobile-ui/issues/201)) ([58f55f5](https://github.com/widergy/mobile-ui/commit/58f55f5c6a8042e9c4f035085d74464aeff6ee88))
|
|
392
|
+
|
|
393
|
+
## [0.30.5](https://github.com/widergy/mobile-ui/compare/v0.30.4...v0.30.5) (2021-09-24)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Bug Fixes
|
|
397
|
+
|
|
398
|
+
* 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))
|
|
399
|
+
|
|
400
|
+
## [0.30.4](https://github.com/widergy/mobile-ui/compare/v0.30.3...v0.30.4) (2021-09-13)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
### Bug Fixes
|
|
404
|
+
|
|
405
|
+
* added conditional chaining ([#199](https://github.com/widergy/mobile-ui/issues/199)) ([49ff8a5](https://github.com/widergy/mobile-ui/commit/49ff8a573bc31d838ae792f65f8216b88318b468))
|
|
406
|
+
|
|
407
|
+
## [0.30.3](https://github.com/widergy/mobile-ui/compare/v0.30.2...v0.30.3) (2021-09-13)
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
### Bug Fixes
|
|
411
|
+
|
|
412
|
+
* remove use markdown default true ([#198](https://github.com/widergy/mobile-ui/issues/198)) ([708f33d](https://github.com/widergy/mobile-ui/commit/708f33d78522fcfae1bc2dca50497b53d6aaf24c))
|
|
413
|
+
|
|
414
|
+
## [0.30.2](https://github.com/widergy/mobile-ui/compare/v0.30.1...v0.30.2) (2021-09-10)
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
### Bug Fixes
|
|
418
|
+
|
|
419
|
+
* change textinput styles ([#197](https://github.com/widergy/mobile-ui/issues/197)) ([9e49300](https://github.com/widergy/mobile-ui/commit/9e4930096e707b137e99f6a3a58853955a239300))
|
|
420
|
+
|
|
421
|
+
## [0.30.1](https://github.com/widergy/mobile-ui/compare/v0.30.0...v0.30.1) (2021-09-07)
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
### Bug Fixes
|
|
425
|
+
|
|
426
|
+
* corrections ([3c9029e](https://github.com/widergy/mobile-ui/commit/3c9029ead6624da95ecf86d451994e2bbec62bf8))
|
|
427
|
+
* corrections ([cba2273](https://github.com/widergy/mobile-ui/commit/cba2273e9eb067049855a3d857dce5976d6b25dd))
|
|
428
|
+
* deleted select state & selectedOption is an internal variable ([9a24f4a](https://github.com/widergy/mobile-ui/commit/9a24f4abc4203696817374c15c273a0bde855e91))
|
|
429
|
+
* example UTSelect ([d13818f](https://github.com/widergy/mobile-ui/commit/d13818f3f1a800ec564df796b9c6eaf2676b0d8f))
|
|
430
|
+
* isMultiple prop ([167095e](https://github.com/widergy/mobile-ui/commit/167095e7ee3ffd5213e30e7f76a0d7634c880470))
|
|
431
|
+
* memoized value ([83df778](https://github.com/widergy/mobile-ui/commit/83df77846e4aefd9b0881eaa7743d6bae119ca5c))
|
|
432
|
+
* menuOptions styles ([3c6c288](https://github.com/widergy/mobile-ui/commit/3c6c288842f68ce11040e2a1786a7a37a3d7f2a5))
|
|
433
|
+
* selected option style ([86be815](https://github.com/widergy/mobile-ui/commit/86be81516bda9f5407bf1c61ab26511bd7461abf))
|
|
434
|
+
* value has an empty text & disabled prop propagation ([f6b5c27](https://github.com/widergy/mobile-ui/commit/f6b5c27864a2bcac7a9588a401f612761d5f390c))
|
|
435
|
+
* values & labels ([b0bbe15](https://github.com/widergy/mobile-ui/commit/b0bbe153387bb18301d3dedf45b31f901c93a8de))
|
|
436
|
+
|
|
437
|
+
# [0.30.0](https://github.com/widergy/mobile-ui/compare/v0.29.0...v0.30.0) (2021-09-03)
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
### Features
|
|
441
|
+
|
|
442
|
+
* header & iconButton props ([#196](https://github.com/widergy/mobile-ui/issues/196)) ([d7e318b](https://github.com/widergy/mobile-ui/commit/d7e318b9b2c4956cf15039424d046e69c1f7ea0e))
|
|
443
|
+
|
|
444
|
+
# [0.29.0](https://github.com/widergy/mobile-ui/compare/v0.28.1...v0.29.0) (2021-09-03)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
### Features
|
|
448
|
+
|
|
449
|
+
* 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))
|
|
450
|
+
|
|
451
|
+
## [0.28.1](https://github.com/widergy/mobile-ui/compare/v0.28.0...v0.28.1) (2021-08-13)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
### Bug Fixes
|
|
455
|
+
|
|
456
|
+
* Removed markdown from picker ([#189](https://github.com/widergy/mobile-ui/issues/189)) ([8706fb9](https://github.com/widergy/mobile-ui/commit/8706fb9c3e15e0ca8bc07de8e479921969649ddd))
|
|
457
|
+
|
|
458
|
+
# [0.28.0](https://github.com/widergy/mobile-ui/compare/v0.27.2...v0.28.0) (2021-08-06)
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
### Features
|
|
462
|
+
|
|
463
|
+
* conditional rendering in title & subtitle ([#191](https://github.com/widergy/mobile-ui/issues/191)) ([25d7492](https://github.com/widergy/mobile-ui/commit/25d74925cfc9f14ff09f98c66ee42d6d3cfcfb88))
|
|
464
|
+
|
|
465
|
+
## [0.27.2](https://github.com/widergy/mobile-ui/compare/v0.27.1...v0.27.2) (2021-08-06)
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
### Bug Fixes
|
|
469
|
+
|
|
470
|
+
* cbu empty value ([#193](https://github.com/widergy/mobile-ui/issues/193)) ([9c52b61](https://github.com/widergy/mobile-ui/commit/9c52b6164d9ebf12ddc5f75bb7e926fe70adeb5b))
|
|
471
|
+
|
|
472
|
+
## [0.27.1](https://github.com/widergy/mobile-ui/compare/v0.27.0...v0.27.1) (2021-08-06)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
### Bug Fixes
|
|
476
|
+
|
|
477
|
+
* UTSwitch thumb limit position ([#190](https://github.com/widergy/mobile-ui/issues/190)) ([3ca00da](https://github.com/widergy/mobile-ui/commit/3ca00dacb022c019e7b9c96fdd9044c6ec57167f))
|
|
478
|
+
|
|
479
|
+
# [0.27.0](https://github.com/widergy/mobile-ui/compare/v0.26.1...v0.27.0) (2021-07-30)
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
### Features
|
|
483
|
+
|
|
484
|
+
* Markdown implementation in Label component ([#178](https://github.com/widergy/mobile-ui/issues/178)) ([32a8000](https://github.com/widergy/mobile-ui/commit/32a80005205649446ad0a592e31011fa3f87359b))
|
|
485
|
+
|
|
486
|
+
## [0.26.1](https://github.com/widergy/mobile-ui/compare/v0.26.0...v0.26.1) (2021-07-23)
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
### Bug Fixes
|
|
490
|
+
|
|
491
|
+
* checklist default values ([#186](https://github.com/widergy/mobile-ui/issues/186)) ([61904b2](https://github.com/widergy/mobile-ui/commit/61904b23d97c70c39dd457c9a7ef9014b58c621f))
|
|
492
|
+
|
|
493
|
+
# [0.26.0](https://github.com/widergy/mobile-ui/compare/v0.25.0...v0.26.0) (2021-07-23)
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
### Features
|
|
497
|
+
|
|
498
|
+
* animate stepFeedback triangle ([#187](https://github.com/widergy/mobile-ui/issues/187)) ([01b0074](https://github.com/widergy/mobile-ui/commit/01b0074f6c664a1e1fc102a378c5d320ab66559d))
|
|
499
|
+
|
|
500
|
+
# [0.25.0](https://github.com/widergy/mobile-ui/compare/v0.24.0...v0.25.0) (2021-07-20)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
### Features
|
|
504
|
+
|
|
505
|
+
* UTPasswordField ([#184](https://github.com/widergy/mobile-ui/issues/184)) ([1495936](https://github.com/widergy/mobile-ui/commit/14959365f3b0a98c98ea59ac7b3894f6ea467b55))
|
|
506
|
+
|
|
507
|
+
# [0.24.0](https://github.com/widergy/mobile-ui/compare/v0.23.1...v0.24.0) (2021-07-16)
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
### Features
|
|
511
|
+
|
|
512
|
+
* UTAutocomplete ([#185](https://github.com/widergy/mobile-ui/issues/185)) ([41667d1](https://github.com/widergy/mobile-ui/commit/41667d182032836685752781dd9c6584b24e2101))
|
|
513
|
+
|
|
514
|
+
## [0.23.1](https://github.com/widergy/mobile-ui/compare/v0.23.0...v0.23.1) (2021-07-15)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
### Bug Fixes
|
|
518
|
+
|
|
519
|
+
* handle onBlur ([#183](https://github.com/widergy/mobile-ui/issues/183)) ([ac0d148](https://github.com/widergy/mobile-ui/commit/ac0d1485d354ac4f35fc4ae0baa0130c1c809b0b))
|
|
520
|
+
|
|
521
|
+
# [0.23.0](https://github.com/widergy/mobile-ui/compare/v0.22.0...v0.23.0) (2021-07-14)
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
### Features
|
|
525
|
+
|
|
526
|
+
* 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)
|
|
527
|
+
|
|
528
|
+
# [0.22.0](https://github.com/widergy/mobile-ui/compare/v0.21.0...v0.22.0) (2021-07-13)
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
### Features
|
|
532
|
+
|
|
533
|
+
* add UTCBUInput ([#177](https://github.com/widergy/mobile-ui/issues/177)) ([872dd05](https://github.com/widergy/mobile-ui/commit/872dd050fd221bb60b4e80748d5480ed56c9bc14))
|
|
534
|
+
|
|
535
|
+
# [0.21.0](https://github.com/widergy/mobile-ui/compare/v0.20.2...v0.21.0) (2021-07-08)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
### Features
|
|
539
|
+
|
|
540
|
+
* stepFeedBack component ([#181](https://github.com/widergy/mobile-ui/issues/181)) ([939180a](https://github.com/widergy/mobile-ui/commit/939180aba90b68cd860d67b7e5f2451e9038f280))
|
|
541
|
+
|
|
542
|
+
## [0.20.2](https://github.com/widergy/mobile-ui/compare/v0.20.1...v0.20.2) (2021-07-08)
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
### Bug Fixes
|
|
546
|
+
|
|
547
|
+
* value change in constant MEGABYTE ([#179](https://github.com/widergy/mobile-ui/issues/179)) ([ea56286](https://github.com/widergy/mobile-ui/commit/ea562867ad8007057a6d3dae050c84cbff4bd9dc))
|
|
548
|
+
|
|
549
|
+
## [0.20.1](https://github.com/widergy/mobile-ui/compare/v0.20.0...v0.20.1) (2021-06-29)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
### Bug Fixes
|
|
553
|
+
|
|
554
|
+
* added test id to button ([#180](https://github.com/widergy/mobile-ui/issues/180)) ([6583657](https://github.com/widergy/mobile-ui/commit/6583657bbde5eed470e7d87847f705e782eaef72))
|
|
555
|
+
|
|
556
|
+
# [0.20.0](https://github.com/widergy/mobile-ui/compare/v0.19.10...v0.20.0) (2021-06-15)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
### Features
|
|
560
|
+
|
|
561
|
+
* UTSwitch ([#176](https://github.com/widergy/mobile-ui/issues/176)) ([cae9fb0](https://github.com/widergy/mobile-ui/commit/cae9fb0bb46d8d3f14330ff03fa705232f35959a))
|
|
562
|
+
|
|
563
|
+
## [0.19.10](https://github.com/widergy/mobile-ui/compare/v0.19.9...v0.19.10) (2021-06-15)
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
### Bug Fixes
|
|
567
|
+
|
|
568
|
+
* fixed checklist re render ([22ce408](https://github.com/widergy/mobile-ui/commit/22ce408af5114e00af4c841c88a27e74c1c86f89))
|
|
569
|
+
* fixed hook ([a6acdff](https://github.com/widergy/mobile-ui/commit/a6acdffe00fa7406b8b108bc46e42741785fa5c5))
|
|
570
|
+
* fixed styles ([19c018f](https://github.com/widergy/mobile-ui/commit/19c018f8c8d3ae580593224c9cc1d8e8a37e4814))
|
|
571
|
+
* refactored to class component ([0d1d30a](https://github.com/widergy/mobile-ui/commit/0d1d30aed3a8356d0e9341f4807741ee7039bb82))
|
|
572
|
+
* updated hook ([5ac2a66](https://github.com/widergy/mobile-ui/commit/5ac2a6637f3d603fff2c17711e4bb06ceeb159bf))
|
|
573
|
+
|
|
574
|
+
## [0.19.9](https://github.com/widergy/mobile-ui/compare/v0.19.8...v0.19.9) (2021-06-01)
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
### Bug Fixes
|
|
578
|
+
|
|
579
|
+
* 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))
|
|
580
|
+
|
|
581
|
+
## [0.19.8](https://github.com/widergy/mobile-ui/compare/v0.19.7...v0.19.8) (2021-05-26)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
### Bug Fixes
|
|
585
|
+
|
|
586
|
+
* Tooltip positioning fix ([#173](https://github.com/widergy/mobile-ui/issues/173)) ([47fb265](https://github.com/widergy/mobile-ui/commit/47fb2651deaad35790022cd6dc2ee6e70fbaa720))
|
|
587
|
+
|
|
588
|
+
## [0.19.7](https://github.com/widergy/mobile-ui/compare/v0.19.6...v0.19.7) (2021-05-26)
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
### Bug Fixes
|
|
592
|
+
|
|
593
|
+
* 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))
|
|
594
|
+
|
|
595
|
+
## [0.19.6](https://github.com/widergy/mobile-ui/compare/v0.19.5...v0.19.6) (2021-05-04)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
### Bug Fixes
|
|
599
|
+
|
|
600
|
+
* change input text component ([#171](https://github.com/widergy/mobile-ui/issues/171)) ([0c34675](https://github.com/widergy/mobile-ui/commit/0c34675877b166672fac7d93076411652c3d35c3))
|
|
601
|
+
|
|
602
|
+
## [0.19.5](https://github.com/widergy/mobile-ui/compare/v0.19.4...v0.19.5) (2021-04-23)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
### Bug Fixes
|
|
606
|
+
|
|
607
|
+
* 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))
|
|
608
|
+
|
|
609
|
+
## [0.19.4](https://github.com/widergy/mobile-ui/compare/v0.19.3...v0.19.4) (2021-04-14)
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
### Bug Fixes
|
|
613
|
+
|
|
614
|
+
* fix theme on stepsHandler and header ([#169](https://github.com/widergy/mobile-ui/issues/169)) ([acf3988](https://github.com/widergy/mobile-ui/commit/acf398882393f40c236c51a7e467604aee20da5f))
|
|
615
|
+
|
|
616
|
+
## [0.19.3](https://github.com/widergy/mobile-ui/compare/v0.19.2...v0.19.3) (2021-04-14)
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
### Bug Fixes
|
|
620
|
+
|
|
621
|
+
* fix theme merge order ([#168](https://github.com/widergy/mobile-ui/issues/168)) ([87b81b6](https://github.com/widergy/mobile-ui/commit/87b81b6b9798eaabc0a6ffb597a526d11a7fdfdb))
|
|
622
|
+
|
|
623
|
+
## [0.19.2](https://github.com/widergy/mobile-ui/compare/v0.19.1...v0.19.2) (2021-04-07)
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
### Bug Fixes
|
|
627
|
+
|
|
628
|
+
* added default prop for allowFontScaling ([#166](https://github.com/widergy/mobile-ui/issues/166)) ([5f192bb](https://github.com/widergy/mobile-ui/commit/5f192bb11211c17a0bfdb63c8f3a27cde523db73))
|
|
629
|
+
|
|
630
|
+
## [0.19.1](https://github.com/widergy/mobile-ui/compare/v0.19.0...v0.19.1) (2021-04-07)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
### Bug Fixes
|
|
634
|
+
|
|
635
|
+
* fixed icon library for example app ([#167](https://github.com/widergy/mobile-ui/issues/167)) ([2024982](https://github.com/widergy/mobile-ui/commit/202498284f48048ec7a87481fd26d9ab9af79bb6))
|
|
636
|
+
|
|
637
|
+
# [0.19.0](https://github.com/widergy/mobile-ui/compare/v0.18.0...v0.19.0) (2021-03-31)
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
### Features
|
|
641
|
+
|
|
642
|
+
* add tooltip Input & UTTextInput ([#165](https://github.com/widergy/mobile-ui/issues/165)) ([93b5a7d](https://github.com/widergy/mobile-ui/commit/93b5a7de67b1b35a901e7d8ac4c749115ba9c34f))
|
|
643
|
+
|
|
644
|
+
# [0.18.0](https://github.com/widergy/mobile-ui/compare/v0.17.1...v0.18.0) (2021-03-18)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
### Features
|
|
648
|
+
|
|
649
|
+
* now pickers support markdown titles ([#164](https://github.com/widergy/mobile-ui/issues/164)) ([5e43f9e](https://github.com/widergy/mobile-ui/commit/5e43f9e2a11c60320fcee0675abc426f65250d86))
|
|
650
|
+
|
|
651
|
+
## [0.17.1](https://github.com/widergy/mobile-ui/compare/v0.17.0...v0.17.1) (2021-03-12)
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
### Bug Fixes
|
|
655
|
+
|
|
656
|
+
* markdown styles ([#163](https://github.com/widergy/mobile-ui/issues/163)) ([2a78ec4](https://github.com/widergy/mobile-ui/commit/2a78ec4231d2d716537f5d9451d06d0d94373128))
|
|
657
|
+
* markdown styles ([#163](https://github.com/widergy/mobile-ui/issues/163)) ([70049f9](https://github.com/widergy/mobile-ui/commit/70049f90075bbfb20b043ab24fec43c931506db6))
|
|
658
|
+
|
|
659
|
+
# [0.17.0](https://github.com/widergy/mobile-ui/compare/v0.16.0...v0.17.0) (2021-03-10)
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
### Features
|
|
663
|
+
|
|
664
|
+
* 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))
|
|
665
|
+
|
|
666
|
+
# [0.16.0](https://github.com/widergy/mobile-ui/compare/v0.15.1...v0.16.0) (2021-03-01)
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
### Features
|
|
670
|
+
|
|
671
|
+
* added changeOnCloseProp to utselect ([#161](https://github.com/widergy/mobile-ui/issues/161)) ([fba8cf8](https://github.com/widergy/mobile-ui/commit/fba8cf8b8adbd79ea72696eadeddf2472d289689))
|
|
672
|
+
|
|
673
|
+
## [0.15.1](https://github.com/widergy/mobile-ui/compare/v0.15.0...v0.15.1) (2021-03-01)
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
### Bug Fixes
|
|
677
|
+
|
|
678
|
+
* pass item to MenuOptionComponente in UTMenu ([#160](https://github.com/widergy/mobile-ui/issues/160)) ([deabcfd](https://github.com/widergy/mobile-ui/commit/deabcfde20894897665270b17f5b7adbb0e79f27))
|
|
679
|
+
|
|
680
|
+
# [0.15.0](https://github.com/widergy/mobile-ui/compare/v0.14.0...v0.15.0) (2021-02-25)
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
### Features
|
|
684
|
+
|
|
685
|
+
* add Multiple Select option for UTSelect ([#159](https://github.com/widergy/mobile-ui/issues/159)) ([916d7d9](https://github.com/widergy/mobile-ui/commit/916d7d9cb1074b2c3a1d3abf96909b884fc363ca))
|
|
686
|
+
|
|
687
|
+
# [0.14.0](https://github.com/widergy/mobile-ui/compare/v0.13.1...v0.14.0) (2021-02-18)
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
### Features
|
|
691
|
+
|
|
692
|
+
* added markdown to UTWorkflow ([#157](https://github.com/widergy/mobile-ui/issues/157)) ([dd5977f](https://github.com/widergy/mobile-ui/commit/dd5977fccef964cb1fdc170005700bf2c8b7d938))
|
|
693
|
+
|
|
694
|
+
## [0.13.1](https://github.com/widergy/mobile-ui/compare/v0.13.0...v0.13.1) (2021-02-18)
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
### Bug Fixes
|
|
698
|
+
|
|
699
|
+
* UTTextInput fix ([#158](https://github.com/widergy/mobile-ui/issues/158)) ([e9f2150](https://github.com/widergy/mobile-ui/commit/e9f215004f95e2a5fc176ef5fa2edd7dd44e241c))
|
|
700
|
+
|
|
701
|
+
# [0.13.0](https://github.com/widergy/mobile-ui/compare/v0.12.4...v0.13.0) (2021-02-10)
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
### Features
|
|
705
|
+
|
|
706
|
+
* improve UTMenu ([#156](https://github.com/widergy/mobile-ui/issues/156)) ([d5511ea](https://github.com/widergy/mobile-ui/commit/d5511ea3ab177e9b057418a1b244f26a8eca8e77))
|
|
707
|
+
|
|
708
|
+
## [0.12.4](https://github.com/widergy/mobile-ui/compare/v0.12.3...v0.12.4) (2021-01-20)
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
### Bug Fixes
|
|
712
|
+
|
|
713
|
+
* android duplicate characters ([#153](https://github.com/widergy/mobile-ui/issues/153)) ([558d8e8](https://github.com/widergy/mobile-ui/commit/558d8e898e3b36db6c0b3e9074bb747f548c2f66))
|
|
714
|
+
|
|
715
|
+
## [0.12.3](https://github.com/widergy/mobile-ui/compare/v0.12.2...v0.12.3) (2021-01-13)
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
### Bug Fixes
|
|
719
|
+
|
|
720
|
+
* fixed mistake in UTTextInput ([#155](https://github.com/widergy/mobile-ui/issues/155)) ([786530c](https://github.com/widergy/mobile-ui/commit/786530cdad21c26edfb67afbc619b2e847588212))
|
|
721
|
+
|
|
722
|
+
## [0.12.2](https://github.com/widergy/mobile-ui/compare/v0.12.1...v0.12.2) (2021-01-13)
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
### Bug Fixes
|
|
726
|
+
|
|
727
|
+
* diferent styles for UTTextInpunt ([#154](https://github.com/widergy/mobile-ui/issues/154)) ([de8ffdc](https://github.com/widergy/mobile-ui/commit/de8ffdcbbf98199dcb24db1be148b2437847610a))
|
|
728
|
+
|
|
729
|
+
## [0.12.1](https://github.com/widergy/mobile-ui/compare/v0.12.0...v0.12.1) (2021-01-08)
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
### Bug Fixes
|
|
733
|
+
|
|
734
|
+
* 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))
|
|
735
|
+
|
|
736
|
+
# [0.12.0](https://github.com/widergy/mobile-ui/compare/v0.11.2...v0.12.0) (2021-01-07)
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
### Features
|
|
740
|
+
|
|
741
|
+
* filepicker pdf format validation ([#151](https://github.com/widergy/mobile-ui/issues/151)) ([15653d6](https://github.com/widergy/mobile-ui/commit/15653d654d52db972441c3c8044c2aae18bae0f5))
|
|
742
|
+
|
|
743
|
+
## [0.11.2](https://github.com/widergy/mobile-ui/compare/v0.11.1...v0.11.2) (2020-12-18)
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
### Bug Fixes
|
|
747
|
+
|
|
748
|
+
* tooltip positioning revamped ([#150](https://github.com/widergy/mobile-ui/issues/150)) ([2e5c777](https://github.com/widergy/mobile-ui/commit/2e5c7779b145b600501ee584e43ac6ce01caddbc))
|
|
749
|
+
|
|
750
|
+
## [0.11.1](https://github.com/widergy/mobile-ui/compare/v0.11.0...v0.11.1) (2020-12-16)
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
### Bug Fixes
|
|
754
|
+
|
|
755
|
+
* UTOnBoarding error when pressing nextPage fast ([#149](https://github.com/widergy/mobile-ui/issues/149)) ([c0cc07d](https://github.com/widergy/mobile-ui/commit/c0cc07da424d1579740d99d4a72b04d4acf5fa5b))
|
|
756
|
+
|
|
757
|
+
# [0.11.0](https://github.com/widergy/mobile-ui/compare/v0.10.4...v0.11.0) (2020-12-15)
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
### Features
|
|
761
|
+
|
|
762
|
+
* tooltip ([#147](https://github.com/widergy/mobile-ui/issues/147)) ([e692c17](https://github.com/widergy/mobile-ui/commit/e692c1732c692e574df29ff00929df51c1c948e5))
|
|
763
|
+
|
|
764
|
+
## [0.10.4](https://github.com/widergy/mobile-ui/compare/v0.10.3...v0.10.4) (2020-12-03)
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
### Bug Fixes
|
|
768
|
+
|
|
769
|
+
* fix hidden button ([#148](https://github.com/widergy/mobile-ui/issues/148)) ([3489d73](https://github.com/widergy/mobile-ui/commit/3489d73d81af5a310afaa68b9d77322eb8fd320f))
|
|
770
|
+
|
|
771
|
+
## [0.10.3](https://github.com/widergy/mobile-ui/compare/v0.10.2...v0.10.3) (2020-10-22)
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
### Bug Fixes
|
|
775
|
+
|
|
776
|
+
* allow right icon React elements ([#146](https://github.com/widergy/mobile-ui/issues/146)) ([d85222d](https://github.com/widergy/mobile-ui/commit/d85222dae08a82c1fa5553f69862b0f841e0ebd3))
|
|
777
|
+
|
|
778
|
+
## [0.10.2](https://github.com/widergy/mobile-ui/compare/v0.10.1...v0.10.2) (2020-10-14)
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
### Bug Fixes
|
|
782
|
+
|
|
783
|
+
* fixed UTMenu horizontal position ([#145](https://github.com/widergy/mobile-ui/issues/145)) ([3eb4a7a](https://github.com/widergy/mobile-ui/commit/3eb4a7a30643208da2f71a1bb68f63fcf0551c2a))
|
|
784
|
+
|
|
785
|
+
## [0.10.1](https://github.com/widergy/mobile-ui/compare/v0.10.0...v0.10.1) (2020-10-09)
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
### Bug Fixes
|
|
789
|
+
|
|
790
|
+
* useTogglabeState caused infinite re-render ([#144](https://github.com/widergy/mobile-ui/issues/144)) ([27951ef](https://github.com/widergy/mobile-ui/commit/27951efb40511c3960f40bbe6a768c109593f071))
|
|
791
|
+
|
|
792
|
+
# [0.10.0](https://github.com/widergy/mobile-ui/compare/v0.9.1...v0.10.0) (2020-10-09)
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
### Features
|
|
796
|
+
|
|
797
|
+
* Select, Menu and Input ([#143](https://github.com/widergy/mobile-ui/issues/143)) ([d5e16e8](https://github.com/widergy/mobile-ui/commit/d5e16e8604a87c0eb805f1c04332de73a1758a86))
|
|
798
|
+
|
|
799
|
+
## [0.9.1](https://github.com/widergy/mobile-ui/compare/v0.9.0...v0.9.1) (2020-09-14)
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
### Bug Fixes
|
|
803
|
+
|
|
804
|
+
* fix on Portal for fabButton ([#142](https://github.com/widergy/mobile-ui/issues/142)) ([77537b1](https://github.com/widergy/mobile-ui/commit/77537b1a4500c6e96ac12630a675fb431af2005e))
|
|
805
|
+
|
|
806
|
+
# [0.9.0](https://github.com/widergy/mobile-ui/compare/v0.8.0...v0.9.0) (2020-09-03)
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
### Features
|
|
810
|
+
|
|
811
|
+
* OnBoarding component ([#141](https://github.com/widergy/mobile-ui/issues/141)) ([12d239b](https://github.com/widergy/mobile-ui/commit/12d239be07e7add570b6f748372483918931efff))
|
|
812
|
+
|
|
813
|
+
# [0.8.0](https://github.com/widergy/mobile-ui/compare/v0.7.4...v0.8.0) (2020-08-28)
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
### Features
|
|
817
|
+
|
|
818
|
+
* UTProgressBar ([#139](https://github.com/widergy/mobile-ui/issues/139)) ([41fa642](https://github.com/widergy/mobile-ui/commit/41fa64260f2b79a0662c2f0761d3dcdba089416b))
|
|
819
|
+
|
|
820
|
+
## [0.7.4](https://github.com/widergy/mobile-ui/compare/v0.7.3...v0.7.4) (2020-08-27)
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
### Bug Fixes
|
|
824
|
+
|
|
825
|
+
* added only pdf check ([#140](https://github.com/widergy/mobile-ui/issues/140)) ([20952da](https://github.com/widergy/mobile-ui/commit/20952dad0019484dea54ae2c4b620bbe13b1fa36))
|
|
826
|
+
|
|
827
|
+
## [0.7.3](https://github.com/widergy/mobile-ui/compare/v0.7.2...v0.7.3) (2020-08-10)
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
### Bug Fixes
|
|
831
|
+
|
|
832
|
+
* Overlay dimensions ([#138](https://github.com/widergy/mobile-ui/issues/138)) ([6ee8aee](https://github.com/widergy/mobile-ui/commit/6ee8aeed81f593ea9e87f879919c63ef2dee6748))
|
|
833
|
+
|
|
834
|
+
## [0.7.2](https://github.com/widergy/mobile-ui/compare/v0.7.1...v0.7.2) (2020-07-22)
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
### Bug Fixes
|
|
838
|
+
|
|
839
|
+
* fixed select all when mounted ([#137](https://github.com/widergy/mobile-ui/issues/137)) ([7a0dd85](https://github.com/widergy/mobile-ui/commit/7a0dd85cdbe5342b706733620d7c92838df093b4))
|
|
840
|
+
|
|
841
|
+
## [0.7.1](https://github.com/widergy/mobile-ui/compare/v0.7.0...v0.7.1) (2020-07-21)
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
### Bug Fixes
|
|
845
|
+
|
|
846
|
+
* File picker ([#136](https://github.com/widergy/mobile-ui/issues/136)) ([abe9c04](https://github.com/widergy/mobile-ui/commit/abe9c04dd4fccaeb5e62d447081204c57ed7791a))
|
|
847
|
+
|
|
848
|
+
# [0.7.0](https://github.com/widergy/mobile-ui/compare/v0.6.1...v0.7.0) (2020-06-13)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
### Features
|
|
852
|
+
|
|
853
|
+
* add title for UTDetailDrawer ([#135](https://github.com/widergy/mobile-ui/issues/135)) ([c3fd2a4](https://github.com/widergy/mobile-ui/commit/c3fd2a45ef41c42f648278a634f286e6ec243d1e))
|
|
854
|
+
|
|
855
|
+
## [0.6.1](https://github.com/widergy/mobile-ui/compare/v0.6.0...v0.6.1) (2020-06-10)
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
### Bug Fixes
|
|
859
|
+
|
|
860
|
+
* 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))
|
|
861
|
+
|
|
862
|
+
# [0.6.0](https://github.com/widergy/mobile-ui/compare/v0.5.0...v0.6.0) (2020-06-09)
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
### Features
|
|
866
|
+
|
|
867
|
+
* 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))
|
|
868
|
+
|
|
869
|
+
# [0.5.0](https://github.com/widergy/mobile-ui/compare/v0.4.1...v0.5.0) (2020-06-09)
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
### Features
|
|
873
|
+
|
|
874
|
+
* 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))
|
|
875
|
+
|
|
876
|
+
## [0.4.1](https://github.com/widergy/mobile-ui/compare/v0.4.0...v0.4.1) (2020-06-05)
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
### Bug Fixes
|
|
880
|
+
|
|
881
|
+
* fixed all values selected at init ([#132](https://github.com/widergy/mobile-ui/issues/132)) ([b6f674f](https://github.com/widergy/mobile-ui/commit/b6f674f1049b2357d5d784bc851b5b56e2028a85))
|
|
882
|
+
|
|
883
|
+
# [0.4.0](https://github.com/widergy/mobile-ui/compare/v0.3.0...v0.4.0) (2020-06-05)
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
### Features
|
|
887
|
+
|
|
888
|
+
* Loader components rework ([#120](https://github.com/widergy/mobile-ui/issues/120)) ([16441c0](https://github.com/widergy/mobile-ui/commit/16441c04769c5bd10d8cb4db6a39e1f6f699912d))
|
|
889
|
+
|
|
890
|
+
# [0.3.0](https://github.com/widergy/mobile-ui/compare/v0.2.1...v0.3.0) (2020-06-04)
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
### Features
|
|
894
|
+
|
|
895
|
+
* add checkbox container style to checklist ([#131](https://github.com/widergy/mobile-ui/issues/131)) ([4af3061](https://github.com/widergy/mobile-ui/commit/4af30610ef5ab49b397036a473fb190d5b6fa99e))
|
|
896
|
+
|
|
897
|
+
## [0.2.1](https://github.com/widergy/mobile-ui/compare/v0.2.0...v0.2.1) (2020-06-04)
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
### Bug Fixes
|
|
901
|
+
|
|
902
|
+
* fixed checklist ([#130](https://github.com/widergy/mobile-ui/issues/130)) ([736d806](https://github.com/widergy/mobile-ui/commit/736d8069a7a8e6f3698e82ade53b3f428da42ae2))
|
|
903
|
+
|
|
904
|
+
# [0.2.0](https://github.com/widergy/mobile-ui/compare/v0.1.0...v0.2.0) (2020-06-03)
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
### Features
|
|
908
|
+
|
|
909
|
+
* adding checklist ([#128](https://github.com/widergy/mobile-ui/issues/128)) ([5359c76](https://github.com/widergy/mobile-ui/commit/5359c7673e0e953e3ffe6b6197b4a7603fa6b2e7))
|
|
910
|
+
|
|
911
|
+
# [0.1.0](https://github.com/widergy/mobile-ui/compare/v0.0.26...v0.1.0) (2020-06-03)
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
### Bug Fixes
|
|
915
|
+
|
|
916
|
+
* remove post version script ([d2a2fc2](https://github.com/widergy/mobile-ui/commit/d2a2fc2704bac3ce29ae3561c9450fc79127089f))
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
### Features
|
|
920
|
+
|
|
921
|
+
* automated release flow ([#129](https://github.com/widergy/mobile-ui/issues/129)) ([e1a21b0](https://github.com/widergy/mobile-ui/commit/e1a21b05ee01b6b9684aa9432d237e951d9d8b3d))
|