@occmundial/occ-atomic 2.0.0-beta.1 → 2.0.0-beta.10

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