@innovaccer/design-system 2.13.4-8 → 2.13.4

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 (102) hide show
  1. package/CHANGELOG.md +775 -424
  2. package/core/components/atoms/radio/Radio.tsx +1 -0
  3. package/core/components/atoms/radio/__stories__/Alignment.story.jsx +7 -8
  4. package/core/components/atoms/radio/__tests__/__snapshots__/Radio.test.tsx.snap +4 -0
  5. package/core/components/css-utilities/Animation/Animation.story.tsx +8 -0
  6. package/core/components/molecules/dropzone/Dropzone.tsx +3 -0
  7. package/core/components/molecules/dropzone/__stories__/index.story.jsx +2 -2
  8. package/core/components/molecules/dropzone/__stories__/variants/Format.story.jsx +2 -2
  9. package/core/components/molecules/dropzone/__stories__/variants/Size.story.jsx +6 -6
  10. package/core/components/molecules/dropzone/__tests__/__snapshots__/Dropzone.test.tsx.snap +10 -10
  11. package/core/components/molecules/stepper/Step.tsx +1 -0
  12. package/core/components/molecules/stepper/__stories__/StepperWithAnimation.story.jsx +789 -0
  13. package/core/components/molecules/stepper/__tests__/__snapshots__/Stepper.test.tsx.snap +4 -4
  14. package/core/components/molecules/tabs/Tabs.tsx +26 -9
  15. package/core/components/molecules/tabs/__tests__/__snapshots__/Tabs.test.tsx.snap +8 -8
  16. package/core/components/organisms/choiceList/__tests__/__snapshots__/ChoiceList.test.tsx.snap +32 -0
  17. package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +1 -0
  18. package/css/dist/index.css +175 -14
  19. package/css/dist/index.css.map +1 -1
  20. package/css/src/components/backdrop.css +2 -2
  21. package/css/src/components/dropzone.css +40 -2
  22. package/css/src/components/fileList.css +1 -1
  23. package/css/src/components/radio.css +12 -3
  24. package/css/src/components/stepper.css +9 -0
  25. package/css/src/components/tabs.css +16 -3
  26. package/css/src/core/animation.css +34 -0
  27. package/dist/index.esm.js +26 -19
  28. package/dist/index.js +38 -27
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.umd.js +1 -1
  31. package/dist/index.umd.js.br +0 -0
  32. package/dist/index.umd.js.gz +0 -0
  33. package/docs/cypress/e2e/content.cy.js +0 -1
  34. package/docs/cypress/e2e/introduction.cy.js +31 -0
  35. package/docs/cypress/e2e/patterns.cy.js +48 -0
  36. package/docs/cypress/support/commands.ts +93 -25
  37. package/docs/cypress/support/index.d.ts +4 -0
  38. package/docs/cypress.config.js +1 -0
  39. package/docs/src/components/Layout.js +3 -3
  40. package/docs/src/components/LeftNav/LeftNav.js +1 -1
  41. package/docs/src/components/MDXComponents.js +1 -0
  42. package/docs/src/components/PropsTable/index.js +2 -2
  43. package/docs/src/data/components/Overview.js +1 -1
  44. package/docs/src/pages/components/avatar/usage.mdx +5 -5
  45. package/docs/src/pages/components/badges/usage.mdx +2 -2
  46. package/docs/src/pages/components/breadcrumbs/usage.mdx +1 -1
  47. package/docs/src/pages/components/button/images/buttons-structure.png +0 -0
  48. package/docs/src/pages/components/button/usage.mdx +2 -1
  49. package/docs/src/pages/components/calendar/usage.mdx +1 -1
  50. package/docs/src/pages/components/card/usage.mdx +0 -2
  51. package/docs/src/pages/components/checkbox/usage.mdx +1 -1
  52. package/docs/src/pages/components/chips/usage.mdx +1 -1
  53. package/docs/src/pages/components/helpText/usage.mdx +2 -2
  54. package/docs/src/pages/components/icons/usage.mdx +1 -1
  55. package/docs/src/pages/components/inlineEditableFields/usage.mdx +3 -3
  56. package/docs/src/pages/components/inputs/images/input-structure.png +0 -0
  57. package/docs/src/pages/components/inputs/usage.mdx +1 -1
  58. package/docs/src/pages/components/links/images/links-states.png +0 -0
  59. package/docs/src/pages/components/links/images/links-structure.png +0 -0
  60. package/docs/src/pages/components/links/usage.mdx +40 -17
  61. package/docs/src/pages/components/message/images/inline-structure.png +0 -0
  62. package/docs/src/pages/components/message/images/message-structure.png +0 -0
  63. package/docs/src/pages/components/message/usage.mdx +57 -4
  64. package/docs/src/pages/components/metaList/images/metalist-structure.png +0 -0
  65. package/docs/src/pages/components/metaList/usage.mdx +32 -4
  66. package/docs/src/pages/components/modals/usage.mdx +76 -38
  67. package/docs/src/pages/components/navigationHorizontal/images/horizontalnav-structure.png +0 -0
  68. package/docs/src/pages/components/navigationHorizontal/usage.mdx +47 -8
  69. package/docs/src/pages/components/navigationVertical/images/verticalnav-structure.png +0 -0
  70. package/docs/src/pages/components/navigationVertical/usage.mdx +58 -21
  71. package/docs/src/pages/components/pageHeaders/usage.mdx +10 -1
  72. package/docs/src/pages/components/pagination/images/pagination-structure.png +0 -0
  73. package/docs/src/pages/components/pagination/usage.mdx +25 -1
  74. package/docs/src/pages/components/pills/images/pill-structure.png +0 -0
  75. package/docs/src/pages/components/pills/usage.mdx +47 -24
  76. package/docs/src/pages/components/popover/usage.mdx +33 -11
  77. package/docs/src/pages/components/progressIndicators/images/progressbar-structure.png +0 -0
  78. package/docs/src/pages/components/progressIndicators/images/progressring-structure.png +0 -0
  79. package/docs/src/pages/components/progressIndicators/images/spinner-structure.png +0 -0
  80. package/docs/src/pages/components/progressIndicators/usage.mdx +97 -3
  81. package/docs/src/pages/components/radio/images/radio-structure.png +0 -0
  82. package/docs/src/pages/components/radio/usage.mdx +34 -8
  83. package/docs/src/pages/components/richTextEditor/usage.mdx +32 -4
  84. package/docs/src/pages/components/sidesheet/usage.mdx +51 -36
  85. package/docs/src/pages/components/slider/images/slider-structure.png +0 -0
  86. package/docs/src/pages/components/slider/usage.mdx +24 -1
  87. package/docs/src/pages/components/statusHint/images/statushint-structure.png +0 -0
  88. package/docs/src/pages/components/statusHint/usage.mdx +28 -1
  89. package/docs/src/pages/components/steppers/images/stepper-structure.png +0 -0
  90. package/docs/src/pages/components/steppers/usage.mdx +40 -23
  91. package/docs/src/pages/components/switch/images/switch-structure.png +0 -0
  92. package/docs/src/pages/components/switch/usage.mdx +37 -3
  93. package/docs/src/pages/components/table/usage.mdx +3 -3
  94. package/docs/src/pages/components/tabs/images/tabs-structure.png +0 -0
  95. package/docs/src/pages/components/tabs/usage.mdx +46 -14
  96. package/docs/src/pages/components/timePicker/usage.mdx +1 -1
  97. package/docs/src/pages/components/toast/images/toast-structure.png +0 -0
  98. package/docs/src/pages/components/toast/usage.mdx +29 -11
  99. package/docs/src/pages/components/tooltip/images/tooltip-structure.png +0 -0
  100. package/docs/src/pages/components/tooltip/usage.mdx +31 -12
  101. package/package.json +1 -1
  102. package/docs/src/pages/components/button/images/button-structure.png +0 -0
package/CHANGELOG.md CHANGED
@@ -1,1094 +1,1445 @@
1
+ ## 2.13.4 (2022-11-08)
1
2
 
2
- ## 2.13.1 (2022-06-24)
3
+ ### Highlights
4
+
5
+ NA
6
+
7
+ ### Breaking changes
8
+
9
+ NA
10
+
11
+ ### Migration guide
12
+
13
+ NA
14
+
15
+ ### Deprecations
16
+
17
+ NA
18
+
19
+ ### Features
20
+
21
+ - feat(Radio): radio input states (9a35fb28)
22
+ - feat(timepicker): add timepicker component with fuzzy search (9cf46dd8)
23
+ - feat(dropzone): add support for csv, xlss & xls, file (2d5826a4)
24
+ - feat(horizontalNav): add transition in horizontal navigation (8463c621)
25
+ - feat(inlineMessage): add size prop in inline message component (22f73895)
26
+ - feat(progressIndicator): add transition in progress bar and ring (b80cbfd8)
27
+ - feat(link): update link state (322150d2)
28
+ - feat(text): add color support in text component (d5a984a4)
29
+
30
+ ### Fixes
31
+
32
+ - fix(radio): state related issues (ae618687)
33
+ - fix(tabs): update states for tabs component (7cc5d5ea)
34
+ - fix(fileList): use transition token in css files (a79aab09)
35
+ - fix(backdrop): use transition token in css files (b084fc5a)
36
+ - fix(story): replace style with className (1ea50d39)
37
+ - fix(daterangepicker): add spacing in withinput story (7742b09e)
38
+ - fix(dropdown): option list default state (0c396270)
39
+ - fix(breadcrumb): replace style tag with classname in stories (82f030c7)
40
+ - fix(verticalNav): replace style tag with classname in stories (e681256d)
41
+ - fix(verticalNav): update state for vertical nav component (b88842d8)
42
+ - fix(caption): replace caption component with helptext (d1b85b4c)
43
+ - fix: tsx files linter (22ca254b)
44
+ - fix(verticalNav): pills color (6beadf3c)
45
+ - fix(chip): update chip state (db27e9ab)
46
+ - fix(dropdown): update state (501f81e6)
47
+ - fix(input): style changes in input states (80a6bf8e)
48
+ - fix(button): update button states (94e5af0c)
49
+ - fix(table): increase height of table in story (5b172710)
50
+ - fix(horizontalNav): update state for horizontal nav component (2a4915f3)
51
+ - fix(pageheader): pageheader spacing and badge shrink (a9f8acdd)
52
+ - fix(calendar): story break on Show code (48b8f654)
53
+ - fix(metricInput): suffix spacing when enabled (97524726)
54
+ - fix(DropdownList): react hooks error with checkbox (79d38d53)
55
+ - fix(button): icon button group story tooltip issue (2703f5b0)
56
+ - fix(breadcrumb): update state of icon button (eca7beb3)
57
+ - fix(table): fix drag and drop of pinned column (df7a262d)
58
+ - fix(metricInput): update states for actions (183113e0)
59
+ - fix(dropzone): update icons to svg (60d722c9)
60
+ - fix(dropdown): pointer on disabled option (013b006e)
61
+ - fix(DropdownList): selection behaviour outside label (18960408)
62
+ - fix(datepicker): fast typing input issue (dd5aa1ab)
63
+ - fix(dropzone): add support for audio-video file types (af9dda9a)
64
+ - fix(dropdown): invisible subtext in menu dropdown after click (9c8b4839)
65
+ - fix(verificationCodeInput): add type prop for input component (c60759f1)
66
+ - fix(materialIcons): update material icon fonts file (4a312228)
67
+ - fix(toast): change warning icon (54764a45)
68
+ - fix(table): fix border and spacing for nested rows in table (6909cef4)
69
+ - fix(dropdown): fix typescript warning in dropdown test file (4a778925)
70
+ - fix(Table): cell overflow on cell type status hint (66d3ad93)
71
+ - fix(datepicker): update children as optional prop (10897cab)
72
+ - fix(verticalNav): wrap menuitem in anchor tag (1a7c7bdc)
73
+ - fix(story): fix linter issues for javascript files (235223ed)
74
+ - test(timepicker): remove invalid test case (eab2c1d7)
75
+ - style(timepicker): add transition class for active options (529cfff9)
76
+ - fix(tooltip): set tooltip open state to false in story (debf4ad4)
77
+ - fix(checkbox): checkbox alignment story (a44ef41d)
78
+ - fix(dropdown): add dropdown label story (05a1b2b9)
79
+ - fix(calendar): story structure in date view (77d7e88d)
80
+ - fix(horizontalnav): update css for the header of left aligned story (9a3f745f)
81
+ - fix(pageheader): fix padding class for header seperator of pageheader story (401254eb)
82
+ - fix(table): fix multiline content of button in description list story (b681759d)
83
+ - fix(metricinput): update focus state (0f28d36f)
84
+ - fix(sidesheet): two step outside click issue fix (5f40ec16)
85
+ - fix(pageheader): remove dot seperator from level1 stepper story (21b66a3e)
86
+ - fix(datepicker): set story at open state for popover (55e4500a)
87
+ - fix(dropdown): remove animation from dropdown option items (fae62d93)
88
+ - fix(sidesheet): set story to open from page one for multistep variant (3cd6691f)
89
+ - fix(dropdown): update css of search tab (7a6e444d)
90
+ - fix(icon): update src for image variant (d2991717)
91
+ - fix(loaders): fixes placeholder image loaders (b72afc4c)
92
+
93
+ ### Improvements
94
+
95
+ - docs(docs): update alt text in components (3ac2b5c8)
96
+ - docs(docs): add caption in toast compoent (b775fc88)
97
+ - docs(docs): add caption in timepicker component (d08149db)
98
+ - docs(docs): update alt text in table component (92bfee43)
99
+ - docs(docs): update alt text in rich text editor component (10444d71)
100
+ - docs(docs): update caption in avatar component (775fcc96)
101
+ - test(docs): add cypress test for patterns page (8bcac84b)
102
+ - fix(docs): update font size of toc (fd9c503c)
103
+ - test(docs): integrate cypress setup and test (a60f058f)
104
+ - fix(docs): fix css padding for footer component (bd304ad9)
105
+
106
+
107
+ ### Documentation
108
+
109
+
110
+
111
+ ---
112
+
113
+ ## 2.13.1 (2022-06-24)
3
114
 
4
115
  ### Highlights
116
+
5
117
  NA
6
118
 
7
119
  ### Breaking changes
120
+
8
121
  NA
9
122
 
10
123
  ### Migration guide
124
+
11
125
  NA
12
126
 
13
127
  ### Deprecations
128
+
14
129
  NA
15
130
 
16
131
  ### Features
132
+
17
133
  NA
18
134
 
19
135
  ### Fixes
20
- * fix(daterangepicker): fix error state on blur event (fcc00594)
21
- * fix(daterangepicker): fix dateRangePicker input freeze (c98352c0)
22
- * fix(popover): fix boundary element story (ca351ed5)
23
- * fix(metricInput): fix default metric input story (0eb7e111)
136
+
137
+ - fix(daterangepicker): fix error state on blur event (fcc00594)
138
+ - fix(daterangepicker): fix dateRangePicker input freeze (c98352c0)
139
+ - fix(popover): fix boundary element story (ca351ed5)
140
+ - fix(metricInput): fix default metric input story (0eb7e111)
24
141
 
25
142
  ### Improvements
143
+
26
144
  NA
27
145
 
28
146
  ### Documentation
29
- * fix(docs): update distribution id for docs-dev (6e21010d)
30
- * fix(docs): update distribution id for docs-dev (6c23c6ed)
31
- * feat(docs): add component images (3f9e1fc4)
32
- * feat(docs): add helptext component (4601c1e0)
33
147
 
34
- -------------------
35
- ## 2.13.0 (2022-06-21)
148
+ - fix(docs): update distribution id for docs-dev (6e21010d)
149
+ - fix(docs): update distribution id for docs-dev (6c23c6ed)
150
+ - feat(docs): add component images (3f9e1fc4)
151
+ - feat(docs): add helptext component (4601c1e0)
152
+
153
+ ---
154
+
155
+ ## 2.13.0 (2022-06-21)
36
156
 
37
157
  ### Highlights
158
+
38
159
  NA
39
160
 
40
161
  ### Breaking changes
162
+
41
163
  NA
42
164
 
43
165
  ### Migration guide
166
+
44
167
  NA
45
168
 
46
169
  ### Deprecations
170
+
47
171
  NA
48
172
 
49
173
  ### Features
174
+
50
175
  NA
51
176
 
52
177
  ### Fixes
53
- * fix(timepicker): fix placeholder value getting disappear (1ac69560)
54
- * fix(modal): fix modal closing animation (d0236cfe)
55
- * fix(popover): fix popover animation flickering issue (3c01529b)
56
- * fix(inputMask): fix cursor position on input mask (cbd7f31a)
57
- * fix(grid): fix grid loading state (aa3672bb)
58
- * fix(grid): fix loading state in grid (0a8719d5)
59
- * fix(datepicker): reset to default on blur state (d5565fd2)
60
- * fix(docs): remove checkbox from mobile nav (3d4aa0f1)
61
- * fix(datePicker): fix event handlers for datepicker (f79e3c29)
62
- * fix(docs): fix links on mobile overview page (17e621ba)
63
- * fix(docs): add missing images (17483411)
178
+
179
+ - fix(timepicker): fix placeholder value getting disappear (1ac69560)
180
+ - fix(modal): fix modal closing animation (d0236cfe)
181
+ - fix(popover): fix popover animation flickering issue (3c01529b)
182
+ - fix(inputMask): fix cursor position on input mask (cbd7f31a)
183
+ - fix(grid): fix grid loading state (aa3672bb)
184
+ - fix(grid): fix loading state in grid (0a8719d5)
185
+ - fix(datepicker): reset to default on blur state (d5565fd2)
186
+ - fix(docs): remove checkbox from mobile nav (3d4aa0f1)
187
+ - fix(datePicker): fix event handlers for datepicker (f79e3c29)
188
+ - fix(docs): fix links on mobile overview page (17e621ba)
189
+ - fix(docs): add missing images (17483411)
64
190
 
65
191
  ### Improvements
192
+
66
193
  NA
67
194
 
68
195
  ### Documentation
69
- * docs(docs): add checkbox in mobile (929861d6)
70
- * docs(docs): add help text in web components (c5e9fd8a)
71
196
 
72
- -------------------
197
+ - docs(docs): add checkbox in mobile (929861d6)
198
+ - docs(docs): add help text in web components (c5e9fd8a)
199
+
200
+ ---
73
201
 
74
- ## 2.13.0-0 (2022-06-20)
202
+ ## 2.13.0-0 (2022-06-20)
75
203
 
76
204
  ### Highlights
205
+
77
206
  NA
78
207
 
79
208
  ### Breaking changes
209
+
80
210
  NA
81
211
 
82
212
  ### Migration guide
213
+
83
214
  NA
84
215
 
85
216
  ### Deprecations
217
+
86
218
  NA
87
219
 
88
220
  ### Features
221
+
89
222
  NA
90
223
 
91
224
  ### Fixes
92
- * fix(timepicker): fix placeholder value getting disappear (1ac69560)
93
- * fix(modal): fix modal closing animation (d0236cfe)
94
- * fix(popover): fix popover animation flickering issue (3c01529b)
95
- * fix(inputMask): fix cursor position on input mask (cbd7f31a)
96
- * fix(grid): fix grid loading state (aa3672bb)
97
- * fix(grid): fix loading state in grid (0a8719d5)
98
- * fix(datepicker): reset to default on blur state (d5565fd2)
99
- * fix(docs): remove checkbox from mobile nav (3d4aa0f1)
100
- * fix(datePicker): fix event handlers for datepicker (f79e3c29)
101
- * fix(docs): fix links on mobile overview page (17e621ba)
102
- * fix(docs): add missing images (17483411)
225
+
226
+ - fix(timepicker): fix placeholder value getting disappear (1ac69560)
227
+ - fix(modal): fix modal closing animation (d0236cfe)
228
+ - fix(popover): fix popover animation flickering issue (3c01529b)
229
+ - fix(inputMask): fix cursor position on input mask (cbd7f31a)
230
+ - fix(grid): fix grid loading state (aa3672bb)
231
+ - fix(grid): fix loading state in grid (0a8719d5)
232
+ - fix(datepicker): reset to default on blur state (d5565fd2)
233
+ - fix(docs): remove checkbox from mobile nav (3d4aa0f1)
234
+ - fix(datePicker): fix event handlers for datepicker (f79e3c29)
235
+ - fix(docs): fix links on mobile overview page (17e621ba)
236
+ - fix(docs): add missing images (17483411)
103
237
 
104
238
  ### Improvements
239
+
105
240
  NA
106
241
 
107
242
  ### Documentation
108
- * docs(docs): add checkbox in mobile (929861d6)
109
- * docs(docs): add help text in web components (c5e9fd8a)
110
243
 
111
- -------------------
244
+ - docs(docs): add checkbox in mobile (929861d6)
245
+ - docs(docs): add help text in web components (c5e9fd8a)
246
+
247
+ ---
112
248
 
113
- ## 2.10.0-0 (2022-03-30)
249
+ ## 2.10.0-0 (2022-03-30)
114
250
 
115
251
  ### Highlights
252
+
116
253
  NA
117
254
 
118
255
  ### Breaking changes
256
+
119
257
  NA
120
258
 
121
259
  ### Migration guide
260
+
122
261
  NA
123
262
 
124
263
  ### Deprecations
264
+
125
265
  NA
126
266
 
127
267
  ### Features
128
- * (docs): add design for no results in components search (5594cb28)
129
- * (docs): add design for 404 page (4dfef4de)
130
- * (docs) : add copy to clipboard for codeblocks and headings (78cb4501)
268
+
269
+ - (docs): add design for no results in components search (5594cb28)
270
+ - (docs): add design for 404 page (4dfef4de)
271
+ - (docs) : add copy to clipboard for codeblocks and headings (78cb4501)
131
272
 
132
273
  ### Fixes
133
- * (DateRangePicker): popover not closing on range selection (b5597056)
134
- * (doc): fix tooltip message while copying code on introduction page (58a7c313)
135
- * (docs): fix page layout overflow scroll to auto (93176391)
136
- * (chips): fix input chips hover and selection and active chips border (e64d8e85)
137
- * (docs) fix actionsheet navigation issue (1ab2ed4f)
138
- * (toast): fix toast close button width (ee95e19f)
139
- * (docs): fix description in container (9f826bcc)
140
- * (docs): fix font family for react tab in show code (3933bb9f)
141
- * (docs): fix scroll jump in right nav bar (549ce214)
142
- * (input): update input icon appearance (1b1e1e1a)
143
- * (docs): add separate navigation for mobile and web components (97632861)
144
- * (docs): fix leftnav highlight on tab changes (4bee0cfb)
274
+
275
+ - (DateRangePicker): popover not closing on range selection (b5597056)
276
+ - (doc): fix tooltip message while copying code on introduction page (58a7c313)
277
+ - (docs): fix page layout overflow scroll to auto (93176391)
278
+ - (chips): fix input chips hover and selection and active chips border (e64d8e85)
279
+ - (docs) fix actionsheet navigation issue (1ab2ed4f)
280
+ - (toast): fix toast close button width (ee95e19f)
281
+ - (docs): fix description in container (9f826bcc)
282
+ - (docs): fix font family for react tab in show code (3933bb9f)
283
+ - (docs): fix scroll jump in right nav bar (549ce214)
284
+ - (input): update input icon appearance (1b1e1e1a)
285
+ - (docs): add separate navigation for mobile and web components (97632861)
286
+ - (docs): fix leftnav highlight on tab changes (4bee0cfb)
145
287
 
146
288
  ### Improvements
289
+
147
290
  NA
148
291
 
149
292
  ### Documentation
150
- * (docs): updated images in web overview (7292d892)
151
- * (docs): update front-matter for components and patterns (24fabc67)
152
- * (docs): add content for lists in mobile (7952a33b)
153
- * (docs): add documentation for dialogs in mobile (addeef3e)
154
- * (docs): add documentation for inputs in mobile (d7267f29)
155
- * (docs): add content for page headers in mobile (4a1e4898)
156
- * (docs): add documentation for chips in mobile (dc6deb57)
157
- * (docs): add documentation for cards in mobile (de6766c4)
158
- * (docs): add content for radio in mobile (067fd7b7)
159
- * (docs): add content for switch in mobile (02e91667)
160
- * (docs): add content for tabs in mobile (c5b7ab5b)
161
- * (docs): add content for toast in mobile (6e756ddd)
162
- * (docs): update empty state for description (9fffbe8a)
163
- * (docs): update email-guidlines md files (a358874e)
164
- * (docs) add documentation for bottom sheet in mobile (8ad96de9)
165
- * (docs): update error-messages md file (3b77abe1)
166
- * (docs): update placeholder-text md file (25f8dbbb)
167
- * (docs): add content for layouts (285bb162)
168
- * (docs): add alt text in an image in forms (d01d33a8)
169
- * (docs):Added content for Patterns - Forms (22077e0c)
170
- * (docs): add content for page headers (d9ffab58)
171
- * (docs): Added content for UI states (4344340d)
172
- * (docs) add documentation for buttons in mobile (59bbfea1)
173
- * (docs) add documentation of action sheet (6587a47e)
174
- * (docs): update email guidelines content (c6220015)
175
- * (docs): update error messages content (b2dd0586)
176
- * (docs): update empty states content (2b7156d4)
177
- * (docs): add documentation for navigation, meta list, pagination (2a9cb91f)
178
- * (docs): added content for file uploader (ec8ffca3)
179
-
180
- -------------------
181
-
182
- ## 2.9.0-0 (2022-02-01)
293
+
294
+ - (docs): updated images in web overview (7292d892)
295
+ - (docs): update front-matter for components and patterns (24fabc67)
296
+ - (docs): add content for lists in mobile (7952a33b)
297
+ - (docs): add documentation for dialogs in mobile (addeef3e)
298
+ - (docs): add documentation for inputs in mobile (d7267f29)
299
+ - (docs): add content for page headers in mobile (4a1e4898)
300
+ - (docs): add documentation for chips in mobile (dc6deb57)
301
+ - (docs): add documentation for cards in mobile (de6766c4)
302
+ - (docs): add content for radio in mobile (067fd7b7)
303
+ - (docs): add content for switch in mobile (02e91667)
304
+ - (docs): add content for tabs in mobile (c5b7ab5b)
305
+ - (docs): add content for toast in mobile (6e756ddd)
306
+ - (docs): update empty state for description (9fffbe8a)
307
+ - (docs): update email-guidlines md files (a358874e)
308
+ - (docs) add documentation for bottom sheet in mobile (8ad96de9)
309
+ - (docs): update error-messages md file (3b77abe1)
310
+ - (docs): update placeholder-text md file (25f8dbbb)
311
+ - (docs): add content for layouts (285bb162)
312
+ - (docs): add alt text in an image in forms (d01d33a8)
313
+ - (docs):Added content for Patterns - Forms (22077e0c)
314
+ - (docs): add content for page headers (d9ffab58)
315
+ - (docs): Added content for UI states (4344340d)
316
+ - (docs) add documentation for buttons in mobile (59bbfea1)
317
+ - (docs) add documentation of action sheet (6587a47e)
318
+ - (docs): update email guidelines content (c6220015)
319
+ - (docs): update error messages content (b2dd0586)
320
+ - (docs): update empty states content (2b7156d4)
321
+ - (docs): add documentation for navigation, meta list, pagination (2a9cb91f)
322
+ - (docs): added content for file uploader (ec8ffca3)
323
+
324
+ ---
325
+
326
+ ## 2.9.0-0 (2022-02-01)
327
+
183
328
  ### Highlights
184
- * feat: adds docs site (44ab33d3)
185
- * feat(verticalNav): add custom item renderer option (810a099f)
329
+
330
+ - feat: adds docs site (44ab33d3)
331
+ - feat(verticalNav): add custom item renderer option (810a099f)
186
332
 
187
333
  ### Breaking changes
334
+
188
335
  NA
189
336
 
190
337
  ### Migration guide
338
+
191
339
  NA
192
340
 
193
341
  ### Deprecations
342
+
194
343
  NA
195
344
 
196
345
  ### Features
197
- * feat: adds docs site (44ab33d3)
198
- * feat(verticalNav): add custom item renderer option (810a099f)
199
346
 
347
+ - feat: adds docs site (44ab33d3)
348
+ - feat(verticalNav): add custom item renderer option (810a099f)
200
349
 
201
350
  ### Fixes
202
- * fix(verticalnav): fix verticalnav active hover state shadow (1b341516)
203
- * fix(button): fix button hover background color (1e696743)
204
- * fix(button): fix button hover and focus style (795ae48b)
205
- * fix(dropdown): fix dropdown items closing animation (dc8c6102)
206
- * fix(tabs): fix tabs conflict in selected focused state style (fa4ff904)
207
- * fix(toast): add message to discription story (1cac895d)
208
- * fix(button): props table not showing (70ac3e39)
209
- * fix(leftNav): fix left navbar highlighting on tab changes (d836a42e)
210
- * fix(table): add border in table for mdx and fix overflow behaviour (233293ed)
211
- * fix(table): make scrollbar width consistent (af5da8f6)
212
- * fix(table): fix table data issue when rows are more than 27 (b33aafc1)
351
+
352
+ - fix(verticalnav): fix verticalnav active hover state shadow (1b341516)
353
+ - fix(button): fix button hover background color (1e696743)
354
+ - fix(button): fix button hover and focus style (795ae48b)
355
+ - fix(dropdown): fix dropdown items closing animation (dc8c6102)
356
+ - fix(tabs): fix tabs conflict in selected focused state style (fa4ff904)
357
+ - fix(toast): add message to discription story (1cac895d)
358
+ - fix(button): props table not showing (70ac3e39)
359
+ - fix(leftNav): fix left navbar highlighting on tab changes (d836a42e)
360
+ - fix(table): add border in table for mdx and fix overflow behaviour (233293ed)
361
+ - fix(table): make scrollbar width consistent (af5da8f6)
362
+ - fix(table): fix table data issue when rows are more than 27 (b33aafc1)
213
363
 
214
364
  ### Improvements
365
+
215
366
  NA
216
367
 
217
368
  ### Documentation
218
- * Adds documentations for components.
219
369
 
220
- -------------------
370
+ - Adds documentations for components.
371
+
372
+ ---
373
+
374
+ ## 2.8.0-0 (2022-01-12)
221
375
 
222
- ## 2.8.0-0 (2022-01-12)
223
376
  ### Highlights
224
377
 
225
378
  ### Breaking changes
379
+
226
380
  NA
227
381
 
228
382
  ### Migration guide
383
+
229
384
  NA
230
385
 
231
386
  ### Deprecations
387
+
232
388
  NA
233
389
 
234
390
  ### Features
391
+
235
392
  NA
236
393
 
237
394
  ### Fixes
238
- * Fix chip inline alignment problem (253ba672)
239
- * Fix progressbar background color (938be99b)
240
- * Fix disabled slider knob shadow (aff1ddb6)
241
- * Fix broken alignment due to inlineLabel in Dropdown (d7b51053)
242
- * Resolve tooltip close issue on disabled button (cc0c693d)
395
+
396
+ - Fix chip inline alignment problem (253ba672)
397
+ - Fix progressbar background color (938be99b)
398
+ - Fix disabled slider knob shadow (aff1ddb6)
399
+ - Fix broken alignment due to inlineLabel in Dropdown (d7b51053)
400
+ - Resolve tooltip close issue on disabled button (cc0c693d)
243
401
 
244
402
  ### Improvements
245
- * Add popover transitions (f1873f65)
246
- * Add support for three characters in Avatar component (ba6bc35b)
403
+
404
+ - Add popover transitions (f1873f65)
405
+ - Add support for three characters in Avatar component (ba6bc35b)
247
406
 
248
407
  ### Documentation
408
+
249
409
  NA
250
410
 
251
- -------------------
411
+ ---
412
+
413
+ ## 2.7.0 (2021-12-23)
252
414
 
253
- ## 2.7.0 (2021-12-23)
254
415
  ### Highlights
255
416
 
256
417
  ### Breaking changes
418
+
257
419
  NA
258
420
 
259
421
  ### Migration guide
422
+
260
423
  NA
261
424
 
262
425
  ### Deprecations
263
- * Button: appearance "success" is deprecated, please use "primary" (375c9aef)
264
- * Fileuploader component is deprecated, please use Dropzone type="tight" (c5d8ef43)
265
- * Toast: appearance "default" is deprecated, please use "info" (d589cf6f)
266
- * Message: appearance "default" is deprecated, please use "info" (3cd54421)
267
426
 
427
+ - Button: appearance "success" is deprecated, please use "primary" (375c9aef)
428
+ - Fileuploader component is deprecated, please use Dropzone type="tight" (c5d8ef43)
429
+ - Toast: appearance "default" is deprecated, please use "info" (d589cf6f)
430
+ - Message: appearance "default" is deprecated, please use "info" (3cd54421)
268
431
 
269
432
  ### Features
270
- * Option to use custom search placeholder in Dropdown search input (9fcb2b65)
271
- * Adds keyboard interactions in Dropzone component. (8541a26d)
272
- * Adds subinfo option when checkbox is true Dropdown (96a581a3)
273
- * Adds transition to switch component (f8cbba79)
274
- * Transition in sidesheet component added (8c61ef05)
433
+
434
+ - Option to use custom search placeholder in Dropdown search input (9fcb2b65)
435
+ - Adds keyboard interactions in Dropzone component. (8541a26d)
436
+ - Adds subinfo option when checkbox is true Dropdown (96a581a3)
437
+ - Adds transition to switch component (f8cbba79)
438
+ - Transition in sidesheet component added (8c61ef05)
275
439
 
276
440
  ### Fixes
277
- * fix: updates docpage for stories without components exported (d5138109)
278
- * fix(storybook): update package json file to fix storybook docs page (149f8ec8)
279
- * fix(InputMask): fixes issue with fast input (4d1f8330)
280
- * fix(switch): add styling for hover and active state (3a54a934)
281
- * Button re-rendering issue is fixed, which was sometimes causing button to be clicked twice. (6b46d66f)
282
- * FileList truncates long file names now. (0c2a07b6)
283
- * Breadcrumbs separator color updated. (5b88f5c5)
284
- * Fixed loader issue when Table has nested rows. (f41f7f96)
441
+
442
+ - fix: updates docpage for stories without components exported (d5138109)
443
+ - fix(storybook): update package json file to fix storybook docs page (149f8ec8)
444
+ - fix(InputMask): fixes issue with fast input (4d1f8330)
445
+ - fix(switch): add styling for hover and active state (3a54a934)
446
+ - Button re-rendering issue is fixed, which was sometimes causing button to be clicked twice. (6b46d66f)
447
+ - FileList truncates long file names now. (0c2a07b6)
448
+ - Breadcrumbs separator color updated. (5b88f5c5)
449
+ - Fixed loader issue when Table has nested rows. (f41f7f96)
285
450
 
286
451
  ### Improvements
287
- * Added transitions to fullscreenModal component (98cac857)
288
- * Selected state for a disabled chips is now visible (c619c571)
452
+
453
+ - Added transitions to fullscreenModal component (98cac857)
454
+ - Selected state for a disabled chips is now visible (c619c571)
289
455
 
290
456
  ### Documentation
291
- * Example for custom header in sidesheet added (edc300cc)
292
- * Input examples (stories) are interactive now (ead16746)
293
- * add npm ci command to use package.lock freezed versions on CI environments on github actions (621d0934)
294
- * updates versions of dev dependencies for security issues (3c3d5288)
295
- * adds manual release workflow (e31559d3)
296
457
 
458
+ - Example for custom header in sidesheet added (edc300cc)
459
+ - Input examples (stories) are interactive now (ead16746)
460
+ - add npm ci command to use package.lock freezed versions on CI environments on github actions (621d0934)
461
+ - updates versions of dev dependencies for security issues (3c3d5288)
462
+ - adds manual release workflow (e31559d3)
463
+
464
+ ---
297
465
 
298
- -------------------
466
+ ## 2.6.0 (2021-12-09)
299
467
 
300
- ## 2.6.0 (2021-12-09)
301
468
  ### Highlights
302
- * Calender exposes onHover events on date month and year values (bcaa4aed)
303
- * New component Divider is added (7dc6034d)
304
- * Library is now compatible with Node version 14.x LTS (33c736fd)
469
+
470
+ - Calender exposes onHover events on date month and year values (bcaa4aed)
471
+ - New component Divider is added (7dc6034d)
472
+ - Library is now compatible with Node version 14.x LTS (33c736fd)
305
473
 
306
474
  ### Breaking changes
475
+
307
476
  NA
308
477
 
309
478
  ### Migration guide
479
+
310
480
  NA
311
481
 
312
482
  ### Deprecations
483
+
313
484
  NA
314
485
 
315
486
  ### Features
316
- * Datepicker has example for date presets for date selections (d1a0f30c)
317
- * Switch and Button components are new accessible (AA) (1b64c361)
318
- * Calender exposes onHover events on date month and year values (bcaa4aed)
319
- * New component Divider is added (7dc6034d)
487
+
488
+ - Datepicker has example for date presets for date selections (d1a0f30c)
489
+ - Switch and Button components are new accessible (AA) (1b64c361)
490
+ - Calender exposes onHover events on date month and year values (bcaa4aed)
491
+ - New component Divider is added (7dc6034d)
320
492
 
321
493
  ### Fixes
322
- * Navigation center alignment bug is fixed in Pageheader component (c6c08ba4)
323
- * Chip component's pointer style is fixed for hovering (01f2f9fc)
324
- * Design of Calendar component is improved (e4ea85df)
325
- * Options with checkbox in dropdown can have truncated text now. (c4e8f3a3)
326
- * Text height of InlineMessage is corrected. (00bbd7e6)
327
- * Table search results going blank is now fixed. (d2a96002)
328
- * Table cell can render and position the dropdown inside properly. (3dea79b4)
329
494
 
495
+ - Navigation center alignment bug is fixed in Pageheader component (c6c08ba4)
496
+ - Chip component's pointer style is fixed for hovering (01f2f9fc)
497
+ - Design of Calendar component is improved (e4ea85df)
498
+ - Options with checkbox in dropdown can have truncated text now. (c4e8f3a3)
499
+ - Text height of InlineMessage is corrected. (00bbd7e6)
500
+ - Table search results going blank is now fixed. (d2a96002)
501
+ - Table cell can render and position the dropdown inside properly. (3dea79b4)
330
502
 
331
503
  ### Improvements
332
- * Library is now compatible with Node version 14.x LTS (33c736fd)
333
- * Accessibility linting plugin is added. (6fbb5883)
334
504
 
505
+ - Library is now compatible with Node version 14.x LTS (33c736fd)
506
+ - Accessibility linting plugin is added. (6fbb5883)
335
507
 
336
508
  ### Documentation
337
- NA
338
509
 
510
+ NA
339
511
 
340
- -------------------
512
+ ---
341
513
 
342
- ## 2.5.0 (2021-10-25)
514
+ ## 2.5.0 (2021-10-25)
343
515
 
344
516
  ### Highlights
345
- * A now component ChoiceList is added to use group of check box or radio inputs to work as a choice selector (2d9bb1ed)
346
- * Calendar and DatePicker has new design and features for today date selection now. (7c3df346)
347
- * All existing contributors are added to Readme, an option to create request for getting added as contributor and documentation for the same is added. (07db26e9)
517
+
518
+ - A now component ChoiceList is added to use group of check box or radio inputs to work as a choice selector (2d9bb1ed)
519
+ - Calendar and DatePicker has new design and features for today date selection now. (7c3df346)
520
+ - All existing contributors are added to Readme, an option to create request for getting added as contributor and documentation for the same is added. (07db26e9)
348
521
 
349
522
  ### Breaking changes
523
+
350
524
  NA
351
525
 
352
526
  ### Migration guide
527
+
353
528
  NA
354
529
 
355
530
  ### Deprecations
531
+
356
532
  NA
357
533
 
358
534
  ### Features
359
- * A now component ChoiceList is added to use group of check box or radio inputs to work as a choice selector (2d9bb1ed)
360
- * New helper classes for applying border or removing border of an element are added. (7675c8b3)
361
- * Calendar and DatePicker has new design and features for today date selection now. (7c3df346)
362
- * EmptyState component now supports inline SVG image. (863d69b0)
363
- * Added previous and next month dates in current month's date in Calendar Component (4fe810bf)
535
+
536
+ - A now component ChoiceList is added to use group of check box or radio inputs to work as a choice selector (2d9bb1ed)
537
+ - New helper classes for applying border or removing border of an element are added. (7675c8b3)
538
+ - Calendar and DatePicker has new design and features for today date selection now. (7c3df346)
539
+ - EmptyState component now supports inline SVG image. (863d69b0)
540
+ - Added previous and next month dates in current month's date in Calendar Component (4fe810bf)
364
541
 
365
542
  ### Fixes
366
- * fix(button.css): fix active state in transparent button (1c499f0d)
367
- * fix(nestedtable): fix expand and collapse button issue (be69d5e5)
368
- * Issue in scrolling horizontally on a Table body not scrolled table header is resolved. (e71ea1c2)
369
- * Icons on Table header and column menu to sort the table are now pointed in correct directions. (718a1a37)
370
- * DateRangePicker pattern example now uses selection cheap in stead of radios for pre defined date range selections. (a1d0ee53)
371
- * Table/Grid horizontal scrolling issue is fixed. (a6949715)
372
- * Modal is now vertically centered and can have flexible heights. (ef6072a7)
373
- * Dropzone icon is visible now when we bring mouse to drop file over it. (5ba93be9)
374
- * Fixes the table header scroll when table body scroll (502cb1d1)
375
- * Fixes the Tabs Component rendering issue with checking children component type (8525a4e7)
376
- * Fixes the Datepicker snapshot which was getting updated as date changes (c001e925)
543
+
544
+ - fix(button.css): fix active state in transparent button (1c499f0d)
545
+ - fix(nestedtable): fix expand and collapse button issue (be69d5e5)
546
+ - Issue in scrolling horizontally on a Table body not scrolled table header is resolved. (e71ea1c2)
547
+ - Icons on Table header and column menu to sort the table are now pointed in correct directions. (718a1a37)
548
+ - DateRangePicker pattern example now uses selection cheap in stead of radios for pre defined date range selections. (a1d0ee53)
549
+ - Table/Grid horizontal scrolling issue is fixed. (a6949715)
550
+ - Modal is now vertically centered and can have flexible heights. (ef6072a7)
551
+ - Dropzone icon is visible now when we bring mouse to drop file over it. (5ba93be9)
552
+ - Fixes the table header scroll when table body scroll (502cb1d1)
553
+ - Fixes the Tabs Component rendering issue with checking children component type (8525a4e7)
554
+ - Fixes the Datepicker snapshot which was getting updated as date changes (c001e925)
377
555
 
378
556
  ### Improvements
379
- * Improved test coverage to cover more than 92% of the code base.
557
+
558
+ - Improved test coverage to cover more than 92% of the code base.
380
559
 
381
560
  ### Documentation
382
- * FileUploader component example is now more interactive (509a9053)
383
- * Navigation is more structured on story book for css and other utilities (56999d6b)
384
- * Message component example improved for versatile use-cases. (16fe6be6)
385
- * Readme is structured and updated for easy to access the required information (7d9c262d)
386
- * All existing contributors are added to Readme, an option to create request for getting added as contributor and documentation for the same is added. (07db26e9)
387
- * Guideline for branch naming convention added. (1ef3cd96)
388
561
 
389
- -------------------
390
- ## 2.4.0 (2021-09-22)
562
+ - FileUploader component example is now more interactive (509a9053)
563
+ - Navigation is more structured on story book for css and other utilities (56999d6b)
564
+ - Message component example improved for versatile use-cases. (16fe6be6)
565
+ - Readme is structured and updated for easy to access the required information (7d9c262d)
566
+ - All existing contributors are added to Readme, an option to create request for getting added as contributor and documentation for the same is added. (07db26e9)
567
+ - Guideline for branch naming convention added. (1ef3cd96)
568
+
569
+ ---
570
+
571
+ ## 2.4.0 (2021-09-22)
391
572
 
392
573
  ### Highlights
574
+
393
575
  NA
394
576
 
395
577
  ### Breaking changes
578
+
396
579
  NA
397
580
 
398
581
  ### Migration guide
582
+
399
583
  NA
400
584
 
401
585
  ### Deprecations
586
+
402
587
  NA
403
588
 
404
589
  ### Features
405
- * Automated the process of types bundling (21f435b0)
406
- * A new InlineMessage Component has been added (f852b2a8)
407
- * Added the events indicator on given date in Calendar Component (4714efa2)
408
- * A Chip has been added to Datepicker Component to select today's date (ee9e47e0)
409
- * Tooltip in Icon Button Component has been added (f9f14233)
590
+
591
+ - Automated the process of types bundling (21f435b0)
592
+ - A new InlineMessage Component has been added (f852b2a8)
593
+ - Added the events indicator on given date in Calendar Component (4714efa2)
594
+ - A Chip has been added to Datepicker Component to select today's date (ee9e47e0)
595
+ - Tooltip in Icon Button Component has been added (f9f14233)
596
+
410
597
  ### Fixes
411
- * Removes the events type Array from Calendar Component (41abf4ef)
412
- * zIndex for Backdrop Component has been fixed (055edb09)
413
- * Border radius of Card Component has been fixed (c113a568)
414
- * New Stories has been added to EmptyState Component and updated the existing story (af83ea74)
415
- * Height of the Input field has been fixed when focus in EditableChipInput Component (bbb4f256)
598
+
599
+ - Removes the events type Array from Calendar Component (41abf4ef)
600
+ - zIndex for Backdrop Component has been fixed (055edb09)
601
+ - Border radius of Card Component has been fixed (c113a568)
602
+ - New Stories has been added to EmptyState Component and updated the existing story (af83ea74)
603
+ - Height of the Input field has been fixed when focus in EditableChipInput Component (bbb4f256)
604
+
416
605
  ### Improvements
417
- * Added test cases for InputMask Component (e0f37b99)
418
- * Added test cases for FileList Component (b36a44f1)
419
- * Added test cases for Dropdown Component options and loading state (1cb98e93)
606
+
607
+ - Added test cases for InputMask Component (e0f37b99)
608
+ - Added test cases for FileList Component (b36a44f1)
609
+ - Added test cases for Dropdown Component options and loading state (1cb98e93)
610
+
420
611
  ### Documentation
612
+
421
613
  NA
422
614
 
423
- -------------------
615
+ ---
424
616
 
425
- ## 2.3.0 (2021-09-10)
617
+ ## 2.3.0 (2021-09-10)
426
618
 
427
619
  ### Highlights
620
+
428
621
  NA
429
622
 
430
623
  ### Breaking changes
624
+
431
625
  NA
432
626
 
433
627
  ### Migration guide
628
+
434
629
  NA
435
630
 
436
631
  ### Deprecations
632
+
437
633
  NA
438
634
 
439
635
  ### Features
636
+
440
637
  NA
441
638
 
442
639
  ### Fixes
443
- * Improve padding of close button in overlays header (4d4965b9)
444
- * Fixes nested rows losing their open state in grid (aed5b032)
640
+
641
+ - Improve padding of close button in overlays header (4d4965b9)
642
+ - Fixes nested rows losing their open state in grid (aed5b032)
643
+
445
644
  ### Improvements
446
- * Adds test cases for FileUploaderComponent (5604656c)
447
- * Adds test cases for TimePicker component (4e776a46)
448
- * Adds test cases for ChatMessage Component (0443446c)
449
- * Adds test cases for slider component (fa82992a)
450
- * Adds test cases for DateRangePicker component (8c5abb26)
645
+
646
+ - Adds test cases for FileUploaderComponent (5604656c)
647
+ - Adds test cases for TimePicker component (4e776a46)
648
+ - Adds test cases for ChatMessage Component (0443446c)
649
+ - Adds test cases for slider component (fa82992a)
650
+ - Adds test cases for DateRangePicker component (8c5abb26)
651
+
451
652
  ### Documentation
452
- * Embeds rich text editor storybook (f3a469da)
453
653
 
454
- -------------------
654
+ - Embeds rich text editor storybook (f3a469da)
655
+
656
+ ---
455
657
 
456
- ## 2.3.0-2 (2021-25-10)
658
+ ## 2.3.0-2 (2021-25-10)
457
659
 
458
660
  ### Highlights
661
+
459
662
  NA
460
663
 
461
664
  ### Breaking changes
665
+
462
666
  NA
463
667
 
464
668
  ### Migration guide
669
+
465
670
  NA
466
671
 
467
672
  ### Deprecations
673
+
468
674
  NA
469
675
 
470
676
  ### Features
471
- * Adds Close on Escape Keypress feature in Overlays (c2904387)
677
+
678
+ - Adds Close on Escape Keypress feature in Overlays (c2904387)
472
679
 
473
680
  ### Fixes
474
- * Fixes arrow click event argument in MetricInput (e4cf0bc5)
475
- * Adds default state delete functionality in EditableChipInput (3a8415f7)
476
- * Fixes done button and adds support for uncontrolled EditableChipInput (16a844be)
477
- * Fixes done button and adds support for uncontrolled EditableInput (f0de36cd)
478
- * Fixes onChange callback in InputMask (I18e111ce)
479
- * Removes margin bottom from modal body when there is no footer (7470a273)
480
- * Fixes nested row card border in Grid (132d0903)
681
+
682
+ - Fixes arrow click event argument in MetricInput (e4cf0bc5)
683
+ - Adds default state delete functionality in EditableChipInput (3a8415f7)
684
+ - Fixes done button and adds support for uncontrolled EditableChipInput (16a844be)
685
+ - Fixes done button and adds support for uncontrolled EditableInput (f0de36cd)
686
+ - Fixes onChange callback in InputMask (I18e111ce)
687
+ - Removes margin bottom from modal body when there is no footer (7470a273)
688
+ - Fixes nested row card border in Grid (132d0903)
689
+
481
690
  ### Improvements
482
- * feat(Checkbox): Adds helptext in checkbox (1d41c6cc)
483
- * feat(Radio): Adds helptext in radio (fc886989)
484
- * Test(MetaList): Adds test cases for MetaList component (5023743f)
691
+
692
+ - feat(Checkbox): Adds helptext in checkbox (1d41c6cc)
693
+ - feat(Radio): Adds helptext in radio (fc886989)
694
+ - Test(MetaList): Adds test cases for MetaList component (5023743f)
695
+
485
696
  ### Documentation
486
- * Adds more content to scrolling modal story (c43c8fea)
487
697
 
488
- -------------------
489
- ## 2.3.0-1 (2021-08-10)
698
+ - Adds more content to scrolling modal story (c43c8fea)
699
+
700
+ ---
701
+
702
+ ## 2.3.0-1 (2021-08-10)
490
703
 
491
704
  ### Highlights
705
+
492
706
  NA
493
707
 
494
708
  ### Breaking changes
709
+
495
710
  NA
496
711
 
497
712
  ### Migration guide
713
+
498
714
  NA
499
715
 
500
716
  ### Deprecations
717
+
501
718
  NA
502
719
 
503
720
  ### Features
504
- * Improves Tabs API for custom tab (8018e724)
721
+
722
+ - Improves Tabs API for custom tab (8018e724)
505
723
 
506
724
  ### Fixes
507
- * Adds type `button` to all components using Button component (7be54df8)
508
- * Removes action Icon when input field is disabled (deeb1e1c)
725
+
726
+ - Adds type `button` to all components using Button component (7be54df8)
727
+ - Removes action Icon when input field is disabled (deeb1e1c)
509
728
 
510
729
  ### Improvements
511
- * Adds not-allowed cursor in stepper for disabled step (a11a3dce)
730
+
731
+ - Adds not-allowed cursor in stepper for disabled step (a11a3dce)
512
732
 
513
733
  ### Documentation
734
+
514
735
  NA
515
736
 
516
- -------------------
737
+ ---
517
738
 
518
- ## 2.3.0-0 (2021-08-10)
739
+ ## 2.3.0-0 (2021-08-10)
519
740
 
520
741
  ### Highlights
742
+
521
743
  NA
522
744
 
523
745
  ### Breaking changes
746
+
524
747
  NA
525
748
 
526
749
  ### Migration guide
750
+
527
751
  NA
528
752
 
529
753
  ### Deprecations
754
+
530
755
  NA
531
756
 
532
757
  ### Features
758
+
533
759
  NA
534
760
 
535
761
  ### Fixes
536
- * Fixes missing file icon in FileList (920e5c42)
537
- * Fixes disabled state in DatePicker (1826c560)
762
+
763
+ - Fixes missing file icon in FileList (920e5c42)
764
+ - Fixes disabled state in DatePicker (1826c560)
538
765
 
539
766
  ### Improvements
540
- * Adds radio's css for hover and active state (a025c7d4)
767
+
768
+ - Adds radio's css for hover and active state (a025c7d4)
541
769
 
542
770
  ### Documentation
543
- * Adds stepper stories (7274e111)
544
771
 
545
- -------------------
546
- ## 2.2.0-2 (2021-07-14)
772
+ - Adds stepper stories (7274e111)
773
+
774
+ ---
775
+
776
+ ## 2.2.0-2 (2021-07-14)
547
777
 
548
778
  ### Highlights
779
+
549
780
  NA
550
781
 
551
782
  ### Breaking changes
783
+
552
784
  NA
553
785
 
554
786
  ### Migration guide
787
+
555
788
  NA
556
789
 
557
790
  ### Deprecations
791
+
558
792
  NA
559
793
 
560
794
  ### Features
795
+
561
796
  NA
562
797
 
563
798
  ### Fixes
564
- * Fixed table last page navigation and remember last page feature (e74cd502)
799
+
800
+ - Fixed table last page navigation and remember last page feature (e74cd502)
565
801
 
566
802
  ### Improvements
803
+
567
804
  NA
568
805
 
569
806
  ### Documentation
807
+
570
808
  NA
571
809
 
572
- -------------------
810
+ ---
573
811
 
574
- ## 2.2.0-1 (2021-07-12)
812
+ ## 2.2.0-1 (2021-07-12)
575
813
 
576
814
  ### Highlights
577
- NA
578
815
 
816
+ NA
579
817
 
580
818
  ### Breaking changes
819
+
581
820
  NA
582
821
 
583
822
  ### Migration guide
823
+
584
824
  NA
585
825
 
586
826
  ### Deprecations
827
+
587
828
  NA
588
829
 
589
830
  ### Features
590
- NA
591
831
 
832
+ NA
592
833
 
593
834
  ### Fixes
594
- * updates material icons font files. (4f5fd6b7)
595
- * fixes % width issue in overlays. (c1a4997d)
596
- * adds support for string for cellType: ICON (c153e3e6)
597
- * fixes width percent issue on initial render (fe12266d)
598
- * fixes hover state for disabled tabs. (85117ede)
835
+
836
+ - updates material icons font files. (4f5fd6b7)
837
+ - fixes % width issue in overlays. (c1a4997d)
838
+ - adds support for string for cellType: ICON (c153e3e6)
839
+ - fixes width percent issue on initial render (fe12266d)
840
+ - fixes hover state for disabled tabs. (85117ede)
599
841
 
600
842
  ### Improvements
601
- * adds test for chip and chipGroup components (5f4e4e8c)
602
- * removes extra wrappers. (ab105189)
603
- * adds button type to dropdown with apply button. (28aa3fda)
604
- * adds focus state for tabs. (2365dc2e)
605
- * sets Tabs withSeparator default to true. (27e22655)
606
- * Uglify, brotli and gzip compression added. (101d71a6)
607
- * adds Date.now mock. (2644524c)
608
- * adds context api (ec94884f)
843
+
844
+ - adds test for chip and chipGroup components (5f4e4e8c)
845
+ - removes extra wrappers. (ab105189)
846
+ - adds button type to dropdown with apply button. (28aa3fda)
847
+ - adds focus state for tabs. (2365dc2e)
848
+ - sets Tabs withSeparator default to true. (27e22655)
849
+ - Uglify, brotli and gzip compression added. (101d71a6)
850
+ - adds Date.now mock. (2644524c)
851
+ - adds context api (ec94884f)
852
+
609
853
  ### Documentation
610
- * adds stories to modal component (c12a633a)
611
- * fixes responsiveness story of pageheader component. (912a2246)
612
- * update guidelines for writing stories and patterns of components. (96159ad2)
613
854
 
614
- -------------------
615
- ## 2.2.0-0 (2021-07-01)
855
+ - adds stories to modal component (c12a633a)
856
+ - fixes responsiveness story of pageheader component. (912a2246)
857
+ - update guidelines for writing stories and patterns of components. (96159ad2)
858
+
859
+ ---
860
+
861
+ ## 2.2.0-0 (2021-07-01)
616
862
 
617
863
  ### Highlights
618
- * New component EditableChipInput added. (18d702a7)
619
864
 
865
+ - New component EditableChipInput added. (18d702a7)
620
866
 
621
867
  ### Breaking changes
868
+
622
869
  NA
623
870
 
624
871
  ### Migration guide
872
+
625
873
  NA
626
874
 
627
875
  ### Deprecations
876
+
628
877
  NA
629
878
 
630
879
  ### Features
631
- * New component EditableChipInput added. (18d702a7)
632
880
 
881
+ - New component EditableChipInput added. (18d702a7)
633
882
 
634
883
  ### Fixes
635
- * Adds width and height property to checkbox in unchecked state. (c2561f34)
636
- * fixes GridBody scrollTop issue on unmount. (766b5686)
637
- * updates pagination component according to design. (601c3a47)
638
- * fixes expanded state on initial render of Collapsible component. (e2967a7b)
639
- * fixes single line case for width<240px in ChipInput. (92a37b6f)
640
- * fixes slider tooltip to move with pointer in Slider component. (f1698ff3)
641
- * fixes label onClick handling of MultiSlider component (ff4af117)
642
- * Updates DS-* to Design-System-* as data-test attribute value in components. (6956653e)
643
- * fixes label inside tooltip to show custom label in Slider component (5ff6f838)
644
- * Layout patterns styling and layout fixed. (e3b52908)
645
- * Button Spinner loading state fixed. (bd8d9436)
646
- * Show More button added in code preview panel. (134ef48a)
647
884
 
885
+ - Adds width and height property to checkbox in unchecked state. (c2561f34)
886
+ - fixes GridBody scrollTop issue on unmount. (766b5686)
887
+ - updates pagination component according to design. (601c3a47)
888
+ - fixes expanded state on initial render of Collapsible component. (e2967a7b)
889
+ - fixes single line case for width<240px in ChipInput. (92a37b6f)
890
+ - fixes slider tooltip to move with pointer in Slider component. (f1698ff3)
891
+ - fixes label onClick handling of MultiSlider component (ff4af117)
892
+ - Updates DS-_ to Design-System-_ as data-test attribute value in components. (6956653e)
893
+ - fixes label inside tooltip to show custom label in Slider component (5ff6f838)
894
+ - Layout patterns styling and layout fixed. (e3b52908)
895
+ - Button Spinner loading state fixed. (bd8d9436)
896
+ - Show More button added in code preview panel. (134ef48a)
648
897
 
649
898
  ### Improvements
650
- * skip feature for a step is addded in Stepper component (d4b775db)
651
- * now Modal, Sidesheet and FullScreenModal components have uniform APIs (2c25d036)
652
- * updated test cases for overlayheader, modal, sidesheet, EmptyState, Row, Column components.
653
- * removes width: 100% and updates flex in Row component. (875564e7)
654
- * adds box-shadow to focus state of Input component. (93b6356d)
655
- * adds width 100% to MetricInput component. (267b2ad7)
656
- * Bottom border radius added for tabs. (905e09b0)
657
- * Cursor not allowed added for disabled tab component state. (716ed6c5)
658
899
 
900
+ - skip feature for a step is addded in Stepper component (d4b775db)
901
+ - now Modal, Sidesheet and FullScreenModal components have uniform APIs (2c25d036)
902
+ - updated test cases for overlayheader, modal, sidesheet, EmptyState, Row, Column components.
903
+ - removes width: 100% and updates flex in Row component. (875564e7)
904
+ - adds box-shadow to focus state of Input component. (93b6356d)
905
+ - adds width 100% to MetricInput component. (267b2ad7)
906
+ - Bottom border radius added for tabs. (905e09b0)
907
+ - Cursor not allowed added for disabled tab component state. (716ed6c5)
659
908
 
660
909
  ### Documentation
661
- * Updates stories of Table, PageHeader, Input components.
662
- * adds placeholder story for Loaders component. (c8622a2e)
663
- * updates the appearance variant story of Icon component. (42f654d9)
664
- * adds pattern, disabled and error state stories for VerificationInput component. (bb8ea8cd)
665
910
 
666
- -------------------
911
+ - Updates stories of Table, PageHeader, Input components.
912
+ - adds placeholder story for Loaders component. (c8622a2e)
913
+ - updates the appearance variant story of Icon component. (42f654d9)
914
+ - adds pattern, disabled and error state stories for VerificationInput component. (bb8ea8cd)
915
+
916
+ ---
667
917
 
668
- ## 2.1.3 (2021-06-10)
918
+ ## 2.1.3 (2021-06-10)
669
919
 
670
920
  ### Highlights
921
+
671
922
  NA
672
923
 
673
924
  ### Breaking changes
925
+
674
926
  NA
675
927
 
676
928
  ### Migration guide
929
+
677
930
  NA
678
931
 
679
932
  ### Deprecations
933
+
680
934
  NA
681
935
 
682
936
  ### Features
937
+
683
938
  NA
684
939
 
685
940
  ### Fixes
686
- * Adds width and height to checkbox in unchecked state. (c2561f34)
941
+
942
+ - Adds width and height to checkbox in unchecked state. (c2561f34)
687
943
 
688
944
  ### Improvements
945
+
689
946
  NA
690
947
 
691
948
  ### Documentation
949
+
692
950
  NA
693
951
 
694
- -------------------
952
+ ---
695
953
 
696
- ## 2.1.2 (2021-05-26)
954
+ ## 2.1.2 (2021-05-26)
697
955
 
698
956
  ### Highlights
957
+
699
958
  NA
700
959
 
701
960
  ### Breaking changes
961
+
702
962
  NA
703
963
 
704
964
  ### Migration guide
965
+
705
966
  NA
706
967
 
707
968
  ### Deprecations
969
+
708
970
  NA
709
971
 
710
972
  ### Features
973
+
711
974
  NA
712
975
 
713
976
  ### Fixes
714
- * downgrades js-beautify to v1.10.3 for supporting node 8.x (d0c0206b)
977
+
978
+ - downgrades js-beautify to v1.10.3 for supporting node 8.x (d0c0206b)
715
979
 
716
980
  ### Improvements
981
+
717
982
  NA
718
983
 
719
984
  ### Documentation
720
- * Fixes Alignment and Group stories for Checkbox component. (37d2412e)
721
- * Fixes width of overflow story for Radio component. (5c632a2d)
722
985
 
986
+ - Fixes Alignment and Group stories for Checkbox component. (37d2412e)
987
+ - Fixes width of overflow story for Radio component. (5c632a2d)
988
+
989
+ ---
723
990
 
724
- -------------------
725
- ## 2.1.1 (2021-05-26)
991
+ ## 2.1.1 (2021-05-26)
726
992
 
727
993
  ### Highlights
994
+
728
995
  NA
729
996
 
730
997
  ### Breaking changes
998
+
731
999
  NA
732
1000
 
733
1001
  ### Migration guide
1002
+
734
1003
  NA
735
1004
 
736
1005
  ### Deprecations
1006
+
737
1007
  NA
738
1008
 
739
1009
  ### Features
1010
+
740
1011
  NA
741
1012
 
742
1013
  ### Fixes
743
- * downgrades js-beautify to v1.10.3 for supporting node 8.x (a540fb95)
1014
+
1015
+ - downgrades js-beautify to v1.10.3 for supporting node 8.x (a540fb95)
744
1016
 
745
1017
  ### Improvements
1018
+
746
1019
  NA
747
1020
 
748
1021
  ### Documentation
1022
+
749
1023
  NA
750
1024
 
1025
+ ---
751
1026
 
752
- -------------------
753
- ## 2.1.0 (2021-05-26)
1027
+ ## 2.1.0 (2021-05-26)
754
1028
 
755
1029
  ### Highlights
756
- * New component for tag based input is added as `ChipInput`. (dddcefb0)
757
- * Atomic components support all native HTML attributes as props now. (917918b9)
1030
+
1031
+ - New component for tag based input is added as `ChipInput`. (dddcefb0)
1032
+ - Atomic components support all native HTML attributes as props now. (917918b9)
758
1033
 
759
1034
  ### Breaking changes
1035
+
760
1036
  NA
761
1037
 
762
1038
  ### Migration guide
1039
+
763
1040
  NA
764
1041
 
765
1042
  ### Deprecations
1043
+
766
1044
  NA
767
1045
 
768
1046
  ### Features
769
- * Grid component can now preserve previous page scroll position. (98aa9085)
770
- * Atomic components support all native HTML attributes as props now. (917918b9)
771
- * New component for tag based input is added as `ChipInput`. (dddcefb0)
772
1047
 
773
- ### Fixes
774
- * Click event on disabled options of Dropdown component is fixed. (8e58516b)
775
- * Row component includes flex-grow in its style properties. (20645578)
776
- * Scrolling on body is now restored after un-mounting of Backdrop component. (60274751)
777
- * Next button in forms pattern is fixed. (93947e39)
778
- * upgrades @actions/core version from 1.2.6 to 1.2.7 (55bbe718)
779
- * upgrades js-beautify version from 1.10.3 to 1.13.13 (a9d2413d)
780
- * Loading state is fixed for searching in Dropdown. (7543c883)
781
- * Loading state is fixed for searching in Table. (715c0483)
782
- * Fixed story path for Dialog. (4785c838)
1048
+ - Grid component can now preserve previous page scroll position. (98aa9085)
1049
+ - Atomic components support all native HTML attributes as props now. (917918b9)
1050
+ - New component for tag based input is added as `ChipInput`. (dddcefb0)
783
1051
 
1052
+ ### Fixes
784
1053
 
1054
+ - Click event on disabled options of Dropdown component is fixed. (8e58516b)
1055
+ - Row component includes flex-grow in its style properties. (20645578)
1056
+ - Scrolling on body is now restored after un-mounting of Backdrop component. (60274751)
1057
+ - Next button in forms pattern is fixed. (93947e39)
1058
+ - upgrades @actions/core version from 1.2.6 to 1.2.7 (55bbe718)
1059
+ - upgrades js-beautify version from 1.10.3 to 1.13.13 (a9d2413d)
1060
+ - Loading state is fixed for searching in Dropdown. (7543c883)
1061
+ - Loading state is fixed for searching in Table. (715c0483)
1062
+ - Fixed story path for Dialog. (4785c838)
785
1063
 
786
1064
  ### Improvements
787
- * FileUploaderItem component now uses icon button in stead of Icon component for actions. (12cff689)
788
- * Tabs component now have some more states for hovering over. (ac05ee66)
789
- * Margin between inputs of VerificationCodeInput component is updated. (c835e770)
790
- * Opacity in Message component as design improvement is added. (1b707bef)
791
1065
 
1066
+ - FileUploaderItem component now uses icon button in stead of Icon component for actions. (12cff689)
1067
+ - Tabs component now have some more states for hovering over. (ac05ee66)
1068
+ - Margin between inputs of VerificationCodeInput component is updated. (c835e770)
1069
+ - Opacity in Message component as design improvement is added. (1b707bef)
792
1070
 
793
1071
  ### Documentation
794
- * Updates Pagination component stories. (e132ebfc)
795
- * Updates Tabs component stories. (4774231e)
796
- * Updates Popover component stories. (24db67d9)
797
- * Updates Checkbox component stories. (24753996)
798
- * Updates Radio component stories. (8b30b313)
799
- * Updates highlight story of Card component. (c8a2fd84)
800
-
801
1072
 
802
- -------------------
1073
+ - Updates Pagination component stories. (e132ebfc)
1074
+ - Updates Tabs component stories. (4774231e)
1075
+ - Updates Popover component stories. (24db67d9)
1076
+ - Updates Checkbox component stories. (24753996)
1077
+ - Updates Radio component stories. (8b30b313)
1078
+ - Updates highlight story of Card component. (c8a2fd84)
803
1079
 
1080
+ ---
804
1081
 
805
- ## 2.1.0-0 (2021-05-07)
1082
+ ## 2.1.0-0 (2021-05-07)
806
1083
 
807
1084
  ### Highlights
808
- * New components added to library for metric values input and verification code input, namely `VerificationCodeInput` and `MetricInput`.
809
- * `Enzyme` testing library is removed from project, now our test cases are using react-testing-library and jest only.
1085
+
1086
+ - New components added to library for metric values input and verification code input, namely `VerificationCodeInput` and `MetricInput`.
1087
+ - `Enzyme` testing library is removed from project, now our test cases are using react-testing-library and jest only.
810
1088
 
811
1089
  ### Breaking changes
1090
+
812
1091
  NA
813
1092
 
814
1093
  ### Migration guide
1094
+
815
1095
  NA
816
1096
 
817
1097
  ### Deprecations
1098
+
818
1099
  NA
819
1100
 
820
1101
  ### Features
821
- * Adds new component VerificationCodeInput for verification code input. (6ec9218a)
822
- * Adds new component MetricInput for verification code input. (5632589d)
1102
+
1103
+ - Adds new component VerificationCodeInput for verification code input. (6ec9218a)
1104
+ - Adds new component MetricInput for verification code input. (5632589d)
823
1105
 
824
1106
  ### Fixes
825
- * Radio component css issue fixed. (b9049771)
826
- * Checkbox component css issue fixed. (d5036517)
827
- * Sorting of story titles in left navigation menu on storybook fixed for parent level menus. (d10d451e)
828
- * Enzyme is completely removed from library and snapshots are updated accordingly. (d511f73c)
1107
+
1108
+ - Radio component css issue fixed. (b9049771)
1109
+ - Checkbox component css issue fixed. (d5036517)
1110
+ - Sorting of story titles in left navigation menu on storybook fixed for parent level menus. (d10d451e)
1111
+ - Enzyme is completely removed from library and snapshots are updated accordingly. (d511f73c)
829
1112
 
830
1113
  ### Improvements
831
- * Text component's subtle variant color updated. (32d2fe9c)
832
- * Button component's button size for large icons updated. (65b100c2)
833
1114
 
1115
+ - Text component's subtle variant color updated. (32d2fe9c)
1116
+ - Button component's button size for large icons updated. (65b100c2)
834
1117
 
835
1118
  ### Documentation
836
- * Stories of `VerticalNav` component updated according to updated documentation and features. (87c5955e)
837
- * Stories of `Dropdown` component updated according to updated documentation and features. (70329569)
838
- * Stories of `Toast` component updated according to updated documentation and features. (b9e20b78)
839
- * Stories of `Switch` component updated according to updated documentation and features. (c66e5e55)
840
1119
 
1120
+ - Stories of `VerticalNav` component updated according to updated documentation and features. (87c5955e)
1121
+ - Stories of `Dropdown` component updated according to updated documentation and features. (70329569)
1122
+ - Stories of `Toast` component updated according to updated documentation and features. (b9e20b78)
1123
+ - Stories of `Switch` component updated according to updated documentation and features. (c66e5e55)
841
1124
 
842
- -------------------
1125
+ ---
843
1126
 
844
- ## 2.0.0 (2021-04-28)
1127
+ ## 2.0.0 (2021-04-28)
845
1128
 
846
1129
  ### Highlights
847
- * Released 2.x of design system components.
848
- * Support for storybook 6.
849
- * Ability to edit component usage example on code sandbox on one click.
850
- * Embed mode for minimal story embedding.
851
- * New components introduced like Collapsible, CardHeader, CardBody, CardSubdued, CardFooter.
852
- * Improved api design and features of navigation components.
853
- * Calendar supports different sizes now.
854
- * Manual changelog creation and review process.
855
- * Separate library for charts, removed charts from components library.
856
1130
 
1131
+ - Released 2.x of design system components.
1132
+ - Support for storybook 6.
1133
+ - Ability to edit component usage example on code sandbox on one click.
1134
+ - Embed mode for minimal story embedding.
1135
+ - New components introduced like Collapsible, CardHeader, CardBody, CardSubdued, CardFooter.
1136
+ - Improved api design and features of navigation components.
1137
+ - Calendar supports different sizes now.
1138
+ - Manual changelog creation and review process.
1139
+ - Separate library for charts, removed charts from components library.
857
1140
 
858
1141
  ### Breaking changes
859
- * Recharts is removed from dependency and DonutChart component is removed from library. (adef7f46)
1142
+
1143
+ - Recharts is removed from dependency and DonutChart component is removed from library. (adef7f46)
860
1144
 
861
1145
  ### Migration guide
862
- * For DonutChart (if you are using) install the library `@innovaccer/charts` and import the component from it like `import { DonutChart } from @innovaccer/charts`.
1146
+
1147
+ - For DonutChart (if you are using) install the library `@innovaccer/charts` and import the component from it like `import { DonutChart } from @innovaccer/charts`.
863
1148
 
864
1149
  ### Features
865
- * Adds HorizontalNav and VerticalNav as new components. (a5c02f61)
866
- * New components to support Card component, CardHeader, CardBody, CardFooter and CardSubdued are added. (1dbae2f1)
1150
+
1151
+ - Adds HorizontalNav and VerticalNav as new components. (a5c02f61)
1152
+ - New components to support Card component, CardHeader, CardBody, CardFooter and CardSubdued are added. (1dbae2f1)
867
1153
 
868
1154
  ### Fixes
869
- * Fixes scroll issue in List component. (c7f11e5f)
870
- * Fixes Label component's line-height. (4e33460b)
871
- * Removes redundant wrapper div from Textarea component. (18d60c48)
1155
+
1156
+ - Fixes scroll issue in List component. (c7f11e5f)
1157
+ - Fixes Label component's line-height. (4e33460b)
1158
+ - Removes redundant wrapper div from Textarea component. (18d60c48)
872
1159
 
873
1160
  ### Improvements
874
- * Removes automatic changelog generation. (fb27f302)
1161
+
1162
+ - Removes automatic changelog generation. (fb27f302)
875
1163
 
876
1164
  ### Documentation
877
- * Updates Card component stories. (5ce568f8)
878
- * Updates Message component stories. (fa5a70fe)
879
- * Updates HorizontalNav component stories. (19b6f28b)
880
- * Improved css utilities documentation with ability to copy tokens and class names on a single click. (3afc8d05)
881
1165
 
882
- -------------------
883
- ## v2.0.0-6 (2021-04-22)
1166
+ - Updates Card component stories. (5ce568f8)
1167
+ - Updates Message component stories. (fa5a70fe)
1168
+ - Updates HorizontalNav component stories. (19b6f28b)
1169
+ - Improved css utilities documentation with ability to copy tokens and class names on a single click. (3afc8d05)
1170
+
1171
+ ---
1172
+
1173
+ ## v2.0.0-6 (2021-04-22)
884
1174
 
885
1175
  ### Highlights
1176
+
886
1177
  NA
887
1178
 
888
1179
  ### Breaking changes
1180
+
889
1181
  NA
890
1182
 
891
1183
  ### Migration guide
1184
+
892
1185
  NA
893
1186
 
894
1187
  ### Deprecations
895
- * Description as a children in Message component is now deprecated, Please use description prop.
1188
+
1189
+ - Description as a children in Message component is now deprecated, Please use description prop.
896
1190
 
897
1191
  ### Features
898
- * Adds support for Icon sizes in Button component. (69f0d1a7)
1192
+
1193
+ - Adds support for Icon sizes in Button component. (69f0d1a7)
899
1194
 
900
1195
  ### Fixes
901
- * Fixes column size 3 issues. (71d608f1)
902
- * Removes @types/classnames library, to use updated version of classnames library. (41809fa2)
903
- * Fixes layering of multiple overlays. (a86eb33b)
904
- * Fix controlled Dropdown search functionality issue. (e3e162ba)
1196
+
1197
+ - Fixes column size 3 issues. (71d608f1)
1198
+ - Removes @types/classnames library, to use updated version of classnames library. (41809fa2)
1199
+ - Fixes layering of multiple overlays. (a86eb33b)
1200
+ - Fix controlled Dropdown search functionality issue. (e3e162ba)
905
1201
 
906
1202
  ### Improvements
907
- * In Message component support for actions is added and component is redesigned according to new design. Also support for description prop is added and children is deprecated. (63c22d1e)
908
- * In Label component ability to show optional hint as 'Optional' is added. (38ef846b)
1203
+
1204
+ - In Message component support for actions is added and component is redesigned according to new design. Also support for description prop is added and children is deprecated. (63c22d1e)
1205
+ - In Label component ability to show optional hint as 'Optional' is added. (38ef846b)
909
1206
 
910
1207
  ### Documentation
911
- * Updates Button component stories. (91920acd)
912
1208
 
913
- -------------------
914
- ## v2.0.0-5 (2021-04-14)
1209
+ - Updates Button component stories. (91920acd)
1210
+
1211
+ ---
1212
+
1213
+ ## v2.0.0-5 (2021-04-14)
915
1214
 
916
1215
  ### Highlights
1216
+
917
1217
  NA
918
1218
 
919
1219
  ### Breaking changes
1220
+
920
1221
  NA
921
1222
 
922
1223
  ### Migration guide
1224
+
923
1225
  NA
924
1226
 
925
1227
  ### Deprecations
1228
+
926
1229
  NA
927
1230
 
928
1231
  ### Features
1232
+
929
1233
  NA
930
1234
 
931
1235
  ### Fixes
932
- * Minor issues with liveEditor in DocPage are fixed. (007486c3)
933
- * Updates sizing for small variant of Calendar component. (67f00da9)
1236
+
1237
+ - Minor issues with liveEditor in DocPage are fixed. (007486c3)
1238
+ - Updates sizing for small variant of Calendar component. (67f00da9)
934
1239
 
935
1240
  ### Improvements
1241
+
936
1242
  NA
937
1243
 
938
1244
  ### Documentation
1245
+
939
1246
  NA
940
1247
 
941
- -------------------
942
- ## v2.0.0-4 (2021-04-08)
1248
+ ---
1249
+
1250
+ ## v2.0.0-4 (2021-04-08)
943
1251
 
944
1252
  ### Highlights
1253
+
945
1254
  NA
946
1255
 
947
1256
  ### Breaking changes
1257
+
948
1258
  NA
949
1259
 
950
1260
  ### Migration guide
1261
+
951
1262
  NA
952
1263
 
953
1264
  ### Deprecations
1265
+
954
1266
  NA
955
1267
 
956
1268
  ### Features
1269
+
957
1270
  NA
958
1271
 
959
1272
  ### Fixes
960
- * Fixes issue in updating horizontal scroll of Grid (Table). (35f44c96)
1273
+
1274
+ - Fixes issue in updating horizontal scroll of Grid (Table). (35f44c96)
961
1275
 
962
1276
  ### Improvements
963
- * Updates header label of Table component. (9d42ab1a)
964
- * Adds react-dynamic-virtual-scroll library in table to improve scrolling. (1b721f6d)
1277
+
1278
+ - Updates header label of Table component. (9d42ab1a)
1279
+ - Adds react-dynamic-virtual-scroll library in table to improve scrolling. (1b721f6d)
965
1280
 
966
1281
  ### Documentation
1282
+
967
1283
  NA
968
1284
 
969
- -------------------
970
- ## v2.0.0-3 (2021-04-02)
1285
+ ---
1286
+
1287
+ ## v2.0.0-3 (2021-04-02)
971
1288
 
972
1289
  ### Highlights
973
- * Calendar available in different sizes.
1290
+
1291
+ - Calendar available in different sizes.
974
1292
 
975
1293
  ### Breaking changes
1294
+
976
1295
  NA
977
1296
 
978
1297
  ### Migration guide
1298
+
979
1299
  NA
980
1300
 
981
1301
  ### Deprecations
1302
+
982
1303
  NA
983
1304
 
984
1305
  ### Features
985
- * Introduced different sizes in Calendar component, now Calendar component sizes can be controlled by prop exposed for the same. (55f4207e)
986
- * In DocPage ability to hide and show code on button click is added and feature to keep code panel expanded by default in embed mode is added. (ded41856)
1306
+
1307
+ - Introduced different sizes in Calendar component, now Calendar component sizes can be controlled by prop exposed for the same. (55f4207e)
1308
+ - In DocPage ability to hide and show code on button click is added and feature to keep code panel expanded by default in embed mode is added. (ded41856)
987
1309
 
988
1310
  ### Fixes
989
- * In Breadcrumbs component Link component is used and removed old local subtleLink component. (e866178f)
990
- * Scroll inside Collapsible panel component is fixed. (ded41856)
991
- * classnames library version 2.2.6 is frozen to avoid unwanted updates and breaks. (ded41856)
1311
+
1312
+ - In Breadcrumbs component Link component is used and removed old local subtleLink component. (e866178f)
1313
+ - Scroll inside Collapsible panel component is fixed. (ded41856)
1314
+ - classnames library version 2.2.6 is frozen to avoid unwanted updates and breaks. (ded41856)
992
1315
 
993
1316
  ### Improvements
1317
+
994
1318
  NA
995
1319
 
996
1320
  ### Documentation
1321
+
997
1322
  NA
998
1323
 
999
- -------------------
1000
- ## v2.0.0-2 (2021-03-31)
1324
+ ---
1325
+
1326
+ ## v2.0.0-2 (2021-03-31)
1001
1327
 
1002
1328
  ### Highlights
1003
- * New component: Collapsible
1004
- * Ability to edit and preview components directly in codeSandbox on single click.
1329
+
1330
+ - New component: Collapsible
1331
+ - Ability to edit and preview components directly in codeSandbox on single click.
1005
1332
 
1006
1333
  ### Breaking changes
1334
+
1007
1335
  NA
1008
1336
 
1009
1337
  ### Migration guide
1338
+
1010
1339
  NA
1011
1340
 
1012
1341
  ### Deprecations
1342
+
1013
1343
  NA
1014
1344
 
1015
1345
  ### Features
1016
- * Introduced noSandbox prop in story's docPage parameter to disable edit in code sandbox feature for specific story. (073dc0e8)
1017
- * new component Collapsible is added. (90c3a954)
1018
- * adds codeSandbox integration in docs page story preview. (0cdcbb33)
1346
+
1347
+ - Introduced noSandbox prop in story's docPage parameter to disable edit in code sandbox feature for specific story. (073dc0e8)
1348
+ - new component Collapsible is added. (90c3a954)
1349
+ - adds codeSandbox integration in docs page story preview. (0cdcbb33)
1019
1350
 
1020
1351
  ### Fixes
1021
- * Calendar component added to library build. (e3bb7dab)
1022
- * Fixes FullscreenModal's header for close button alignment. (7d269b8a)
1023
- * Updates html code indentation used in code sandbox. (eedd4bd6)
1024
- * Adds import generator to generate component imports for show code and edit in codeSandbox source codes. (becf40a3)
1025
- * Updates configs to support Story book version 6. (be41707e)
1026
- * updates titles of all stories to support SB6. (dd072353)
1027
- * update title of page to be as of story title, enables args table tab. (c3ce929d)
1028
- * Support for month nav is fixed in Calendar component. (7cacd5bd)
1352
+
1353
+ - Calendar component added to library build. (e3bb7dab)
1354
+ - Fixes FullscreenModal's header for close button alignment. (7d269b8a)
1355
+ - Updates html code indentation used in code sandbox. (eedd4bd6)
1356
+ - Adds import generator to generate component imports for show code and edit in codeSandbox source codes. (becf40a3)
1357
+ - Updates configs to support Story book version 6. (be41707e)
1358
+ - updates titles of all stories to support SB6. (dd072353)
1359
+ - update title of page to be as of story title, enables args table tab. (c3ce929d)
1360
+ - Support for month nav is fixed in Calendar component. (7cacd5bd)
1029
1361
 
1030
1362
  ### Improvements
1363
+
1031
1364
  NA
1032
1365
 
1033
1366
  ### Documentation
1034
- * Updates Button component stories. (5f8b8a9f)
1035
1367
 
1368
+ - Updates Button component stories. (5f8b8a9f)
1369
+
1370
+ ---
1036
1371
 
1037
- -------------------
1038
- ## v2.0.0-1 (2021-03-24)
1372
+ ## v2.0.0-1 (2021-03-24)
1039
1373
 
1040
1374
  ### Highlights
1375
+
1041
1376
  NA
1042
1377
 
1043
1378
  ### Breaking changes
1379
+
1044
1380
  NA
1045
1381
 
1046
1382
  ### Migration guide
1383
+
1047
1384
  NA
1048
1385
 
1049
1386
  ### Deprecations
1387
+
1050
1388
  NA
1051
1389
 
1052
1390
  ### Features
1391
+
1053
1392
  NA
1054
1393
 
1055
1394
  ### Fixes
1056
- * Fixes Layout (ROW, Column) components styling according to bootstrap css. (6fa16085)
1395
+
1396
+ - Fixes Layout (ROW, Column) components styling according to bootstrap css. (6fa16085)
1057
1397
 
1058
1398
  ### Improvements
1059
- * Removes all stories rendering from doc page of a single component and adds show and hide feature for source code of story on docPage. (9d4d216d)
1399
+
1400
+ - Removes all stories rendering from doc page of a single component and adds show and hide feature for source code of story on docPage. (9d4d216d)
1060
1401
 
1061
1402
  ### Documentation
1403
+
1062
1404
  NA
1063
1405
 
1064
- -------------------
1065
- ## v2.0.0-0 (2021-03-19)
1406
+ ---
1407
+
1408
+ ## v2.0.0-0 (2021-03-19)
1066
1409
 
1067
1410
  ### Highlights
1068
- * Support for storybook 6 added.
1411
+
1412
+ - Support for storybook 6 added.
1069
1413
 
1070
1414
  ### Breaking changes
1415
+
1071
1416
  NA
1072
1417
 
1073
1418
  ### Migration guide
1419
+
1074
1420
  NA
1075
1421
 
1076
1422
  ### Deprecations
1423
+
1077
1424
  NA
1078
1425
 
1079
1426
  ### Features
1080
- * upgrades storybook to 6.x, and all its dependencies to supported versions. (de09643a)
1081
- * Fixes Badge component styling. (4d77d53f)
1427
+
1428
+ - upgrades storybook to 6.x, and all its dependencies to supported versions. (de09643a)
1429
+ - Fixes Badge component styling. (4d77d53f)
1082
1430
 
1083
1431
  ### Fixes
1432
+
1084
1433
  NA
1085
1434
 
1086
1435
  ### Improvements
1087
- * Updates default style for Column component. (2c0b07c8)
1088
- * Adds size and appearance support in Link component. (3b6eee89)
1089
- * Adds support for count in horizontal navigation. (5a930857)
1436
+
1437
+ - Updates default style for Column component. (2c0b07c8)
1438
+ - Adds size and appearance support in Link component. (3b6eee89)
1439
+ - Adds support for count in horizontal navigation. (5a930857)
1090
1440
 
1091
1441
  ### Documentation
1442
+
1092
1443
  NA
1093
1444
 
1094
- -------------------
1445
+ ---