@appquality/unguess-design-system 2.8.7 → 2.8.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/.github/workflows/release.yml +43 -0
  2. package/.github/workflows/storybook.yml +37 -37
  3. package/.prettierrc +3 -3
  4. package/CHANGELOG.md +649 -584
  5. package/README.md +73 -73
  6. package/build/hooks/useWindowSize.d.ts +4 -0
  7. package/build/index.d.ts +63 -0
  8. package/build/index.js +2155 -0
  9. package/build/stories/accordions/_types.d.ts +25 -0
  10. package/build/stories/accordions/index.d.ts +17 -0
  11. package/build/stories/accordions/index.stories.d.ts +21 -0
  12. package/build/stories/avatar/_types.d.ts +19 -0
  13. package/build/stories/avatar/index.d.ts +13 -0
  14. package/build/stories/avatar/index.stories.d.ts +10 -0
  15. package/build/stories/breadcrumbs/_types.d.ts +5 -0
  16. package/build/stories/breadcrumbs/index.d.ts +11 -0
  17. package/build/stories/breadcrumbs/index.stories.d.ts +6 -0
  18. package/build/stories/buttons/anchor/_types.d.ts +11 -0
  19. package/build/stories/buttons/anchor/index.d.ts +12 -0
  20. package/build/stories/buttons/anchor/index.stories.d.ts +8 -0
  21. package/build/stories/buttons/button/_types.d.ts +30 -0
  22. package/build/stories/buttons/button/index.d.ts +22 -0
  23. package/build/stories/buttons/button/index.stories.d.ts +19 -0
  24. package/build/stories/buttons/button-group/_types.d.ts +5 -0
  25. package/build/stories/buttons/button-group/index.d.ts +9 -0
  26. package/build/stories/buttons/button-group/index.stories.d.ts +15 -0
  27. package/build/stories/buttons/icon-button/_types.d.ts +19 -0
  28. package/build/stories/buttons/icon-button/index.d.ts +14 -0
  29. package/build/stories/buttons/icon-button/index.stories.d.ts +9 -0
  30. package/build/stories/buttons/shared/_shared.d.ts +2 -0
  31. package/build/stories/buttons/split-button/_types.d.ts +2 -0
  32. package/build/stories/buttons/split-button/index.d.ts +11 -0
  33. package/build/stories/buttons/split-button/index.stories.d.ts +6 -0
  34. package/build/stories/buttons/utils/useButtonVariant.d.ts +5 -0
  35. package/build/stories/campaignCards/_types.d.ts +43 -0
  36. package/build/stories/campaignCards/index.d.ts +4 -0
  37. package/build/stories/campaignCards/index.stories.d.ts +7 -0
  38. package/build/stories/cards/_types.d.ts +7 -0
  39. package/build/stories/cards/index.d.ts +10 -0
  40. package/build/stories/cards/index.stories.d.ts +11 -0
  41. package/build/stories/close/_types.d.ts +3 -0
  42. package/build/stories/close/index.d.ts +7 -0
  43. package/build/stories/close/index.stories.d.ts +6 -0
  44. package/build/stories/counter/_types.d.ts +5 -0
  45. package/build/stories/counter/index.d.ts +13 -0
  46. package/build/stories/counter/index.stories.d.ts +15 -0
  47. package/build/stories/dropdowns/field/_types.d.ts +2 -0
  48. package/build/stories/dropdowns/field/index.d.ts +3 -0
  49. package/build/stories/dropdowns/item/_types.d.ts +9 -0
  50. package/build/stories/dropdowns/item/index.d.ts +4 -0
  51. package/build/stories/dropdowns/menu/_types.d.ts +47 -0
  52. package/build/stories/dropdowns/menu/index.d.ts +14 -0
  53. package/build/stories/dropdowns/menu/index.stories.d.ts +6 -0
  54. package/build/stories/dropdowns/multiselect/_types.d.ts +17 -0
  55. package/build/stories/dropdowns/multiselect/index.d.ts +11 -0
  56. package/build/stories/dropdowns/multiselect/index.stories.d.ts +21 -0
  57. package/build/stories/dropdowns/select/_types.d.ts +33 -0
  58. package/build/stories/dropdowns/select/index.d.ts +16 -0
  59. package/build/stories/dropdowns/select/index.stories.d.ts +20 -0
  60. package/build/stories/forms/checkbox/_types.d.ts +8 -0
  61. package/build/stories/forms/checkbox/index.d.ts +14 -0
  62. package/build/stories/forms/checkbox/index.stories.d.ts +6 -0
  63. package/build/stories/forms/field/_types.d.ts +3 -0
  64. package/build/stories/forms/field/index.d.ts +8 -0
  65. package/build/stories/forms/field/index.stories.d.ts +6 -0
  66. package/build/stories/forms/input/_types.d.ts +9 -0
  67. package/build/stories/forms/input/index.d.ts +11 -0
  68. package/build/stories/forms/input/index.stories.d.ts +9 -0
  69. package/build/stories/forms/radio/_types.d.ts +3 -0
  70. package/build/stories/forms/radio/index.d.ts +14 -0
  71. package/build/stories/forms/radio/index.stories.d.ts +7 -0
  72. package/build/stories/forms/textarea/_types.d.ts +15 -0
  73. package/build/stories/forms/textarea/index.d.ts +10 -0
  74. package/build/stories/forms/textarea/index.stories.d.ts +8 -0
  75. package/build/stories/forms/toggle/_types.d.ts +3 -0
  76. package/build/stories/forms/toggle/index.d.ts +13 -0
  77. package/build/stories/forms/toggle/index.stories.d.ts +10 -0
  78. package/build/stories/grid/col/_types.d.ts +77 -0
  79. package/build/stories/grid/col/index.d.ts +4 -0
  80. package/build/stories/grid/col/index.stories.d.ts +8 -0
  81. package/build/stories/grid/grid/_types.d.ts +9 -0
  82. package/build/stories/grid/grid/index.d.ts +10 -0
  83. package/build/stories/grid/grid/index.stories.d.ts +12 -0
  84. package/build/stories/grid/row/_types.d.ts +48 -0
  85. package/build/stories/grid/row/index.d.ts +4 -0
  86. package/build/stories/grid/row/index.stories.d.ts +10 -0
  87. package/build/stories/icons/_types.d.ts +7 -0
  88. package/build/stories/icons/index.d.ts +4 -0
  89. package/build/stories/icons/index.stories.d.ts +6 -0
  90. package/build/stories/label/_types.d.ts +5 -0
  91. package/build/stories/label/index.d.ts +8 -0
  92. package/build/stories/label/index.stories.d.ts +7 -0
  93. package/build/stories/loaders/progress/_types.d.ts +12 -0
  94. package/build/stories/loaders/progress/index.d.ts +14 -0
  95. package/build/stories/loaders/progress/index.stories.d.ts +6 -0
  96. package/build/stories/loaders/skeleton/_types.d.ts +9 -0
  97. package/build/stories/loaders/skeleton/index.d.ts +17 -0
  98. package/build/stories/loaders/skeleton/index.stories.d.ts +7 -0
  99. package/build/stories/loaders/spinner/_types.d.ts +19 -0
  100. package/build/stories/loaders/spinner/index.d.ts +11 -0
  101. package/build/stories/loaders/spinner/index.stories.d.ts +6 -0
  102. package/build/stories/login-form/_types.d.ts +29 -0
  103. package/build/stories/login-form/index.d.ts +10 -0
  104. package/build/stories/login-form/index.stories.d.ts +7 -0
  105. package/build/stories/logo/_types.d.ts +9 -0
  106. package/build/stories/logo/index.d.ts +13 -0
  107. package/build/stories/logo/index.stories.d.ts +6 -0
  108. package/build/stories/modals/_types.d.ts +34 -0
  109. package/build/stories/modals/index.d.ts +11 -0
  110. package/build/stories/modals/index.stories.d.ts +19 -0
  111. package/build/stories/navigation/app-header/_types.d.ts +18 -0
  112. package/build/stories/navigation/app-header/index.d.ts +8 -0
  113. package/build/stories/navigation/app-header/index.stories.d.ts +6 -0
  114. package/build/stories/navigation/body/_types.d.ts +5 -0
  115. package/build/stories/navigation/body/index.d.ts +7 -0
  116. package/build/stories/navigation/chrome/_types.d.ts +7 -0
  117. package/build/stories/navigation/chrome/index.d.ts +10 -0
  118. package/build/stories/navigation/content/_types.d.ts +2 -0
  119. package/build/stories/navigation/content/index.d.ts +7 -0
  120. package/build/stories/navigation/header/_types.d.ts +5 -0
  121. package/build/stories/navigation/header/header-item/_types.d.ts +32 -0
  122. package/build/stories/navigation/header/header-item/brandItem.d.ts +4 -0
  123. package/build/stories/navigation/header/header-item/headerItem.d.ts +4 -0
  124. package/build/stories/navigation/header/header-item/headerItemIcon.d.ts +4 -0
  125. package/build/stories/navigation/header/header-item/headerItemText.d.ts +4 -0
  126. package/build/stories/navigation/header/header-item/index.d.ts +5 -0
  127. package/build/stories/navigation/header/header-item/utils.d.ts +13 -0
  128. package/build/stories/navigation/header/index.d.ts +13 -0
  129. package/build/stories/navigation/main/_types.d.ts +2 -0
  130. package/build/stories/navigation/main/index.d.ts +7 -0
  131. package/build/stories/navigation/nav/_types.d.ts +5 -0
  132. package/build/stories/navigation/nav/index.d.ts +10 -0
  133. package/build/stories/navigation/nav/nav-item/_types.d.ts +29 -0
  134. package/build/stories/navigation/nav/nav-item/index.d.ts +7 -0
  135. package/build/stories/navigation/nav/nav-item/navDivider.d.ts +4 -0
  136. package/build/stories/navigation/nav/nav-item/navItem.d.ts +4 -0
  137. package/build/stories/navigation/nav/nav-item/navItemIcon.d.ts +4 -0
  138. package/build/stories/navigation/nav/nav-item/navItemProject.d.ts +8 -0
  139. package/build/stories/navigation/nav/nav-item/navItemText.d.ts +4 -0
  140. package/build/stories/navigation/nav/nav-item/navToggle.d.ts +4 -0
  141. package/build/stories/navigation/sidebar/_types.d.ts +17 -0
  142. package/build/stories/navigation/sidebar/index.d.ts +10 -0
  143. package/build/stories/navigation/sidebar/index.stories.d.ts +9 -0
  144. package/build/stories/notifications/_types.d.ts +9 -0
  145. package/build/stories/notifications/index.d.ts +20 -0
  146. package/build/stories/notifications/index.stories.d.ts +10 -0
  147. package/build/stories/page/index.d.ts +8 -0
  148. package/build/stories/page/index.stories.d.ts +6 -0
  149. package/build/stories/pagination/_types.d.ts +34 -0
  150. package/build/stories/pagination/index.d.ts +17 -0
  151. package/build/stories/pagination/index.stories.d.ts +7 -0
  152. package/build/stories/profile-modal/UserContainer.d.ts +3 -0
  153. package/build/stories/profile-modal/_types.d.ts +43 -0
  154. package/build/stories/profile-modal/helpMenuItem.d.ts +18 -0
  155. package/build/stories/profile-modal/index.d.ts +11 -0
  156. package/build/stories/profile-modal/index.stories.d.ts +6 -0
  157. package/build/stories/profile-modal/languageMenuItem.d.ts +14 -0
  158. package/build/stories/profile-modal/menuItem.d.ts +11 -0
  159. package/build/stories/profile-modal/menuItemIcon.d.ts +9 -0
  160. package/build/stories/profile-modal/previousMenuButton.d.ts +3 -0
  161. package/build/stories/profile-modal/userMenu.d.ts +3 -0
  162. package/build/stories/profile-modal/utils.d.ts +1 -0
  163. package/build/stories/shared/globalStyle.d.ts +2 -0
  164. package/build/stories/table/_types.d.ts +83 -0
  165. package/build/stories/table/grouped.d.ts +5 -0
  166. package/build/stories/table/index.d.ts +21 -0
  167. package/build/stories/table/index.stories.d.ts +18 -0
  168. package/build/stories/tags/_types.d.ts +17 -0
  169. package/build/stories/tags/index.d.ts +22 -0
  170. package/build/stories/tags/index.stories.d.ts +19 -0
  171. package/build/stories/theme/gradients.d.ts +4 -0
  172. package/build/stories/theme/index.d.ts +244 -0
  173. package/build/stories/theme/mixins.d.ts +3 -0
  174. package/build/stories/theme/palette.d.ts +141 -0
  175. package/build/stories/theme/palette.stories.d.ts +15 -0
  176. package/build/stories/theme/utils.d.ts +3 -0
  177. package/build/stories/tiles/_types.d.ts +12 -0
  178. package/build/stories/tiles/index.d.ts +22 -0
  179. package/build/stories/tiles/index.stories.d.ts +25 -0
  180. package/build/stories/title/_types.d.ts +5 -0
  181. package/build/stories/title/index.d.ts +7 -0
  182. package/build/stories/title/index.stories.d.ts +6 -0
  183. package/build/stories/trigger/_types.d.ts +3 -0
  184. package/build/stories/trigger/index.d.ts +7 -0
  185. package/build/stories/typography/block-quote/_types.d.ts +5 -0
  186. package/build/stories/typography/block-quote/index.d.ts +7 -0
  187. package/build/stories/typography/block-quote/index.stories.d.ts +5 -0
  188. package/build/stories/typography/code/_types.d.ts +7 -0
  189. package/build/stories/typography/code/index.d.ts +7 -0
  190. package/build/stories/typography/code/index.stories.d.ts +8 -0
  191. package/build/stories/typography/ellipsis/_types.d.ts +9 -0
  192. package/build/stories/typography/ellipsis/index.d.ts +7 -0
  193. package/build/stories/typography/ellipsis/index.stories.d.ts +5 -0
  194. package/build/stories/typography/lists/_types.d.ts +17 -0
  195. package/build/stories/typography/lists/index.d.ts +16 -0
  196. package/build/stories/typography/lists/ordered.stories.d.ts +9 -0
  197. package/build/stories/typography/lists/unordered.stories.d.ts +9 -0
  198. package/build/stories/typography/paragraph/_types.d.ts +5 -0
  199. package/build/stories/typography/paragraph/index.d.ts +7 -0
  200. package/build/stories/typography/paragraph/index.stories.d.ts +6 -0
  201. package/build/stories/typography/span/_types.d.ts +13 -0
  202. package/build/stories/typography/span/index.d.ts +13 -0
  203. package/build/stories/typography/span/index.stories.d.ts +6 -0
  204. package/build/stories/typography/typescale/_types.d.ts +43 -0
  205. package/build/stories/typography/typescale/index.d.ts +12 -0
  206. package/build/stories/typography/typescale/index.stories.d.ts +5 -0
  207. package/generate-story.sh +60 -60
  208. package/package.json +119 -119
package/CHANGELOG.md CHANGED
@@ -1,3 +1,68 @@
1
+ # v2.8.9 (Wed Apr 13 2022)
2
+
3
+ #### ⚠️ Pushed to `master`
4
+
5
+ - build(action): update Create Release step ([@cannarocks](https://github.com/cannarocks))
6
+ - feat(dropdown): add primary props to select component ([@cannarocks](https://github.com/cannarocks))
7
+ - fix(header): force header item to use theme font family ([@cannarocks](https://github.com/cannarocks))
8
+ - Merge branch 'fix-sidebar-font' ([@cannarocks](https://github.com/cannarocks))
9
+ - fix(sidebar): force theme font in menuItem ([@cannarocks](https://github.com/cannarocks))
10
+ - Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
11
+
12
+ #### Authors: 1
13
+
14
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
15
+
16
+ ---
17
+
18
+ # v2.8.9 (Wed Apr 13 2022)
19
+
20
+ #### ⚠️ Pushed to `master`
21
+
22
+ - Merge branch 'fix-sidebar-font' ([@cannarocks](https://github.com/cannarocks))
23
+ - fix(sidebar): force theme font in menuItem ([@cannarocks](https://github.com/cannarocks))
24
+ - Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
25
+
26
+ #### Authors: 1
27
+
28
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
29
+
30
+ ---
31
+
32
+ # v2.8.9 (Wed Apr 13 2022)
33
+
34
+ #### ⚠️ Pushed to `master`
35
+
36
+ - Merge branch 'fix-sidebar-font' ([@cannarocks](https://github.com/cannarocks))
37
+ - fix(sidebar): force theme font in menuItem ([@cannarocks](https://github.com/cannarocks))
38
+ - Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
39
+
40
+ #### Authors: 1
41
+
42
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
43
+
44
+ ---
45
+
46
+ # v2.8.9 (Wed Apr 13 2022)
47
+
48
+ #### ⚠️ Pushed to `master`
49
+
50
+ - Merge branch 'fix-sidebar-font' ([@cannarocks](https://github.com/cannarocks))
51
+ - fix(sidebar): force theme font in menuItem ([@cannarocks](https://github.com/cannarocks))
52
+ - Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
53
+
54
+ #### Authors: 1
55
+
56
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
57
+
58
+ ---
59
+
60
+ # v2.8.8 (Wed Apr 13 2022)
61
+
62
+
63
+
64
+ ---
65
+
1
66
  # v2.8.6 (Wed Apr 13 2022)
2
67
 
3
68
  #### ⚠️ Pushed to `master`
@@ -22,587 +87,587 @@
22
87
 
23
88
  ---
24
89
 
25
- # v2.8.5 (Wed Apr 13 2022)
26
-
27
- #### ⚠️ Pushed to `master`
28
-
29
- - minor fixes (cannarozzoluca@live.it)
30
-
31
- #### Authors: 1
32
-
33
- - Luca Cannarozzo (cannarozzoluca@live.it)
34
-
35
- ---
36
-
37
- # v2.8.4 (Tue Apr 12 2022)
38
-
39
- #### ⚠️ Pushed to `master`
40
-
41
- - fix(profilemodal): add translatable props ([@cannarocks](https://github.com/cannarocks))
42
-
43
- #### Authors: 1
44
-
45
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
46
-
47
- ---
48
-
49
- # v2.8.3 (Tue Apr 12 2022)
50
-
51
- #### ⚠️ Pushed to `master`
52
-
53
- - feat(changelog): add any ReactNode ad changelog item (cannarozzoluca@live.it)
54
-
55
- #### Authors: 1
56
-
57
- - Luca Cannarozzo (cannarozzoluca@live.it)
58
-
59
- ---
60
-
61
- # v2.8.2 (Tue Apr 12 2022)
62
-
63
-
64
-
65
- ---
66
-
67
- # v2.8.1 (Tue Apr 12 2022)
68
-
69
- #### 🐛 Bug Fix
70
-
71
- - fix(sidebar): add navToggle callback [#32](https://github.com/AppQuality/unguess-design-system/pull/32) ([@cannarocks](https://github.com/cannarocks))
72
-
73
- #### Authors: 1
74
-
75
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
76
-
77
- ---
78
-
79
- # v2.8.0 (Tue Apr 12 2022)
80
-
81
- #### 🚀 Enhancement
82
-
83
- - Fix/components for release [#31](https://github.com/AppQuality/unguess-design-system/pull/31) ([@marcbon](https://github.com/marcbon))
84
-
85
- #### Authors: 1
86
-
87
- - Marco Bonomo ([@marcbon](https://github.com/marcbon))
88
-
89
- ---
90
-
91
- # v2.7.1 (Fri Apr 08 2022)
92
-
93
-
94
-
95
- ---
96
-
97
- # v2.7.0 (Fri Apr 08 2022)
98
-
99
- #### 🚀 Enhancement
100
-
101
- - fix(campaign cards): add card props [#29](https://github.com/AppQuality/unguess-design-system/pull/29) ([@marcbon](https://github.com/marcbon))
102
- - Cup 523 profile modal [#26](https://github.com/AppQuality/unguess-design-system/pull/26) ([@antoninojob](https://github.com/antoninojob) [@cannarocks](https://github.com/cannarocks))
103
- - Refactor/table accordion [#30](https://github.com/AppQuality/unguess-design-system/pull/30) ([@antoninojob](https://github.com/antoninojob) [@cannarocks](https://github.com/cannarocks))
104
-
105
- #### ⚠️ Pushed to `master`
106
-
107
- - fix(profilemodal): minor spaces fixes on modal ([@cannarocks](https://github.com/cannarocks))
108
- - feat(navigation): add rotation to profile header chevron based on modal ([@cannarocks](https://github.com/cannarocks))
109
- - Update storybook.yml ([@cannarocks](https://github.com/cannarocks))
110
-
111
- #### Authors: 3
112
-
113
- - Antonino ([@antoninojob](https://github.com/antoninojob))
114
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
115
- - Marco Bonomo ([@marcbon](https://github.com/marcbon))
116
-
117
- ---
118
-
119
- # v2.6.2 (Thu Mar 31 2022)
120
-
121
-
122
-
123
- ---
124
-
125
- # v2.6.1 (Thu Mar 31 2022)
126
-
127
- #### ⚠️ Pushed to `master`
128
-
129
- - fix(login): add generic error message ([@cannarocks](https://github.com/cannarocks))
130
-
131
- #### Authors: 1
132
-
133
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
134
-
135
- ---
136
-
137
- # v2.6.0 (Tue Mar 29 2022)
138
-
139
- #### 🚀 Enhancement
140
-
141
- - Feature/cup 500 campaign card [#27](https://github.com/AppQuality/unguess-design-system/pull/27) ([@cicababba](https://github.com/cicababba) [@marcbon](https://github.com/marcbon))
142
-
143
- #### 🐛 Bug Fix
144
-
145
- - Fix/campaign cards [#28](https://github.com/AppQuality/unguess-design-system/pull/28) ([@marcbon](https://github.com/marcbon))
146
-
147
- #### ⚠️ Pushed to `master`
148
-
149
- - fix(campaigncard): add html props to campaign card ([@cannarocks](https://github.com/cannarocks))
150
- - fix(scroll): hide <Main /> scroll ([@cannarocks](https://github.com/cannarocks))
151
- - fix(counter): fix error on zero counter values ([@cannarocks](https://github.com/cannarocks))
152
-
153
- #### Authors: 3
154
-
155
- - cicababba ([@cicababba](https://github.com/cicababba))
156
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
157
- - Marco Bonomo ([@marcbon](https://github.com/marcbon))
158
-
159
- ---
160
-
161
- # v2.5.7 (Mon Mar 28 2022)
162
-
163
-
164
-
165
- ---
166
-
167
- # v2.5.6 (Mon Mar 28 2022)
168
-
169
- #### ⚠️ Pushed to `master`
170
-
171
- - fix(spaces): fix spaces between main, body and page title ([@cannarocks](https://github.com/cannarocks))
172
-
173
- #### Authors: 1
174
-
175
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
176
-
177
- ---
178
-
179
- # v2.5.5 (Mon Mar 28 2022)
180
-
181
- #### ⚠️ Pushed to `master`
182
-
183
- - fix(main): add spaces as described by dressBerry ([@cannarocks](https://github.com/cannarocks))
184
-
185
- #### Authors: 1
186
-
187
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
188
-
189
- ---
190
-
191
- # v2.5.3 (Fri Mar 25 2022)
192
-
193
- #### ⚠️ Pushed to `master`
194
-
195
- - build(auto-it): update auto package ([@cannarocks](https://github.com/cannarocks))
196
-
197
- #### Authors: 1
198
-
199
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
200
-
201
- ---
202
-
203
- # v2.5.3 (Fri Mar 25 2022)
204
-
205
-
206
-
207
- ---
208
-
209
- # v2.5.3 (Fri Mar 25 2022)
210
-
211
-
212
-
213
- ---
214
-
215
- # v2.5.3 (Fri Mar 25 2022)
216
-
217
-
218
-
219
- ---
220
-
221
- # v2.5.3 (Fri Mar 25 2022)
222
-
223
-
224
-
225
- ---
226
-
227
- # v2.5.2 (Fri Mar 25 2022)
228
-
229
- #### ⚠️ Pushed to `master`
230
-
231
- - fix(nav): update header and sidebar sizes ([@cannarocks](https://github.com/cannarocks))
232
-
233
- #### Authors: 1
234
-
235
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
236
-
237
- ---
238
-
239
- # v2.5.1 (Thu Mar 24 2022)
240
-
241
- #### 🐛 Bug Fix
242
-
243
- - feat(counter): add Counter component [#25](https://github.com/AppQuality/unguess-design-system/pull/25) ([@cannarocks](https://github.com/cannarocks))
244
-
245
- #### ⚠️ Pushed to `master`
246
-
247
- - fix(navigation): export Chrome component ([@cannarocks](https://github.com/cannarocks))
248
- - build(chromatic): add delay to prevent blank snapshot ([@cannarocks](https://github.com/cannarocks))
249
-
250
- #### Authors: 1
251
-
252
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
253
-
254
- ---
255
-
256
- # v2.5.0 (Thu Mar 24 2022)
257
-
258
- #### 🚀 Enhancement
259
-
260
- - build(components): add component to index [#24](https://github.com/AppQuality/unguess-design-system/pull/24) ([@cannarocks](https://github.com/cannarocks))
261
- - feat(table): add Sort component variant [#16](https://github.com/AppQuality/unguess-design-system/pull/16) ([@antoninojob](https://github.com/antoninojob) [@cannarocks](https://github.com/cannarocks))
262
- - Cup 488 chrome navigation [#21](https://github.com/AppQuality/unguess-design-system/pull/21) ([@cannarocks](https://github.com/cannarocks))
263
-
264
- #### 🐛 Bug Fix
265
-
266
- - refactor(icons): move used icon inside prj assets folder and remove @zendesk/svg-icons as dep [#23](https://github.com/AppQuality/unguess-design-system/pull/23) ([@cannarocks](https://github.com/cannarocks))
267
- - Cup 501 table accordion [#19](https://github.com/AppQuality/unguess-design-system/pull/19) ([@antoninojob](https://github.com/antoninojob) [@marcbon](https://github.com/marcbon))
268
- - Feature/cup 473 modal [#20](https://github.com/AppQuality/unguess-design-system/pull/20) ([@cicababba](https://github.com/cicababba))
269
- - feat(sidebar): add test fashion icon [#22](https://github.com/AppQuality/unguess-design-system/pull/22) ([@cannarocks](https://github.com/cannarocks))
270
- - Fix storybook issues [#18](https://github.com/AppQuality/unguess-design-system/pull/18) ([@cannarocks](https://github.com/cannarocks))
271
-
272
- #### ⚠️ Pushed to `master`
273
-
274
- - fix(brandurl): fix BrandUrl domain ([@cannarocks](https://github.com/cannarocks))
275
- - fix(sidebar): add space from header even if there are no tokens ([@cannarocks](https://github.com/cannarocks))
276
- - fix(loginform): remove debug text ([@cannarocks](https://github.com/cannarocks))
277
-
278
- #### Authors: 4
279
-
280
- - Antonino ([@antoninojob](https://github.com/antoninojob))
281
- - cicababba ([@cicababba](https://github.com/cicababba))
282
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
283
- - Marco Bonomo ([@marcbon](https://github.com/marcbon))
284
-
285
- ---
286
-
287
- # v2.4.1 (Fri Mar 18 2022)
288
-
289
-
290
-
291
- ---
292
-
293
- # v2.4.0 (Fri Mar 18 2022)
294
-
295
- #### 🚀 Enhancement
296
-
297
- - add logo component + fix login-form component issues [#17](https://github.com/AppQuality/unguess-design-system/pull/17) ([@marcbon](https://github.com/marcbon))
298
-
299
- #### Authors: 1
300
-
301
- - Marco Bonomo ([@marcbon](https://github.com/marcbon))
302
-
303
- ---
304
-
305
- # v2.3.1 (Tue Mar 15 2022)
306
-
307
-
308
-
309
- ---
310
-
311
- # v2.2.0 (Tue Mar 15 2022)
312
-
313
- #### 🚀 Enhancement
314
-
315
- - feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
316
- - Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
317
- - Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
318
-
319
- #### 🐛 Bug Fix
320
-
321
- - fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
322
- - Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
323
- - feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
324
-
325
- #### ⚠️ Pushed to `master`
326
-
327
- - fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
328
- - feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
329
-
330
- #### Authors: 3
331
-
332
- - Antonino ([@antoninojob](https://github.com/antoninojob))
333
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
334
- - Marco Bonomo ([@marcbon](https://github.com/marcbon))
335
-
336
- ---
337
-
338
- # v2.2.0 (Tue Mar 15 2022)
339
-
340
- #### 🚀 Enhancement
341
-
342
- - feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
343
- - Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
344
- - Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
345
-
346
- #### 🐛 Bug Fix
347
-
348
- - fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
349
- - Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
350
- - feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
351
-
352
- #### ⚠️ Pushed to `master`
353
-
354
- - fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
355
- - feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
356
-
357
- #### Authors: 3
358
-
359
- - [@marcbon](https://github.com/marcbon)
360
- - Antonino ([@antoninojob](https://github.com/antoninojob))
361
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
362
-
363
- ---
364
-
365
- # v2.1.0 (Fri Mar 11 2022)
366
-
367
- #### 🚀 Enhancement
368
-
369
- - Cup 431 form [#8](https://github.com/AppQuality/unguess-design-system/pull/8) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
370
- - feat(multiselect): add multiselect and palette story [#9](https://github.com/AppQuality/unguess-design-system/pull/9) ([@cannarocks](https://github.com/cannarocks))
371
- - Cup 433 loaders [#7](https://github.com/AppQuality/unguess-design-system/pull/7) ([@marcbon](https://github.com/marcbon))
372
- - Cup 446 wells [#6](https://github.com/AppQuality/unguess-design-system/pull/6) ([@cannarocks](https://github.com/cannarocks))
373
- - add avatar component [#5](https://github.com/AppQuality/unguess-design-system/pull/5) ([@marcbon](https://github.com/marcbon))
374
- - Cup 424 accordion [#4](https://github.com/AppQuality/unguess-design-system/pull/4) ([@cannarocks](https://github.com/cannarocks))
375
- - Typography components [#3](https://github.com/AppQuality/unguess-design-system/pull/3) ([@cannarocks](https://github.com/cannarocks))
376
-
377
- #### ⚠️ Pushed to `master`
378
-
379
- - feat(storybook): add Unguess theme ([@cannarocks](https://github.com/cannarocks))
380
- - feat(intro): add intro page story ([@cannarocks](https://github.com/cannarocks))
381
- - fix(field): fix wrong import for form field component ([@cannarocks](https://github.com/cannarocks))
382
- - fix(field): restore form field component ([@cannarocks](https://github.com/cannarocks))
383
- - build(storybook): update Github action used to publish component build ([@cannarocks](https://github.com/cannarocks))
384
- - refactor(stories): move molecules under right group ([@cannarocks](https://github.com/cannarocks))
385
- - Merge branch 'CUP-430-dropdowns' ([@cannarocks](https://github.com/cannarocks))
386
- - fix(palette): remove useless import ([@cannarocks](https://github.com/cannarocks))
387
- - Create storybook.yml ([@cannarocks](https://github.com/cannarocks))
388
- - refactor(notifications): remove unused imports ([@cannarocks](https://github.com/cannarocks))
389
- - feat(notifications): add notification component ([@cannarocks](https://github.com/cannarocks))
390
- - fix avatars description ([@marcbon](https://github.com/marcbon))
391
-
392
- #### Authors: 2
393
-
394
- - [@marcbon](https://github.com/marcbon)
395
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
396
-
397
- ---
398
-
399
- # v2.1.0 (Fri Mar 11 2022)
400
-
401
- #### 🚀 Enhancement
402
-
403
- - Cup 431 form [#8](https://github.com/AppQuality/unguess-design-system/pull/8) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
404
- - feat(multiselect): add multiselect and palette story [#9](https://github.com/AppQuality/unguess-design-system/pull/9) ([@cannarocks](https://github.com/cannarocks))
405
- - Cup 433 loaders [#7](https://github.com/AppQuality/unguess-design-system/pull/7) ([@marcbon](https://github.com/marcbon))
406
- - Cup 446 wells [#6](https://github.com/AppQuality/unguess-design-system/pull/6) ([@cannarocks](https://github.com/cannarocks))
407
- - add avatar component [#5](https://github.com/AppQuality/unguess-design-system/pull/5) ([@marcbon](https://github.com/marcbon))
408
- - Cup 424 accordion [#4](https://github.com/AppQuality/unguess-design-system/pull/4) ([@cannarocks](https://github.com/cannarocks))
409
- - Typography components [#3](https://github.com/AppQuality/unguess-design-system/pull/3) ([@cannarocks](https://github.com/cannarocks))
410
-
411
- #### ⚠️ Pushed to `master`
412
-
413
- - feat(storybook): add Unguess theme ([@cannarocks](https://github.com/cannarocks))
414
- - feat(intro): add intro page story ([@cannarocks](https://github.com/cannarocks))
415
- - fix(field): fix wrong import for form field component ([@cannarocks](https://github.com/cannarocks))
416
- - fix(field): restore form field component ([@cannarocks](https://github.com/cannarocks))
417
- - build(storybook): update Github action used to publish component build ([@cannarocks](https://github.com/cannarocks))
418
- - refactor(stories): move molecules under right group ([@cannarocks](https://github.com/cannarocks))
419
- - Merge branch 'CUP-430-dropdowns' ([@cannarocks](https://github.com/cannarocks))
420
- - fix(palette): remove useless import ([@cannarocks](https://github.com/cannarocks))
421
- - Create storybook.yml ([@cannarocks](https://github.com/cannarocks))
422
- - refactor(notifications): remove unused imports ([@cannarocks](https://github.com/cannarocks))
423
- - feat(notifications): add notification component ([@cannarocks](https://github.com/cannarocks))
424
- - fix avatars description ([@marcbon](https://github.com/marcbon))
425
-
426
- #### Authors: 2
427
-
428
- - [@marcbon](https://github.com/marcbon)
429
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
430
-
431
- ---
432
-
433
- # v1.0.0 (Fri Mar 04 2022)
434
-
435
- #### 💥 Breaking Change
436
-
437
- - Cup 427 ds buttons [#2](https://github.com/AppQuality/unguess-design-system/pull/2) ([@cannarocks](https://github.com/cannarocks))
438
-
439
- #### ⚠️ Pushed to `master`
440
-
441
- - update .npmignore ([@cannarocks](https://github.com/cannarocks))
442
-
443
- #### Authors: 1
444
-
445
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
446
-
447
- ---
448
-
449
- # v1.0.0 (Fri Mar 04 2022)
450
-
451
- #### 💥 Breaking Change
452
-
453
- - Cup 427 ds buttons [#2](https://github.com/AppQuality/unguess-design-system/pull/2) ([@cannarocks](https://github.com/cannarocks))
454
-
455
- #### ⚠️ Pushed to `master`
456
-
457
- - update .npmignore ([@cannarocks](https://github.com/cannarocks))
458
-
459
- #### Authors: 1
460
-
461
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
462
-
463
- ---
464
-
465
- # v1.0.0 (Fri Mar 04 2022)
466
-
467
- #### 💥 Breaking Change
468
-
469
- - Cup 427 ds buttons [#2](https://github.com/AppQuality/unguess-design-system/pull/2) ([@cannarocks](https://github.com/cannarocks))
470
-
471
- #### ⚠️ Pushed to `master`
472
-
473
- - update .npmignore ([@cannarocks](https://github.com/cannarocks))
474
-
475
- #### Authors: 1
476
-
477
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
478
-
479
- ---
480
-
481
- # v0.3.5 (Thu Mar 03 2022)
482
-
483
- #### ⚠️ Pushed to `master`
484
-
485
- - fix wrong globalStyleExport ([@cannarocks](https://github.com/cannarocks))
486
-
487
- #### Authors: 1
488
-
489
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
490
-
491
- ---
492
-
493
- # v0.3.5 (Thu Mar 03 2022)
494
-
495
-
496
-
497
- ---
498
-
499
- # v0.3.4 (Thu Mar 03 2022)
500
-
501
- #### ⚠️ Pushed to `master`
502
-
503
- - export global style ([@cannarocks](https://github.com/cannarocks))
504
-
505
- #### Authors: 1
506
-
507
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
508
-
509
- ---
510
-
511
- # v0.3.3 (Thu Mar 03 2022)
512
-
513
- #### ⚠️ Pushed to `master`
514
-
515
- - update .npmignore ([@cannarocks](https://github.com/cannarocks))
516
-
517
- #### Authors: 1
518
-
519
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
520
-
521
- ---
522
-
523
- # v0.3.2 (Thu Mar 03 2022)
524
-
525
- #### ⚠️ Pushed to `master`
526
-
527
- - chore: add .npmignore ([@cannarocks](https://github.com/cannarocks))
528
-
529
- #### Authors: 1
530
-
531
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
532
-
533
- ---
534
-
535
- # v0.3.1 (Thu Mar 03 2022)
536
-
537
- #### ⚠️ Pushed to `master`
538
-
539
- - feat: change theme export ([@cannarocks](https://github.com/cannarocks))
540
-
541
- #### Authors: 1
542
-
543
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
544
-
545
- ---
546
-
547
- # v0.2.0 (Thu Mar 03 2022)
548
-
549
- #### 🚀 Enhancement
550
-
551
- - Cup 422 setup theme [#1](https://github.com/AppQuality/unguess-design-system/pull/1) ([@cannarocks](https://github.com/cannarocks))
552
-
553
- #### Authors: 1
554
-
555
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
556
-
557
- ---
558
-
559
- # v0.2.0 (Wed Mar 02 2022)
560
-
561
- #### 🚀 Enhancement
562
-
563
- - Cup 422 setup theme [#1](https://github.com/AppQuality/unguess-design-system/pull/1) ([@cannarocks](https://github.com/cannarocks))
564
-
565
- #### Authors: 1
566
-
567
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
568
-
569
- ---
570
-
571
- # v0.1.2 (Tue Mar 01 2022)
572
-
573
- #### ⚠️ Pushed to `master`
574
-
575
- - chore: move @zendeskgarden/react-theming to dependency ([@cannarocks](https://github.com/cannarocks))
576
-
577
- #### Authors: 1
578
-
579
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
580
-
581
- ---
582
-
583
- # v0.1.1 (Tue Mar 01 2022)
584
-
585
- #### ⚠️ Pushed to `master`
586
-
587
- - update .gitignore ([@cannarocks](https://github.com/cannarocks))
588
- - update package.json ([@cannarocks](https://github.com/cannarocks))
589
- - Initial commit ([@cannarocks](https://github.com/cannarocks))
590
- - Initialize project using Create React App ([@cannarocks](https://github.com/cannarocks))
591
-
592
- #### Authors: 1
593
-
594
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
595
-
596
- ---
597
-
598
- # v0.1.1 (Tue Mar 01 2022)
599
-
600
- #### ⚠️ Pushed to `master`
601
-
602
- - update package.json ([@cannarocks](https://github.com/cannarocks))
603
- - Initial commit ([@cannarocks](https://github.com/cannarocks))
604
- - Initialize project using Create React App ([@cannarocks](https://github.com/cannarocks))
605
-
606
- #### Authors: 1
607
-
608
- - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
90
+ # v2.8.5 (Wed Apr 13 2022)
91
+
92
+ #### ⚠️ Pushed to `master`
93
+
94
+ - minor fixes (cannarozzoluca@live.it)
95
+
96
+ #### Authors: 1
97
+
98
+ - Luca Cannarozzo (cannarozzoluca@live.it)
99
+
100
+ ---
101
+
102
+ # v2.8.4 (Tue Apr 12 2022)
103
+
104
+ #### ⚠️ Pushed to `master`
105
+
106
+ - fix(profilemodal): add translatable props ([@cannarocks](https://github.com/cannarocks))
107
+
108
+ #### Authors: 1
109
+
110
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
111
+
112
+ ---
113
+
114
+ # v2.8.3 (Tue Apr 12 2022)
115
+
116
+ #### ⚠️ Pushed to `master`
117
+
118
+ - feat(changelog): add any ReactNode ad changelog item (cannarozzoluca@live.it)
119
+
120
+ #### Authors: 1
121
+
122
+ - Luca Cannarozzo (cannarozzoluca@live.it)
123
+
124
+ ---
125
+
126
+ # v2.8.2 (Tue Apr 12 2022)
127
+
128
+
129
+
130
+ ---
131
+
132
+ # v2.8.1 (Tue Apr 12 2022)
133
+
134
+ #### 🐛 Bug Fix
135
+
136
+ - fix(sidebar): add navToggle callback [#32](https://github.com/AppQuality/unguess-design-system/pull/32) ([@cannarocks](https://github.com/cannarocks))
137
+
138
+ #### Authors: 1
139
+
140
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
141
+
142
+ ---
143
+
144
+ # v2.8.0 (Tue Apr 12 2022)
145
+
146
+ #### 🚀 Enhancement
147
+
148
+ - Fix/components for release [#31](https://github.com/AppQuality/unguess-design-system/pull/31) ([@marcbon](https://github.com/marcbon))
149
+
150
+ #### Authors: 1
151
+
152
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
153
+
154
+ ---
155
+
156
+ # v2.7.1 (Fri Apr 08 2022)
157
+
158
+
159
+
160
+ ---
161
+
162
+ # v2.7.0 (Fri Apr 08 2022)
163
+
164
+ #### 🚀 Enhancement
165
+
166
+ - fix(campaign cards): add card props [#29](https://github.com/AppQuality/unguess-design-system/pull/29) ([@marcbon](https://github.com/marcbon))
167
+ - Cup 523 profile modal [#26](https://github.com/AppQuality/unguess-design-system/pull/26) ([@antoninojob](https://github.com/antoninojob) [@cannarocks](https://github.com/cannarocks))
168
+ - Refactor/table accordion [#30](https://github.com/AppQuality/unguess-design-system/pull/30) ([@antoninojob](https://github.com/antoninojob) [@cannarocks](https://github.com/cannarocks))
169
+
170
+ #### ⚠️ Pushed to `master`
171
+
172
+ - fix(profilemodal): minor spaces fixes on modal ([@cannarocks](https://github.com/cannarocks))
173
+ - feat(navigation): add rotation to profile header chevron based on modal ([@cannarocks](https://github.com/cannarocks))
174
+ - Update storybook.yml ([@cannarocks](https://github.com/cannarocks))
175
+
176
+ #### Authors: 3
177
+
178
+ - Antonino ([@antoninojob](https://github.com/antoninojob))
179
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
180
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
181
+
182
+ ---
183
+
184
+ # v2.6.2 (Thu Mar 31 2022)
185
+
186
+
187
+
188
+ ---
189
+
190
+ # v2.6.1 (Thu Mar 31 2022)
191
+
192
+ #### ⚠️ Pushed to `master`
193
+
194
+ - fix(login): add generic error message ([@cannarocks](https://github.com/cannarocks))
195
+
196
+ #### Authors: 1
197
+
198
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
199
+
200
+ ---
201
+
202
+ # v2.6.0 (Tue Mar 29 2022)
203
+
204
+ #### 🚀 Enhancement
205
+
206
+ - Feature/cup 500 campaign card [#27](https://github.com/AppQuality/unguess-design-system/pull/27) ([@cicababba](https://github.com/cicababba) [@marcbon](https://github.com/marcbon))
207
+
208
+ #### 🐛 Bug Fix
209
+
210
+ - Fix/campaign cards [#28](https://github.com/AppQuality/unguess-design-system/pull/28) ([@marcbon](https://github.com/marcbon))
211
+
212
+ #### ⚠️ Pushed to `master`
213
+
214
+ - fix(campaigncard): add html props to campaign card ([@cannarocks](https://github.com/cannarocks))
215
+ - fix(scroll): hide <Main /> scroll ([@cannarocks](https://github.com/cannarocks))
216
+ - fix(counter): fix error on zero counter values ([@cannarocks](https://github.com/cannarocks))
217
+
218
+ #### Authors: 3
219
+
220
+ - cicababba ([@cicababba](https://github.com/cicababba))
221
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
222
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
223
+
224
+ ---
225
+
226
+ # v2.5.7 (Mon Mar 28 2022)
227
+
228
+
229
+
230
+ ---
231
+
232
+ # v2.5.6 (Mon Mar 28 2022)
233
+
234
+ #### ⚠️ Pushed to `master`
235
+
236
+ - fix(spaces): fix spaces between main, body and page title ([@cannarocks](https://github.com/cannarocks))
237
+
238
+ #### Authors: 1
239
+
240
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
241
+
242
+ ---
243
+
244
+ # v2.5.5 (Mon Mar 28 2022)
245
+
246
+ #### ⚠️ Pushed to `master`
247
+
248
+ - fix(main): add spaces as described by dressBerry ([@cannarocks](https://github.com/cannarocks))
249
+
250
+ #### Authors: 1
251
+
252
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
253
+
254
+ ---
255
+
256
+ # v2.5.3 (Fri Mar 25 2022)
257
+
258
+ #### ⚠️ Pushed to `master`
259
+
260
+ - build(auto-it): update auto package ([@cannarocks](https://github.com/cannarocks))
261
+
262
+ #### Authors: 1
263
+
264
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
265
+
266
+ ---
267
+
268
+ # v2.5.3 (Fri Mar 25 2022)
269
+
270
+
271
+
272
+ ---
273
+
274
+ # v2.5.3 (Fri Mar 25 2022)
275
+
276
+
277
+
278
+ ---
279
+
280
+ # v2.5.3 (Fri Mar 25 2022)
281
+
282
+
283
+
284
+ ---
285
+
286
+ # v2.5.3 (Fri Mar 25 2022)
287
+
288
+
289
+
290
+ ---
291
+
292
+ # v2.5.2 (Fri Mar 25 2022)
293
+
294
+ #### ⚠️ Pushed to `master`
295
+
296
+ - fix(nav): update header and sidebar sizes ([@cannarocks](https://github.com/cannarocks))
297
+
298
+ #### Authors: 1
299
+
300
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
301
+
302
+ ---
303
+
304
+ # v2.5.1 (Thu Mar 24 2022)
305
+
306
+ #### 🐛 Bug Fix
307
+
308
+ - feat(counter): add Counter component [#25](https://github.com/AppQuality/unguess-design-system/pull/25) ([@cannarocks](https://github.com/cannarocks))
309
+
310
+ #### ⚠️ Pushed to `master`
311
+
312
+ - fix(navigation): export Chrome component ([@cannarocks](https://github.com/cannarocks))
313
+ - build(chromatic): add delay to prevent blank snapshot ([@cannarocks](https://github.com/cannarocks))
314
+
315
+ #### Authors: 1
316
+
317
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
318
+
319
+ ---
320
+
321
+ # v2.5.0 (Thu Mar 24 2022)
322
+
323
+ #### 🚀 Enhancement
324
+
325
+ - build(components): add component to index [#24](https://github.com/AppQuality/unguess-design-system/pull/24) ([@cannarocks](https://github.com/cannarocks))
326
+ - feat(table): add Sort component variant [#16](https://github.com/AppQuality/unguess-design-system/pull/16) ([@antoninojob](https://github.com/antoninojob) [@cannarocks](https://github.com/cannarocks))
327
+ - Cup 488 chrome navigation [#21](https://github.com/AppQuality/unguess-design-system/pull/21) ([@cannarocks](https://github.com/cannarocks))
328
+
329
+ #### 🐛 Bug Fix
330
+
331
+ - refactor(icons): move used icon inside prj assets folder and remove @zendesk/svg-icons as dep [#23](https://github.com/AppQuality/unguess-design-system/pull/23) ([@cannarocks](https://github.com/cannarocks))
332
+ - Cup 501 table accordion [#19](https://github.com/AppQuality/unguess-design-system/pull/19) ([@antoninojob](https://github.com/antoninojob) [@marcbon](https://github.com/marcbon))
333
+ - Feature/cup 473 modal [#20](https://github.com/AppQuality/unguess-design-system/pull/20) ([@cicababba](https://github.com/cicababba))
334
+ - feat(sidebar): add test fashion icon [#22](https://github.com/AppQuality/unguess-design-system/pull/22) ([@cannarocks](https://github.com/cannarocks))
335
+ - Fix storybook issues [#18](https://github.com/AppQuality/unguess-design-system/pull/18) ([@cannarocks](https://github.com/cannarocks))
336
+
337
+ #### ⚠️ Pushed to `master`
338
+
339
+ - fix(brandurl): fix BrandUrl domain ([@cannarocks](https://github.com/cannarocks))
340
+ - fix(sidebar): add space from header even if there are no tokens ([@cannarocks](https://github.com/cannarocks))
341
+ - fix(loginform): remove debug text ([@cannarocks](https://github.com/cannarocks))
342
+
343
+ #### Authors: 4
344
+
345
+ - Antonino ([@antoninojob](https://github.com/antoninojob))
346
+ - cicababba ([@cicababba](https://github.com/cicababba))
347
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
348
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
349
+
350
+ ---
351
+
352
+ # v2.4.1 (Fri Mar 18 2022)
353
+
354
+
355
+
356
+ ---
357
+
358
+ # v2.4.0 (Fri Mar 18 2022)
359
+
360
+ #### 🚀 Enhancement
361
+
362
+ - add logo component + fix login-form component issues [#17](https://github.com/AppQuality/unguess-design-system/pull/17) ([@marcbon](https://github.com/marcbon))
363
+
364
+ #### Authors: 1
365
+
366
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
367
+
368
+ ---
369
+
370
+ # v2.3.1 (Tue Mar 15 2022)
371
+
372
+
373
+
374
+ ---
375
+
376
+ # v2.2.0 (Tue Mar 15 2022)
377
+
378
+ #### 🚀 Enhancement
379
+
380
+ - feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
381
+ - Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
382
+ - Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
383
+
384
+ #### 🐛 Bug Fix
385
+
386
+ - fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
387
+ - Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
388
+ - feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
389
+
390
+ #### ⚠️ Pushed to `master`
391
+
392
+ - fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
393
+ - feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
394
+
395
+ #### Authors: 3
396
+
397
+ - Antonino ([@antoninojob](https://github.com/antoninojob))
398
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
399
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
400
+
401
+ ---
402
+
403
+ # v2.2.0 (Tue Mar 15 2022)
404
+
405
+ #### 🚀 Enhancement
406
+
407
+ - feat(tiles): add tiles component [#12](https://github.com/AppQuality/unguess-design-system/pull/12) ([@antoninojob](https://github.com/antoninojob))
408
+ - Login form [#15](https://github.com/AppQuality/unguess-design-system/pull/15) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
409
+ - Feat/improve storybook experience [#14](https://github.com/AppQuality/unguess-design-system/pull/14) ([@cannarocks](https://github.com/cannarocks))
410
+
411
+ #### 🐛 Bug Fix
412
+
413
+ - fix(table): changed types definition for extras elements [#13](https://github.com/AppQuality/unguess-design-system/pull/13) ([@antoninojob](https://github.com/antoninojob))
414
+ - Cup 438 table [#10](https://github.com/AppQuality/unguess-design-system/pull/10) ([@antoninojob](https://github.com/antoninojob))
415
+ - feat(tag): add tag component [#11](https://github.com/AppQuality/unguess-design-system/pull/11) ([@antoninojob](https://github.com/antoninojob))
416
+
417
+ #### ⚠️ Pushed to `master`
418
+
419
+ - fix(export): prevent naming conflicts ([@cannarocks](https://github.com/cannarocks))
420
+ - feat(loginform): add basic Login Form ([@cannarocks](https://github.com/cannarocks))
421
+
422
+ #### Authors: 3
423
+
424
+ - [@marcbon](https://github.com/marcbon)
425
+ - Antonino ([@antoninojob](https://github.com/antoninojob))
426
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
427
+
428
+ ---
429
+
430
+ # v2.1.0 (Fri Mar 11 2022)
431
+
432
+ #### 🚀 Enhancement
433
+
434
+ - Cup 431 form [#8](https://github.com/AppQuality/unguess-design-system/pull/8) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
435
+ - feat(multiselect): add multiselect and palette story [#9](https://github.com/AppQuality/unguess-design-system/pull/9) ([@cannarocks](https://github.com/cannarocks))
436
+ - Cup 433 loaders [#7](https://github.com/AppQuality/unguess-design-system/pull/7) ([@marcbon](https://github.com/marcbon))
437
+ - Cup 446 wells [#6](https://github.com/AppQuality/unguess-design-system/pull/6) ([@cannarocks](https://github.com/cannarocks))
438
+ - add avatar component [#5](https://github.com/AppQuality/unguess-design-system/pull/5) ([@marcbon](https://github.com/marcbon))
439
+ - Cup 424 accordion [#4](https://github.com/AppQuality/unguess-design-system/pull/4) ([@cannarocks](https://github.com/cannarocks))
440
+ - Typography components [#3](https://github.com/AppQuality/unguess-design-system/pull/3) ([@cannarocks](https://github.com/cannarocks))
441
+
442
+ #### ⚠️ Pushed to `master`
443
+
444
+ - feat(storybook): add Unguess theme ([@cannarocks](https://github.com/cannarocks))
445
+ - feat(intro): add intro page story ([@cannarocks](https://github.com/cannarocks))
446
+ - fix(field): fix wrong import for form field component ([@cannarocks](https://github.com/cannarocks))
447
+ - fix(field): restore form field component ([@cannarocks](https://github.com/cannarocks))
448
+ - build(storybook): update Github action used to publish component build ([@cannarocks](https://github.com/cannarocks))
449
+ - refactor(stories): move molecules under right group ([@cannarocks](https://github.com/cannarocks))
450
+ - Merge branch 'CUP-430-dropdowns' ([@cannarocks](https://github.com/cannarocks))
451
+ - fix(palette): remove useless import ([@cannarocks](https://github.com/cannarocks))
452
+ - Create storybook.yml ([@cannarocks](https://github.com/cannarocks))
453
+ - refactor(notifications): remove unused imports ([@cannarocks](https://github.com/cannarocks))
454
+ - feat(notifications): add notification component ([@cannarocks](https://github.com/cannarocks))
455
+ - fix avatars description ([@marcbon](https://github.com/marcbon))
456
+
457
+ #### Authors: 2
458
+
459
+ - [@marcbon](https://github.com/marcbon)
460
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
461
+
462
+ ---
463
+
464
+ # v2.1.0 (Fri Mar 11 2022)
465
+
466
+ #### 🚀 Enhancement
467
+
468
+ - Cup 431 form [#8](https://github.com/AppQuality/unguess-design-system/pull/8) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
469
+ - feat(multiselect): add multiselect and palette story [#9](https://github.com/AppQuality/unguess-design-system/pull/9) ([@cannarocks](https://github.com/cannarocks))
470
+ - Cup 433 loaders [#7](https://github.com/AppQuality/unguess-design-system/pull/7) ([@marcbon](https://github.com/marcbon))
471
+ - Cup 446 wells [#6](https://github.com/AppQuality/unguess-design-system/pull/6) ([@cannarocks](https://github.com/cannarocks))
472
+ - add avatar component [#5](https://github.com/AppQuality/unguess-design-system/pull/5) ([@marcbon](https://github.com/marcbon))
473
+ - Cup 424 accordion [#4](https://github.com/AppQuality/unguess-design-system/pull/4) ([@cannarocks](https://github.com/cannarocks))
474
+ - Typography components [#3](https://github.com/AppQuality/unguess-design-system/pull/3) ([@cannarocks](https://github.com/cannarocks))
475
+
476
+ #### ⚠️ Pushed to `master`
477
+
478
+ - feat(storybook): add Unguess theme ([@cannarocks](https://github.com/cannarocks))
479
+ - feat(intro): add intro page story ([@cannarocks](https://github.com/cannarocks))
480
+ - fix(field): fix wrong import for form field component ([@cannarocks](https://github.com/cannarocks))
481
+ - fix(field): restore form field component ([@cannarocks](https://github.com/cannarocks))
482
+ - build(storybook): update Github action used to publish component build ([@cannarocks](https://github.com/cannarocks))
483
+ - refactor(stories): move molecules under right group ([@cannarocks](https://github.com/cannarocks))
484
+ - Merge branch 'CUP-430-dropdowns' ([@cannarocks](https://github.com/cannarocks))
485
+ - fix(palette): remove useless import ([@cannarocks](https://github.com/cannarocks))
486
+ - Create storybook.yml ([@cannarocks](https://github.com/cannarocks))
487
+ - refactor(notifications): remove unused imports ([@cannarocks](https://github.com/cannarocks))
488
+ - feat(notifications): add notification component ([@cannarocks](https://github.com/cannarocks))
489
+ - fix avatars description ([@marcbon](https://github.com/marcbon))
490
+
491
+ #### Authors: 2
492
+
493
+ - [@marcbon](https://github.com/marcbon)
494
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
495
+
496
+ ---
497
+
498
+ # v1.0.0 (Fri Mar 04 2022)
499
+
500
+ #### 💥 Breaking Change
501
+
502
+ - Cup 427 ds buttons [#2](https://github.com/AppQuality/unguess-design-system/pull/2) ([@cannarocks](https://github.com/cannarocks))
503
+
504
+ #### ⚠️ Pushed to `master`
505
+
506
+ - update .npmignore ([@cannarocks](https://github.com/cannarocks))
507
+
508
+ #### Authors: 1
509
+
510
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
511
+
512
+ ---
513
+
514
+ # v1.0.0 (Fri Mar 04 2022)
515
+
516
+ #### 💥 Breaking Change
517
+
518
+ - Cup 427 ds buttons [#2](https://github.com/AppQuality/unguess-design-system/pull/2) ([@cannarocks](https://github.com/cannarocks))
519
+
520
+ #### ⚠️ Pushed to `master`
521
+
522
+ - update .npmignore ([@cannarocks](https://github.com/cannarocks))
523
+
524
+ #### Authors: 1
525
+
526
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
527
+
528
+ ---
529
+
530
+ # v1.0.0 (Fri Mar 04 2022)
531
+
532
+ #### 💥 Breaking Change
533
+
534
+ - Cup 427 ds buttons [#2](https://github.com/AppQuality/unguess-design-system/pull/2) ([@cannarocks](https://github.com/cannarocks))
535
+
536
+ #### ⚠️ Pushed to `master`
537
+
538
+ - update .npmignore ([@cannarocks](https://github.com/cannarocks))
539
+
540
+ #### Authors: 1
541
+
542
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
543
+
544
+ ---
545
+
546
+ # v0.3.5 (Thu Mar 03 2022)
547
+
548
+ #### ⚠️ Pushed to `master`
549
+
550
+ - fix wrong globalStyleExport ([@cannarocks](https://github.com/cannarocks))
551
+
552
+ #### Authors: 1
553
+
554
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
555
+
556
+ ---
557
+
558
+ # v0.3.5 (Thu Mar 03 2022)
559
+
560
+
561
+
562
+ ---
563
+
564
+ # v0.3.4 (Thu Mar 03 2022)
565
+
566
+ #### ⚠️ Pushed to `master`
567
+
568
+ - export global style ([@cannarocks](https://github.com/cannarocks))
569
+
570
+ #### Authors: 1
571
+
572
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
573
+
574
+ ---
575
+
576
+ # v0.3.3 (Thu Mar 03 2022)
577
+
578
+ #### ⚠️ Pushed to `master`
579
+
580
+ - update .npmignore ([@cannarocks](https://github.com/cannarocks))
581
+
582
+ #### Authors: 1
583
+
584
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
585
+
586
+ ---
587
+
588
+ # v0.3.2 (Thu Mar 03 2022)
589
+
590
+ #### ⚠️ Pushed to `master`
591
+
592
+ - chore: add .npmignore ([@cannarocks](https://github.com/cannarocks))
593
+
594
+ #### Authors: 1
595
+
596
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
597
+
598
+ ---
599
+
600
+ # v0.3.1 (Thu Mar 03 2022)
601
+
602
+ #### ⚠️ Pushed to `master`
603
+
604
+ - feat: change theme export ([@cannarocks](https://github.com/cannarocks))
605
+
606
+ #### Authors: 1
607
+
608
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
609
+
610
+ ---
611
+
612
+ # v0.2.0 (Thu Mar 03 2022)
613
+
614
+ #### 🚀 Enhancement
615
+
616
+ - Cup 422 setup theme [#1](https://github.com/AppQuality/unguess-design-system/pull/1) ([@cannarocks](https://github.com/cannarocks))
617
+
618
+ #### Authors: 1
619
+
620
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
621
+
622
+ ---
623
+
624
+ # v0.2.0 (Wed Mar 02 2022)
625
+
626
+ #### 🚀 Enhancement
627
+
628
+ - Cup 422 setup theme [#1](https://github.com/AppQuality/unguess-design-system/pull/1) ([@cannarocks](https://github.com/cannarocks))
629
+
630
+ #### Authors: 1
631
+
632
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
633
+
634
+ ---
635
+
636
+ # v0.1.2 (Tue Mar 01 2022)
637
+
638
+ #### ⚠️ Pushed to `master`
639
+
640
+ - chore: move @zendeskgarden/react-theming to dependency ([@cannarocks](https://github.com/cannarocks))
641
+
642
+ #### Authors: 1
643
+
644
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
645
+
646
+ ---
647
+
648
+ # v0.1.1 (Tue Mar 01 2022)
649
+
650
+ #### ⚠️ Pushed to `master`
651
+
652
+ - update .gitignore ([@cannarocks](https://github.com/cannarocks))
653
+ - update package.json ([@cannarocks](https://github.com/cannarocks))
654
+ - Initial commit ([@cannarocks](https://github.com/cannarocks))
655
+ - Initialize project using Create React App ([@cannarocks](https://github.com/cannarocks))
656
+
657
+ #### Authors: 1
658
+
659
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
660
+
661
+ ---
662
+
663
+ # v0.1.1 (Tue Mar 01 2022)
664
+
665
+ #### ⚠️ Pushed to `master`
666
+
667
+ - update package.json ([@cannarocks](https://github.com/cannarocks))
668
+ - Initial commit ([@cannarocks](https://github.com/cannarocks))
669
+ - Initialize project using Create React App ([@cannarocks](https://github.com/cannarocks))
670
+
671
+ #### Authors: 1
672
+
673
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))