@innovaccer/design-system 2.7.0 → 2.9.0-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (427) hide show
  1. package/.github/workflows/chromatic.yml +3 -1
  2. package/.github/workflows/docs_pull_request.yml +20 -0
  3. package/.github/workflows/main.yml +1 -1
  4. package/.github/workflows/manual.yml +1 -1
  5. package/.github/workflows/pull_request.yml +1 -1
  6. package/.github/workflows/test.yml +1 -1
  7. package/CHANGELOG.md +68 -0
  8. package/README.md +6 -0
  9. package/core/components/atoms/_chip/__tests__/__snapshots__/_chip.test.tsx.snap +8 -8
  10. package/core/components/atoms/_chip/index.tsx +1 -1
  11. package/core/components/atoms/avatar/__tests__/__snapshots__/Avatar.test.tsx.snap +20 -0
  12. package/core/components/atoms/avatarGroup/AvatarCount.tsx +29 -0
  13. package/core/components/atoms/avatarGroup/AvatarGroup.tsx +16 -62
  14. package/core/components/atoms/avatarGroup/AvatarPopperBody.tsx +37 -0
  15. package/core/components/atoms/avatarGroup/Avatars.tsx +23 -0
  16. package/core/components/atoms/avatarGroup/__stories__/index.story.tsx +41 -0
  17. package/core/components/atoms/avatarGroup/__tests__/AvatarGroup.test.tsx +1 -1
  18. package/core/components/atoms/avatarGroup/__tests__/__snapshots__/AvatarGroup.test.tsx.snap +8 -4
  19. package/core/components/atoms/button/Button.tsx +1 -2
  20. package/core/components/atoms/checkbox/__stories__/Group.story.tsx +1 -1
  21. package/core/components/atoms/checkbox/__stories__/Nested.story.tsx +2 -0
  22. package/core/components/atoms/chip/__tests__/__snapshots__/Chip.test.tsx.snap +11 -11
  23. package/core/components/atoms/chipGroup/__tests__/__snapshots__/chipGroup.test.tsx.snap +4 -4
  24. package/core/components/atoms/dropdown/DropdownButton.tsx +1 -1
  25. package/core/components/atoms/dropdown/DropdownList.tsx +56 -29
  26. package/core/components/atoms/dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap +29 -2
  27. package/core/components/atoms/popperWrapper/PopperWrapper.tsx +104 -12
  28. package/core/components/atoms/toast/__stories__/WithDescription.story.tsx +3 -1
  29. package/core/components/css-utilities/designTokens/Data.tsx +18 -0
  30. package/core/components/css-utilities/designTokens/Transitions.story.tsx +37 -0
  31. package/core/components/molecules/chipInput/__tests__/__snapshots__/ChipInput.test.tsx.snap +4 -4
  32. package/core/components/molecules/dialog/__tests__/__snapshots__/Dialog.test.tsx.snap +260 -195
  33. package/core/components/molecules/editableChipInput/__tests__/__snapshots__/EditableChipInput.test.tsx.snap +4 -4
  34. package/core/components/molecules/editableDropdown/__tests__/__snapshots__/EditableDropdown.test.tsx.snap +1 -0
  35. package/core/components/molecules/fullscreenModal/FullscreenModal.tsx +13 -12
  36. package/core/components/molecules/fullscreenModal/__tests__/Fullscreen.test.tsx +2 -5
  37. package/core/components/molecules/fullscreenModal/__tests__/__snapshots__/Fullscreen.test.tsx.snap +126 -96
  38. package/core/components/molecules/modal/Modal.tsx +11 -9
  39. package/core/components/molecules/modal/__tests__/__snapshots__/Modal.test.tsx.snap +240 -180
  40. package/core/components/molecules/popover/Popover.tsx +9 -0
  41. package/core/components/molecules/popover/__tests__/__snapshots__/Popover.test.tsx.snap +16 -8
  42. package/core/components/molecules/sidesheet/Sidesheet.tsx +23 -22
  43. package/core/components/molecules/sidesheet/__tests__/__snapshots__/Sidesheet.test.tsx.snap +40 -30
  44. package/core/components/molecules/tooltip/Tooltip.tsx +20 -1
  45. package/core/components/molecules/tooltip/__tests__/__snapshots__/Tooltip.test.tsx.snap +8 -0
  46. package/core/components/organisms/calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +8 -8
  47. package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +14 -13
  48. package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +42 -30
  49. package/core/components/organisms/grid/GridBody.tsx +1 -2
  50. package/core/components/organisms/table/Table.tsx +0 -1
  51. package/core/components/organisms/table/__stories__/NestedTableWithNestedCard.story.tsx +2 -2
  52. package/core/components/organisms/table/__tests__/__snapshots__/Table.test.tsx.snap +1544 -0
  53. package/core/components/organisms/verticalNav/MenuItem.tsx +6 -2
  54. package/core/components/organisms/verticalNav/VerticalNav.tsx +8 -2
  55. package/core/components/organisms/verticalNav/__stories__/CustomItemsRenderer.story.tsx +238 -0
  56. package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +168 -3
  57. package/css/dist/index.css +300 -62
  58. package/css/dist/index.css.map +1 -1
  59. package/css/src/components/ProgressBar.css +1 -1
  60. package/css/src/components/avatarGroup.css +0 -9
  61. package/css/src/components/button.css +4 -4
  62. package/css/src/components/chip.css +4 -0
  63. package/css/src/components/dropdown.css +5 -9
  64. package/css/src/components/dropdownButton.css +2 -0
  65. package/css/src/components/fullscreenModal.css +0 -5
  66. package/css/src/components/grid.css +0 -11
  67. package/css/src/components/overlay.css +0 -11
  68. package/css/src/components/popover.css +12 -0
  69. package/css/src/components/slider.css +1 -0
  70. package/css/src/components/tabs.css +1 -1
  71. package/css/src/components/textarea.css +0 -11
  72. package/css/src/components/tooltip.css +115 -0
  73. package/css/src/components/verticalNav.css +2 -0
  74. package/css/src/core/animation.css +8 -0
  75. package/css/src/core/utilities.css +11 -0
  76. package/css/src/utils/utility.css +4 -0
  77. package/css/src/variables/index.css +19 -0
  78. package/dist/core/components/atoms/avatarGroup/AvatarCount.d.ts +2 -0
  79. package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +2 -2
  80. package/dist/core/components/atoms/avatarGroup/AvatarPopperBody.d.ts +2 -0
  81. package/dist/core/components/atoms/avatarGroup/Avatars.d.ts +2 -0
  82. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +61 -54
  83. package/dist/core/components/css-utilities/designTokens/Data.d.ts +8 -0
  84. package/dist/core/components/css-utilities/designTokens/Transitions.story.d.ts +12 -0
  85. package/dist/core/components/molecules/popover/Popover.d.ts +4 -0
  86. package/dist/core/components/molecules/sidesheet/Sidesheet.d.ts +1 -0
  87. package/dist/core/components/organisms/verticalNav/MenuItem.d.ts +1 -0
  88. package/dist/core/components/organisms/verticalNav/VerticalNav.d.ts +2 -0
  89. package/dist/index.esm.js +278 -142
  90. package/dist/index.js +282 -149
  91. package/dist/index.js.map +1 -1
  92. package/dist/index.umd.js +1 -1
  93. package/dist/index.umd.js.br +0 -0
  94. package/dist/index.umd.js.gz +0 -0
  95. package/docs/.eslintrc.json +1 -0
  96. package/docs/.unotes/templates/title_date.hbs +4 -0
  97. package/docs/.unotes/unotes_meta.json +302 -0
  98. package/docs/LICENSE +21 -0
  99. package/docs/README.md +31 -0
  100. package/docs/gatsby-browser.js +6 -0
  101. package/docs/gatsby-config.js +171 -0
  102. package/docs/gatsby-node.js +75 -0
  103. package/docs/index.js +1 -0
  104. package/docs/package.json +54 -0
  105. package/docs/src/components/Colors/Colors.css +19 -0
  106. package/docs/src/components/Colors/Colors.js +82 -0
  107. package/docs/src/components/Container/ComponentsContainer.js +75 -0
  108. package/docs/src/components/Container/Container.js +114 -0
  109. package/docs/src/components/Container/index.js +3 -0
  110. package/docs/src/components/Footer/Footer.css +7 -0
  111. package/docs/src/components/Footer/Footer.js +40 -0
  112. package/docs/src/components/Header/Header.css +32 -0
  113. package/docs/src/components/Header/Header.js +60 -0
  114. package/docs/src/components/Header/index.js +3 -0
  115. package/docs/src/components/LastModifiedDate/LastModifiedDate.js +24 -0
  116. package/docs/src/components/LastModifiedDate/index.js +3 -0
  117. package/docs/src/components/Layout.js +291 -0
  118. package/docs/src/components/LeftNav/LeftNav.js +101 -0
  119. package/docs/src/components/LeftNav/index.js +3 -0
  120. package/docs/src/components/Logos/Logos.css +29 -0
  121. package/docs/src/components/Logos/Logos.js +64 -0
  122. package/docs/src/components/Meta.js +101 -0
  123. package/docs/src/components/PropsTable/ArgJsDoc.tsx +102 -0
  124. package/docs/src/components/PropsTable/ArgRow.tsx +142 -0
  125. package/docs/src/components/PropsTable/ArgValue.tsx +182 -0
  126. package/docs/src/components/PropsTable/EmptyBlock.tsx +22 -0
  127. package/docs/src/components/PropsTable/SectionRow.tsx +126 -0
  128. package/docs/src/components/PropsTable/Shared.tsx +53 -0
  129. package/docs/src/components/PropsTable/Table.tsx +463 -0
  130. package/docs/src/components/PropsTable/card.css +7 -0
  131. package/docs/src/components/PropsTable/generateImports.tsx +20 -0
  132. package/docs/src/components/PropsTable/index.js +248 -0
  133. package/docs/src/components/PropsTable/prism.css +146 -0
  134. package/docs/src/components/PropsTable/sandbox.tsx +81 -0
  135. package/docs/src/components/PropsTable/theme.js +53 -0
  136. package/docs/src/components/PropsTable/types.tsx +44 -0
  137. package/docs/src/components/Rules/DONTs.js +13 -0
  138. package/docs/src/components/Rules/DOs.js +13 -0
  139. package/docs/src/components/Rules/IconWrapper.js +18 -0
  140. package/docs/src/components/Rules/InlineMessage.js +11 -0
  141. package/docs/src/components/Rules/Rules.css +17 -0
  142. package/docs/src/components/Rules/Rules.js +39 -0
  143. package/docs/src/components/TableOfContent/TableOfContent.css +37 -0
  144. package/docs/src/components/TableOfContent/TableOfContent.js +126 -0
  145. package/docs/src/components/css/global.css +15 -0
  146. package/docs/src/components/css/prism.css +38 -0
  147. package/docs/src/components/css/style.css +97 -0
  148. package/docs/src/components/templates/Default.js +24 -0
  149. package/docs/src/components/templates/Homepage.js +13 -0
  150. package/docs/src/data/components/images/Avatars.png +0 -0
  151. package/docs/src/data/components/images/Datepicker.png +0 -0
  152. package/docs/src/data/components/images/EditableChipInput.png +0 -0
  153. package/docs/src/data/components/images/Modal.png +0 -0
  154. package/docs/src/data/components/images/Sidesheet.png +0 -0
  155. package/docs/src/data/components/images/Table.png +0 -0
  156. package/docs/src/data/components/index.js +285 -0
  157. package/docs/src/data/footer-items.yaml +16 -0
  158. package/docs/src/data/header-items.yaml +20 -0
  159. package/docs/src/data/home-menu.yaml +23 -0
  160. package/docs/src/data/home-resources.yaml +14 -0
  161. package/docs/src/data/nav/components.yaml +45 -0
  162. package/docs/src/data/nav/content.yaml +25 -0
  163. package/docs/src/data/nav/default.yaml +11 -0
  164. package/docs/src/data/nav/foundations.yaml +22 -0
  165. package/docs/src/data/nav/guide-items.yaml +6 -0
  166. package/docs/src/data/nav/introduction.yaml +11 -0
  167. package/docs/src/data/storybook.json +345189 -0
  168. package/docs/src/pages/404.js +31 -0
  169. package/docs/src/pages/components/avatar/code.mdx +14 -0
  170. package/docs/src/pages/components/avatar/images/avatar-1.png +0 -0
  171. package/docs/src/pages/components/avatar/images/avatar-2.png +0 -0
  172. package/docs/src/pages/components/avatar/images/avatar-3.png +0 -0
  173. package/docs/src/pages/components/avatar/images/avatar-4.png +0 -0
  174. package/docs/src/pages/components/avatar/images/avatar-5.png +0 -0
  175. package/docs/src/pages/components/avatar/usage.mdx +53 -0
  176. package/docs/src/pages/components/badges/code.mdx +15 -0
  177. package/docs/src/pages/components/badges/images/badges-1.png +0 -0
  178. package/docs/src/pages/components/badges/images/badges-2.png +0 -0
  179. package/docs/src/pages/components/badges/usage.mdx +43 -0
  180. package/docs/src/pages/components/breadcrumbs/code.mdx +15 -0
  181. package/docs/src/pages/components/breadcrumbs/usage.mdx +30 -0
  182. package/docs/src/pages/components/button/code.mdx +18 -0
  183. package/docs/src/pages/components/button/content.mdx +652 -0
  184. package/docs/src/pages/components/button/images/buttons-1.png +0 -0
  185. package/docs/src/pages/components/button/images/buttons-2.png +0 -0
  186. package/docs/src/pages/components/button/usage.mdx +100 -0
  187. package/docs/src/pages/components/calendar/code.mdx +15 -0
  188. package/docs/src/pages/components/calendar/usage.mdx +9 -0
  189. package/docs/src/pages/components/card/code.mdx +15 -0
  190. package/docs/src/pages/components/card/usage.mdx +54 -0
  191. package/docs/src/pages/components/checkbox/code.mdx +16 -0
  192. package/docs/src/pages/components/checkbox/usage.mdx +49 -0
  193. package/docs/src/pages/components/chips/code.mdx +15 -0
  194. package/docs/src/pages/components/chips/usage.mdx +34 -0
  195. package/docs/src/pages/components/datePicker/code.mdx +7 -0
  196. package/docs/src/pages/components/datePicker/images/datePicker-1.png +0 -0
  197. package/docs/src/pages/components/datePicker/images/datePicker-2.png +0 -0
  198. package/docs/src/pages/components/datePicker/images/datePicker-3.png +0 -0
  199. package/docs/src/pages/components/datePicker/images/datePicker-4.png +0 -0
  200. package/docs/src/pages/components/datePicker/images/datePicker-5.png +0 -0
  201. package/docs/src/pages/components/datePicker/usage.mdx +58 -0
  202. package/docs/src/pages/components/index.mdx +7 -0
  203. package/docs/src/pages/components/message/code.mdx +16 -0
  204. package/docs/src/pages/components/message/usage.mdx +26 -0
  205. package/docs/src/pages/components/overview/index.mdx +6 -0
  206. package/docs/src/pages/components/overview/tabs/Overview.js +72 -0
  207. package/docs/src/pages/components/overview/tabs/all-components.mdx +10 -0
  208. package/docs/src/pages/components/overview/tabs/overview.css +30 -0
  209. package/docs/src/pages/components/overview/tabs/status.mdx +22 -0
  210. package/docs/src/pages/components/radio/code.mdx +17 -0
  211. package/docs/src/pages/components/radio/usage.mdx +126 -0
  212. package/docs/src/pages/components/sidesheet/code.mdx +8 -0
  213. package/docs/src/pages/components/sidesheet/interactions.mdx +8 -0
  214. package/docs/src/pages/components/sidesheet/usage.mdx +25 -0
  215. package/docs/src/pages/components/slider/code.mdx +15 -0
  216. package/docs/src/pages/components/slider/usage.mdx +49 -0
  217. package/docs/src/pages/components/statushint/code.mdx +15 -0
  218. package/docs/src/pages/components/statushint/usage.mdx +19 -0
  219. package/docs/src/pages/components/steppers/code.mdx +16 -0
  220. package/docs/src/pages/components/steppers/images/stepper-1.gif +0 -0
  221. package/docs/src/pages/components/steppers/images/stepper-2.png +0 -0
  222. package/docs/src/pages/components/steppers/images/stepper-3.png +0 -0
  223. package/docs/src/pages/components/steppers/images/stepper-4.png +0 -0
  224. package/docs/src/pages/components/steppers/images/stepper-5.png +0 -0
  225. package/docs/src/pages/components/steppers/images/stepper-6.png +0 -0
  226. package/docs/src/pages/components/steppers/interactions.mdx +28 -0
  227. package/docs/src/pages/components/steppers/usage.mdx +201 -0
  228. package/docs/src/pages/components/switch/code.mdx +16 -0
  229. package/docs/src/pages/components/switch/images/switch-1.gif +0 -0
  230. package/docs/src/pages/components/switch/images/switch-2.gif +0 -0
  231. package/docs/src/pages/components/switch/images/switch-3.png +0 -0
  232. package/docs/src/pages/components/switch/interactions.mdx +392 -0
  233. package/docs/src/pages/components/switch/usage.mdx +114 -0
  234. package/docs/src/pages/components/table/code.mdx +14 -0
  235. package/docs/src/pages/components/table/images/table-1.png +0 -0
  236. package/docs/src/pages/components/table/images/table-10.png +0 -0
  237. package/docs/src/pages/components/table/images/table-11.gif +0 -0
  238. package/docs/src/pages/components/table/images/table-12.png +0 -0
  239. package/docs/src/pages/components/table/images/table-13.png +0 -0
  240. package/docs/src/pages/components/table/images/table-14.png +0 -0
  241. package/docs/src/pages/components/table/images/table-15.png +0 -0
  242. package/docs/src/pages/components/table/images/table-16.png +0 -0
  243. package/docs/src/pages/components/table/images/table-17.png +0 -0
  244. package/docs/src/pages/components/table/images/table-18.png +0 -0
  245. package/docs/src/pages/components/table/images/table-19.png +0 -0
  246. package/docs/src/pages/components/table/images/table-2.png +0 -0
  247. package/docs/src/pages/components/table/images/table-20.png +0 -0
  248. package/docs/src/pages/components/table/images/table-21.png +0 -0
  249. package/docs/src/pages/components/table/images/table-22.png +0 -0
  250. package/docs/src/pages/components/table/images/table-23.png +0 -0
  251. package/docs/src/pages/components/table/images/table-24.png +0 -0
  252. package/docs/src/pages/components/table/images/table-25.png +0 -0
  253. package/docs/src/pages/components/table/images/table-26.png +0 -0
  254. package/docs/src/pages/components/table/images/table-27.png +0 -0
  255. package/docs/src/pages/components/table/images/table-28.png +0 -0
  256. package/docs/src/pages/components/table/images/table-29.png +0 -0
  257. package/docs/src/pages/components/table/images/table-3.png +0 -0
  258. package/docs/src/pages/components/table/images/table-30.png +0 -0
  259. package/docs/src/pages/components/table/images/table-4.png +0 -0
  260. package/docs/src/pages/components/table/images/table-5.png +0 -0
  261. package/docs/src/pages/components/table/images/table-6.png +0 -0
  262. package/docs/src/pages/components/table/images/table-7.png +0 -0
  263. package/docs/src/pages/components/table/images/table-8.png +0 -0
  264. package/docs/src/pages/components/table/images/table-9.png +0 -0
  265. package/docs/src/pages/components/table/interactions.mdx +97 -0
  266. package/docs/src/pages/components/table/usage.mdx +364 -0
  267. package/docs/src/pages/components/tabs/code.mdx +15 -0
  268. package/docs/src/pages/components/tabs/images/tabs-1.png +0 -0
  269. package/docs/src/pages/components/tabs/images/tabs-2.png +0 -0
  270. package/docs/src/pages/components/tabs/images/tabs-3.png +0 -0
  271. package/docs/src/pages/components/tabs/images/tabs-4.png +0 -0
  272. package/docs/src/pages/components/tabs/images/tabs-5.png +0 -0
  273. package/docs/src/pages/components/tabs/images/tabs-6.png +0 -0
  274. package/docs/src/pages/components/tabs/images/tabs-7.png +0 -0
  275. package/docs/src/pages/components/tabs/interactions.mdx +487 -0
  276. package/docs/src/pages/components/tabs/usage.mdx +164 -0
  277. package/docs/src/pages/components/toast/code.mdx +15 -0
  278. package/docs/src/pages/components/toast/images/toast-1.png +0 -0
  279. package/docs/src/pages/components/toast/images/toast-2.gif +0 -0
  280. package/docs/src/pages/components/toast/images/toast-3.gif +0 -0
  281. package/docs/src/pages/components/toast/images/toast-4.png +0 -0
  282. package/docs/src/pages/components/toast/images/toast-5.gif +0 -0
  283. package/docs/src/pages/components/toast/images/toast-6.gif +0 -0
  284. package/docs/src/pages/components/toast/interactions.mdx +218 -0
  285. package/docs/src/pages/components/toast/usage.mdx +156 -0
  286. package/docs/src/pages/components/tooltip/code.mdx +16 -0
  287. package/docs/src/pages/components/tooltip/images/Tooltip-1.png +0 -0
  288. package/docs/src/pages/components/tooltip/images/tooltip-2.gif +0 -0
  289. package/docs/src/pages/components/tooltip/images/tooltip-3.gif +0 -0
  290. package/docs/src/pages/components/tooltip/interactions.mdx +219 -0
  291. package/docs/src/pages/components/tooltip/usage.mdx +80 -0
  292. package/docs/src/pages/content/button-guidelines/index.mdx +7 -0
  293. package/docs/src/pages/content/button-guidelines/tabs/button-glossary.mdx +144 -0
  294. package/docs/src/pages/content/button-guidelines/tabs/confusing-buttons.mdx +184 -0
  295. package/docs/src/pages/content/email-guidelines.mdx +107 -0
  296. package/docs/src/pages/content/empty-states.mdx +8 -0
  297. package/docs/src/pages/content/error-messages.mdx +165 -0
  298. package/docs/src/pages/content/house-rules/tabs/basics.mdx +236 -0
  299. package/docs/src/pages/content/house-rules/tabs/date,-time-&-numbers.mdx +462 -0
  300. package/docs/src/pages/content/house-rules/tabs/grammer.mdx +744 -0
  301. package/docs/src/pages/content/house-rules/tabs/punctuations.mdx +666 -0
  302. package/docs/src/pages/content/placeholder-text.mdx +58 -0
  303. package/docs/src/pages/content/rules.mdx +136 -0
  304. package/docs/src/pages/content/voice-and-tone-guidelines/index.mdx +7 -0
  305. package/docs/src/pages/content/voice-and-tone-guidelines/tabs/usage.mdx +309 -0
  306. package/docs/src/pages/content/voice-and-tone-guidelines/tabs/voice-and-tone.mdx +38 -0
  307. package/docs/src/pages/contributions.mdx +16 -0
  308. package/docs/src/pages/foundations/colors.mdx +149 -0
  309. package/docs/src/pages/foundations/interactions.mdx +192 -0
  310. package/docs/src/pages/foundations/layout/images/baseline-grid.png +0 -0
  311. package/docs/src/pages/foundations/layout/images/grid-column.jpeg +0 -0
  312. package/docs/src/pages/foundations/layout/images/grid-layout.jpeg +0 -0
  313. package/docs/src/pages/foundations/layout/images/grid-margin.jpeg +0 -0
  314. package/docs/src/pages/foundations/layout/images/spacing.png +0 -0
  315. package/docs/src/pages/foundations/layout/images/typography.png +0 -0
  316. package/docs/src/pages/foundations/layout/index.mdx +151 -0
  317. package/docs/src/pages/foundations/logos.mdx +88 -0
  318. package/docs/src/pages/foundations/principles.mdx +60 -0
  319. package/docs/src/pages/foundations/response-time.mdx +124 -0
  320. package/docs/src/pages/foundations/typography.mdx +8 -0
  321. package/docs/src/pages/getting-started/index.mdx +9 -0
  322. package/docs/src/pages/guides/MDX.mdx +17 -0
  323. package/docs/src/pages/home/HomeBanner.png +0 -0
  324. package/docs/src/pages/home/homepage.css +23 -0
  325. package/docs/src/pages/index.js +241 -0
  326. package/docs/src/pages/introduction/get-started/designers.mdx +89 -0
  327. package/docs/src/pages/introduction/get-started/developers.mdx +128 -0
  328. package/docs/src/pages/introduction/what's-new.mdx +801 -0
  329. package/docs/src/pages/mobile/components/avatar/code.mdx +12 -0
  330. package/docs/src/pages/mobile/components/avatar/usage.mdx +20 -0
  331. package/docs/src/pages/mobile/components/badges/code.mdx +16 -0
  332. package/docs/src/pages/mobile/components/badges/usage.mdx +23 -0
  333. package/docs/src/pages/mobile/components/breadcrumbs/code.mdx +16 -0
  334. package/docs/src/pages/mobile/components/breadcrumbs/usage.mdx +34 -0
  335. package/docs/src/pages/mobile/components/button/code.mdx +12 -0
  336. package/docs/src/pages/mobile/components/button/content.mdx +1 -0
  337. package/docs/src/pages/mobile/components/button/usage.mdx +55 -0
  338. package/docs/src/pages/mobile/components/card/code.mdx +16 -0
  339. package/docs/src/pages/mobile/components/card/usage.mdx +23 -0
  340. package/docs/src/pages/mobile/components/checkbox/code.mdx +16 -0
  341. package/docs/src/pages/mobile/components/checkbox/usage.mdx +49 -0
  342. package/docs/src/pages/mobile/components/index.mdx +7 -0
  343. package/docs/src/pages/mobile/components/message/code.mdx +16 -0
  344. package/docs/src/pages/mobile/components/message/usage.mdx +26 -0
  345. package/docs/src/pages/mobile/components/overview/index.mdx +8 -0
  346. package/docs/src/pages/mobile/components/overview/tabs/all-components.mdx +8 -0
  347. package/docs/src/pages/mobile/components/overview/tabs/status.mdx +115 -0
  348. package/docs/src/pages/mobile/foundations/colors.mdx +149 -0
  349. package/docs/src/pages/mobile/foundations/interactions.mdx +192 -0
  350. package/docs/src/pages/mobile/foundations/layout/images/baseline-grid.png +0 -0
  351. package/docs/src/pages/mobile/foundations/layout/images/grid-column.jpeg +0 -0
  352. package/docs/src/pages/mobile/foundations/layout/images/grid-layout.jpeg +0 -0
  353. package/docs/src/pages/mobile/foundations/layout/images/grid-margin.jpeg +0 -0
  354. package/docs/src/pages/mobile/foundations/layout/images/spacing.png +0 -0
  355. package/docs/src/pages/mobile/foundations/layout/images/typography.png +0 -0
  356. package/docs/src/pages/mobile/foundations/layout/index.mdx +151 -0
  357. package/docs/src/pages/mobile/foundations/logos.mdx +88 -0
  358. package/docs/src/pages/mobile/foundations/principles.mdx +47 -0
  359. package/docs/src/pages/mobile/foundations/response-time.mdx +124 -0
  360. package/docs/src/pages/mobile/foundations/typography.mdx +8 -0
  361. package/docs/src/pages/patterns/index.mdx +7 -0
  362. package/docs/src/pages/resources/index.mdx +7 -0
  363. package/docs/src/util/FooterItems.js +21 -0
  364. package/docs/src/util/Frontmatter.js +35 -0
  365. package/docs/src/util/HeaderItems.js +21 -0
  366. package/docs/src/util/Helpers.js +7 -0
  367. package/docs/src/util/HomeMenu.js +24 -0
  368. package/docs/src/util/HomeResources.js +23 -0
  369. package/docs/src/util/InPageNavItems.js +36 -0
  370. package/docs/src/util/Logos.js +19 -0
  371. package/docs/src/util/MdsChangelog.js +55 -0
  372. package/docs/src/util/MediumBlogs.js +27 -0
  373. package/docs/src/util/NavItems.js +82 -0
  374. package/docs/src/util/StorybookData.js +24 -0
  375. package/docs/src/util/constants.js +7 -0
  376. package/docs/src/util/context/NavContext.js +54 -0
  377. package/docs/src/util/hooks/index.js +1 -0
  378. package/docs/src/util/hooks/useMetadata.js +21 -0
  379. package/docs/src/util/index.js +4 -0
  380. package/docs/static/icons/4691539_codesandbox_icon.svg +1 -0
  381. package/docs/static/icons/card-image.png +0 -0
  382. package/docs/static/icons/favicon_io/android-chrome-192x192.png +0 -0
  383. package/docs/static/icons/favicon_io/android-chrome-512x512.png +0 -0
  384. package/docs/static/icons/favicon_io/apple-touch-icon.png +0 -0
  385. package/docs/static/icons/favicon_io/favicon-16x16.png +0 -0
  386. package/docs/static/icons/favicon_io/favicon-32x32.png +0 -0
  387. package/docs/static/icons/favicon_io/favicon.ico +0 -0
  388. package/docs/static/images/P360.png +0 -0
  389. package/docs/static/images/dap.png +0 -0
  390. package/docs/static/images/default.png +0 -0
  391. package/docs/static/images/designtoken.png +0 -0
  392. package/docs/static/images/figma.png +0 -0
  393. package/docs/static/images/headerLogo.png +0 -0
  394. package/docs/static/images/inacademy.png +0 -0
  395. package/docs/static/images/inapi.png +0 -0
  396. package/docs/static/images/incare.png +0 -0
  397. package/docs/static/images/inconnect.png +0 -0
  398. package/docs/static/images/indata.png +0 -0
  399. package/docs/static/images/ingraph.png +0 -0
  400. package/docs/static/images/innote.png +0 -0
  401. package/docs/static/images/inoffice.png +0 -0
  402. package/docs/static/images/inreport.png +0 -0
  403. package/docs/static/images/storybook.png +0 -0
  404. package/docs/static/images/withoutType.png +0 -0
  405. package/docs/tools/build.sh +6 -0
  406. package/docs/tools/changelog.sh +1 -0
  407. package/docs/tools/changeloghead.md +14 -0
  408. package/docs/tools/develop.sh +5 -0
  409. package/docs/tools/extract.js +52 -0
  410. package/docs/tools/update-mds.sh +3 -0
  411. package/package.json +1 -1
  412. package/tsconfig.json +1 -1
  413. package/tsconfig.type.json +2 -1
  414. package/docs/AppTutorial.md +0 -474
  415. package/docs/images/BasicLayout.png +0 -0
  416. package/docs/images/Breadcrumb.png +0 -0
  417. package/docs/images/Covid-App.png +0 -0
  418. package/docs/images/DrilledLayout.png +0 -0
  419. package/docs/images/DrilledPage.png +0 -0
  420. package/docs/images/Footer.png +0 -0
  421. package/docs/images/Graph1.png +0 -0
  422. package/docs/images/Graph2.png +0 -0
  423. package/docs/images/Header.png +0 -0
  424. package/docs/images/Map.png +0 -0
  425. package/docs/images/StaticComponent.png +0 -0
  426. package/docs/images/Summary.png +0 -0
  427. package/docs/images/Table.png +0 -0
@@ -0,0 +1,801 @@
1
+ ---
2
+ title: Release notes
3
+ description: Guide for new changes by the date we completed each change
4
+ date: 15 June 2021
5
+ ---
6
+
7
+ We’re continually improving our Masala Design System. The following changes are listed by the date we completed each change.
8
+
9
+ <Link href="https://github.com/innovaccer/design-system" target="_blank">
10
+ Source code
11
+ </Link>
12
+ <br/>
13
+ <br/>
14
+
15
+ ## 2.5.0-2 (2021-09-29)
16
+
17
+ ### Highlights
18
+ NA
19
+
20
+ ### Breaking changes
21
+ NA
22
+
23
+ ### Migration guide
24
+ NA
25
+
26
+ ### Deprecations
27
+ NA
28
+
29
+ ### Features
30
+ * Calendar and DatePicker has new design and features for today date selection now. (7c3df346)
31
+ * EmptyState component now supports inline SVG image. (863d69b0)
32
+
33
+ ### Fixes
34
+ * Table/Grid horizontal scrolling issue is fixed. (a6949715)
35
+ * Modal is now vertically centered and can have flexible heights. (ef6072a7)
36
+ * Dropzone icon is visible now when we bring mouse to drop file over it. (5ba93be9)
37
+
38
+ ### Improvements
39
+ NA
40
+
41
+ ### Documentation
42
+ * Guideline for branch naming convention added. (1ef3cd96)
43
+
44
+ -------------------
45
+
46
+ ## 2.5.0-1 (2021-09-27)
47
+
48
+ ### Highlights
49
+ NA
50
+
51
+ ### Breaking changes
52
+ NA
53
+
54
+ ### Migration guide
55
+ NA
56
+
57
+ ### Deprecations
58
+ NA
59
+
60
+ ### Features
61
+ NA
62
+ ### Fixes
63
+ * Fixes the table header scroll when table body scroll (502cb1d1)
64
+ * Fixes the Tabs Component rendering issue with checking children component type (8525a4e7)
65
+ * Fixes the Datepicker snapshot which was getting updated as date changes (c001e925)
66
+ ### Improvements
67
+ NA
68
+ ### Documentation
69
+ NA
70
+
71
+ -------------------
72
+
73
+ ## 2.5.0-0 (2021-09-22)
74
+
75
+ ### Highlights
76
+ NA
77
+
78
+ ### Breaking changes
79
+ NA
80
+
81
+ ### Migration guide
82
+ NA
83
+
84
+ ### Deprecations
85
+ NA
86
+
87
+ ### Features
88
+ * Added previous and next month dates in current month's date in Calendar Component (4fe810bf)
89
+ ### Fixes
90
+ NA
91
+ ### Improvements
92
+ * Added test cases for Calendar Component (f22df8b6)
93
+ ### Documentation
94
+ NA
95
+
96
+ -------------------
97
+ ## 2.4.0 (2021-09-22)
98
+
99
+ ### Highlights
100
+ NA
101
+
102
+ ### Breaking changes
103
+ NA
104
+
105
+ ### Migration guide
106
+ NA
107
+
108
+ ### Deprecations
109
+ NA
110
+
111
+ ### Features
112
+ * Automated the process of types bundling (21f435b0)
113
+ * A new InlineMessage Component has been added (f852b2a8)
114
+ * Added the events indicator on given date in Calendar Component (4714efa2)
115
+ * A Chip has been added to Datepicker Component to select today's date (ee9e47e0)
116
+ * Tooltip in Icon Button Component has been added (f9f14233)
117
+ ### Fixes
118
+ * Removes the events type Array from Calendar Component (41abf4ef)
119
+ * zIndex for Backdrop Component has been fixed (055edb09)
120
+ * Border radius of Card Component has been fixed (c113a568)
121
+ * New Stories has been added to EmptyState Component and updated the existing story (af83ea74)
122
+ * Height of the Input field has been fixed when focus in EditableChipInput Component (bbb4f256)
123
+ ### Improvements
124
+ * Added test cases for InputMask Component (e0f37b99)
125
+ * Added test cases for FileList Component (b36a44f1)
126
+ * Added test cases for Dropdown Component options and loading state (1cb98e93)
127
+ ### Documentation
128
+ NA
129
+
130
+ -------------------
131
+
132
+ ## 2.3.0 (2021-09-10)
133
+
134
+ ### Highlights
135
+ NA
136
+
137
+ ### Breaking changes
138
+ NA
139
+
140
+ ### Migration guide
141
+ NA
142
+
143
+ ### Deprecations
144
+ NA
145
+
146
+ ### Features
147
+ NA
148
+
149
+ ### Fixes
150
+ * Improve padding of close button in overlays header (4d4965b9)
151
+ * Fixes nested rows losing their open state in grid (aed5b032)
152
+ ### Improvements
153
+ * Adds test cases for FileUploaderComponent (5604656c)
154
+ * Adds test cases for TimePicker component (4e776a46)
155
+ * Adds test cases for ChatMessage Component (0443446c)
156
+ * Adds test cases for slider component (fa82992a)
157
+ * Adds test cases for DateRangePicker component (8c5abb26)
158
+ ### Documentation
159
+ * Embeds rich text editor storybook (f3a469da)
160
+
161
+ -------------------
162
+
163
+ ## 2.3.0-2 (2021-25-10)
164
+
165
+ ### Highlights
166
+ NA
167
+
168
+ ### Breaking changes
169
+ NA
170
+
171
+ ### Migration guide
172
+ NA
173
+
174
+ ### Deprecations
175
+ NA
176
+
177
+ ### Features
178
+ * Adds Close on Escape Keypress feature in Overlays (c2904387)
179
+
180
+ ### Fixes
181
+ * Fixes arrow click event argument in MetricInput (e4cf0bc5)
182
+ * Adds default state delete functionality in EditableChipInput (3a8415f7)
183
+ * Fixes done button and adds support for uncontrolled EditableChipInput (16a844be)
184
+ * Fixes done button and adds support for uncontrolled EditableInput (f0de36cd)
185
+ * Fixes onChange callback in InputMask (I18e111ce)
186
+ * Removes margin bottom from modal body when there is no footer (7470a273)
187
+ * Fixes nested row card border in Grid (132d0903)
188
+ ### Improvements
189
+ * feat(Checkbox): Adds helptext in checkbox (1d41c6cc)
190
+ * feat(Radio): Adds helptext in radio (fc886989)
191
+ * Test(MetaList): Adds test cases for MetaList component (5023743f)
192
+ ### Documentation
193
+ * Adds more content to scrolling modal story (c43c8fea)
194
+
195
+ -------------------
196
+ ## 2.3.0-1 (2021-08-10)
197
+
198
+ ### Highlights
199
+ NA
200
+
201
+ ### Breaking changes
202
+ NA
203
+
204
+ ### Migration guide
205
+ NA
206
+
207
+ ### Deprecations
208
+ NA
209
+
210
+ ### Features
211
+ * Improves Tabs API for custom tab (8018e724)
212
+
213
+ ### Fixes
214
+ * Adds type `button` to all components using Button component (7be54df8)
215
+ * Removes action Icon when input field is disabled (deeb1e1c)
216
+
217
+ ### Improvements
218
+ * Adds not-allowed cursor in stepper for disabled step (a11a3dce)
219
+
220
+ ### Documentation
221
+ NA
222
+
223
+ -------------------
224
+
225
+ ## 2.3.0-0 (2021-08-10)
226
+
227
+ ### Highlights
228
+ NA
229
+
230
+ ### Breaking changes
231
+ NA
232
+
233
+ ### Migration guide
234
+ NA
235
+
236
+ ### Deprecations
237
+ NA
238
+
239
+ ### Features
240
+ NA
241
+
242
+ ### Fixes
243
+ * Fixes missing file icon in FileList (920e5c42)
244
+ * Fixes disabled state in DatePicker (1826c560)
245
+
246
+ ### Improvements
247
+ * Adds radio's css for hover and active state (a025c7d4)
248
+
249
+ ### Documentation
250
+ * Adds stepper stories (7274e111)
251
+
252
+ -------------------
253
+ ## 2.2.0-2 (2021-07-14)
254
+
255
+ ### Highlights
256
+ NA
257
+
258
+ ### Breaking changes
259
+ NA
260
+
261
+ ### Migration guide
262
+ NA
263
+
264
+ ### Deprecations
265
+ NA
266
+
267
+ ### Features
268
+ NA
269
+
270
+ ### Fixes
271
+ * Fixed table last page navigation and remember last page feature (e74cd502)
272
+
273
+ ### Improvements
274
+ NA
275
+
276
+ ### Documentation
277
+ NA
278
+
279
+ -------------------
280
+
281
+ ## 2.2.0-1 (2021-07-12)
282
+
283
+ ### Highlights
284
+ NA
285
+
286
+
287
+ ### Breaking changes
288
+ NA
289
+
290
+ ### Migration guide
291
+ NA
292
+
293
+ ### Deprecations
294
+ NA
295
+
296
+ ### Features
297
+ NA
298
+
299
+
300
+ ### Fixes
301
+ * updates material icons font files. (4f5fd6b7)
302
+ * fixes % width issue in overlays. (c1a4997d)
303
+ * adds support for string for cellType: ICON (c153e3e6)
304
+ * fixes width percent issue on initial render (fe12266d)
305
+ * fixes hover state for disabled tabs. (85117ede)
306
+
307
+ ### Improvements
308
+ * adds test for chip and chipGroup components (5f4e4e8c)
309
+ * removes extra wrappers. (ab105189)
310
+ * adds button type to dropdown with apply button. (28aa3fda)
311
+ * adds focus state for tabs. (2365dc2e)
312
+ * sets Tabs withSeparator default to true. (27e22655)
313
+ * Uglify, brotli and gzip compression added. (101d71a6)
314
+ * adds Date.now mock. (2644524c)
315
+ * adds context api (ec94884f)
316
+ ### Documentation
317
+ * adds stories to modal component (c12a633a)
318
+ * fixes responsiveness story of pageheader component. (912a2246)
319
+ * update guidelines for writing stories and patterns of components. (96159ad2)
320
+
321
+ -------------------
322
+ ## 2.2.0-0 (2021-07-01)
323
+
324
+ ### Highlights
325
+ * New component EditableChipInput added. (18d702a7)
326
+
327
+
328
+ ### Breaking changes
329
+ NA
330
+
331
+ ### Migration guide
332
+ NA
333
+
334
+ ### Deprecations
335
+ NA
336
+
337
+ ### Features
338
+ * New component EditableChipInput added. (18d702a7)
339
+
340
+
341
+ ### Fixes
342
+ * Adds width and height property to checkbox in unchecked state. (c2561f34)
343
+ * fixes GridBody scrollTop issue on unmount. (766b5686)
344
+ * updates pagination component according to design. (601c3a47)
345
+ * fixes expanded state on initial render of Collapsible component. (e2967a7b)
346
+ * fixes single line case for width<240px in ChipInput. (92a37b6f)
347
+ * fixes slider tooltip to move with pointer in Slider component. (f1698ff3)
348
+ * fixes label onClick handling of MultiSlider component (ff4af117)
349
+ * Updates DS-* to Design-System-* as data-test attribute value in components. (6956653e)
350
+ * fixes label inside tooltip to show custom label in Slider component (5ff6f838)
351
+ * Layout patterns styling and layout fixed. (e3b52908)
352
+ * Button Spinner loading state fixed. (bd8d9436)
353
+ * Show More button added in code preview panel. (134ef48a)
354
+
355
+
356
+ ### Improvements
357
+ * skip feature for a step is addded in Stepper component (d4b775db)
358
+ * now Modal, Sidesheet and FullScreenModal components have uniform APIs (2c25d036)
359
+ * updated test cases for overlayheader, modal, sidesheet, EmptyState, Row, Column components.
360
+ * removes width: 100% and updates flex in Row component. (875564e7)
361
+ * adds box-shadow to focus state of Input component. (93b6356d)
362
+ * adds width 100% to MetricInput component. (267b2ad7)
363
+ * Bottom border radius added for tabs. (905e09b0)
364
+ * Cursor not allowed added for disabled tab component state. (716ed6c5)
365
+
366
+
367
+ ### Documentation
368
+ * Updates stories of Table, PageHeader, Input components.
369
+ * adds placeholder story for Loaders component. (c8622a2e)
370
+ * updates the appearance variant story of Icon component. (42f654d9)
371
+ * adds pattern, disabled and error state stories for VerificationInput component. (bb8ea8cd)
372
+
373
+ -------------------
374
+
375
+ ## 2.1.3 (2021-06-10)
376
+
377
+ ### Highlights
378
+ NA
379
+
380
+ ### Breaking changes
381
+ NA
382
+
383
+ ### Migration guide
384
+ NA
385
+
386
+ ### Deprecations
387
+ NA
388
+
389
+ ### Features
390
+ NA
391
+
392
+ ### Fixes
393
+ * Adds width and height to checkbox in unchecked state. (c2561f34)
394
+
395
+ ### Improvements
396
+ NA
397
+
398
+ ### Documentation
399
+ NA
400
+
401
+ -------------------
402
+
403
+ ## 2.1.2 (2021-05-26)
404
+
405
+ ### Highlights
406
+ NA
407
+
408
+ ### Breaking changes
409
+ NA
410
+
411
+ ### Migration guide
412
+ NA
413
+
414
+ ### Deprecations
415
+ NA
416
+
417
+ ### Features
418
+ NA
419
+
420
+ ### Fixes
421
+ * downgrades js-beautify to v1.10.3 for supporting node 8.x (d0c0206b)
422
+
423
+ ### Improvements
424
+ NA
425
+
426
+ ### Documentation
427
+ * Fixes Alignment and Group stories for Checkbox component. (37d2412e)
428
+ * Fixes width of overflow story for Radio component. (5c632a2d)
429
+
430
+
431
+ -------------------
432
+ ## 2.1.1 (2021-05-26)
433
+
434
+ ### Highlights
435
+ NA
436
+
437
+ ### Breaking changes
438
+ NA
439
+
440
+ ### Migration guide
441
+ NA
442
+
443
+ ### Deprecations
444
+ NA
445
+
446
+ ### Features
447
+ NA
448
+
449
+ ### Fixes
450
+ * downgrades js-beautify to v1.10.3 for supporting node 8.x (a540fb95)
451
+
452
+ ### Improvements
453
+ NA
454
+
455
+ ### Documentation
456
+ NA
457
+
458
+
459
+ -------------------
460
+ ## 2.1.0 (2021-05-26)
461
+
462
+ ### Highlights
463
+ * New component for tag based input is added as `ChipInput`. (dddcefb0)
464
+ * Atomic components support all native HTML attributes as props now. (917918b9)
465
+
466
+ ### Breaking changes
467
+ NA
468
+
469
+ ### Migration guide
470
+ NA
471
+
472
+ ### Deprecations
473
+ NA
474
+
475
+ ### Features
476
+ * Grid component can now preserve previous page scroll position. (98aa9085)
477
+ * Atomic components support all native HTML attributes as props now. (917918b9)
478
+ * New component for tag based input is added as `ChipInput`. (dddcefb0)
479
+
480
+ ### Fixes
481
+ * Click event on disabled options of Dropdown component is fixed. (8e58516b)
482
+ * Row component includes flex-grow in its style properties. (20645578)
483
+ * Scrolling on body is now restored after un-mounting of Backdrop component. (60274751)
484
+ * Next button in forms pattern is fixed. (93947e39)
485
+ * upgrades @actions/core version from 1.2.6 to 1.2.7 (55bbe718)
486
+ * upgrades js-beautify version from 1.10.3 to 1.13.13 (a9d2413d)
487
+ * Loading state is fixed for searching in Dropdown. (7543c883)
488
+ * Loading state is fixed for searching in Table. (715c0483)
489
+ * Fixed story path for Dialog. (4785c838)
490
+
491
+
492
+
493
+ ### Improvements
494
+ * FileUploaderItem component now uses icon button in stead of Icon component for actions. (12cff689)
495
+ * Tabs component now have some more states for hovering over. (ac05ee66)
496
+ * Margin between inputs of VerificationCodeInput component is updated. (c835e770)
497
+ * Opacity in Message component as design improvement is added. (1b707bef)
498
+
499
+
500
+ ### Documentation
501
+ * Updates Pagination component stories. (e132ebfc)
502
+ * Updates Tabs component stories. (4774231e)
503
+ * Updates Popover component stories. (24db67d9)
504
+ * Updates Checkbox component stories. (24753996)
505
+ * Updates Radio component stories. (8b30b313)
506
+ * Updates highlight story of Card component. (c8a2fd84)
507
+
508
+
509
+ -------------------
510
+
511
+
512
+ ## 2.1.0-0 (2021-05-07)
513
+
514
+ ### Highlights
515
+ * New components added to library for metric values input and verification code input, namely `VerificationCodeInput` and `MetricInput`.
516
+ * `Enzyme` testing library is removed from project, now our test cases are using react-testing-library and jest only.
517
+
518
+ ### Breaking changes
519
+ NA
520
+
521
+ ### Migration guide
522
+ NA
523
+
524
+ ### Deprecations
525
+ NA
526
+
527
+ ### Features
528
+ * Adds new component VerificationCodeInput for verification code input. (6ec9218a)
529
+ * Adds new component MetricInput for verification code input. (5632589d)
530
+
531
+ ### Fixes
532
+ * Radio component css issue fixed. (b9049771)
533
+ * Checkbox component css issue fixed. (d5036517)
534
+ * Sorting of story titles in left navigation menu on storybook fixed for parent level menus. (d10d451e)
535
+ * Enzyme is completely removed from library and snapshots are updated accordingly. (d511f73c)
536
+
537
+ ### Improvements
538
+ * Text component's subtle variant color updated. (32d2fe9c)
539
+ * Button component's button size for large icons updated. (65b100c2)
540
+
541
+
542
+ ### Documentation
543
+ * Stories of `VerticalNav` component updated according to updated documentation and features. (87c5955e)
544
+ * Stories of `Dropdown` component updated according to updated documentation and features. (70329569)
545
+ * Stories of `Toast` component updated according to updated documentation and features. (b9e20b78)
546
+ * Stories of `Switch` component updated according to updated documentation and features. (c66e5e55)
547
+
548
+
549
+ -------------------
550
+
551
+ ## 2.0.0 (2021-04-28)
552
+
553
+ ### Highlights
554
+ * Released 2.x of design system components.
555
+ * Support for storybook 6.
556
+ * Ability to edit component usage example on code sandbox on one click.
557
+ * Embed mode for minimal story embedding.
558
+ * New components introduced like Collapsible, CardHeader, CardBody, CardSubdued, CardFooter.
559
+ * Improved api design and features of navigation components.
560
+ * Calendar supports different sizes now.
561
+ * Manual changelog creation and review process.
562
+ * Separate library for charts, removed charts from components library.
563
+
564
+
565
+ ### Breaking changes
566
+ * Recharts is removed from dependency and DonutChart component is removed from library. (adef7f46)
567
+
568
+ ### Migration guide
569
+ * For DonutChart (if you are using) install the library `@innovaccer/charts` and import the component from it like `import { DonutChart } from @innovaccer/charts`.
570
+
571
+ ### Features
572
+ * Adds HorizontalNav and VerticalNav as new components. (a5c02f61)
573
+ * New components to support Card component, CardHeader, CardBody, CardFooter and CardSubdued are added. (1dbae2f1)
574
+
575
+ ### Fixes
576
+ * Fixes scroll issue in List component. (c7f11e5f)
577
+ * Fixes Label component's line-height. (4e33460b)
578
+ * Removes redundant wrapper div from Textarea component. (18d60c48)
579
+
580
+ ### Improvements
581
+ * Removes automatic changelog generation. (fb27f302)
582
+
583
+ ### Documentation
584
+ * Updates Card component stories. (5ce568f8)
585
+ * Updates Message component stories. (fa5a70fe)
586
+ * Updates HorizontalNav component stories. (19b6f28b)
587
+ * Improved css utilities documentation with ability to copy tokens and class names on a single click. (3afc8d05)
588
+
589
+ -------------------
590
+ ## v2.0.0-6 (2021-04-22)
591
+
592
+ ### Highlights
593
+ NA
594
+
595
+ ### Breaking changes
596
+ NA
597
+
598
+ ### Migration guide
599
+ NA
600
+
601
+ ### Deprecations
602
+ * Description as a children in Message component is now deprecated, Please use description prop.
603
+
604
+ ### Features
605
+ * Adds support for Icon sizes in Button component. (69f0d1a7)
606
+
607
+ ### Fixes
608
+ * Fixes column size 3 issues. (71d608f1)
609
+ * Removes @types/classnames library, to use updated version of classnames library. (41809fa2)
610
+ * Fixes layering of multiple overlays. (a86eb33b)
611
+ * Fix controlled Dropdown search functionality issue. (e3e162ba)
612
+
613
+ ### Improvements
614
+ * 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)
615
+ * In Label component ability to show optional hint as 'Optional' is added. (38ef846b)
616
+
617
+ ### Documentation
618
+ * Updates Button component stories. (91920acd)
619
+
620
+ -------------------
621
+ ## v2.0.0-5 (2021-04-14)
622
+
623
+ ### Highlights
624
+ NA
625
+
626
+ ### Breaking changes
627
+ NA
628
+
629
+ ### Migration guide
630
+ NA
631
+
632
+ ### Deprecations
633
+ NA
634
+
635
+ ### Features
636
+ NA
637
+
638
+ ### Fixes
639
+ * Minor issues with liveEditor in DocPage are fixed. (007486c3)
640
+ * Updates sizing for small variant of Calendar component. (67f00da9)
641
+
642
+ ### Improvements
643
+ NA
644
+
645
+ ### Documentation
646
+ NA
647
+
648
+ -------------------
649
+ ## v2.0.0-4 (2021-04-08)
650
+
651
+ ### Highlights
652
+ NA
653
+
654
+ ### Breaking changes
655
+ NA
656
+
657
+ ### Migration guide
658
+ NA
659
+
660
+ ### Deprecations
661
+ NA
662
+
663
+ ### Features
664
+ NA
665
+
666
+ ### Fixes
667
+ * Fixes issue in updating horizontal scroll of Grid (Table). (35f44c96)
668
+
669
+ ### Improvements
670
+ * Updates header label of Table component. (9d42ab1a)
671
+ * Adds react-dynamic-virtual-scroll library in table to improve scrolling. (1b721f6d)
672
+
673
+ ### Documentation
674
+ NA
675
+
676
+ -------------------
677
+ ## v2.0.0-3 (2021-04-02)
678
+
679
+ ### Highlights
680
+ * Calendar available in different sizes.
681
+
682
+ ### Breaking changes
683
+ NA
684
+
685
+ ### Migration guide
686
+ NA
687
+
688
+ ### Deprecations
689
+ NA
690
+
691
+ ### Features
692
+ * Introduced different sizes in Calendar component, now Calendar component sizes can be controlled by prop exposed for the same. (55f4207e)
693
+ * 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)
694
+
695
+ ### Fixes
696
+ * In Breadcrumbs component Link component is used and removed old local subtleLink component. (e866178f)
697
+ * Scroll inside Collapsible panel component is fixed. (ded41856)
698
+ * classnames library version 2.2.6 is frozen to avoid unwanted updates and breaks. (ded41856)
699
+
700
+ ### Improvements
701
+ NA
702
+
703
+ ### Documentation
704
+ NA
705
+
706
+ -------------------
707
+ ## v2.0.0-2 (2021-03-31)
708
+
709
+ ### Highlights
710
+ * New component: Collapsible
711
+ * Ability to edit and preview components directly in codeSandbox on single click.
712
+
713
+ ### Breaking changes
714
+ NA
715
+
716
+ ### Migration guide
717
+ NA
718
+
719
+ ### Deprecations
720
+ NA
721
+
722
+ ### Features
723
+ * Introduced noSandbox prop in story's docPage parameter to disable edit in code sandbox feature for specific story. (073dc0e8)
724
+ * new component Collapsible is added. (90c3a954)
725
+ * adds codeSandbox integration in docs page story preview. (0cdcbb33)
726
+
727
+ ### Fixes
728
+ * Calendar component added to library build. (e3bb7dab)
729
+ * Fixes FullscreenModal's header for close button alignment. (7d269b8a)
730
+ * Updates html code indentation used in code sandbox. (eedd4bd6)
731
+ * Adds import generator to generate component imports for show code and edit in codeSandbox source codes. (becf40a3)
732
+ * Updates configs to support Story book version 6. (be41707e)
733
+ * updates titles of all stories to support SB6. (dd072353)
734
+ * update title of page to be as of story title, enables args table tab. (c3ce929d)
735
+ * Support for month nav is fixed in Calendar component. (7cacd5bd)
736
+
737
+ ### Improvements
738
+ NA
739
+
740
+ ### Documentation
741
+ * Updates Button component stories. (5f8b8a9f)
742
+
743
+
744
+ -------------------
745
+ ## v2.0.0-1 (2021-03-24)
746
+
747
+ ### Highlights
748
+ NA
749
+
750
+ ### Breaking changes
751
+ NA
752
+
753
+ ### Migration guide
754
+ NA
755
+
756
+ ### Deprecations
757
+ NA
758
+
759
+ ### Features
760
+ NA
761
+
762
+ ### Fixes
763
+ * Fixes Layout (ROW, Column) components styling according to bootstrap css. (6fa16085)
764
+
765
+ ### Improvements
766
+ * 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)
767
+
768
+ ### Documentation
769
+ NA
770
+
771
+ -------------------
772
+ ## v2.0.0-0 (2021-03-19)
773
+
774
+ ### Highlights
775
+ * Support for storybook 6 added.
776
+
777
+ ### Breaking changes
778
+ NA
779
+
780
+ ### Migration guide
781
+ NA
782
+
783
+ ### Deprecations
784
+ NA
785
+
786
+ ### Features
787
+ * upgrades storybook to 6.x, and all its dependencies to supported versions. (de09643a)
788
+ * Fixes Badge component styling. (4d77d53f)
789
+
790
+ ### Fixes
791
+ NA
792
+
793
+ ### Improvements
794
+ * Updates default style for Column component. (2c0b07c8)
795
+ * Adds size and appearance support in Link component. (3b6eee89)
796
+ * Adds support for count in horizontal navigation. (5a930857)
797
+
798
+ ### Documentation
799
+ NA
800
+
801
+ -------------------