@innovaccer/design-system 2.5.0 → 2.7.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 (462) hide show
  1. package/.eslintrc.json +54 -0
  2. package/.github/workflows/chromatic.yml +5 -0
  3. package/.github/workflows/main.yml +2 -2
  4. package/.github/workflows/pull_request.yml +2 -2
  5. package/.github/workflows/test.yml +1 -1
  6. package/.husky/commit-msg +4 -0
  7. package/.prettierrc +2 -2
  8. package/.storybook/main.js +4 -0
  9. package/.vscode/settings.json +11 -0
  10. package/CHANGELOG.md +78 -0
  11. package/CONTRIBUTING.md +180 -98
  12. package/commitlint.config.js +1 -0
  13. package/core/accessibility/utils/index.ts +5 -0
  14. package/core/accessibility/utils/isEnterKey.ts +5 -0
  15. package/core/accessibility/utils/isSpaceKey.ts +5 -0
  16. package/core/accessibility/utils/useAccessibilityProps.ts +33 -0
  17. package/core/common.type.tsx +22 -0
  18. package/core/components/atoms/_chip/__tests__/__snapshots__/_chip.test.tsx.snap +17 -9
  19. package/core/components/atoms/_chip/index.tsx +19 -3
  20. package/core/components/atoms/avatar/Avatar.tsx +4 -14
  21. package/core/components/atoms/avatar/__stories__/variants/Appearance.story.tsx +3 -2
  22. package/core/components/atoms/avatar/__tests__/Avatar.test.tsx +14 -9
  23. package/core/components/atoms/avatarGroup/AvatarGroup.tsx +3 -5
  24. package/core/components/atoms/badge/Badge.tsx +2 -12
  25. package/core/components/atoms/badge/__tests__/Badge.test.tsx +22 -7
  26. package/core/components/atoms/badge/_stories_/variants/Appearance.story.tsx +3 -2
  27. package/core/components/atoms/badge/_stories_/variants/Subtle.story.tsx +3 -2
  28. package/core/components/atoms/button/Button.tsx +10 -7
  29. package/core/components/atoms/button/__stories__/Alert.story.tsx +8 -1
  30. package/core/components/atoms/button/__stories__/Cancel.story.tsx +4 -1
  31. package/core/components/atoms/button/__stories__/IconButtonGroup.story.tsx +12 -3
  32. package/core/components/atoms/button/__stories__/IconButtonSecondary.story.tsx +6 -1
  33. package/core/components/atoms/button/__stories__/IconLeftSecondary.story.tsx +4 -1
  34. package/core/components/atoms/button/__stories__/IconRightSecondary.story.tsx +4 -1
  35. package/core/components/atoms/button/__stories__/IconTransparent.story.tsx +4 -1
  36. package/core/components/atoms/button/__stories__/LabelButtonGroup.story.tsx +14 -3
  37. package/core/components/atoms/button/__stories__/LargeIconExpanded.story.tsx +4 -1
  38. package/core/components/atoms/button/__stories__/LoadingPrimary.story.tsx +4 -1
  39. package/core/components/atoms/button/__stories__/Primary.story.tsx +5 -2
  40. package/core/components/atoms/button/__stories__/SplitButton.story.tsx +6 -1
  41. package/core/components/atoms/button/__stories__/Transparent.story.tsx +8 -1
  42. package/core/components/atoms/button/__stories__/index.story.tsx +12 -2
  43. package/core/components/atoms/button/__stories__/variants/Appearance.story.tsx +6 -2
  44. package/core/components/atoms/button/__stories__/variants/Expanded.story.tsx +6 -2
  45. package/core/components/atoms/button/__stories__/variants/Size.story.tsx +4 -0
  46. package/core/components/atoms/button/__stories__/variants/icon/Icon.story.tsx +15 -0
  47. package/core/components/atoms/button/__stories__/variants/icon/IconLeft.story.tsx +6 -2
  48. package/core/components/atoms/button/__stories__/variants/icon/IconRight.story.tsx +6 -2
  49. package/core/components/atoms/button/__stories__/variants/state/Alert.story.tsx +7 -17
  50. package/core/components/atoms/button/__stories__/variants/state/Basic.story.tsx +9 -17
  51. package/core/components/atoms/button/__stories__/variants/state/Primary.story.tsx +7 -17
  52. package/core/components/atoms/button/__stories__/variants/state/Transparent.story.tsx +13 -17
  53. package/core/components/atoms/button/__tests__/Button.test.tsx +1 -1
  54. package/core/components/atoms/button/__tests__/__snapshots__/Button.test.tsx.snap +0 -137
  55. package/core/components/atoms/card/__stories__/empty.story.tsx +1 -1
  56. package/core/components/atoms/card/__stories__/nested.story.tsx +1 -1
  57. package/core/components/atoms/card/__stories__/scroll.story.tsx +1 -1
  58. package/core/components/atoms/checkbox/Checkbox.tsx +8 -9
  59. package/core/components/atoms/checkbox/__stories__/variants/Size.story.tsx +2 -2
  60. package/core/components/atoms/chip/Chip.tsx +3 -2
  61. package/core/components/atoms/chip/__stories__/variants/Selection.story.tsx +17 -0
  62. package/core/components/atoms/chip/__stories__/variants/Type.story.tsx +2 -2
  63. package/core/components/atoms/chip/__tests__/Chip.test.tsx +7 -0
  64. package/core/components/atoms/chipGroup/__tests__/__snapshots__/chipGroup.test.tsx.snap +11 -5
  65. package/core/components/atoms/chipGroup/__tests__/chipGroup.test.tsx +2 -2
  66. package/core/components/atoms/chipGroup/_stories_/index.story.tsx +2 -2
  67. package/core/components/atoms/collapsible/__tests__/__snapshots__/Collapsible.test.tsx.snap +8 -0
  68. package/core/components/atoms/divider/Divider.tsx +44 -0
  69. package/core/components/atoms/divider/__stories__/BasicDividerInCard.story.tsx +74 -0
  70. package/core/components/atoms/divider/__stories__/HeaderDividerInCard.story.tsx +35 -0
  71. package/core/components/atoms/divider/__stories__/IndentedDivider.story.tsx +49 -0
  72. package/core/components/atoms/divider/__stories__/Vertical.story.tsx +51 -0
  73. package/core/components/atoms/divider/__stories__/index.story.tsx +91 -0
  74. package/core/components/atoms/divider/__stories__/variants/HorizontalDivider.story.tsx +27 -0
  75. package/core/components/atoms/divider/__tests__/Divider.test.tsx +50 -0
  76. package/core/components/atoms/divider/__tests__/__snapshots__/Divider.test.tsx.snap +53 -0
  77. package/core/components/atoms/divider/index.tsx +2 -0
  78. package/core/components/atoms/dropdown/Dropdown.tsx +18 -17
  79. package/core/components/atoms/dropdown/DropdownButton.tsx +2 -2
  80. package/core/components/atoms/dropdown/DropdownList.tsx +18 -7
  81. package/core/components/atoms/dropdown/Loading.tsx +1 -1
  82. package/core/components/atoms/dropdown/__stories__/CustomSearchPlaceholder.story.tsx +45 -0
  83. package/core/components/atoms/dropdown/__stories__/_common_/types.tsx +3 -0
  84. package/core/components/atoms/dropdown/__stories__/variants/Size.story.tsx +2 -2
  85. package/core/components/atoms/dropdown/__stories__/variants/controlledDropdown/MultiSelect.story.tsx +28 -18
  86. package/core/components/atoms/dropdown/__tests__/Dropdown.test.tsx +12 -1
  87. package/core/components/atoms/dropdown/__tests__/Loading.test.tsx +0 -1
  88. package/core/components/atoms/dropdown/option/DefaultOption.tsx +3 -0
  89. package/core/components/atoms/dropdown/option/IconOption.tsx +3 -0
  90. package/core/components/atoms/dropdown/option/IconWithMetaOption.tsx +3 -0
  91. package/core/components/atoms/dropdown/option/MetaOption.tsx +3 -0
  92. package/core/components/atoms/dropdown/option/index.tsx +1 -1
  93. package/core/components/atoms/editable/Editable.tsx +3 -0
  94. package/core/components/atoms/heading/Heading.tsx +4 -4
  95. package/core/components/atoms/heading/__stories__/variants/Appearance.story.tsx +3 -2
  96. package/core/components/atoms/heading/__tests__/Heading.test.tsx +4 -3
  97. package/core/components/atoms/icon/Icon.tsx +16 -5
  98. package/core/components/atoms/icon/__stories__/variants/Image.story.tsx +6 -1
  99. package/core/components/atoms/icon/__tests__/__snapshots__/Icon.test.tsx.snap +74 -0
  100. package/core/components/atoms/input/Input.tsx +17 -7
  101. package/core/components/atoms/input/__stories__/BasicInput.story.tsx +2 -1
  102. package/core/components/atoms/input/__stories__/InputWithCaption.story.tsx +91 -9
  103. package/core/components/atoms/input/__stories__/InputWithLabel.story.tsx +11 -3
  104. package/core/components/atoms/input/__stories__/LabelPosition.story.tsx +46 -4
  105. package/core/components/atoms/input/__stories__/RequiredVsOptional.story.tsx +12 -8
  106. package/core/components/atoms/input/__stories__/variants/controlledInput.story.tsx +46 -0
  107. package/core/components/atoms/input/__stories__/variants/types/BasicInput.story.tsx +2 -2
  108. package/core/components/atoms/input/__stories__/variants/types/IconLeft.story.tsx +2 -10
  109. package/core/components/atoms/input/__stories__/variants/types/WithLabel.story.tsx +1 -9
  110. package/core/components/atoms/input/__tests__/__snapshots__/Input.test.tsx.snap +19 -0
  111. package/core/components/atoms/label/Label.tsx +1 -1
  112. package/core/components/atoms/legend/Legend.tsx +5 -2
  113. package/core/components/atoms/legend/__stories__/variants/labelAppearance.story.tsx +2 -2
  114. package/core/components/atoms/link/Link.tsx +4 -4
  115. package/core/components/atoms/message/Message.tsx +12 -12
  116. package/core/components/atoms/message/__stories__/index.story.tsx +1 -1
  117. package/core/components/atoms/message/__stories__/variants/Appearance.story.tsx +1 -1
  118. package/core/components/atoms/message/__stories__/variants/AppearanceTitle.story.tsx +1 -1
  119. package/core/components/atoms/message/__tests__/Message.test.tsx +1 -6
  120. package/core/components/atoms/message/__tests__/__snapshots__/Message.test.tsx.snap +0 -45
  121. package/core/components/atoms/metaList/__tests__/MetaList.test.tsx +2 -2
  122. package/core/components/atoms/metricInput/MetricInput.tsx +17 -7
  123. package/core/components/atoms/metricInput/__stories__/DefaultMetric.story.tsx +8 -2
  124. package/core/components/atoms/metricInput/__stories__/WithPrefix.story.tsx +6 -2
  125. package/core/components/atoms/metricInput/__stories__/index.story.tsx +1 -0
  126. package/core/components/atoms/metricInput/__stories__/variants/Controlled.story.tsx +2 -0
  127. package/core/components/atoms/metricInput/__stories__/variants/Size.story.tsx +2 -2
  128. package/core/components/atoms/metricInput/__stories__/withSuffix.story.tsx +6 -2
  129. package/core/components/atoms/metricInput/__tests__/__snapshots__/MetricInput.test.tsx.snap +20 -4
  130. package/core/components/atoms/multiSlider/Handle.tsx +3 -0
  131. package/core/components/atoms/multiSlider/SliderUtils.tsx +1 -4
  132. package/core/components/atoms/multiSlider/index.tsx +9 -4
  133. package/core/components/atoms/outsideClick/OutsideClick.tsx +1 -2
  134. package/core/components/atoms/paragraph/Paragraph.tsx +2 -2
  135. package/core/components/atoms/paragraph/__stories__/variants/Appearance.story.tsx +2 -2
  136. package/core/components/atoms/paragraph/__tests__/Paragraph.test.tsx +2 -2
  137. package/core/components/atoms/pills/Pills.tsx +2 -12
  138. package/core/components/atoms/pills/__stories__/variants/Appearance.story.tsx +3 -2
  139. package/core/components/atoms/pills/__stories__/variants/Subtle.story.tsx +3 -2
  140. package/core/components/atoms/pills/__tests__/Pills.test.tsx +3 -2
  141. package/core/components/atoms/placeholderImage/PlaceholderImage.tsx +2 -2
  142. package/core/components/atoms/placeholderImage/__stories__/variants/Size.story.tsx +2 -2
  143. package/core/components/atoms/placeholderParagraph/PlaceholderParagraph.tsx +2 -2
  144. package/core/components/atoms/placeholderParagraph/__stories__/variants/Size.story.tsx +2 -2
  145. package/core/components/atoms/popperWrapper/PopperWrapper.tsx +2 -6
  146. package/core/components/atoms/progressRing/ProgressRing.tsx +2 -2
  147. package/core/components/atoms/progressRing/__stories__/variants/Size.story.tsx +1 -1
  148. package/core/components/atoms/radio/Radio.tsx +4 -5
  149. package/core/components/atoms/rangeSlider/RangeSlider.tsx +1 -2
  150. package/core/components/atoms/rangeSlider/__stories__/index.story.tsx +1 -2
  151. package/core/components/atoms/rangeSlider/__stories__/variants/Controlled.story.tsx +1 -2
  152. package/core/components/atoms/rangeSlider/__stories__/variants/CustomLabels.story.tsx +1 -2
  153. package/core/components/atoms/spinner/Spinner.tsx +4 -4
  154. package/core/components/atoms/spinner/__stories__/variants/Appearance.story.tsx +2 -2
  155. package/core/components/atoms/spinner/__stories__/variants/Size.story.tsx +1 -1
  156. package/core/components/atoms/statusHint/StatusHint.tsx +5 -3
  157. package/core/components/atoms/statusHint/__stories__/variants/Appearance.story.tsx +3 -2
  158. package/core/components/atoms/statusHint/__tests__/StatusHint.test.tsx +3 -2
  159. package/core/components/atoms/subheading/Subheading.tsx +2 -2
  160. package/core/components/atoms/subheading/__stories__/variants/Appearance.story.tsx +3 -2
  161. package/core/components/atoms/subheading/__tests__/Subheading.test.tsx +3 -2
  162. package/core/components/atoms/switchInput/Switch.tsx +14 -9
  163. package/core/components/atoms/switchInput/__stories__/DefaultSwitch.story.tsx +4 -1
  164. package/core/components/atoms/switchInput/__stories__/OffState.story.tsx +4 -1
  165. package/core/components/atoms/switchInput/__stories__/index.story.tsx +26 -3
  166. package/core/components/atoms/switchInput/__stories__/variants/Size.story.tsx +10 -1
  167. package/core/components/atoms/switchInput/__stories__/variants/State.story.tsx +9 -2
  168. package/core/components/atoms/text/Text.tsx +4 -4
  169. package/core/components/atoms/text/__stories__/variants/Appearance.story.tsx +2 -2
  170. package/core/components/atoms/text/__tests__/Text.test.tsx +2 -3
  171. package/core/components/atoms/textarea/__stories__/TextareaWithCaption.story.tsx +9 -3
  172. package/core/components/atoms/textarea/__stories__/defaultTextarea.story.tsx +10 -2
  173. package/core/components/atoms/textarea/__stories__/index.story.tsx +1 -0
  174. package/core/components/atoms/textarea/__stories__/variants/Disable.story.tsx +1 -0
  175. package/core/components/atoms/toast/ActionButton.tsx +2 -2
  176. package/core/components/atoms/toast/Toast.tsx +11 -6
  177. package/core/components/atoms/toast/__stories__/index.story.tsx +2 -6
  178. package/core/components/atoms/toast/__stories__/variants/Appearance.story.tsx +3 -2
  179. package/core/components/atoms/toast/__stories__/variants/ToastMessage.story.tsx +3 -2
  180. package/core/components/atoms/toast/__stories__/variants/ToastWithAction.story.tsx +3 -2
  181. package/core/components/atoms/toast/__tests__/Toast.test.tsx +1 -1
  182. package/core/components/atoms/toast/__tests__/__snapshots__/Toast.test.tsx.snap +24 -125
  183. package/core/components/css-utilities/Schema.tsx +1 -1
  184. package/core/components/css-utilities/Spacing/Schema.tsx +1 -1
  185. package/core/components/molecules/chatMessage/Box.tsx +3 -0
  186. package/core/components/molecules/chipInput/ChipInput.tsx +3 -0
  187. package/core/components/molecules/chipInput/__tests__/__snapshots__/ChipInput.test.tsx.snap +14 -2
  188. package/core/components/molecules/dropzone/Dropzone.tsx +6 -3
  189. package/core/components/molecules/dropzone/DropzoneBase.tsx +22 -38
  190. package/core/components/molecules/dropzone/FileSelectorUtils.tsx +1 -1
  191. package/core/components/molecules/dropzone/__stories__/index.story.tsx +151 -41
  192. package/core/components/molecules/dropzone/__tests__/Dropzone.test.tsx +2 -2
  193. package/core/components/molecules/dropzone/utils.tsx +6 -4
  194. package/core/components/molecules/editableChipInput/EditableChipInput.tsx +9 -5
  195. package/core/components/molecules/editableChipInput/__stories__/Uncontrolled.story.tsx +1 -1
  196. package/core/components/molecules/editableChipInput/__tests__/__snapshots__/EditableChipInput.test.tsx.snap +12 -4
  197. package/core/components/molecules/editableDropdown/EditableDropdown.tsx +2 -2
  198. package/core/components/molecules/editableInput/EditableInput.tsx +13 -4
  199. package/core/components/molecules/emptyState/EmptyState.tsx +9 -5
  200. package/core/components/molecules/emptyState/__stories__/pageNotLoadedWithSVG.story.tsx +26 -26
  201. package/core/components/molecules/fileList/FileListItem.tsx +3 -2
  202. package/core/components/molecules/fileUploader/FileUploaderItem.tsx +3 -2
  203. package/core/components/molecules/fileUploader/FileUploaderStatus.tsx +1 -1
  204. package/core/components/molecules/fileUploader/__stories__/_common_/types.tsx +3 -0
  205. package/core/components/molecules/fileUploader/__stories__/index.story.tsx +3 -222
  206. package/core/components/molecules/fullscreenModal/FullscreenModal.tsx +5 -7
  207. package/core/components/molecules/inputMask/InputMask.tsx +212 -146
  208. package/core/components/molecules/inputMask/__stories__/index.story.tsx +24 -0
  209. package/core/components/molecules/inputMask/__tests__/__snapshots__/InputMask.test.tsx.snap +1 -0
  210. package/core/components/molecules/modal/Modal.tsx +4 -6
  211. package/core/components/molecules/modal/__stories__/Confirmation.story.tsx +1 -1
  212. package/core/components/molecules/pagination/__tests__/__snapshots__/Pagination.test.tsx.snap +5 -1
  213. package/core/components/molecules/placeholder/Placeholder.tsx +2 -2
  214. package/core/components/molecules/popover/Popover.tsx +2 -9
  215. package/core/components/molecules/sidesheet/Sidesheet.tsx +5 -7
  216. package/core/components/molecules/sidesheet/__stories__/variants/CustomHeader.story.tsx +172 -0
  217. package/core/components/molecules/stepper/Step.tsx +2 -0
  218. package/core/components/molecules/tabs/Tabs.tsx +2 -0
  219. package/core/components/molecules/tabs/TabsWrapper.tsx +2 -0
  220. package/core/components/molecules/tabs/__stories__/CustomLabels.story.tsx +1 -1
  221. package/core/components/molecules/tooltip/Tooltip.tsx +4 -4
  222. package/core/components/molecules/verificationCodeInput/VerificationCodeInput.tsx +8 -4
  223. package/core/components/molecules/verificationCodeInput/__stories__/index.story.tsx +3 -1
  224. package/core/components/molecules/verificationCodeInput/__tests__/__snapshots__/VerificationCodeInput.test.tsx.snap +1 -0
  225. package/core/components/organisms/calendar/Calendar.tsx +130 -8
  226. package/core/components/organisms/calendar/__stories__/variants/firstDayOfWeek.story.tsx +2 -2
  227. package/core/components/organisms/calendar/__tests__/Calendar.test.tsx +27 -0
  228. package/core/components/organisms/calendar/utility.ts +3 -3
  229. package/core/components/organisms/choiceList/ChoiceList.tsx +12 -12
  230. package/core/components/organisms/datePicker/DatePicker.tsx +31 -16
  231. package/core/components/organisms/datePicker/Trigger.tsx +1 -5
  232. package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +4518 -4479
  233. package/core/components/organisms/dateRangePicker/DateRangePicker.tsx +9 -10
  234. package/core/components/organisms/dateRangePicker/SingleInputTrigger.tsx +0 -1
  235. package/core/components/organisms/dateRangePicker/Trigger.tsx +2 -2
  236. package/core/components/organisms/dateRangePicker/__stories__/variants/monthsInView.story.tsx +2 -2
  237. package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +112 -40
  238. package/core/components/organisms/grid/Cell.tsx +23 -19
  239. package/core/components/organisms/grid/Grid.tsx +3 -4
  240. package/core/components/organisms/grid/GridBody.tsx +0 -1
  241. package/core/components/organisms/grid/GridContext.ts +1 -1
  242. package/core/components/organisms/grid/GridRow.tsx +4 -0
  243. package/core/components/organisms/grid/__stories__/_common_/editableSchema.tsx +1 -3
  244. package/core/components/organisms/grid/__stories__/_common_/fetchData.ts +3 -3
  245. package/core/components/organisms/grid/__stories__/_common_/loaderSchema.ts +0 -2
  246. package/core/components/organisms/grid/__stories__/_common_/schema.tsx +1 -3
  247. package/core/components/organisms/grid/__stories__/_common_/simpleLoaderSchema.ts +0 -2
  248. package/core/components/organisms/grid/__stories__/_common_/statusSchema.ts +0 -2
  249. package/core/components/organisms/horizontalNav/HorizontalNav.tsx +2 -0
  250. package/core/components/organisms/inlineMessage/InlineMessage.tsx +5 -7
  251. package/core/components/organisms/inlineMessage/__tests__/InlineMessage.test.tsx +3 -2
  252. package/core/components/organisms/inlineMessage/__tests__/__snapshots__/InlineMessage.test.tsx.snap +30 -40
  253. package/core/components/organisms/list/__stories__/_common_/types.tsx +3 -0
  254. package/core/components/organisms/list/__stories__/index.story.tsx +0 -16
  255. package/core/components/organisms/navigation/VerticalNavigation.tsx +4 -0
  256. package/core/components/organisms/table/Table.tsx +3 -2
  257. package/core/components/organisms/table/__stories__/CompressedTable.story.tsx +1 -1
  258. package/core/components/organisms/table/__stories__/DataTable.story.tsx +1 -1
  259. package/core/components/organisms/table/__stories__/NestedTableWithNestedCard.story.tsx +1 -1
  260. package/core/components/organisms/table/__stories__/PinnedColumn.story.tsx +1 -1
  261. package/core/components/organisms/table/__stories__/ResourceTable.story.tsx +4 -3
  262. package/core/components/organisms/table/__stories__/Selection.story.tsx +2 -2
  263. package/core/components/organisms/table/__stories__/StandardTable.story.tsx +1 -1
  264. package/core/components/organisms/table/__stories__/TableAsDescriptionList.story.tsx +2 -2
  265. package/core/components/organisms/table/__stories__/TableAsOptionList.story.tsx +2 -2
  266. package/core/components/organisms/table/__stories__/TightStory.story.tsx +1 -1
  267. package/core/components/organisms/table/__stories__/_common_/types.tsx +3 -0
  268. package/core/components/organisms/table/__stories__/syncTable.story.tsx +14 -6
  269. package/core/components/organisms/table/__stories__/variants/showHead.story.tsx +2 -2
  270. package/core/components/organisms/table/__stories__/variants/showMenu.story.tsx +2 -2
  271. package/core/components/organisms/table/__stories__/variants/size.story.tsx +2 -2
  272. package/core/components/organisms/table/__stories__/variants/type.story.tsx +2 -2
  273. package/core/components/organisms/table/__stories__/variants/withCheckbox.story.tsx +2 -2
  274. package/core/components/organisms/table/__stories__/variants/withHeader.story.tsx +0 -2
  275. package/core/components/organisms/table/__stories__/variants/withPagination.story.tsx +2 -2
  276. package/core/components/organisms/timePicker/TimePicker.tsx +4 -8
  277. package/core/components/organisms/timePicker/__tests__/__snapshots__/TimePicker.test.tsx.snap +14 -2
  278. package/core/components/organisms/verticalNav/MenuItem.tsx +2 -0
  279. package/core/components/organisms/verticalNav/__stories__/schema.tsx +0 -2
  280. package/core/components/organisms/verticalNav/__tests__/VerticalNav.test.tsx +1 -2
  281. package/core/components/patterns/datePicker/datePickerWithPresets.story.tsx +126 -0
  282. package/core/components/patterns/dateRangePicker/withCustomPopover.story.tsx +8 -8
  283. package/core/components/patterns/forms/CreatePassword.story.tsx +1 -1
  284. package/core/components/patterns/forms/VerificationCodeInput.story.tsx +2 -2
  285. package/core/components/patterns/table/Table with Header/tableWithHeader.story.jsx +7 -7
  286. package/core/global.d.ts +9 -0
  287. package/core/index.tsx +2 -1
  288. package/core/index.type.tsx +1 -0
  289. package/core/utils/Keys.ts +4 -0
  290. package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +562 -541
  291. package/core/utils/docPage/generateImports.tsx +2 -3
  292. package/core/utils/docPage/index.tsx +52 -37
  293. package/core/utils/docPage/sandbox.tsx +14 -7
  294. package/core/utils/overlayHelper.ts +7 -3
  295. package/core/utils/testHelper.ts +2 -2
  296. package/core/utils/types.tsx +1 -1
  297. package/core/utils/validators.ts +37 -34
  298. package/css/dist/index.css +1550 -1415
  299. package/css/dist/index.css.map +1 -1
  300. package/css/src/components/Legend.css +7 -7
  301. package/css/src/components/ProgressBar.css +1 -1
  302. package/css/src/components/avatarGroup.css +1 -1
  303. package/css/src/components/backdrop.css +12 -6
  304. package/css/src/components/badge.css +52 -52
  305. package/css/src/components/button.css +95 -94
  306. package/css/src/components/calendar.css +137 -126
  307. package/css/src/components/card.css +0 -1
  308. package/css/src/components/cardSubdued.css +3 -5
  309. package/css/src/components/chat.css +1 -1
  310. package/css/src/components/checkbox.css +71 -70
  311. package/css/src/components/chip.css +20 -17
  312. package/css/src/components/chipGroup.css +5 -5
  313. package/css/src/components/chipInput.css +1 -1
  314. package/css/src/components/choiceList.css +4 -4
  315. package/css/src/components/dateRangePicker.css +13 -13
  316. package/css/src/components/divider.css +20 -0
  317. package/css/src/components/dropdown.css +61 -61
  318. package/css/src/components/dropdownButton.css +36 -36
  319. package/css/src/components/dropzone.css +16 -20
  320. package/css/src/components/editableChipInput.css +10 -9
  321. package/css/src/components/editableDropdown.css +1 -1
  322. package/css/src/components/editableInput.css +1 -1
  323. package/css/src/components/emptyState.css +15 -15
  324. package/css/src/components/fileList.css +44 -45
  325. package/css/src/components/fullscreenModal.css +4 -3
  326. package/css/src/components/grid.css +217 -199
  327. package/css/src/components/horizontalNav.css +0 -1
  328. package/css/src/components/icon.css +1 -7
  329. package/css/src/components/inlineMessage.css +2 -1
  330. package/css/src/components/input.css +62 -62
  331. package/css/src/components/link.css +1 -1
  332. package/css/src/components/list.css +10 -10
  333. package/css/src/components/message.css +64 -70
  334. package/css/src/components/metaList.css +26 -26
  335. package/css/src/components/metricInput.css +3 -4
  336. package/css/src/components/modal.css +1 -1
  337. package/css/src/components/navigation.css +3 -3
  338. package/css/src/components/pageHeader.css +1 -2
  339. package/css/src/components/pagination.css +36 -36
  340. package/css/src/components/pills.css +19 -19
  341. package/css/src/components/placeholder.css +10 -5
  342. package/css/src/components/popover.css +2 -2
  343. package/css/src/components/progressRing.css +1 -1
  344. package/css/src/components/radio.css +74 -74
  345. package/css/src/components/slider.css +5 -5
  346. package/css/src/components/statusHints.css +15 -15
  347. package/css/src/components/switch.css +66 -41
  348. package/css/src/components/table.css +15 -15
  349. package/css/src/components/tabs.css +53 -53
  350. package/css/src/components/textarea.css +1 -1
  351. package/css/src/components/toast.css +51 -56
  352. package/css/src/components/verificationCodeInput.css +5 -6
  353. package/css/src/components/verticalNav.css +1 -2
  354. package/css/src/core/base.css +3 -0
  355. package/css/src/core/typography.css +1 -1
  356. package/css/src/core/utilities.css +1 -1
  357. package/css/src/tokens/index.css +63 -63
  358. package/css/src/utils/align.css +1 -1
  359. package/css/src/utils/background.css +1 -1
  360. package/css/src/utils/cursor.css +1 -1
  361. package/css/src/utils/display.css +1 -1
  362. package/css/src/utils/flex.css +1 -1
  363. package/css/src/utils/grid.css +1 -1
  364. package/css/src/utils/overflow.css +1 -1
  365. package/css/src/utils/position.css +1 -1
  366. package/css/src/utils/spacing.css +1 -1
  367. package/css/src/utils/utility.css +13 -13
  368. package/css/src/variables/index.css +6 -3
  369. package/dist/core/accessibility/utils/index.d.ts +4 -0
  370. package/dist/core/accessibility/utils/isEnterKey.d.ts +3 -0
  371. package/dist/core/accessibility/utils/isSpaceKey.d.ts +3 -0
  372. package/dist/core/accessibility/utils/useAccessibilityProps.d.ts +18 -0
  373. package/dist/core/common.type.d.ts +12 -0
  374. package/dist/core/components/atoms/avatar/Avatar.d.ts +4 -4
  375. package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +2 -3
  376. package/dist/core/components/atoms/badge/Badge.d.ts +2 -2
  377. package/dist/core/components/atoms/button/Button.d.ts +6 -6
  378. package/dist/core/components/atoms/checkbox/Checkbox.d.ts +3 -3
  379. package/dist/core/components/atoms/chip/Chip.d.ts +2 -2
  380. package/dist/core/components/atoms/divider/Divider.d.ts +15 -0
  381. package/dist/core/components/atoms/divider/index.d.ts +2 -0
  382. package/dist/core/components/atoms/dropdown/Dropdown.d.ts +18 -17
  383. package/dist/core/components/atoms/dropdown/DropdownButton.d.ts +2 -2
  384. package/dist/core/components/atoms/dropdown/DropdownList.d.ts +4 -3
  385. package/dist/core/components/atoms/dropdown/option/index.d.ts +1 -1
  386. package/dist/core/components/atoms/heading/Heading.d.ts +4 -4
  387. package/dist/core/components/atoms/icon/Icon.d.ts +5 -3
  388. package/dist/core/components/atoms/input/Input.d.ts +4 -4
  389. package/dist/core/components/atoms/legend/Legend.d.ts +2 -2
  390. package/dist/core/components/atoms/link/Link.d.ts +4 -4
  391. package/dist/core/components/atoms/message/Message.d.ts +2 -2
  392. package/dist/core/components/atoms/metricInput/MetricInput.d.ts +3 -3
  393. package/dist/core/components/atoms/multiSlider/SliderUtils.d.ts +1 -1
  394. package/dist/core/components/atoms/multiSlider/index.d.ts +3 -3
  395. package/dist/core/components/atoms/paragraph/Paragraph.d.ts +2 -2
  396. package/dist/core/components/atoms/pills/Pills.d.ts +2 -2
  397. package/dist/core/components/atoms/placeholderImage/PlaceholderImage.d.ts +2 -2
  398. package/dist/core/components/atoms/placeholderParagraph/PlaceholderParagraph.d.ts +2 -2
  399. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +51 -51
  400. package/dist/core/components/atoms/progressRing/ProgressRing.d.ts +2 -2
  401. package/dist/core/components/atoms/radio/Radio.d.ts +4 -4
  402. package/dist/core/components/atoms/rangeSlider/RangeSlider.d.ts +1 -1
  403. package/dist/core/components/atoms/spinner/Spinner.d.ts +4 -4
  404. package/dist/core/components/atoms/statusHint/StatusHint.d.ts +2 -2
  405. package/dist/core/components/atoms/subheading/Subheading.d.ts +2 -2
  406. package/dist/core/components/atoms/switchInput/Switch.d.ts +7 -6
  407. package/dist/core/components/atoms/text/Text.d.ts +4 -4
  408. package/dist/core/components/atoms/toast/ActionButton.d.ts +2 -2
  409. package/dist/core/components/atoms/toast/Toast.d.ts +2 -2
  410. package/dist/core/components/molecules/dropzone/Dropzone.d.ts +3 -3
  411. package/dist/core/components/molecules/dropzone/DropzoneBase.d.ts +1 -1
  412. package/dist/core/components/molecules/dropzone/utils.d.ts +5 -3
  413. package/dist/core/components/molecules/emptyState/EmptyState.d.ts +4 -4
  414. package/dist/core/components/molecules/fileList/FileListItem.d.ts +1 -1
  415. package/dist/core/components/molecules/fileUploader/FileUploaderItem.d.ts +1 -1
  416. package/dist/core/components/molecules/fileUploader/FileUploaderStatus.d.ts +1 -1
  417. package/dist/core/components/molecules/fullscreenModal/FullscreenModal.d.ts +4 -7
  418. package/dist/core/components/molecules/inputMask/InputMask.d.ts +10 -2
  419. package/dist/core/components/molecules/modal/Modal.d.ts +3 -6
  420. package/dist/core/components/molecules/placeholder/Placeholder.d.ts +2 -2
  421. package/dist/core/components/molecules/popover/Popover.d.ts +0 -1
  422. package/dist/core/components/molecules/sidesheet/Sidesheet.d.ts +3 -6
  423. package/dist/core/components/molecules/tooltip/Tooltip.d.ts +3 -3
  424. package/dist/core/components/organisms/calendar/Calendar.d.ts +31 -0
  425. package/dist/core/components/organisms/choiceList/ChoiceList.d.ts +5 -6
  426. package/dist/core/components/organisms/datePicker/DatePicker.d.ts +2 -0
  427. package/dist/core/components/organisms/dateRangePicker/DateRangePicker.d.ts +24 -0
  428. package/dist/core/components/organisms/grid/Cell.d.ts +1 -1
  429. package/dist/core/components/organisms/grid/Grid.d.ts +3 -3
  430. package/dist/core/components/organisms/grid/GridContext.d.ts +1 -1
  431. package/dist/core/components/organisms/inlineMessage/InlineMessage.d.ts +2 -2
  432. package/dist/core/components/organisms/table/Table.d.ts +2 -2
  433. package/dist/core/components/patterns/datePicker/datePickerWithPresets.story.d.ts +15 -0
  434. package/dist/core/components/patterns/dateRangePicker/withCustomPopover.story.d.ts +5 -1
  435. package/dist/core/index.d.ts +1 -0
  436. package/dist/core/index.type.d.ts +1 -0
  437. package/dist/core/utils/docPage/generateImports.d.ts +1 -1
  438. package/dist/core/utils/overlayHelper.d.ts +1 -1
  439. package/dist/core/utils/types.d.ts +1 -1
  440. package/dist/index.esm.js +1039 -729
  441. package/dist/index.js +532 -371
  442. package/dist/index.js.map +1 -1
  443. package/dist/index.umd.js +1 -1
  444. package/dist/index.umd.js.br +0 -0
  445. package/dist/index.umd.js.gz +0 -0
  446. package/dts.config.js +11 -2
  447. package/package.json +32 -27
  448. package/tsconfig.json +3 -16
  449. package/tsconfig.type.json +2 -1
  450. package/types/index.d.ts +2217 -0
  451. package/types/{innovaccer-design-system/tsconfig.json → tsconfig.json} +1 -1
  452. package/types/{innovaccer-design-system/tslint.json → tslint.json} +0 -0
  453. package/types/types-tests.tsx +936 -0
  454. package/.husky/prepare-commit-msg +0 -6
  455. package/core/components/atoms/button/__stories__/variants/state/Success.story.tsx +0 -99
  456. package/core/components/atoms/message/__stories__/default.story.tsx +0 -16
  457. package/core/components/atoms/toast/__stories__/DefaultToast.story.tsx +0 -16
  458. package/core/components/molecules/dropzone/__stories__/variants/DropzoneWithFileList.story.tsx +0 -176
  459. package/core/components/molecules/fileUploader/__stories__/variants/FileUploaderList.story.tsx +0 -80
  460. package/tslint.json +0 -30
  461. package/types/innovaccer-design-system/index.d.ts +0 -39
  462. package/types/innovaccer-design-system/innovaccer-design-system-tests.ts +0 -0
@@ -1,28 +1,28 @@
1
1
  /** utility **/
2
2
 
3
3
  .hide-scroll-bar::-webkit-scrollbar {
4
- height: 0px;
5
- /* Remove scrollbar space */
6
- background: transparent;
7
- /* Optional: just make scrollbar invisible */
4
+ height: 0px;
5
+ /* Remove scrollbar space */
6
+ background: transparent;
7
+ /* Optional: just make scrollbar invisible */
8
8
  }
9
9
 
10
10
  .hide-scroll-bar {
11
- -ms-overflow-style: none;
12
- scrollbar-width: none;
11
+ -ms-overflow-style: none;
12
+ scrollbar-width: none;
13
13
  }
14
14
 
15
15
  .ellipsis {
16
- overflow: hidden;
17
- text-overflow: ellipsis;
16
+ overflow: hidden;
17
+ text-overflow: ellipsis;
18
18
  }
19
19
 
20
20
  .ellipsis--noWrap {
21
- white-space: nowrap;
22
- overflow: hidden;
23
- text-overflow: ellipsis;
21
+ white-space: nowrap;
22
+ overflow: hidden;
23
+ text-overflow: ellipsis;
24
24
  }
25
25
 
26
26
  .cursor-pointer {
27
- cursor: pointer;
28
- }
27
+ cursor: pointer;
28
+ }
@@ -175,11 +175,14 @@
175
175
 
176
176
  /*
177
177
  Grid columns
178
- Set the number of columns and specify the width of the gutters.
179
- */
178
+ Set the number of columns and specify the width of the gutters.
179
+ */
180
180
 
181
181
  --grid-columns: 12;
182
182
 
183
183
  /* Undefined colors */
184
- --card-subdued-bg: #FCFAFA;
184
+ --card-subdued-bg: #fcfafa;
185
+
186
+ /* Transparancy (Opacity) */
187
+ --transparent-58: 0.58;
185
188
  }
@@ -0,0 +1,4 @@
1
+ import isEnterKey from "./isEnterKey";
2
+ import isSpaceKey from "./isSpaceKey";
3
+ import useAccessibilityProps from "./useAccessibilityProps";
4
+ export { isEnterKey, useAccessibilityProps, isSpaceKey };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const isEnterKey: (e: React.KeyboardEvent) => boolean;
3
+ export default isEnterKey;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const isSpaceKey: (e: React.KeyboardEvent) => boolean;
3
+ export default isSpaceKey;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ interface IProps {
3
+ onClick?: (event: React.MouseEvent<HTMLElement>) => void;
4
+ onKeyDown?: (event: React.KeyboardEvent<HTMLElement>) => void;
5
+ role?: React.AriaRole;
6
+ 'aria-label'?: React.AriaAttributes['aria-label'];
7
+ }
8
+ declare const useAccessibilityProps: ({ onClick, onKeyDown, role, ...rest }: IProps) => {
9
+ onClick: (event: React.MouseEvent<HTMLElement>) => void;
10
+ role: string & {};
11
+ tabIndex: number;
12
+ 'aria-label': string | undefined;
13
+ onKeyDown: (e: React.SyntheticEvent<HTMLElement>) => void;
14
+ } | {
15
+ role: "search" | "link" | "form" | "list" | "alert" | "article" | "button" | "dialog" | "figure" | "img" | "main" | "menu" | "menuitem" | "option" | "table" | "switch" | "tooltip" | (string & {}) | "none" | "alertdialog" | "application" | "banner" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "grid" | "gridcell" | "group" | "heading" | "listbox" | "listitem" | "log" | "marquee" | "math" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "note" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tree" | "treegrid" | "treeitem" | undefined;
16
+ 'aria-label': string | undefined;
17
+ };
18
+ export default useAccessibilityProps;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { OverlayFooterProps } from "./components/molecules/overlayFooter";
3
+ export declare type AccentAppearance = 'primary' | 'secondary' | 'alert' | 'warning' | 'success' | 'accent1' | 'accent2' | 'accent3' | 'accent4';
4
+ export declare type HeadingAppearance = 'default' | 'subtle' | 'disabled' | 'white';
5
+ export declare type MessageAppearance = 'default' | 'alert' | 'info' | 'success' | 'warning';
6
+ export declare type FileStatus = 'uploading' | 'completed' | 'error';
7
+ export declare type FooterOptions = {
8
+ actions: OverlayFooterProps['actions'];
9
+ };
10
+ export declare type AutoComplete = 'on' | 'off';
11
+ export declare type NumberRange = [number, number];
12
+ export declare type ChangeEvent = React.ChangeEvent<HTMLInputElement>;
@@ -1,15 +1,15 @@
1
1
  import { BaseProps } from "../../../utils/types";
2
2
  import { TooltipProps } from "../../../index.type";
3
- export declare type Appearance = 'primary' | 'secondary' | 'alert' | 'warning' | 'success' | 'accent1' | 'accent2' | 'accent3' | 'accent4';
4
- export declare type Size = 'regular' | 'tiny';
3
+ import { AccentAppearance } from "../../../common.type";
4
+ export declare type AvatarSize = 'regular' | 'tiny';
5
5
  export interface AvatarProps extends BaseProps {
6
- appearance?: Appearance;
6
+ appearance?: AccentAppearance;
7
7
  children?: string;
8
8
  firstName?: string;
9
9
  lastName?: string;
10
10
  withTooltip: boolean;
11
11
  tooltipPosition: TooltipProps['position'];
12
- size: Size;
12
+ size: AvatarSize;
13
13
  }
14
14
  export declare const Avatar: {
15
15
  (props: AvatarProps): JSX.Element;
@@ -1,12 +1,11 @@
1
1
  import { BaseProps } from "../../../utils/types";
2
2
  import { AvatarProps, PopoverProps } from "../../../index.type";
3
- export declare type Size = 'regular' | 'tiny';
4
3
  interface AvatarData extends Record<string, any> {
5
4
  firstName?: string;
6
5
  lastName?: string;
7
6
  appearance?: AvatarProps['appearance'];
8
7
  }
9
- interface PopperProps {
8
+ interface AvatarPopperProps {
10
9
  popperRenderer?: (names: AvatarData[]) => JSX.Element;
11
10
  appendToBody?: PopoverProps['appendToBody'];
12
11
  dark?: PopoverProps['dark'];
@@ -19,7 +18,7 @@ export interface AvatarGroupProps extends BaseProps {
19
18
  list: AvatarData[];
20
19
  max: number;
21
20
  borderColor: string;
22
- popoverOptions: PopperProps;
21
+ popoverOptions: AvatarPopperProps;
23
22
  tooltipPosition: PopoverProps['position'];
24
23
  }
25
24
  export declare const AvatarGroup: {
@@ -1,8 +1,8 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps } from "../../../utils/types";
3
- export declare type Appearance = 'primary' | 'secondary' | 'alert' | 'warning' | 'success' | 'accent1' | 'accent2' | 'accent3' | 'accent4';
3
+ import { AccentAppearance } from "../../../common.type";
4
4
  export interface BadgeProps extends BaseProps {
5
- appearance: Appearance;
5
+ appearance: AccentAppearance;
6
6
  subtle?: boolean;
7
7
  children: React.ReactText;
8
8
  }
@@ -1,20 +1,20 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps, BaseHtmlProps } from "../../../utils/types";
3
3
  export declare type ButtonType = 'button' | 'submit' | 'reset';
4
- export declare type Appearance = 'basic' | 'primary' | 'success' | 'alert' | 'transparent';
5
- export declare type Size = 'tiny' | 'regular' | 'large';
6
- export declare type Alignment = 'left' | 'right';
4
+ export declare type ButtonAppearance = 'basic' | 'primary' | 'success' | 'alert' | 'transparent';
5
+ export declare type ButtonSize = 'tiny' | 'regular' | 'large';
6
+ export declare type ButtonAlignment = 'left' | 'right';
7
7
  export interface ButtonProps extends BaseProps, BaseHtmlProps<HTMLButtonElement> {
8
8
  type?: ButtonType;
9
- size?: Size;
10
- appearance?: Appearance;
9
+ size?: ButtonSize;
10
+ appearance?: ButtonAppearance;
11
11
  disabled?: boolean;
12
12
  expanded?: boolean;
13
13
  selected?: boolean;
14
14
  loading?: boolean;
15
15
  icon?: string;
16
16
  tooltip?: string;
17
- iconAlign?: Alignment;
17
+ iconAlign?: ButtonAlignment;
18
18
  largeIcon?: boolean;
19
19
  children?: React.ReactText;
20
20
  tabIndex?: number;
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps, OmitNativeProps } from "../../../utils/types";
3
- export declare type Size = 'regular' | 'tiny';
4
- declare type ChangeEvent = React.ChangeEvent<HTMLInputElement>;
3
+ import { ChangeEvent } from "../../../common.type";
4
+ export declare type CheckBoxSize = 'regular' | 'tiny';
5
5
  export interface CheckboxProps extends BaseProps, OmitNativeProps<HTMLInputElement, 'onChange'> {
6
- size?: Size;
6
+ size?: CheckBoxSize;
7
7
  defaultChecked?: boolean;
8
8
  checked?: boolean;
9
9
  indeterminate?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { BaseProps } from "../../../utils/types";
2
- export declare type Type = 'action' | 'selection' | 'input';
2
+ export declare type ChipType = 'action' | 'selection' | 'input';
3
3
  export declare type Name = number | string;
4
4
  export interface ChipProps extends BaseProps {
5
5
  label: string;
@@ -7,7 +7,7 @@ export interface ChipProps extends BaseProps {
7
7
  clearButton?: boolean;
8
8
  disabled?: boolean;
9
9
  selected?: boolean;
10
- type: Type;
10
+ type: ChipType;
11
11
  onClose?: (name: Name) => void;
12
12
  onClick?: (name: Name) => void;
13
13
  name: Name;
@@ -0,0 +1,15 @@
1
+ import { BaseProps } from "../../../utils/types";
2
+ declare type DividerType = 'basic' | 'header';
3
+ export interface DividerProps extends BaseProps {
4
+ vertical: boolean;
5
+ appearance: DividerType;
6
+ }
7
+ export declare const Divider: {
8
+ (props: DividerProps): JSX.Element;
9
+ displayName: string;
10
+ defaultProps: {
11
+ appearance: string;
12
+ vertical: boolean;
13
+ };
14
+ };
15
+ export default Divider;
@@ -0,0 +1,2 @@
1
+ export { default } from "./Divider";
2
+ export * from "./Divider";
@@ -1,19 +1,20 @@
1
1
  import * as React from 'react';
2
- import { DropdownListProps, SelectAll, Selected, ChangeEvent } from "./DropdownList";
3
- import { OptionSchema as Option } from "./option";
2
+ import { DropdownListProps, SelectAll, Selected } from "./DropdownList";
3
+ import { OptionSchema } from "./option";
4
4
  import { BaseProps } from "../../../utils/types";
5
+ import { ChangeEvent } from "../../../common.type";
5
6
  declare type fetchOptionsFunction = (searchTerm: string) => Promise<{
6
7
  searchTerm?: string;
7
8
  count: number;
8
- options: Option[];
9
+ options: OptionSchema[];
9
10
  }>;
10
11
  export declare type EventType = 'select-option' | 'deselect-option' | 'select-all' | 'deselect-all' | 'clear-all' | 'apply-selected' | 'cancel-selected';
11
12
  interface ControlledProps {
12
- selected?: Option[];
13
- onUpdate?: (type: EventType, options?: Option | Option[], recentSelected?: Option[]) => void;
13
+ selected?: OptionSchema[];
14
+ onUpdate?: (type: EventType, options?: OptionSchema | OptionSchema[], recentSelected?: OptionSchema[]) => void;
14
15
  }
15
16
  interface SyncProps {
16
- options: Option[];
17
+ options: OptionSchema[];
17
18
  loading?: boolean;
18
19
  }
19
20
  interface AsyncProps {
@@ -21,7 +22,7 @@ interface AsyncProps {
21
22
  }
22
23
  interface TriggerProps {
23
24
  labelLimit?: number;
24
- customLabel?: (selected: number, totalOptions?: number, selectedOptions?: Option[]) => string;
25
+ customLabel?: (selected: number, totalOptions?: number, selectedOptions?: OptionSchema[]) => string;
25
26
  customTrigger?: (label: string) => React.ReactElement;
26
27
  }
27
28
  interface SharedDropdownProps extends DropdownListProps, BaseProps {
@@ -45,7 +46,7 @@ export declare type DropdownProps = ControlledDropdownProps & UncontrolledDropdo
45
46
  interface DropdownState {
46
47
  async: boolean;
47
48
  searchInit: boolean;
48
- options: Option[];
49
+ options: OptionSchema[];
49
50
  loading?: boolean;
50
51
  optionsApplied: boolean;
51
52
  open?: boolean;
@@ -54,9 +55,9 @@ interface DropdownState {
54
55
  searchedOptionsLength: number;
55
56
  triggerLabel: string;
56
57
  selectAll: SelectAll;
57
- selected: Option[];
58
- tempSelected: Option[];
59
- previousSelected: Option[];
58
+ selected: OptionSchema[];
59
+ tempSelected: OptionSchema[];
60
+ previousSelected: OptionSchema[];
60
61
  }
61
62
  export declare class Dropdown extends React.Component<DropdownProps, DropdownState> {
62
63
  staticLimit: number;
@@ -70,17 +71,17 @@ export declare class Dropdown extends React.Component<DropdownProps, DropdownSta
70
71
  constructor(props: DropdownProps);
71
72
  componentDidMount(): void;
72
73
  componentDidUpdate(prevProps: DropdownProps, prevState: DropdownState): void;
73
- getDisabledOptions: (options?: Option[]) => Option[];
74
+ getDisabledOptions: (options?: OptionSchema[]) => OptionSchema[];
74
75
  fetchOptionsFunction: (searchTerm: string) => Promise<any>;
75
- getUnSelectedOptions: (options: Option[], init: boolean) => Option[];
76
- getSelectedOptions: (options: Option[], init: boolean) => Option[];
76
+ getUnSelectedOptions: (options: OptionSchema[], init: boolean) => OptionSchema[];
77
+ getSelectedOptions: (options: OptionSchema[], init: boolean) => OptionSchema[];
77
78
  updateOptions: (init: boolean, async?: boolean | undefined) => void;
78
79
  updateSearchTerm: (search: string) => void;
79
80
  updateOnPopperToggle: () => void;
80
81
  updateTriggerLabel: (selectedArray?: Selected[], totalOptions?: number | undefined) => string;
81
- updateSelectedOptions: (selectedArray: Option[], isSingleSelect: boolean, isControlled?: boolean | undefined) => void;
82
- onOptionSelect: (option: Option) => void;
83
- onSelect: (option: Option, checked: boolean) => void;
82
+ updateSelectedOptions: (selectedArray: OptionSchema[], isSingleSelect: boolean, isControlled?: boolean | undefined) => void;
83
+ onOptionSelect: (option: OptionSchema) => void;
84
+ onSelect: (option: OptionSchema, checked: boolean) => void;
84
85
  onSelectAll: (event: ChangeEvent) => void;
85
86
  debounceSearch: import("throttle-debounce").throttle<() => void>;
86
87
  debounceClear: import("throttle-debounce").throttle<() => void>;
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- export declare type Size = 'tiny' | 'regular';
2
+ export declare type DropDownButtonSize = 'tiny' | 'regular';
3
3
  export interface TriggerProps {
4
- triggerSize?: Size;
4
+ triggerSize?: DropDownButtonSize;
5
5
  icon?: string;
6
6
  placeholder?: string;
7
7
  inlineLabel?: string;
@@ -3,7 +3,7 @@ import { PopoverProps } from "../../../index.type";
3
3
  import { TriggerProps } from "./DropdownButton";
4
4
  import { OptionRendererProps, OptionSchema } from "./option";
5
5
  import { BaseProps } from "../../../utils/types";
6
- export declare type ChangeEvent = React.ChangeEvent<HTMLInputElement>;
6
+ import { ChangeEvent } from "../../../common.type";
7
7
  export declare type DropdownAlign = 'left' | 'right';
8
8
  export declare type OptionType = 'DEFAULT' | 'WITH_ICON' | 'WITH_META' | 'ICON_WITH_META';
9
9
  export interface Selected {
@@ -19,8 +19,8 @@ interface PopoverOptions {
19
19
  hideOnReferenceEscape?: PopoverProps['hideOnReferenceEscape'];
20
20
  boundaryElement?: PopoverProps['boundaryElement'];
21
21
  }
22
- declare type ListProps = TriggerProps & OptionRendererProps;
23
- export interface DropdownListProps extends ListProps {
22
+ declare type TriggerAndOptionProps = TriggerProps & OptionRendererProps;
23
+ export interface DropdownListProps extends TriggerAndOptionProps {
24
24
  align?: DropdownAlign;
25
25
  noResultMessage?: string;
26
26
  selectAllLabel?: string;
@@ -40,6 +40,7 @@ export interface DropdownListProps extends ListProps {
40
40
  minWidth?: number;
41
41
  loadersCount?: number;
42
42
  popoverOptions?: PopoverOptions;
43
+ searchPlaceholder?: string;
43
44
  }
44
45
  interface OptionsProps extends DropdownListProps, BaseProps {
45
46
  listOptions: OptionSchema[];
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import { MetaListProps, IconProps, TextProps } from "../../../../index.type";
3
3
  import { OptionType } from "../DropdownList";
4
- export declare type ChangeEvent = React.ChangeEvent<HTMLInputElement>;
4
+ import { ChangeEvent } from "../../../../common.type";
5
5
  export declare type ClickEvent = React.MouseEvent<HTMLDivElement>;
6
6
  export interface OptionRendererProps {
7
7
  optionRenderer?: (props: OptionProps) => React.ReactElement;
@@ -1,11 +1,11 @@
1
1
  import * as React from 'react';
2
2
  import { BaseHtmlProps, BaseProps } from "../../../utils/types";
3
- export declare type Size = 's' | 'm' | 'l' | 'xl' | 'xxl';
4
- export declare type Appearance = 'default' | 'subtle' | 'disabled' | 'white';
3
+ import { HeadingAppearance } from "../../../common.type";
4
+ export declare type HeadingSize = 's' | 'm' | 'l' | 'xl' | 'xxl';
5
5
  export interface HeadingProps extends BaseProps, BaseHtmlProps<HTMLHeadingElement> {
6
6
  children: React.ReactText;
7
- appearance: Appearance;
8
- size: Size;
7
+ appearance: HeadingAppearance;
8
+ size: HeadingSize;
9
9
  }
10
10
  export declare const Heading: {
11
11
  (props: HeadingProps): JSX.Element;
@@ -1,14 +1,16 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps } from "../../../utils/types";
3
- export declare type Appearance = 'default' | 'destructive' | 'white' | 'subtle' | 'disabled' | 'info' | 'alert' | 'warning' | 'success' | 'primary_lighter' | 'primary' | 'primary_dark' | 'alert_lighter' | 'alert_dark' | 'warning_lighter' | 'warning_dark' | 'success_lighter' | 'success_dark' | 'accent1' | 'accent1_lighter' | 'accent1_dark' | 'accent2' | 'accent2_lighter' | 'accent2_dark' | 'accent3' | 'accent3_lighter' | 'accent3_dark' | 'accent4' | 'accent4_lighter' | 'accent4_dark' | 'inverse';
3
+ export declare type IconAppearance = 'default' | 'destructive' | 'white' | 'subtle' | 'disabled' | 'info' | 'alert' | 'warning' | 'success' | 'primary_lighter' | 'primary' | 'primary_dark' | 'alert_lighter' | 'alert_dark' | 'warning_lighter' | 'warning_dark' | 'success_lighter' | 'success_dark' | 'accent1' | 'accent1_lighter' | 'accent1_dark' | 'accent2' | 'accent2_lighter' | 'accent2_dark' | 'accent3' | 'accent3_lighter' | 'accent3_dark' | 'accent4' | 'accent4_lighter' | 'accent4_dark' | 'inverse';
4
4
  export declare type IconType = 'filled' | 'outlined' | 'outline' | 'rounded' | 'round' | 'two-tone' | 'sharp';
5
5
  export interface IconProps extends BaseProps {
6
6
  name?: string;
7
7
  size: number;
8
8
  type?: IconType;
9
- appearance?: Appearance;
10
- onClick?: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void;
9
+ appearance?: IconAppearance;
10
+ onClick?: (e: React.MouseEvent<HTMLElement>) => void;
11
+ onKeyDown?: (e: React.KeyboardEvent<HTMLElement>) => void;
11
12
  children?: React.ReactNode;
13
+ tabIndex?: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>['tabIndex'];
12
14
  }
13
15
  export declare const Icon: {
14
16
  (props: IconProps): JSX.Element;
@@ -1,16 +1,16 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from "../../../index.type";
3
3
  import { BaseHtmlProps, BaseProps } from "../../../utils/types";
4
+ import { AutoComplete } from "../../../common.type";
4
5
  export declare type InputType = 'text' | 'password' | 'number' | 'email' | 'tel' | 'url';
5
- export declare type AutoComplete = 'on' | 'off';
6
- export declare type Size = 'tiny' | 'regular' | 'large';
6
+ export declare type InputSize = 'tiny' | 'regular' | 'large';
7
7
  export interface InputProps extends BaseProps, BaseHtmlProps<HTMLInputElement> {
8
8
  name?: string;
9
9
  type?: InputType;
10
10
  value?: string;
11
11
  defaultValue?: string;
12
12
  placeholder?: string;
13
- size?: Size;
13
+ size?: InputSize;
14
14
  icon?: string;
15
15
  inlineLabel?: string;
16
16
  disabled?: boolean;
@@ -26,7 +26,7 @@ export interface InputProps extends BaseProps, BaseHtmlProps<HTMLInputElement> {
26
26
  error?: boolean;
27
27
  info?: string;
28
28
  minWidth?: string;
29
- onClear?: (e: React.MouseEvent<HTMLElement>) => void;
29
+ onClear?: (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>) => void;
30
30
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
31
31
  onClick?: (e: React.MouseEvent<HTMLInputElement>) => void;
32
32
  onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
@@ -1,10 +1,10 @@
1
1
  import * as React from 'react';
2
- import { Appearance as LabelAppearance } from "../text";
2
+ import { TextAppearance } from "../text";
3
3
  import { BaseProps } from "../../../utils/types";
4
4
  export interface LegendProps extends BaseProps {
5
5
  children: React.ReactText;
6
6
  iconAppearance: string;
7
- labelAppearance?: LabelAppearance;
7
+ labelAppearance?: TextAppearance;
8
8
  iconSize: number;
9
9
  labelWeight?: 'strong' | 'medium';
10
10
  onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
@@ -1,12 +1,12 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps, OmitNativeProps } from "../../../utils/types";
3
3
  declare type LinkTarget = '_blank' | '_self' | '_parent' | '_top';
4
- declare type Appearance = 'default' | 'subtle';
5
- declare type Size = 'regular' | 'tiny';
4
+ declare type LinkAppearance = 'default' | 'subtle';
5
+ declare type LinkSize = 'regular' | 'tiny';
6
6
  export interface LinkProps extends BaseProps, OmitNativeProps<HTMLLinkElement, 'onClick'> {
7
7
  id?: string;
8
- appearance: Appearance;
9
- size: Size;
8
+ appearance: LinkAppearance;
9
+ size: LinkSize;
10
10
  disabled: boolean;
11
11
  href?: string;
12
12
  target?: LinkTarget;
@@ -1,8 +1,8 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps } from "../../../utils/types";
3
- export declare type Appearance = 'default' | 'alert' | 'info' | 'success' | 'warning';
3
+ import { MessageAppearance } from "../../../common.type";
4
4
  export interface MessageProps extends BaseProps {
5
- appearance: Appearance;
5
+ appearance: MessageAppearance;
6
6
  title?: string;
7
7
  children?: React.ReactNode;
8
8
  description: string;
@@ -1,13 +1,13 @@
1
1
  import * as React from 'react';
2
2
  import { BaseHtmlProps, BaseProps } from "../../../utils/types";
3
- export declare type AutoComplete = 'on' | 'off';
4
- export declare type Size = 'regular' | 'large';
3
+ import { AutoComplete } from "../../../common.type";
4
+ export declare type MetricInputSize = 'regular' | 'large';
5
5
  export interface MetricInputProps extends BaseProps, BaseHtmlProps<HTMLInputElement> {
6
6
  name?: string;
7
7
  value?: React.ReactText;
8
8
  defaultValue?: React.ReactText;
9
9
  placeholder?: string;
10
- size?: Size;
10
+ size?: MetricInputSize;
11
11
  icon?: string;
12
12
  prefix?: string;
13
13
  suffix?: string;
@@ -6,4 +6,4 @@ export declare const clamp: (value: number, min: number, max: number) => number;
6
6
  export declare const arraysEqual: (oldValues: number[], newValues: number[]) => boolean | undefined;
7
7
  export declare function argMin<T>(values: T[], argFn: (value: T) => any): T | undefined;
8
8
  export declare function fillValues<T>(values: T[], startIndex: number, endIndex: number, fillValue: T): void;
9
- export declare function isElementOfType<P = {}>(element: any, _ComponentType: React.ComponentType<P>): element is React.ReactElement<P>;
9
+ export declare function isElementOfType(element: React.ReactElement): boolean;
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps } from "../../../utils/types";
3
3
  import Handle, { HandleProps } from "./Handle";
4
- declare type NumberRange = [number, number];
4
+ import { NumberRange } from "../../../common.type";
5
5
  export interface MultiSliderProps extends BaseProps {
6
6
  disabled?: boolean;
7
7
  labelStepSize: number;
@@ -47,13 +47,13 @@ export declare class MultiSlider extends React.Component<InternalMultiSliderProp
47
47
  getLabelPrecision: ({ labelPrecision, stepSize }: InternalMultiSliderProps) => number;
48
48
  getOffsetRatio: (value: number) => number;
49
49
  addHandleRef: (ref: Handle) => void;
50
- getHandleValues: (props: React.PropsWithChildren<InternalMultiSliderProps>) => HandleProps[];
50
+ getHandleValues: (props: React.PropsWithChildren<InternalMultiSliderProps>) => any[];
51
51
  updateTickSize: () => void;
52
52
  getTrackFill: (start: HandleProps, end?: HandleProps | undefined) => boolean;
53
53
  nearestHandleForValue(handles: Handle[], getOffset: (handle: Handle) => number): Handle | undefined;
54
54
  maybeHandleTrackClick: (event: React.MouseEvent<HTMLDivElement>) => void;
55
55
  getLockedHandleIndex: (startIndex: number, endIndex: number) => number;
56
- getNewHandleValues: (newValue: number, oldIndex: number) => number[];
56
+ getNewHandleValues: (newValue: number, oldIndex: number) => any[];
57
57
  onReleaseHandler: (newValue: number, index: number) => void;
58
58
  onChangeHandler: (newValue: number, index: number) => void;
59
59
  formatLabel: (value: number) => string;
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
2
  import { BaseHtmlProps, BaseProps } from "../../../utils/types";
3
- export declare type Appearance = 'default' | 'white' | 'destructive' | 'subtle' | 'disabled';
3
+ export declare type ParagraphAppearance = 'default' | 'white' | 'destructive' | 'subtle' | 'disabled';
4
4
  export interface ParagraphProps extends BaseProps, BaseHtmlProps<HTMLParagraphElement> {
5
5
  children: React.ReactNode;
6
- appearance: Appearance;
6
+ appearance: ParagraphAppearance;
7
7
  }
8
8
  export declare const Paragraph: {
9
9
  (props: ParagraphProps): JSX.Element;
@@ -1,8 +1,8 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps } from "../../../utils/types";
3
- export declare type Appearance = 'primary' | 'secondary' | 'alert' | 'warning' | 'success' | 'accent1' | 'accent2' | 'accent3' | 'accent4';
3
+ import { AccentAppearance } from "../../../common.type";
4
4
  export interface PillsProps extends BaseProps {
5
- appearance: Appearance;
5
+ appearance: AccentAppearance;
6
6
  subtle?: boolean;
7
7
  children: React.ReactText;
8
8
  }
@@ -1,8 +1,8 @@
1
1
  import { BaseProps } from "../../../utils/types";
2
- export declare type Size = 'small' | 'medium' | 'large';
2
+ export declare type PlaceholderImageSize = 'small' | 'medium' | 'large';
3
3
  export interface PlaceholderImageProps extends BaseProps {
4
4
  round?: boolean;
5
- size: Size;
5
+ size: PlaceholderImageSize;
6
6
  }
7
7
  export declare const PlaceholderImage: {
8
8
  (props: PlaceholderImageProps): JSX.Element;
@@ -1,9 +1,9 @@
1
1
  import { BaseProps } from "../../../utils/types";
2
2
  export declare type Length = 'small' | 'medium' | 'large';
3
- export declare type Size = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl';
3
+ export declare type PlaceholderParagraphSize = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl';
4
4
  export interface PlaceholderParagraphProps extends BaseProps {
5
5
  length: Length;
6
- size?: Size;
6
+ size?: PlaceholderParagraphSize;
7
7
  }
8
8
  export declare const PlaceholderParagraph: {
9
9
  (props: PlaceholderParagraphProps): JSX.Element;