@occmundial/occ-atomic 2.0.0-beta.1 → 2.0.0-beta.3
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierrc +6 -0
- package/.whitesource +12 -0
- package/CHANGELOG.md +1283 -584
- package/CONTRIBUTING.md +24 -0
- package/README.md +21 -21
- package/build/Autocomplete/Autocomplete.js +217 -117
- package/build/Autocomplete/Autocomplete.test.js +90 -74
- package/build/Autocomplete/__snapshots__/Autocomplete.test.js.snap +20 -0
- package/build/Autocomplete/index.js +6 -1
- package/build/Autocomplete/styles.js +2 -5
- package/build/Avatar/Avatar.js +66 -28
- package/build/Avatar/Avatar.test.js +36 -13
- package/build/Avatar/AvatarContent/AvatarContent.js +11 -14
- package/build/Avatar/AvatarContent/AvatarContent.test.js +55 -50
- package/build/Avatar/AvatarContent/__snapshots__/AvatarContent.test.js.snap +41 -0
- package/build/Avatar/AvatarContent/index.js +6 -1
- package/build/Avatar/AvatarContent/styles.js +12 -11
- package/build/Avatar/__snapshots__/Avatar.test.js.snap +17 -0
- package/build/Avatar/index.js +22 -1
- package/build/Avatar/styles.js +2 -6
- package/build/Banner/Banner.js +76 -0
- package/build/Banner/Banner.test.js +40 -0
- package/build/Banner/__snapshots__/Banner.test.js.snap +33 -0
- package/build/Banner/index.js +18 -0
- package/build/Banner/styles.js +41 -0
- package/build/Button/Button.js +123 -62
- package/build/Button/Button.test.js +67 -18
- package/build/Button/Loading.js +89 -0
- package/build/Button/__snapshots__/Button.test.js.snap +334 -0
- package/build/Button/index.js +22 -1
- package/build/Button/styles.js +176 -160
- package/build/ButtonAlign/ButtonAlign.js +20 -16
- package/build/ButtonAlign/ButtonAlign.test.js +3 -3
- package/build/ButtonAlign/__snapshots__/ButtonAlign.test.js.snap +19 -0
- package/build/Card/Card.js +4 -5
- package/build/Card/Card.test.js +40 -35
- package/build/Card/__snapshots__/Card.test.js.snap +46 -0
- package/build/Card/index.js +22 -1
- package/build/Card/styles.js +2 -4
- package/build/Check/Check.js +18 -14
- package/build/Check/Check.test.js +7 -7
- package/build/Check/__snapshots__/Check.test.js.snap +92 -0
- package/build/Check/styles.js +2 -2
- package/build/Checkbox/Checkbox.js +106 -60
- package/build/Checkbox/Checkbox.test.js +58 -42
- package/build/Checkbox/__snapshots__/Checkbox.test.js.snap +92 -0
- package/build/Checkbox/index.js +4 -2
- package/build/Checkbox/styles.js +2 -5
- package/build/Column/Column.js +1 -1
- package/build/Column/Column.test.js +3 -3
- package/build/Column/__snapshots__/Column.test.js.snap +647 -0
- package/build/Container/Container.js +1 -1
- package/build/Container/Container.test.js +4 -4
- package/build/Container/__snapshots__/Container.test.js.snap +43 -0
- package/build/Droplist/Droplist.js +474 -227
- package/build/Droplist/Droplist.test.js +111 -87
- package/build/Droplist/__snapshots__/Droplist.test.js.snap +65 -0
- package/build/Droplist/functions.js +9 -2
- package/build/Droplist/index.js +22 -1
- package/build/Droplist/styles.js +41 -15
- package/build/Flexbox/Flexbox.js +64 -29
- package/build/Flexbox/Flexbox.test.js +32 -14
- package/build/Flexbox/__snapshots__/Flexbox.test.js.snap +106 -0
- package/build/Flexbox/index.js +22 -1
- package/build/Flexbox/styles.js +2 -6
- package/build/Footer/Footer.js +42 -30
- package/build/Footer/Footer.test.js +2 -2
- package/build/Footer/List/List.js +32 -25
- package/build/Footer/__snapshots__/Footer.test.js.snap +90 -0
- package/build/Footer/styles.js +5 -0
- package/build/Grid/Col/Col.js +15 -22
- package/build/Grid/Col/Col.test.js +33 -13
- package/build/Grid/Col/__snapshots__/Col.test.js.snap +963 -0
- package/build/Grid/Col/index.js +22 -1
- package/build/Grid/Col/styles.js +97 -116
- package/build/Grid/Grid.js +18 -12
- package/build/Grid/Row/Row.js +1 -1
- package/build/Grid/Row/Row.test.js +2 -2
- package/build/Grid/Row/__snapshots__/Row.test.js.snap +22 -0
- package/build/Grid/Row/index.js +4 -2
- package/build/Grid/index.js +4 -2
- package/build/Header/Header.js +35 -31
- package/build/Header/Header.test.js +8 -8
- package/build/Header/Menu/Menu.js +23 -19
- package/build/Header/Menu/Menu.test.js +7 -7
- package/build/Header/Menu/__snapshots__/Menu.test.js.snap +113 -0
- package/build/Header/Nav/Nav.js +19 -15
- package/build/Header/Nav/Nav.test.js +5 -5
- package/build/Header/Nav/__snapshots__/Nav.test.js.snap +101 -0
- package/build/Header/__snapshots__/Header.test.js.snap +79 -0
- package/build/Hidden/Hidden.js +17 -13
- package/build/Hidden/Hidden.test.js +6 -6
- package/build/Hidden/__snapshots__/Hidden.test.js.snap +3 -0
- package/build/Hidden/index.js +4 -2
- package/build/Icon/Icon.js +65 -21
- package/build/Icon/Icon.test.js +47 -56
- package/build/Icon/__snapshots__/Icon.test.js.snap +26 -0
- package/build/Icon/index.js +22 -1
- package/build/Icon/styles.js +2 -5
- package/build/Input/Input.js +29 -25
- package/build/Input/Input.test.js +21 -21
- package/build/Input/__snapshots__/Input.test.js.snap +194 -0
- package/build/Input/index.js +17 -13
- package/build/Label/Label.js +17 -13
- package/build/Label/Label.test.js +6 -6
- package/build/Label/__snapshots__/Label.test.js.snap +82 -0
- package/build/LayerApp/LayerApp.js +22 -18
- package/build/LayerApp/LayerApp.test.js +4 -4
- package/build/LayerApp/__snapshots__/LayerApp.test.js.snap +37 -0
- package/build/Modal/Modal.js +55 -37
- package/build/Modal/Modal.test.js +10 -10
- package/build/Modal/__snapshots__/Modal.test.js.snap +208 -0
- package/build/Modal/index.js +19 -13
- package/build/Modal/styles.js +43 -31
- package/build/NavAside/NavAside.js +22 -18
- package/build/NavAside/NavAside.test.js +12 -12
- package/build/NavAside/__snapshots__/NavAside.test.js.snap +116 -0
- package/build/NavAside/index.js +16 -12
- package/build/NavIcon/NavIcon.js +31 -19
- package/build/NavItem/NavItem.js +29 -16
- package/build/NavTab/NavTab.js +36 -29
- package/build/NavTop/NavTop.js +20 -16
- package/build/OrderBy/OrderBy.js +23 -19
- package/build/OrderBy/OrderBy.test.js +6 -6
- package/build/OrderBy/__snapshots__/OrderBy.test.js.snap +54 -0
- package/build/Pager/Break/Break.js +1 -1
- package/build/Pager/Break/Break.test.js +4 -4
- package/build/Pager/Break/__snapshots__/Break.test.js.snap +13 -0
- package/build/Pager/Page/Page.js +1 -1
- package/build/Pager/Page/Page.test.js +5 -5
- package/build/Pager/Page/__snapshots__/Page.test.js.snap +27 -0
- package/build/Pager/Pager.js +21 -17
- package/build/Pager/Pager.test.js +12 -12
- package/build/Pager/__snapshots__/Pager.test.js.snap +50 -0
- package/build/Pager/styles.js +1 -1
- package/build/Pill/Choice/Choice.js +23 -18
- package/build/Pill/Choice/styles.js +8 -3
- package/build/Pill/Group/Group.js +7 -4
- package/build/Pill/Group/styles.js +7 -4
- package/build/Pill/Pill.js +36 -23
- package/build/Pill/Pill.test.js +12 -12
- package/build/Pill/Stack/Stack.js +10 -7
- package/build/Pill/Stack/styles.js +4 -1
- package/build/Pill/__snapshots__/Pill.test.js.snap +62 -0
- package/build/Pill/styles.js +6 -2
- package/build/Placeholder/Placeholder.js +2 -2
- package/build/Placeholder/Placeholder.test.js +3 -3
- package/build/Placeholder/__snapshots__/Placeholder.test.js.snap +130 -0
- package/build/Placeholder/styles.js +23 -16
- package/build/Radio/Radio.js +29 -15
- package/build/Radio/Radio.test.js +6 -6
- package/build/Radio/__snapshots__/Radio.test.js.snap +83 -0
- package/build/RangeCounter/RangeCounter.js +17 -13
- package/build/RangeCounter/RangeCounter.test.js +3 -3
- package/build/RangeCounter/__snapshots__/RangeCounter.test.js.snap +20 -0
- package/build/RangeCounter/styles.js +1 -1
- package/build/Row/Row.js +1 -1
- package/build/Row/Row.test.js +2 -2
- package/build/Row/__snapshots__/Row.test.js.snap +22 -0
- package/build/SightLogo/SightLogo.js +2 -2
- package/build/SightLogo/SightLogo.test.js +2 -2
- package/build/SightLogo/__snapshots__/SightLogo.test.js.snap +24 -0
- package/build/SlideDown/SlideDown.js +37 -26
- package/build/SlideDown/SlideDown.test.js +9 -9
- package/build/SlideDown/__snapshots__/SlideDown.test.js.snap +42 -0
- package/build/SlideToggle/SlideToggle.js +31 -17
- package/build/SlideToggle/SlideToggle.test.js +7 -7
- package/build/SlideToggle/__snapshots__/SlideToggle.test.js.snap +62 -0
- package/build/SubHeader/SubHeader.js +20 -16
- package/build/SubHeader/SubHeader.test.js +7 -7
- package/build/SubHeader/__snapshots__/SubHeader.test.js.snap +50 -0
- package/build/SwitchGroup/SwitchGroup.js +17 -13
- package/build/SwitchGroup/SwitchGroup.test.js +6 -6
- package/build/SwitchGroup/__snapshots__/SwitchGroup.test.js.snap +52 -0
- package/build/SwitchGroup/styles.js +1 -1
- package/build/Tag/Tag.js +27 -10
- package/build/Tag/Tag.test.js +8 -8
- package/build/Tag/__snapshots__/Tag.test.js.snap +137 -0
- package/build/Tag/styles.js +72 -27
- package/build/Text/Text.js +30 -15
- package/build/Text/Text.test.js +8 -8
- package/build/Text/__snapshots__/Text.test.js.snap +158 -0
- package/build/Text/styles.js +32 -23
- package/build/TextField/TextField.js +455 -302
- package/build/TextField/TextField.test.js +138 -146
- package/build/TextField/__snapshots__/TextField.test.js.snap +258 -0
- package/build/TextField/index.js +6 -1
- package/build/TextField/styles.js +99 -33
- package/build/Tip/Tip.js +91 -27
- package/build/Tip/Tip.test.js +5 -5
- package/build/Tip/__snapshots__/Tip.test.js.snap +49 -0
- package/build/Tip/styles.js +32 -12
- package/build/Title/Title.js +16 -12
- package/build/Title/Title.test.js +3 -3
- package/build/Title/__snapshots__/Title.test.js.snap +31 -0
- package/build/Toaster/Toast/Toast.js +11 -11
- package/build/Toaster/Toaster.js +27 -23
- package/build/Toaster/Toaster.test.js +6 -6
- package/build/Toaster/__snapshots__/Toaster.test.js.snap +5 -0
- package/build/Tooltip/Tooltip.js +210 -0
- package/build/Tooltip/Tooltip.test.js +35 -0
- package/build/Tooltip/__snapshots__/Tooltip.test.js.snap +33 -0
- package/build/Tooltip/hooks.js +132 -0
- package/build/Tooltip/index.js +18 -0
- package/build/Tooltip/styles.js +44 -0
- package/build/TourTip/TourTip.js +15 -11
- package/build/TourTip/TourTip.test.js +2 -2
- package/build/TourTip/__snapshots__/TourTip.test.js.snap +74 -0
- package/build/Visible/Visible.js +16 -12
- package/build/Visible/Visible.test.js +4 -4
- package/build/Visible/__snapshots__/Visible.test.js.snap +3 -0
- package/build/WindowSize/WindowSize.js +17 -11
- package/build/WindowSize/WindowSize.test.js +4 -4
- package/build/WindowSize/__snapshots__/WindowSize.test.js.snap +3 -0
- package/build/index.js +79 -8
- package/build/plugin/babel.js +59 -0
- package/build/subatomic/colors.js +8 -3
- package/build/subatomic/fonts.js +1 -1
- package/build/subatomic/icons/attachment.js +23 -0
- package/build/subatomic/icons/attachmentSolid.js +23 -0
- package/build/subatomic/icons/avatarSmile.js +23 -0
- package/build/subatomic/icons/book.js +23 -0
- package/build/subatomic/icons/cash.js +23 -0
- package/build/subatomic/icons/copy.js +23 -0
- package/build/subatomic/icons/copySolid.js +23 -0
- package/build/subatomic/icons/crossSolid.js +23 -0
- package/build/subatomic/icons/dislike.js +1 -1
- package/build/subatomic/icons/dislikeSolid.js +23 -0
- package/build/subatomic/icons/energy.js +23 -0
- package/build/subatomic/icons/energySolid.js +23 -0
- package/build/subatomic/icons/eye.js +1 -1
- package/build/subatomic/icons/eyeClosed.js +1 -1
- package/build/subatomic/icons/eyeClosedSolid.js +23 -0
- package/build/subatomic/icons/eyeSolid.js +23 -0
- package/build/subatomic/icons/hourGlass.js +23 -0
- package/build/subatomic/icons/like.js +1 -1
- package/build/subatomic/icons/likeSolid.js +23 -0
- package/build/subatomic/icons/location.js +23 -0
- package/build/subatomic/icons/locationSolid.js +23 -0
- package/build/subatomic/icons/matchJob.js +23 -0
- package/build/subatomic/icons/messages.js +1 -1
- package/build/subatomic/icons/messagesSolid.js +1 -1
- package/build/subatomic/icons/moreOptionsHorizontal.js +23 -0
- package/build/subatomic/icons/noMessages.js +23 -0
- package/build/subatomic/icons/noMessagesSolid.js +23 -0
- package/build/subatomic/icons/occDart.js +23 -8
- package/build/subatomic/icons/occHorizontal.js +23 -8
- package/build/subatomic/icons/occLogo.js +63 -0
- package/build/subatomic/icons/occVertical.js +23 -8
- package/build/subatomic/icons/profile.js +23 -0
- package/build/subatomic/icons/profileSolid.js +23 -0
- package/build/subatomic/icons/profileView.js +23 -0
- package/build/subatomic/icons/refresh.js +23 -0
- package/build/subatomic/icons/refreshSolid.js +23 -0
- package/build/subatomic/icons/sendMessage.js +23 -0
- package/build/subatomic/icons/sendMessageSolid.js +23 -0
- package/build/subatomic/icons/starsSolid.js +23 -0
- package/build/subatomic/icons/suitcase.js +23 -0
- package/build/subatomic/icons/suitcaseSolid.js +23 -0
- package/build/subatomic/icons/tag.js +1 -1
- package/build/subatomic/icons/tagSolid.js +23 -0
- package/build/subatomic/icons/trash.js +1 -1
- package/build/subatomic/icons/trashSolid.js +1 -1
- package/build/subatomic/icons/warning.js +23 -0
- package/build/subatomic/icons/warningSolid.js +23 -0
- package/build/subatomic/icons/webSite.js +23 -0
- package/build/subatomic/icons/webSiteSolid.js +23 -0
- package/build/subatomic/icons.js +230 -112
- package/build/tokens/borderRadius.json +8 -0
- package/build/tokens/colors.json +567 -0
- package/build/tokens/fonts.json +231 -0
- package/build/tokens/index.js +47 -0
- package/build/tokens/shadows.json +13 -0
- package/build/tokens/spacing.json +16 -0
- package/commitlint.config.js +6 -0
- package/package.json +124 -113
- package/playroom/FrameComponent.js +31 -0
- package/playroom/styles.js +14 -0
- package/playroom.config.js +7 -7
- package/build/Grid/Grid.test.js +0 -22
- package/build/Grid/Row/Rowdsd.js +0 -39
- package/build/hooks/useEventListener.js +0 -23
- package/build/hooks/usePrevious.js +0 -19
- package/yarn-error.log +0 -10737
package/CHANGELOG.md
CHANGED
@@ -1,584 +1,1283 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
#
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
###
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
###
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
###
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
###
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
###
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
###
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
###
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
###
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
-
|
196
|
-
|
197
|
-
|
198
|
-
###
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
###
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
###
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
###
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
###
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
###
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
- New `
|
394
|
-
|
395
|
-
### 1.
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
-
|
402
|
-
|
403
|
-
### 1.
|
404
|
-
|
405
|
-
-
|
406
|
-
|
407
|
-
### 1.
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
-
|
422
|
-
-
|
423
|
-
|
424
|
-
### 1.0
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
-
|
436
|
-
|
437
|
-
### 1.
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
### 1.
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
-
|
464
|
-
|
465
|
-
###
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
-
|
481
|
-
|
482
|
-
###
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
###
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
-
|
504
|
-
|
505
|
-
###
|
506
|
-
|
507
|
-
-
|
508
|
-
|
509
|
-
###
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
-
|
516
|
-
|
517
|
-
### 0.
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
-
|
534
|
-
-
|
535
|
-
|
536
|
-
###
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
- Changes in
|
549
|
-
|
550
|
-
###
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
- New
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
-
|
562
|
-
|
563
|
-
###
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
-
|
570
|
-
-
|
571
|
-
|
572
|
-
###
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
- Changes in
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
1
|
+
# [2.0.0-beta.3](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.2...v2.0.0-beta.3) (2024-04-17)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Update design tokens ([6c96339](https://github.com/occmundial/occ-atomic/commit/6c963392e0b3af43978a5189bdbe0304e046f47c))
|
7
|
+
|
8
|
+
# [2.0.0-beta.2](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2024-04-17)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* Change font tokens in Button ([7b0b47a](https://github.com/occmundial/occ-atomic/commit/7b0b47ab608530cf4fa6ea31afb2592ad70958c9))
|
14
|
+
|
15
|
+
# [2.0.0-beta.1](https://github.com/occmundial/occ-atomic/compare/v1.40.0-beta.2...v2.0.0-beta.1) (2024-04-16)
|
16
|
+
|
17
|
+
|
18
|
+
### Features
|
19
|
+
|
20
|
+
* Change Button themes and styles ([114375d](https://github.com/occmundial/occ-atomic/commit/114375d8a7a3b56622c00416a007e52a333ed8d4))
|
21
|
+
|
22
|
+
|
23
|
+
### BREAKING CHANGES
|
24
|
+
|
25
|
+
* The themes of the Button component have changed to match the styles of the button in the new design system. The current themes have slightly different names to the new ones but they all have a corresponding new theme that matches, except for the ghostPink theme.
|
26
|
+
|
27
|
+
# [2.0.0-beta.1](https://github.com/occmundial/occ-atomic/compare/v1.40.0-beta.2...v2.0.0-beta.1) (2024-04-16)
|
28
|
+
|
29
|
+
|
30
|
+
### Features
|
31
|
+
|
32
|
+
* Change Button themes and styles ([114375d](https://github.com/occmundial/occ-atomic/commit/114375d8a7a3b56622c00416a007e52a333ed8d4))
|
33
|
+
|
34
|
+
|
35
|
+
### BREAKING CHANGES
|
36
|
+
|
37
|
+
* The themes of the Button component have changed to match the styles of the button in the new design system. The current themes have slightly different names to the new ones but they all have a corresponding new theme that matches, except for the ghostPink theme.
|
38
|
+
|
39
|
+
# [2.0.0-beta.1](https://github.com/occmundial/occ-atomic/compare/v1.40.0-beta.2...v2.0.0-beta.1) (2024-04-16)
|
40
|
+
|
41
|
+
|
42
|
+
### Features
|
43
|
+
|
44
|
+
* Change Button themes and styles ([114375d](https://github.com/occmundial/occ-atomic/commit/114375d8a7a3b56622c00416a007e52a333ed8d4))
|
45
|
+
|
46
|
+
|
47
|
+
### BREAKING CHANGES
|
48
|
+
|
49
|
+
* The themes of the Button component have changed to match the styles of the button in the new design system. The current themes have slightly different names to the new ones but they all have a corresponding new theme that matches, except for the ghostPink theme.
|
50
|
+
|
51
|
+
# [2.0.0-beta.1](https://github.com/occmundial/occ-atomic/compare/v1.40.0-beta.2...v2.0.0-beta.1) (2024-04-16)
|
52
|
+
|
53
|
+
|
54
|
+
### Features
|
55
|
+
|
56
|
+
* Change Button themes and styles ([114375d](https://github.com/occmundial/occ-atomic/commit/114375d8a7a3b56622c00416a007e52a333ed8d4))
|
57
|
+
|
58
|
+
|
59
|
+
### BREAKING CHANGES
|
60
|
+
|
61
|
+
* The themes of the Button component have changed to match the styles of the button in the new design system. The current themes have slightly different names to the new ones but they all have a corresponding new theme that matches, except for the ghostPink theme.
|
62
|
+
|
63
|
+
# [1.40.0-beta.2](https://github.com/occmundial/occ-atomic/compare/v1.40.0-beta.1...v1.40.0-beta.2) (2024-04-05)
|
64
|
+
|
65
|
+
|
66
|
+
### Bug Fixes
|
67
|
+
|
68
|
+
* Include the tokens into the build ([d3d0e1e](https://github.com/occmundial/occ-atomic/commit/d3d0e1eea096847bfcaf99d6c8f56b17d45faa5f))
|
69
|
+
|
70
|
+
# [1.40.0-beta.1](https://github.com/occmundial/occ-atomic/compare/v1.39.1...v1.40.0-beta.1) (2024-04-04)
|
71
|
+
|
72
|
+
|
73
|
+
### Features
|
74
|
+
|
75
|
+
* Add new design tokens files ([6b8fbcf](https://github.com/occmundial/occ-atomic/commit/6b8fbcf03f272603020686e229cf3ad1bd3e3a3e))
|
76
|
+
|
77
|
+
## [1.39.1](https://github.com/occmundial/occ-atomic/compare/v1.39.0...v1.39.1) (2023-11-10)
|
78
|
+
|
79
|
+
|
80
|
+
### Bug Fixes
|
81
|
+
|
82
|
+
* Fix fontWeight ([abb9a49](https://github.com/occmundial/occ-atomic/commit/abb9a4979a6a7e309b3ac23137ae04b33a40a738))
|
83
|
+
|
84
|
+
# [1.39.0](https://github.com/occmundial/occ-atomic/compare/v1.38.0...v1.39.0) (2023-11-09)
|
85
|
+
|
86
|
+
|
87
|
+
### Features
|
88
|
+
|
89
|
+
* Add new font styles ([105e874](https://github.com/occmundial/occ-atomic/commit/105e8746850109c3a2815ee0c4e4aba9c4258641))
|
90
|
+
* Modify font styles in button component ([5771b56](https://github.com/occmundial/occ-atomic/commit/5771b565b824d23956bcefe45726b295d3db4883))
|
91
|
+
* Modify fontWeight in avatar styles ([0b9ab15](https://github.com/occmundial/occ-atomic/commit/0b9ab15dcd51b0637a7f9c740ec9998095f07469))
|
92
|
+
* Modify lineHeight ([141a448](https://github.com/occmundial/occ-atomic/commit/141a4489a9b233f4d6fb47d4cbee3f34742e9188))
|
93
|
+
* Modify lineHeight ([5338b94](https://github.com/occmundial/occ-atomic/commit/5338b942de7ad741f0b01f85f2fc1ae65dc2f3e2))
|
94
|
+
* Update font styles ([374d696](https://github.com/occmundial/occ-atomic/commit/374d696cb494843ff994978bd6f9ca6e659d4146))
|
95
|
+
* Update font styles ([ba80d4c](https://github.com/occmundial/occ-atomic/commit/ba80d4c8b8c722930703d4a0af568d7b8b03937d))
|
96
|
+
* Update fontSize ([1890bf9](https://github.com/occmundial/occ-atomic/commit/1890bf9e1e8ae0ca51f44af31cd013dda96c0e1a))
|
97
|
+
* Update fontSize in check component ([be54e58](https://github.com/occmundial/occ-atomic/commit/be54e5851dcc018a840948e150f83a4a4b8fad5b))
|
98
|
+
|
99
|
+
# [1.38.0](https://github.com/occmundial/occ-atomic/compare/v1.37.0...v1.38.0) (2023-11-09)
|
100
|
+
|
101
|
+
|
102
|
+
### Features
|
103
|
+
|
104
|
+
* Add testId for bottomLinks ([39e677e](https://github.com/occmundial/occ-atomic/commit/39e677e51710f009410a78a2166cf42b73fdfa2b))
|
105
|
+
|
106
|
+
# [1.37.0](https://github.com/occmundial/occ-atomic/compare/v1.36.0...v1.37.0) (2023-10-19)
|
107
|
+
|
108
|
+
|
109
|
+
### Features
|
110
|
+
|
111
|
+
* Add new font ([e83f61a](https://github.com/occmundial/occ-atomic/commit/e83f61aa8474ae64f44a75c7b3db06b292084a7f))
|
112
|
+
* Remove text transform style ([5b96d63](https://github.com/occmundial/occ-atomic/commit/5b96d63c4ed04f4de6fb3366236da4decbb59f18))
|
113
|
+
|
114
|
+
# [1.36.0](https://github.com/occmundial/occ-atomic/compare/v1.35.0...v1.36.0) (2023-10-17)
|
115
|
+
|
116
|
+
|
117
|
+
### Features
|
118
|
+
|
119
|
+
* Default Avatar size and titleCase for Text ([5dc6d69](https://github.com/occmundial/occ-atomic/commit/5dc6d69191a4e76da9ab9a61721de4d39759c0fc))
|
120
|
+
|
121
|
+
# [1.35.0](https://github.com/occmundial/occ-atomic/compare/v1.34.0...v1.35.0) (2023-10-10)
|
122
|
+
|
123
|
+
|
124
|
+
### Features
|
125
|
+
|
126
|
+
* Add new occ logo icons ([494c1d3](https://github.com/occmundial/occ-atomic/commit/494c1d34f3a011830f86b0bfcf98c272631e0fd1))
|
127
|
+
|
128
|
+
# [1.34.0](https://github.com/occmundial/occ-atomic/compare/v1.33.0...v1.34.0) (2023-09-07)
|
129
|
+
|
130
|
+
|
131
|
+
### Bug Fixes
|
132
|
+
|
133
|
+
* Used data-testid instead id ([463547b](https://github.com/occmundial/occ-atomic/commit/463547b93f15bff17e772a724dd8660378f5437c))
|
134
|
+
|
135
|
+
|
136
|
+
### Features
|
137
|
+
|
138
|
+
* Added modal, navlogo and navcustom ids ([8292db7](https://github.com/occmundial/occ-atomic/commit/8292db7877edc2bf2e18bb675266da96e66c5c85))
|
139
|
+
|
140
|
+
# [1.33.0](https://github.com/occmundial/occ-atomic/compare/v1.32.1...v1.33.0) (2023-08-22)
|
141
|
+
|
142
|
+
|
143
|
+
### Features
|
144
|
+
|
145
|
+
* Add noJustified to SlideDown component ([88a6925](https://github.com/occmundial/occ-atomic/commit/88a692587aa5d3328dce4a360f08a8a14cdce94d))
|
146
|
+
* Update description ([d833719](https://github.com/occmundial/occ-atomic/commit/d833719c9fab3c1c12ec4b1f07fa0d8acd4293c5))
|
147
|
+
|
148
|
+
## [1.32.1](https://github.com/occmundial/occ-atomic/compare/v1.32.0...v1.32.1) (2023-05-31)
|
149
|
+
|
150
|
+
|
151
|
+
### Bug Fixes
|
152
|
+
|
153
|
+
* Tooltip close delay ([76c2c6b](https://github.com/occmundial/occ-atomic/commit/76c2c6b604193aff5d80668fe7a412c6778ca46b))
|
154
|
+
|
155
|
+
# [1.32.0](https://github.com/occmundial/occ-atomic/compare/v1.31.0...v1.32.0) (2023-05-26)
|
156
|
+
|
157
|
+
|
158
|
+
### Features
|
159
|
+
|
160
|
+
* Tooltip component implementation ([893cbc1](https://github.com/occmundial/occ-atomic/commit/893cbc1d0b2a83e59dd8155a762f96c0c17df90f))
|
161
|
+
* Tooltip testing ([784337e](https://github.com/occmundial/occ-atomic/commit/784337e1fd6bc6479d1b7d152a19fae80a00973a))
|
162
|
+
|
163
|
+
# [1.31.0](https://github.com/occmundial/occ-atomic/compare/v1.30.0...v1.31.0) (2023-05-24)
|
164
|
+
|
165
|
+
|
166
|
+
### Features
|
167
|
+
|
168
|
+
* Add stars icon ([f49fbd6](https://github.com/occmundial/occ-atomic/commit/f49fbd6616acef15e9b638fa40ff0e59d6adfdf6))
|
169
|
+
|
170
|
+
# [1.30.0](https://github.com/occmundial/occ-atomic/compare/v1.29.1...v1.30.0) (2023-04-25)
|
171
|
+
|
172
|
+
|
173
|
+
### Features
|
174
|
+
|
175
|
+
* Add energy icons ([5fbc1df](https://github.com/occmundial/occ-atomic/commit/5fbc1dfbc52bf93c4287ff9c045a5e0580f54aa8))
|
176
|
+
* Add refresh icons ([3f7ae6a](https://github.com/occmundial/occ-atomic/commit/3f7ae6aee7998194898f37c64f37443df075a1d8))
|
177
|
+
* List icons ([dac4333](https://github.com/occmundial/occ-atomic/commit/dac4333886e10513fa87b08d10c4c05953be87fe))
|
178
|
+
* Update componentData autogenerated file ([b59d6ad](https://github.com/occmundial/occ-atomic/commit/b59d6adb0fc774e233f1a7f4d6ed89dae41314f3))
|
179
|
+
|
180
|
+
## [1.29.1](https://github.com/occmundial/occ-atomic/compare/v1.29.0...v1.29.1) (2023-04-17)
|
181
|
+
|
182
|
+
|
183
|
+
### Bug Fixes
|
184
|
+
|
185
|
+
* data-testid in Droplist ([c02b8f8](https://github.com/occmundial/occ-atomic/commit/c02b8f89e205e0338630f52b3280b9d7d85f5990))
|
186
|
+
|
187
|
+
# [1.29.0](https://github.com/occmundial/occ-atomic/compare/v1.28.0...v1.29.0) (2023-04-12)
|
188
|
+
|
189
|
+
|
190
|
+
### Features
|
191
|
+
|
192
|
+
* Add testid to slidetoggle and add data value to radio component ([253690f](https://github.com/occmundial/occ-atomic/commit/253690f1e8bc9fc7a0a82a4430b9e74712be84ba))
|
193
|
+
* Update radio data value condition ([b501a24](https://github.com/occmundial/occ-atomic/commit/b501a2450cbb40cdb6ab6e13c637281c84ad7840))
|
194
|
+
|
195
|
+
# [1.28.0](https://github.com/occmundial/occ-atomic/compare/v1.27.0...v1.28.0) (2023-02-16)
|
196
|
+
|
197
|
+
|
198
|
+
### Features
|
199
|
+
|
200
|
+
* Add missing index ([b506269](https://github.com/occmundial/occ-atomic/commit/b506269f8f86a9a4d2d8e65ba5443b178e7c3692))
|
201
|
+
|
202
|
+
# [1.27.0](https://github.com/occmundial/occ-atomic/compare/v1.26.0...v1.27.0) (2023-02-16)
|
203
|
+
|
204
|
+
|
205
|
+
### Features
|
206
|
+
|
207
|
+
* Add missing ids ([2f20288](https://github.com/occmundial/occ-atomic/commit/2f20288510da0018027f2d332e05cb85588bd313))
|
208
|
+
* pill data-testid has been added ([bbd3bc2](https://github.com/occmundial/occ-atomic/commit/bbd3bc212c0fa83a373959a3f306e30b395c45e1))
|
209
|
+
|
210
|
+
# [1.26.0](https://github.com/occmundial/occ-atomic/compare/v1.25.0...v1.26.0) (2023-02-10)
|
211
|
+
|
212
|
+
|
213
|
+
### Features
|
214
|
+
|
215
|
+
* Add testId to text component ([029f501](https://github.com/occmundial/occ-atomic/commit/029f50148ffce324dc696707c73219ce8d16ebd7))
|
216
|
+
|
217
|
+
# [1.25.0](https://github.com/occmundial/occ-atomic/compare/v1.24.0...v1.25.0) (2023-02-09)
|
218
|
+
|
219
|
+
|
220
|
+
### Features
|
221
|
+
|
222
|
+
* Add id property to NavItem and NavIcon component ([734911c](https://github.com/occmundial/occ-atomic/commit/734911cd8bbee3987c38d2897bf00ea2b39db09e))
|
223
|
+
* Delete description property ([a2e6261](https://github.com/occmundial/occ-atomic/commit/a2e626123c1f86c7ddad83d6ea6ee225bff15a0d))
|
224
|
+
|
225
|
+
# [1.24.0](https://github.com/occmundial/occ-atomic/compare/v1.23.0...v1.24.0) (2023-02-02)
|
226
|
+
|
227
|
+
|
228
|
+
### Features
|
229
|
+
|
230
|
+
* Add testId to radio button component ([5e1f467](https://github.com/occmundial/occ-atomic/commit/5e1f4671031d752700c0e3556cdc1c4cf462cc10))
|
231
|
+
|
232
|
+
# [1.23.0](https://github.com/occmundial/occ-atomic/compare/v1.22.2...v1.23.0) (2022-12-05)
|
233
|
+
|
234
|
+
|
235
|
+
### Features
|
236
|
+
|
237
|
+
* Add bottomItem children to footer ([6dc470d](https://github.com/occmundial/occ-atomic/commit/6dc470d4f06357bbd3602335ee46f39f0cbc9df7))
|
238
|
+
|
239
|
+
## [1.22.2](https://github.com/occmundial/occ-atomic/compare/v1.22.1...v1.22.2) (2022-11-15)
|
240
|
+
|
241
|
+
|
242
|
+
### Bug Fixes
|
243
|
+
|
244
|
+
* Moves testid to icon component ([09170b8](https://github.com/occmundial/occ-atomic/commit/09170b83c864a054da1e385077e3945b96573ef8))
|
245
|
+
|
246
|
+
## [1.22.1](https://github.com/occmundial/occ-atomic/compare/v1.22.0...v1.22.1) (2022-11-10)
|
247
|
+
|
248
|
+
|
249
|
+
### Bug Fixes
|
250
|
+
|
251
|
+
* Add testid in render props ([d55d31e](https://github.com/occmundial/occ-atomic/commit/d55d31e737799916afe9705239fb48b9a840654b))
|
252
|
+
* Indentation navicon ([0d98ca6](https://github.com/occmundial/occ-atomic/commit/0d98ca68b4ca7c67155a04acaf8f80f8318954a2))
|
253
|
+
|
254
|
+
# [1.22.0](https://github.com/occmundial/occ-atomic/compare/v1.21.3...v1.22.0) (2022-11-09)
|
255
|
+
|
256
|
+
|
257
|
+
### Bug Fixes
|
258
|
+
|
259
|
+
* Indentation tabs to spaces ([bf7bdf8](https://github.com/occmundial/occ-atomic/commit/bf7bdf82ef1cf5b69ad46d5c6e1eae01f0544a02))
|
260
|
+
* Remove unnecessary classname in droplist ([6f6bd6a](https://github.com/occmundial/occ-atomic/commit/6f6bd6ad6f9fed0d534f9d30ff748ac1b6e5d866))
|
261
|
+
|
262
|
+
|
263
|
+
### Features
|
264
|
+
|
265
|
+
* Add testid prop to button, modal and textfield ([86a8155](https://github.com/occmundial/occ-atomic/commit/86a8155ff1ae202c88bc558502912968ebe8a04a))
|
266
|
+
* Add testid prop to checkbox, droplist and navitem/icon/tab ([7087d67](https://github.com/occmundial/occ-atomic/commit/7087d67e1977167a384a366cb11036919b3c9572))
|
267
|
+
|
268
|
+
## [1.21.3](https://github.com/occmundial/occ-atomic/compare/v1.21.2...v1.21.3) (2022-08-23)
|
269
|
+
|
270
|
+
|
271
|
+
### Bug Fixes
|
272
|
+
|
273
|
+
* Change eyeClosed icon and add eyeClosedSolid icon ([156f09d](https://github.com/occmundial/occ-atomic/commit/156f09d73b0580417afb14e8d5aa5b4265636b1c))
|
274
|
+
* Change password icon ([e8fb1bb](https://github.com/occmundial/occ-atomic/commit/e8fb1bbee1050a59b5447bce49e114ae5bc7ce28))
|
275
|
+
* Change password icon with disabled prop ([a82be12](https://github.com/occmundial/occ-atomic/commit/a82be12c40462a310ff46d3d445b00ffff0ff90d))
|
276
|
+
* Indentation ([3ee616f](https://github.com/occmundial/occ-atomic/commit/3ee616fc7f94f4372bbc02605d4fd0d6637a4e3c))
|
277
|
+
|
278
|
+
## [1.21.2](https://github.com/occmundial/occ-atomic/compare/v1.21.1...v1.21.2) (2022-05-30)
|
279
|
+
|
280
|
+
|
281
|
+
### Bug Fixes
|
282
|
+
|
283
|
+
* Fix in Modal styles for full screen mode ([eeb7081](https://github.com/occmundial/occ-atomic/commit/eeb70814e172828b3fde2789d674676ac11a565d))
|
284
|
+
|
285
|
+
## [1.21.1](https://github.com/occmundial/occ-atomic/compare/v1.21.0...v1.21.1) (2022-05-27)
|
286
|
+
|
287
|
+
|
288
|
+
### Bug Fixes
|
289
|
+
|
290
|
+
* Change in dimensions of full screen modal ([c3434a2](https://github.com/occmundial/occ-atomic/commit/c3434a28d1bf6455205b5f37419cd14567ddb126))
|
291
|
+
* Ignore plugin directory in doc gen ([d06e206](https://github.com/occmundial/occ-atomic/commit/d06e2064f9ec30066fef70432122d3d49a6ae99f))
|
292
|
+
|
293
|
+
# [1.21.0](https://github.com/occmundial/occ-atomic/compare/v1.20.1...v1.21.0) (2022-02-16)
|
294
|
+
|
295
|
+
|
296
|
+
### Features
|
297
|
+
|
298
|
+
* Implement babel plugin ([a73c4fe](https://github.com/occmundial/occ-atomic/commit/a73c4fe73abd82e8c159ed7b6bfae0e26ecb613b))
|
299
|
+
|
300
|
+
## [1.20.1](https://github.com/occmundial/occ-atomic/compare/v1.20.0...v1.20.1) (2022-01-31)
|
301
|
+
|
302
|
+
|
303
|
+
### Bug Fixes
|
304
|
+
|
305
|
+
* Change in location icon and new locationSolid icon ([4ec15e1](https://github.com/occmundial/occ-atomic/commit/4ec15e18dabf7f23469d989d57812d45be17f5d4))
|
306
|
+
|
307
|
+
# [1.20.0](https://github.com/occmundial/occ-atomic/compare/v1.19.0...v1.20.0) (2022-01-19)
|
308
|
+
|
309
|
+
|
310
|
+
### Bug Fixes
|
311
|
+
|
312
|
+
* Change in TextField icons ([989abb3](https://github.com/occmundial/occ-atomic/commit/989abb35e3d7e346a68519939f5cc4b489affb7b))
|
313
|
+
* Simplify TextField status logic ([574824a](https://github.com/occmundial/occ-atomic/commit/574824a63c6ba8e83cefafaca102566e53578d0e))
|
314
|
+
|
315
|
+
|
316
|
+
### Features
|
317
|
+
|
318
|
+
* Add searchField theme to the TextField component ([3f36f4f](https://github.com/occmundial/occ-atomic/commit/3f36f4fcef97130a11afd0ed1e857d289295e491))
|
319
|
+
|
320
|
+
# [1.19.0](https://github.com/occmundial/occ-atomic/compare/v1.18.4...v1.19.0) (2021-12-20)
|
321
|
+
|
322
|
+
|
323
|
+
### Features
|
324
|
+
|
325
|
+
* New matchJob, cash and profileView icons ([95a0c68](https://github.com/occmundial/occ-atomic/commit/95a0c68fee7d46bd2e674c7674e59b3ebd594dbf))
|
326
|
+
|
327
|
+
## [1.18.4](https://github.com/occmundial/occ-atomic/compare/v1.18.3...v1.18.4) (2021-11-03)
|
328
|
+
|
329
|
+
|
330
|
+
### Bug Fixes
|
331
|
+
|
332
|
+
* Correction of the iconName property of the password icon in the enabled field ([bfad08e](https://github.com/occmundial/occ-atomic/commit/bfad08e653eb4c1fe292e70fe29c097a323891eb))
|
333
|
+
|
334
|
+
## [1.18.3](https://github.com/occmundial/occ-atomic/compare/v1.18.2...v1.18.3) (2021-11-02)
|
335
|
+
|
336
|
+
|
337
|
+
### Bug Fixes
|
338
|
+
|
339
|
+
* Correction of the iconName property of the password icon ([a7e2842](https://github.com/occmundial/occ-atomic/commit/a7e2842bcf2f414f3ecee3534d0e3a6730893e30))
|
340
|
+
|
341
|
+
## [1.18.2](https://github.com/occmundial/occ-atomic/compare/v1.18.1...v1.18.2) (2021-10-20)
|
342
|
+
|
343
|
+
|
344
|
+
### Bug Fixes
|
345
|
+
|
346
|
+
* Correction of the backgroundSize property of the modal ([022ef26](https://github.com/occmundial/occ-atomic/commit/022ef26d7141f48265783cfacc8df446a5ac9d6c))
|
347
|
+
|
348
|
+
## [1.18.1](https://github.com/occmundial/occ-atomic/compare/v1.18.0...v1.18.1) (2021-10-12)
|
349
|
+
|
350
|
+
|
351
|
+
### Bug Fixes
|
352
|
+
|
353
|
+
* Change in property type size ([91113d3](https://github.com/occmundial/occ-atomic/commit/91113d32e9da8105e262fddb1fce42f7278adbd1))
|
354
|
+
|
355
|
+
# [1.18.0](https://github.com/occmundial/occ-atomic/compare/v1.17.0...v1.18.0) (2021-10-08)
|
356
|
+
|
357
|
+
|
358
|
+
### Bug Fixes
|
359
|
+
|
360
|
+
* Rename `warning` icon dependencies ([a91f94c](https://github.com/occmundial/occ-atomic/commit/a91f94c892ccdb87397528ff193121541f1cfba9))
|
361
|
+
* Rename old `warning` icon to `warningSolid` ([9692465](https://github.com/occmundial/occ-atomic/commit/9692465c9a395464bd8addb42568b6bc5fa7cf19))
|
362
|
+
|
363
|
+
|
364
|
+
### Features
|
365
|
+
|
366
|
+
* Add new `warning` Icon ([06780ad](https://github.com/occmundial/occ-atomic/commit/06780adf42f8da96037ef7df4b9b2c8b7d045c62))
|
367
|
+
|
368
|
+
# [1.17.0](https://github.com/occmundial/occ-atomic/compare/v1.16.0...v1.17.0) (2021-10-07)
|
369
|
+
|
370
|
+
|
371
|
+
### Features
|
372
|
+
|
373
|
+
* Add imgTop.height prop to the Modal component ([f470487](https://github.com/occmundial/occ-atomic/commit/f470487a1527c86bcdcc62fcd6154e4771cbe827))
|
374
|
+
|
375
|
+
# Old logs
|
376
|
+
|
377
|
+
The next changes where released before _semantic-release_ was implemented, so the documentation follows a different format.
|
378
|
+
|
379
|
+
## 1.16.x
|
380
|
+
|
381
|
+
### 1.16.0
|
382
|
+
|
383
|
+
- New icons added.
|
384
|
+
|
385
|
+
## 1.15.x
|
386
|
+
|
387
|
+
### 1.15.9
|
388
|
+
|
389
|
+
- Changes in `DropList` styles.
|
390
|
+
|
391
|
+
### 1.15.8
|
392
|
+
|
393
|
+
- New `disabled` prop in `DropList Item`.
|
394
|
+
|
395
|
+
### 1.15.7
|
396
|
+
|
397
|
+
- Changes in `tag` styles.
|
398
|
+
|
399
|
+
### 1.15.6
|
400
|
+
|
401
|
+
- New `tag` theme.
|
402
|
+
|
403
|
+
### 1.15.5
|
404
|
+
|
405
|
+
- New `location` icon.
|
406
|
+
|
407
|
+
### 1.15.4
|
408
|
+
|
409
|
+
- New `inputMode` prop in `TextField` component.
|
410
|
+
|
411
|
+
### 1.15.3
|
412
|
+
|
413
|
+
- Fix in the input type for the `TextField` component with mask prop.
|
414
|
+
|
415
|
+
### 1.15.2
|
416
|
+
|
417
|
+
- Remove arrows on input type number in `TextField` component.
|
418
|
+
|
419
|
+
### 1.15.1
|
420
|
+
|
421
|
+
- Changes in `Placeholder` component.
|
422
|
+
- Changes in the `colors` library and in the `Tip` and `Tag` components.
|
423
|
+
|
424
|
+
### 1.15.0
|
425
|
+
|
426
|
+
- New prop `pattern` on `TextField` component.
|
427
|
+
- Changes in `Tip` component.
|
428
|
+
- New `round` prop and changes in the `secondary` theme in the `Button` component.
|
429
|
+
- New color theme for the OCC logo icons.
|
430
|
+
|
431
|
+
## 1.14.x
|
432
|
+
|
433
|
+
### 1.14.18
|
434
|
+
|
435
|
+
- Changes in `Button` propTypes.
|
436
|
+
|
437
|
+
### 1.14.17
|
438
|
+
|
439
|
+
- `book` icon correction.
|
440
|
+
|
441
|
+
### 1.14.16
|
442
|
+
|
443
|
+
- New `book` icon.
|
444
|
+
|
445
|
+
### 1.14.15
|
446
|
+
|
447
|
+
- Changes in `Tip` icon styles.
|
448
|
+
|
449
|
+
### 1.14.14
|
450
|
+
|
451
|
+
- Changes in `Tip` styles.
|
452
|
+
|
453
|
+
### 1.14.13
|
454
|
+
|
455
|
+
- Changes in `trash` and `trashSolid` icons.
|
456
|
+
|
457
|
+
### 1.14.12
|
458
|
+
|
459
|
+
- New `copy` and `copySolid` icons.
|
460
|
+
|
461
|
+
### 1.14.11
|
462
|
+
|
463
|
+
- New `crossSolid` icon.
|
464
|
+
|
465
|
+
### 1.14.10
|
466
|
+
|
467
|
+
- New messages icons.
|
468
|
+
|
469
|
+
### 1.14.9
|
470
|
+
|
471
|
+
- Add `hourGlass` icon.
|
472
|
+
- Remove duplicated icon
|
473
|
+
|
474
|
+
### 1.14.8
|
475
|
+
|
476
|
+
- Add new prop to set a custom class in footer lists.
|
477
|
+
|
478
|
+
### 1.14.7
|
479
|
+
|
480
|
+
- Setting value for `ariaLabel` Icon prop on `List`/`Footer` component.
|
481
|
+
|
482
|
+
### 1.14.6
|
483
|
+
|
484
|
+
- New prop `ariaLabel` on `Icon` component.
|
485
|
+
- Removed prop `name` on `Icon` component.
|
486
|
+
|
487
|
+
### 1.14.5
|
488
|
+
|
489
|
+
- New prop `name` on `Icon` component.
|
490
|
+
|
491
|
+
### 1.14.4
|
492
|
+
|
493
|
+
- New `avatarSmile` icon.
|
494
|
+
- Changes in `primLight` and `primLighter` colors.
|
495
|
+
|
496
|
+
### 1.14.3
|
497
|
+
|
498
|
+
- Fix `Stack Pill` text and icon height.
|
499
|
+
- Changes on `Droplist` component to fix element filter with accents.
|
500
|
+
|
501
|
+
### 1.14.2
|
502
|
+
|
503
|
+
- Fix `Tag` padding.
|
504
|
+
|
505
|
+
### 1.14.1
|
506
|
+
|
507
|
+
- Fix in `Footer` mobile styles.
|
508
|
+
|
509
|
+
### 1.14.0
|
510
|
+
|
511
|
+
- Change on `Banner` fixing padding on mobile.
|
512
|
+
|
513
|
+
### 1.14.0-beta.3
|
514
|
+
|
515
|
+
- Change in font name.
|
516
|
+
|
517
|
+
### 1.14.0-beta.2
|
518
|
+
|
519
|
+
- Change in font weight.
|
520
|
+
|
521
|
+
### 1.14.0-beta.1
|
522
|
+
|
523
|
+
- Change in font sizes.
|
524
|
+
|
525
|
+
### 1.14.0-beta.0
|
526
|
+
|
527
|
+
- Change of the font-family in all the components.
|
528
|
+
|
529
|
+
## 1.13.x
|
530
|
+
|
531
|
+
### 1.13.21
|
532
|
+
|
533
|
+
- Changes on `Pill` component to fix text overflow on Stack and Group pill type.
|
534
|
+
- New `medium` and `big` sizes for the `Tag` component.
|
535
|
+
|
536
|
+
### 1.13.20
|
537
|
+
|
538
|
+
- Changes on `Pill` component to fix text overflow on Choice pill type.
|
539
|
+
|
540
|
+
### 1.13.19
|
541
|
+
|
542
|
+
- Changes on `Droplist` component to fix normalize error on IE.
|
543
|
+
- Changes on `Banner` component to change text size on mobile.
|
544
|
+
|
545
|
+
### 1.13.18
|
546
|
+
|
547
|
+
- Changes on `Droplist` component to show extra content.
|
548
|
+
- Changes on `Droplist` component to change color in the icons.
|
549
|
+
|
550
|
+
### 1.13.17
|
551
|
+
|
552
|
+
- New prop `showInitialData` on `Autocomplete` component.
|
553
|
+
- Changes on `Droplist` component to show icons.
|
554
|
+
|
555
|
+
### 1.13.16
|
556
|
+
|
557
|
+
- New `Banner` component.
|
558
|
+
|
559
|
+
### 1.13.15
|
560
|
+
|
561
|
+
- New prop `theme` for `SlideDown`.
|
562
|
+
|
563
|
+
### 1.13.14
|
564
|
+
|
565
|
+
- Changes in the styles of `Tip`.
|
566
|
+
|
567
|
+
### 1.13.13
|
568
|
+
|
569
|
+
- New `leftIcon` and `rightIcon` props for `choice` Pills.
|
570
|
+
- Changes in `Pill` styles.
|
571
|
+
|
572
|
+
### 1.13.12
|
573
|
+
|
574
|
+
- New theme `link` for tag component.
|
575
|
+
|
576
|
+
### 1.13.11
|
577
|
+
|
578
|
+
- Changes in colors.
|
579
|
+
- Changes in `OrderBy` props.
|
580
|
+
|
581
|
+
### 1.13.10
|
582
|
+
|
583
|
+
- The `bottomLinks` array for `Footer` accepts the `onClick` property.
|
584
|
+
|
585
|
+
### 1.13.9
|
586
|
+
|
587
|
+
- New `fullSize` prop in `Modal`.
|
588
|
+
|
589
|
+
### 1.13.8
|
590
|
+
|
591
|
+
- Fix in `Modal` images styles.
|
592
|
+
|
593
|
+
### 1.13.7
|
594
|
+
|
595
|
+
- Changes in `Tip` themes.
|
596
|
+
|
597
|
+
### 1.13.6
|
598
|
+
|
599
|
+
- New `target` prop in `NavIcon`.
|
600
|
+
- New `bullet` icon.
|
601
|
+
|
602
|
+
### 1.13.5
|
603
|
+
|
604
|
+
- Changes in the `imgLeft` and `imgTop` props in `Modal`.
|
605
|
+
|
606
|
+
### 1.13.4
|
607
|
+
|
608
|
+
- Changes in the styles of `Modal`.
|
609
|
+
|
610
|
+
### 1.13.3
|
611
|
+
|
612
|
+
- New `imgTop` and `imgLeft` props in `Modal`.
|
613
|
+
- New `xl` size in `Modal`.
|
614
|
+
|
615
|
+
### 1.13.2
|
616
|
+
|
617
|
+
- Changes in buttons of `NavTab`.
|
618
|
+
|
619
|
+
### 1.13.1
|
620
|
+
|
621
|
+
- Changes in `Button` themes.
|
622
|
+
|
623
|
+
### 1.13.0
|
624
|
+
|
625
|
+
- Changed the `text` prop to `children` in the `Tip` component.
|
626
|
+
- Changes in the opacity of the fixed `NavTab`.
|
627
|
+
|
628
|
+
## 1.12.x
|
629
|
+
|
630
|
+
### 1.12.2
|
631
|
+
|
632
|
+
- New `trk` prop for `Checkbox`, `Radio` and `SlideToggle`.
|
633
|
+
- Changes in `NavAside` styles.
|
634
|
+
- New `title` prop for the link items in `Footer`.
|
635
|
+
|
636
|
+
### 1.12.1
|
637
|
+
|
638
|
+
- New `youtubeSolid` icon.
|
639
|
+
|
640
|
+
### 1.12.0
|
641
|
+
|
642
|
+
- New `Toaster` component and `toaster` controller object.
|
643
|
+
|
644
|
+
## 1.11.x
|
645
|
+
|
646
|
+
### 1.11.1
|
647
|
+
|
648
|
+
- Changes in the `expanded` behavior in `SlideDown`.
|
649
|
+
- New `name` property in `SlideToggle`.
|
650
|
+
|
651
|
+
### 1.11.0
|
652
|
+
|
653
|
+
- New icons.
|
654
|
+
- Removed old occ logo icons.
|
655
|
+
- Changes in NavTab styles.
|
656
|
+
|
657
|
+
## 1.10.x
|
658
|
+
|
659
|
+
### 1.10.3
|
660
|
+
|
661
|
+
- New `undetermined` prop in `Checkbox`.
|
662
|
+
- New `textSize` prop in `SlideDown`.
|
663
|
+
- Change in the behavior of the `expanded` property of `SlideDown`.
|
664
|
+
|
665
|
+
### 1.10.2
|
666
|
+
|
667
|
+
- Fix in `Footer` props.
|
668
|
+
|
669
|
+
### 1.10.1
|
670
|
+
|
671
|
+
- Change in `Footer` props.
|
672
|
+
|
673
|
+
### 1.10.0
|
674
|
+
|
675
|
+
- The `Footer` component has been rewritten.
|
676
|
+
|
677
|
+
## 1.9.x
|
678
|
+
|
679
|
+
### 1.9.5
|
680
|
+
|
681
|
+
- Change of the success color.
|
682
|
+
|
683
|
+
### 1.9.4
|
684
|
+
|
685
|
+
- New `checkSolid` icon.
|
686
|
+
|
687
|
+
### 1.9.3
|
688
|
+
|
689
|
+
- Change in `Card` elevations.
|
690
|
+
|
691
|
+
### 1.9.2
|
692
|
+
|
693
|
+
- Change in feedback colors.
|
694
|
+
|
695
|
+
### 1.9.1
|
696
|
+
|
697
|
+
- New icons.
|
698
|
+
|
699
|
+
### 1.9.0
|
700
|
+
|
701
|
+
- Significant changes in the `Card` component.
|
702
|
+
- New `iconSizes` library.
|
703
|
+
|
704
|
+
## 1.8.x
|
705
|
+
|
706
|
+
### 1.8.1
|
707
|
+
|
708
|
+
- New icons.
|
709
|
+
|
710
|
+
### 1.8.0
|
711
|
+
|
712
|
+
- New `Tip` component.
|
713
|
+
|
714
|
+
## 1.7.x
|
715
|
+
|
716
|
+
### 1.7.0
|
717
|
+
|
718
|
+
- New icons.
|
719
|
+
|
720
|
+
## 1.6.x
|
721
|
+
|
722
|
+
### 1.6.5
|
723
|
+
|
724
|
+
- New `topXTiny`, `bottomXTiny`, `topMedium` and `bottomMedium` props for `Text`.
|
725
|
+
|
726
|
+
### 1.6.4
|
727
|
+
|
728
|
+
- New `upload` icon.
|
729
|
+
|
730
|
+
### 1.6.3
|
731
|
+
|
732
|
+
- Change in height of the textarea type of `TextField`.
|
733
|
+
|
734
|
+
### 1.6.2
|
735
|
+
|
736
|
+
- Changes in `Pills stack`.
|
737
|
+
|
738
|
+
### 1.6.1
|
739
|
+
|
740
|
+
- New `trash` icon.
|
741
|
+
|
742
|
+
### 1.6.0-beta.4
|
743
|
+
|
744
|
+
- Fix in the value returned by the `onKeyUp` function in `TextField`.
|
745
|
+
|
746
|
+
### 1.6.0-beta.3
|
747
|
+
|
748
|
+
- Fix in `Flexbox` props.
|
749
|
+
|
750
|
+
### 1.6.0-beta.2
|
751
|
+
|
752
|
+
- Fix with `Droplist` spacing in `Autocomplete`.
|
753
|
+
|
754
|
+
### 1.6.0-beta.1
|
755
|
+
|
756
|
+
- Added the `natives` library to resolve build problems.
|
757
|
+
|
758
|
+
### 1.6.0-beta.0
|
759
|
+
|
760
|
+
- Significant changes in `Autocomplete` and `Droplist` components.
|
761
|
+
|
762
|
+
## 1.5.x
|
763
|
+
|
764
|
+
### 1.5.1
|
765
|
+
|
766
|
+
- Changes in propTypes for `Avatar`, `Button`, `Card`, `Checkbox`, `Droplist`, `Flexbox`, `Grid`, `Icon` and `Modal`.
|
767
|
+
|
768
|
+
### 1.5.0
|
769
|
+
|
770
|
+
- Deprecation of the following components: `Autocomplete`, `ButtonAlign`, `Check`, `Column`, `Container`, `Row`, `Header`, `Menu`, `Nav`, `SightLogo`, `Input`, `LayerApp`, `SubHeader`, `SwitchGroup`, `Title`, `Visible`.
|
771
|
+
|
772
|
+
## 1.4.x
|
773
|
+
|
774
|
+
### 1.4.13
|
775
|
+
|
776
|
+
- Changes in the grid of `NavTab` and `NavTop`.
|
777
|
+
|
778
|
+
### 1.4.12
|
779
|
+
|
780
|
+
- The `secBtn` prop in the `Modal` component accepts now `href` and `target`.
|
781
|
+
|
782
|
+
### 1.4.11
|
783
|
+
|
784
|
+
- New `id` prop for `Text`.
|
785
|
+
- New `onToggle` prop for `SlideDown`.
|
786
|
+
|
787
|
+
### 1.4.10
|
788
|
+
|
789
|
+
- The `onClose` prop in `Modal` is now optional.
|
790
|
+
|
791
|
+
### 1.4.9
|
792
|
+
|
793
|
+
- Fix for fixed bottom style in `NavTab` for iOS.
|
794
|
+
|
795
|
+
### 1.4.8
|
796
|
+
|
797
|
+
- Changes in `Modal`, `SlideDown` and `Pill`, to implement ids.
|
798
|
+
- Fix in `NavAside`.
|
799
|
+
|
800
|
+
### 1.4.7
|
801
|
+
|
802
|
+
- Changes in `publications` icon.
|
803
|
+
|
804
|
+
### 1.4.6
|
805
|
+
|
806
|
+
- The `mainBtn` prop in the `Modal` component accepts now `href` and `target`.
|
807
|
+
|
808
|
+
### 1.4.5
|
809
|
+
|
810
|
+
- Change in scroll behavior for `NavTab`.
|
811
|
+
|
812
|
+
### 1.4.4
|
813
|
+
|
814
|
+
- New `textOverflow` prop for `Radio` and `Checkbox`.
|
815
|
+
|
816
|
+
### 1.4.3
|
817
|
+
|
818
|
+
- New icon.
|
819
|
+
|
820
|
+
### 1.4.2
|
821
|
+
|
822
|
+
- New icons and changes in some icons.
|
823
|
+
|
824
|
+
### 1.4.1
|
825
|
+
|
826
|
+
- New `NavAside` component.
|
827
|
+
|
828
|
+
### 1.4.0-beta.4
|
829
|
+
|
830
|
+
- New `iconRight` prop for `Button`.
|
831
|
+
- New icons.
|
832
|
+
|
833
|
+
### 1.4.0-beta.3
|
834
|
+
|
835
|
+
- Changes in `NavTab`. It accepts now the `flexCenter`, `fixed`, `hideOnScroll` and `bottom` props.
|
836
|
+
- New `NavIcon` component.
|
837
|
+
|
838
|
+
### 1.4.0-beta.2
|
839
|
+
|
840
|
+
- New `SlideToggle` component.
|
841
|
+
- New `cross` icon.
|
842
|
+
|
843
|
+
### 1.4.0-beta.1
|
844
|
+
|
845
|
+
- New icons.
|
846
|
+
|
847
|
+
### 1.4.0-beta.0
|
848
|
+
|
849
|
+
- Developing the `NavTab`, `NavItem` and `NavTop` components.
|
850
|
+
- Added new icons.
|
851
|
+
- New `link` theme for `Text` component.
|
852
|
+
|
853
|
+
## 1.3.x
|
854
|
+
|
855
|
+
### 1.3.12
|
856
|
+
|
857
|
+
- Changes in `Modal`. Now `mainBtn` and `secBtn` accept `loading` and `disabled`.
|
858
|
+
|
859
|
+
### 1.3.11
|
860
|
+
|
861
|
+
- Changes in the names of the keyframes animations to avoid conflicts with other animations.
|
862
|
+
|
863
|
+
### 1.3.10
|
864
|
+
|
865
|
+
- The `container` property in `Modal` is now optional.
|
866
|
+
|
867
|
+
### 1.3.9
|
868
|
+
|
869
|
+
- New `Placeholder` component.
|
870
|
+
|
871
|
+
### 1.3.8
|
872
|
+
|
873
|
+
- Changes in styles of `Card` component.
|
874
|
+
- The `strong` property can now be applied to `micro` style in `Text` component.
|
875
|
+
|
876
|
+
### 1.3.7
|
877
|
+
|
878
|
+
- New `disableAutoComplete` prop in `TextField` component.
|
879
|
+
|
880
|
+
### 1.3.6
|
881
|
+
|
882
|
+
- New `strong` property for the `Text` component.
|
883
|
+
- The title in `slideDown` has now the `strong` style.
|
884
|
+
|
885
|
+
### 1.3.5
|
886
|
+
|
887
|
+
- Fix in `Checkbox` and `Button` components.
|
888
|
+
|
889
|
+
### 1.3.4
|
890
|
+
|
891
|
+
- New `disableAutoComplete` prop in `Input` and `Autocomplete` components.
|
892
|
+
|
893
|
+
### 1.3.3
|
894
|
+
|
895
|
+
- Fix in PropTypes of `Checkbox`.
|
896
|
+
|
897
|
+
### 1.3.2
|
898
|
+
|
899
|
+
- Change in PropTypes of `Checkbox`.
|
900
|
+
|
901
|
+
### 1.3.1
|
902
|
+
|
903
|
+
- New `right` prop in `Checkbox` and `Radio`.
|
904
|
+
|
905
|
+
### 1.3.0
|
906
|
+
|
907
|
+
- New `Radio` component.
|
908
|
+
|
909
|
+
## 1.2.x
|
910
|
+
|
911
|
+
### 1.2.4
|
912
|
+
|
913
|
+
- Fix in `SlideDown` component.
|
914
|
+
|
915
|
+
### 1.2.3
|
916
|
+
|
917
|
+
- Fix in styles of `SlideDown`.
|
918
|
+
|
919
|
+
### 1.2.2
|
920
|
+
|
921
|
+
- Changes in `OrderBy` component.
|
922
|
+
|
923
|
+
### 1.2.1
|
924
|
+
|
925
|
+
- Changes in `SlideDown` component.
|
926
|
+
|
927
|
+
### 1.2.0
|
928
|
+
|
929
|
+
- New `Modal` component.
|
930
|
+
- Changes in the `shadows` levels.
|
931
|
+
- Changes in `Card` styles.
|
932
|
+
- Changes in `close` icon.
|
933
|
+
- Fix in `OrderBy` down arrow icon.
|
934
|
+
|
935
|
+
## 1.1.x
|
936
|
+
|
937
|
+
### 1.1.23
|
938
|
+
|
939
|
+
- Change in the padding of `Pill.Choice`.
|
940
|
+
|
941
|
+
### 1.1.22
|
942
|
+
|
943
|
+
- Fix in styles of `Pill.Choice`.
|
944
|
+
|
945
|
+
### 1.1.21
|
946
|
+
|
947
|
+
- Fix in styles of `Pill`.
|
948
|
+
- New `textLink` color.
|
949
|
+
|
950
|
+
### 1.1.20
|
951
|
+
|
952
|
+
- Adjustments in Header and SightLogo components.
|
953
|
+
|
954
|
+
### 1.1.19
|
955
|
+
|
956
|
+
- New `hjWhitelist` prop in `TextField`.
|
957
|
+
|
958
|
+
### 1.1.18
|
959
|
+
|
960
|
+
- New `textLink` color.
|
961
|
+
- Removed default value for `maxLength` in `TextField`. Fix in styles of `TextField` to remove shadow of the input element on iOS.
|
962
|
+
|
963
|
+
### 1.1.17
|
964
|
+
|
965
|
+
- Fix in styles of `Pill.Stack`.
|
966
|
+
- Fix in styles of `TextField` disabled.
|
967
|
+
|
968
|
+
### 1.1.16
|
969
|
+
|
970
|
+
- New `mask` and `guide` props in `TextField`. This props will allow you to make the field follow a pattern.
|
971
|
+
|
972
|
+
### 1.1.15
|
973
|
+
|
974
|
+
- New `Tag` component.
|
975
|
+
- Changes in `Checkbox` styles.
|
976
|
+
|
977
|
+
### 1.1.14
|
978
|
+
|
979
|
+
- The `Pill` component can now receive `className`, `id` and `style` props.
|
980
|
+
- New `moreOptions` icon.
|
981
|
+
|
982
|
+
### 1.1.13
|
983
|
+
|
984
|
+
- Fixes in the disabled state of `select` and `textarea` `TextField` types.
|
985
|
+
- Adjustment in the arrow icon of the `select` `TextField` type.
|
986
|
+
|
987
|
+
### 1.1.12
|
988
|
+
|
989
|
+
- New `Button` themes (`primary`, `secondary`, `tertiary`, `ghostPink`, `ghostGrey`, `ghostWhite`). Older themes have been removed.
|
990
|
+
- New `medium` spacing value.
|
991
|
+
- Fixes of status in `TextField`.
|
992
|
+
- Changes in styles of dropdown in `TextField`.
|
993
|
+
- Color `secLighter` has changed.
|
994
|
+
|
995
|
+
### 1.1.11
|
996
|
+
|
997
|
+
- Fix in `TextField` status when changing between focus and disabled.
|
998
|
+
- Changes in the styles of `Pill` with stacked elements.
|
999
|
+
|
1000
|
+
### 1.1.10
|
1001
|
+
|
1002
|
+
- Fix in dropdown of `TextField`. The component couldn't show a dropdown with error correctly.
|
1003
|
+
|
1004
|
+
### 1.1.9
|
1005
|
+
|
1006
|
+
- Changes in the `Pill` component. Now it works in three different modes. `group` for a combined bar of buttons with only one option selectable at a time. `stack` for a list of pills that can be clicked and closed. `choice` for a set of buttons with individual state, to select as many as needed.
|
1007
|
+
|
1008
|
+
### 1.1.8
|
1009
|
+
|
1010
|
+
- New `Checkbox` component.
|
1011
|
+
|
1012
|
+
### 1.1.7
|
1013
|
+
|
1014
|
+
- Added a `regex` prop to `TextField`. With this property the component will not change the value if it doesn't match with the regular expression.
|
1015
|
+
|
1016
|
+
### 1.1.6
|
1017
|
+
|
1018
|
+
- New `Pill` component.
|
1019
|
+
|
1020
|
+
### 1.1.5
|
1021
|
+
|
1022
|
+
- Bug fix in `TextField`.
|
1023
|
+
|
1024
|
+
### 1.1.4
|
1025
|
+
|
1026
|
+
- Bug fix in `TextField`.
|
1027
|
+
|
1028
|
+
### 1.1.3
|
1029
|
+
|
1030
|
+
- `TextField` can now be a `select` type. The `options` prop can be simple options or grouped options. Also now it can receive the `required` prop.
|
1031
|
+
|
1032
|
+
### 1.1.2
|
1033
|
+
|
1034
|
+
- New `Grid` component.
|
1035
|
+
|
1036
|
+
### 1.1.1
|
1037
|
+
|
1038
|
+
- New `spacing` library.
|
1039
|
+
|
1040
|
+
### 1.1.0
|
1041
|
+
|
1042
|
+
- New `Text` component.
|
1043
|
+
|
1044
|
+
## 1.0.x
|
1045
|
+
|
1046
|
+
### 1.0.14
|
1047
|
+
|
1048
|
+
- Added `onMouseDown` and `onMouseUp` events to `Droplist`.
|
1049
|
+
|
1050
|
+
### 1.0.13
|
1051
|
+
|
1052
|
+
- The `clear` and `password` icons in `TextField` are now wrapped by a div and not a button to avoid focusing on them with tab.
|
1053
|
+
- Fix in the disabled state of `TextField`. Now it works well with the `lockHeight` prop.
|
1054
|
+
|
1055
|
+
### 1.0.12
|
1056
|
+
|
1057
|
+
- Change in the `counter` of `TextField`. Now it shows the written characters and the max length, instead of the remaining characters.
|
1058
|
+
|
1059
|
+
### 1.0.11
|
1060
|
+
|
1061
|
+
- The clickable area of the `eye` icon in `TextField` is now bigger.
|
1062
|
+
- The sub-string `no-repeat center center` has been removed from the response of the icon function in the icons library.
|
1063
|
+
|
1064
|
+
### 1.0.10
|
1065
|
+
|
1066
|
+
- Implementation of the `inputClassName` prop in the `Input`, `TextField` and `Autocomplete` components.
|
1067
|
+
|
1068
|
+
### 1.0.9
|
1069
|
+
|
1070
|
+
- `Pager` page count now starts from 1 and not from 0.
|
1071
|
+
|
1072
|
+
### 1.0.8
|
1073
|
+
|
1074
|
+
- New `lockHeight` property in `TextField`, to render the component with the same height even if it has no `label` or `assistiveText`.
|
1075
|
+
- Now `assistiveText` can be a string or any jsx node. Links are already styled, but you can send anything you need.
|
1076
|
+
|
1077
|
+
### 1.0.7
|
1078
|
+
|
1079
|
+
- The `Container` component can now receive an `onClick` function.
|
1080
|
+
|
1081
|
+
### 1.0.6
|
1082
|
+
|
1083
|
+
- Changes in styles of `Button` component's main theme.
|
1084
|
+
|
1085
|
+
### 1.0.5
|
1086
|
+
|
1087
|
+
- `Hidden` can now hide the elements using css (passing the `mediaQuery` property) instead of removing them from the DOM.
|
1088
|
+
- WindowSize now passes the `winWidth` property and not just `size`.
|
1089
|
+
|
1090
|
+
### 1.0.4
|
1091
|
+
|
1092
|
+
- Bug fix in className of the `TextField` component.
|
1093
|
+
|
1094
|
+
### 1.0.3
|
1095
|
+
|
1096
|
+
- Bug fix in `TextField`.
|
1097
|
+
|
1098
|
+
### 1.0.2
|
1099
|
+
|
1100
|
+
- The `TextField` component can now get smaller without `label` and `assistiveText`.
|
1101
|
+
|
1102
|
+
### 1.0.1
|
1103
|
+
|
1104
|
+
- Change in `TextField` background color.
|
1105
|
+
|
1106
|
+
### 1.0.0
|
1107
|
+
|
1108
|
+
- New `TextField` component. This component will replace the old `Input` component. In following versions will be deprecated.
|
1109
|
+
|
1110
|
+
## 0.6.x
|
1111
|
+
|
1112
|
+
### 0.6.11
|
1113
|
+
|
1114
|
+
- New icons: highlight, viewed and postulated.
|
1115
|
+
|
1116
|
+
### 0.6.10
|
1117
|
+
|
1118
|
+
- The `Droplist` items now stop the propagation of the click event, to avoid weird behavior with items behind the `Droplist`.
|
1119
|
+
- New `inputClassName` prop in the `Input` component. This className will be applied to the input tag.
|
1120
|
+
- Fix in propTypes of the Input's wrapper.
|
1121
|
+
|
1122
|
+
### 0.6.9
|
1123
|
+
|
1124
|
+
- New `rel` prop in the `Button` component. If the `Button` component is set as a link (using the `href` prop) it will be able to receive the `rel` attribute.
|
1125
|
+
|
1126
|
+
### 0.6.8
|
1127
|
+
|
1128
|
+
- Fixes in the `Input` component. It solves problems with the theming of the `Input` since version **0.5.0**.
|
1129
|
+
|
1130
|
+
### 0.6.7
|
1131
|
+
|
1132
|
+
- Changes in how the references to the `Input` in `Autocomplete` are handled.
|
1133
|
+
|
1134
|
+
### 0.6.6
|
1135
|
+
|
1136
|
+
- The `Input` component is wrapped inside another component that handles the theme and provides the desired stylesheet.
|
1137
|
+
- To validate an `Input` with `redux-form` the input has to be touched first.
|
1138
|
+
- Fix in the `onKeyUp` function in `Autocomplete`.
|
1139
|
+
|
1140
|
+
### 0.6.5
|
1141
|
+
|
1142
|
+
- `Autocomplete` now just checks the cleaned items (result of the array of items being filtered by the `term`) instead of the whole array, to decide if the `Droplist` should be visible or not.
|
1143
|
+
|
1144
|
+
### 0.6.4
|
1145
|
+
|
1146
|
+
- The `Droplist` in `Autocomplete` is now not visible if the array of items is empty.
|
1147
|
+
|
1148
|
+
### 0.6.3
|
1149
|
+
|
1150
|
+
- New `forceValue` function in `Autocomplete` to change the value through a ref.
|
1151
|
+
|
1152
|
+
### 0.6.2
|
1153
|
+
|
1154
|
+
- The `Input` value in `Autocomplete` is cleared if the `selectOnEnter` prop is set and no item is found in the `Droplist`.
|
1155
|
+
|
1156
|
+
### 0.6.1
|
1157
|
+
|
1158
|
+
- The `onKeyUp` function in `Input` now just sends the pressed key and not the value.
|
1159
|
+
|
1160
|
+
### 0.6.0
|
1161
|
+
|
1162
|
+
- Eslint fixes.
|
1163
|
+
- New `onKeyUp` function for the `Input` component.
|
1164
|
+
- New `filter` prop in `Droplist`. Set to false to avoid the `term` prop to filter the list.
|
1165
|
+
- New `onKeyUp` function and `selectOnEnter` prop for the `Autocomplete` component. If the user presses the Enter key the `Autocomplete` will select the first item of the `Droplist`.
|
1166
|
+
|
1167
|
+
## 0.5.x
|
1168
|
+
|
1169
|
+
### 0.5.4
|
1170
|
+
|
1171
|
+
- New `onClear` function in `Autocomplete`.
|
1172
|
+
|
1173
|
+
### 0.5.3
|
1174
|
+
|
1175
|
+
- Fixes in styles of the `clear` icon in the `Input` component when the theme is `flat`.
|
1176
|
+
|
1177
|
+
### 0.5.2
|
1178
|
+
|
1179
|
+
- Fixes in propTypes of `Autocomplete`.
|
1180
|
+
|
1181
|
+
### 0.5.1
|
1182
|
+
|
1183
|
+
- Changes in the documentation to show the `shape` propTypes.
|
1184
|
+
- Changes in the `Autocomplete` propTypes.
|
1185
|
+
|
1186
|
+
### 0.5.0
|
1187
|
+
|
1188
|
+
- Implementation of new theme in the `Input` and `Autocomplete` components.
|
1189
|
+
|
1190
|
+
## 0.4.x
|
1191
|
+
|
1192
|
+
### 0.4.9
|
1193
|
+
|
1194
|
+
- New bell icon.
|
1195
|
+
|
1196
|
+
### 0.4.8
|
1197
|
+
|
1198
|
+
- The `Button` content has now no pointer events.
|
1199
|
+
|
1200
|
+
### 0.4.7
|
1201
|
+
|
1202
|
+
- New occMini icon.
|
1203
|
+
|
1204
|
+
### 0.4.6
|
1205
|
+
|
1206
|
+
- Remove the event listener for resize in `WindowSize` hoc when unmounted.
|
1207
|
+
|
1208
|
+
### 0.4.5
|
1209
|
+
|
1210
|
+
- New occ icon.
|
1211
|
+
|
1212
|
+
### 0.4.4
|
1213
|
+
|
1214
|
+
- New clock icon.
|
1215
|
+
|
1216
|
+
### 0.4.3
|
1217
|
+
|
1218
|
+
- Fix in `Button` component. JSS had problems reaching nested rules, so the rule was replaced for a tag.
|
1219
|
+
- Updated the version of `react-jss` to `8.6.0`.
|
1220
|
+
|
1221
|
+
### 0.4.2
|
1222
|
+
|
1223
|
+
- Changes in the appstore and playstore icons.
|
1224
|
+
|
1225
|
+
### 0.4.1
|
1226
|
+
|
1227
|
+
- New star and starEmpty icons.
|
1228
|
+
|
1229
|
+
### 0.4.0
|
1230
|
+
|
1231
|
+
- New white theme for the `Button` component.
|
1232
|
+
|
1233
|
+
## 0.3.x
|
1234
|
+
|
1235
|
+
### 0.3.7
|
1236
|
+
|
1237
|
+
- Changes in appstore icon.
|
1238
|
+
|
1239
|
+
### 0.3.6
|
1240
|
+
|
1241
|
+
- New appstore and playstore icons.
|
1242
|
+
|
1243
|
+
### 0.3.5
|
1244
|
+
|
1245
|
+
- Fix in `href` property of the `Button` component.
|
1246
|
+
|
1247
|
+
### 0.3.4
|
1248
|
+
|
1249
|
+
- New eye icon.
|
1250
|
+
- Changes in check and occatomic icons.
|
1251
|
+
|
1252
|
+
### 0.3.3
|
1253
|
+
|
1254
|
+
- Adjustments in the documentation site.
|
1255
|
+
|
1256
|
+
### 0.3.2
|
1257
|
+
|
1258
|
+
- Adjustments in documentation and examples.
|
1259
|
+
|
1260
|
+
### 0.3.1
|
1261
|
+
|
1262
|
+
- Adjustments in documentation and examples.
|
1263
|
+
- Changes in webpack to build the documentation.
|
1264
|
+
- Storybook deleted.
|
1265
|
+
- Configuration to work with GitHub pages.
|
1266
|
+
|
1267
|
+
### 0.3.0
|
1268
|
+
|
1269
|
+
- Changes in documentation, examples and project name.
|
1270
|
+
|
1271
|
+
## 0.2.x
|
1272
|
+
|
1273
|
+
### 0.2.2
|
1274
|
+
|
1275
|
+
- Changes in styles of `Footer` component.
|
1276
|
+
|
1277
|
+
### 0.2.1
|
1278
|
+
|
1279
|
+
- Link fixes.
|
1280
|
+
|
1281
|
+
### 0.2.0
|
1282
|
+
|
1283
|
+
- First version upgrade since initial development.
|