@carbon/ibm-products 2.0.0-rc.2 → 2.0.0-rc.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (380) hide show
  1. package/README.md +2 -2
  2. package/css/index-full-carbon.css +1368 -401
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +6 -8
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +1413 -385
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +4 -8
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +1292 -456
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +6 -8
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +1165 -334
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +6 -8
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/APIKeyModal/APIKeyModal.js +1 -1
  19. package/es/components/ActionBar/ActionBarOverflowItems.js +1 -0
  20. package/es/components/ActionSet/ActionSet.js +7 -3
  21. package/es/components/AddSelect/AddSelect.js +6 -6
  22. package/es/components/AddSelect/AddSelectBody.js +73 -32
  23. package/es/components/AddSelect/AddSelectBreadcrumbs.js +12 -4
  24. package/es/components/AddSelect/AddSelectColumn.js +8 -8
  25. package/es/components/AddSelect/AddSelectFilter.js +10 -7
  26. package/es/components/AddSelect/AddSelectList.js +64 -29
  27. package/es/components/AddSelect/AddSelectMetaPanel.js +7 -1
  28. package/es/components/AddSelect/AddSelectSidebar.js +5 -2
  29. package/es/components/AddSelect/AddSelectSort.js +2 -2
  30. package/es/components/AddSelect/add-select-utils.js +9 -2
  31. package/es/components/AddSelect/hooks/useItemSort.js +6 -0
  32. package/es/components/AddSelect/hooks/useParentSelect.js +6 -0
  33. package/es/components/AddSelect/hooks/usePath.js +23 -2
  34. package/es/components/AddSelect/index.js +1 -1
  35. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +4 -6
  36. package/es/components/ButtonMenu/ButtonMenu.js +4 -3
  37. package/es/components/Card/Card.js +16 -6
  38. package/es/components/Card/CardFooter.js +3 -1
  39. package/es/components/Card/CardHeader.js +20 -1
  40. package/es/components/ComboButton/ComboButton.js +1 -1
  41. package/es/components/CreateFullPage/CreateFullPage.js +13 -3
  42. package/es/components/CreateTearsheet/CreateTearsheet.js +17 -3
  43. package/es/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +3 -1
  44. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +2 -2
  45. package/es/components/DataSpreadsheet/DataSpreadsheet.js +65 -15
  46. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +2 -1
  47. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +7 -0
  48. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +6 -5
  49. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +42 -0
  50. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -1
  51. package/es/components/Datagrid/Datagrid/Datagrid.js +16 -40
  52. package/es/components/Datagrid/Datagrid/DatagridContent.js +194 -0
  53. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +18 -8
  54. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +9 -1
  55. package/es/components/Datagrid/Datagrid/DatagridHead.js +1 -2
  56. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +1 -4
  57. package/es/components/Datagrid/Datagrid/DatagridRow.js +44 -7
  58. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +11 -5
  59. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +13 -4
  60. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -2
  61. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +14 -10
  62. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +32 -11
  63. package/es/components/Datagrid/Datagrid/DraggableElement.js +12 -4
  64. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +11 -54
  65. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +15 -14
  66. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +63 -31
  67. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +193 -0
  68. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +56 -0
  69. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/index.js +1 -1
  70. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +484 -0
  71. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +514 -0
  72. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +91 -0
  73. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +28 -0
  74. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +9 -0
  75. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +25 -0
  76. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +38 -0
  77. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +25 -0
  78. package/es/components/Datagrid/Datagrid/addons/Filtering/index.js +9 -0
  79. package/es/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +55 -0
  80. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +72 -0
  81. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +60 -0
  82. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +1 -0
  83. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +541 -0
  84. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +1 -0
  85. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +112 -0
  86. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +27 -0
  87. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +1 -0
  88. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +39 -0
  89. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +19 -0
  90. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +262 -0
  91. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +87 -0
  92. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +17 -14
  93. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +13 -36
  94. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/index.js +0 -1
  95. package/es/components/Datagrid/index.js +4 -1
  96. package/es/components/Datagrid/useActionsColumn.js +28 -12
  97. package/es/components/Datagrid/useColumnOrder.js +8 -0
  98. package/es/components/Datagrid/useCustomizeColumns.js +13 -8
  99. package/es/components/Datagrid/useDisableSelectRows.js +6 -2
  100. package/es/components/Datagrid/useExpandedRow.js +0 -1
  101. package/es/components/Datagrid/useFiltering.js +99 -0
  102. package/es/components/Datagrid/useInfiniteScroll.js +5 -2
  103. package/es/components/Datagrid/useInlineEdit.js +71 -0
  104. package/es/components/Datagrid/useNestedRowExpander.js +47 -0
  105. package/es/components/Datagrid/useNestedRows.js +16 -4
  106. package/es/components/Datagrid/useParentDimensions.js +3 -1
  107. package/es/components/Datagrid/useRowExpander.js +12 -4
  108. package/es/components/Datagrid/useRowSize.js +17 -6
  109. package/es/components/Datagrid/useSelectAllToggle.js +17 -4
  110. package/es/components/Datagrid/useSelectRows.js +13 -4
  111. package/es/components/Datagrid/useSortableColumns.js +15 -9
  112. package/es/components/Datagrid/useStickyColumn.js +11 -0
  113. package/es/components/Datagrid/utils/DatagridActions.js +249 -0
  114. package/es/components/Datagrid/utils/DatagridPagination.js +33 -0
  115. package/es/components/Datagrid/utils/Wrapper.js +21 -0
  116. package/es/components/Datagrid/utils/getArgTypes.js +94 -0
  117. package/es/components/Datagrid/utils/getInlineEditColumns.js +159 -0
  118. package/es/components/Datagrid/utils/makeData.js +54 -1
  119. package/es/components/EditUpdateCards/EditUpdateCards.js +144 -0
  120. package/es/components/EditUpdateCards/index.js +7 -0
  121. package/es/components/ExportModal/ExportModal.js +1 -1
  122. package/es/components/FilterSummary/FilterSummary.js +54 -0
  123. package/es/components/FilterSummary/index.js +7 -0
  124. package/es/components/ImportModal/ImportModal.js +3 -3
  125. package/es/components/InlineEdit/InlineEdit.js +28 -426
  126. package/es/components/InlineEditV1/InlineEditV1.js +447 -0
  127. package/es/components/InlineEditV1/index.js +7 -0
  128. package/es/components/InlineEditV2/InlineEditV2.js +289 -0
  129. package/es/components/InlineEditV2/index.js +7 -0
  130. package/es/components/ModifiedTabs/ModifiedTabLabelNew.js +1 -1
  131. package/es/components/ModifiedTabs/ModifiedTabLabelWithClose.js +1 -1
  132. package/es/components/MultiAddSelect/MultiAddSelect.js +14 -7
  133. package/es/components/MultiAddSelect/index.js +6 -0
  134. package/es/components/NotificationsPanel/NotificationsPanel.js +1 -1
  135. package/es/components/OptionsTile/OptionsTile.js +32 -16
  136. package/es/components/PageHeader/PageHeader.js +4 -4
  137. package/es/components/PageHeader/PageHeaderTitle.js +1 -1
  138. package/es/components/ProductiveCard/ProductiveCard.js +5 -0
  139. package/es/components/RemoveModal/RemoveModal.js +20 -3
  140. package/es/components/Saving/Saving.js +1 -1
  141. package/es/components/SidePanel/SidePanel.js +45 -52
  142. package/es/components/SidePanel/motion/variants.js +45 -0
  143. package/es/components/SingleAddSelect/SingleAddSelect.js +6 -0
  144. package/es/components/SingleAddSelect/index.js +6 -0
  145. package/es/components/StatusIcon/StatusIcon.js +1 -1
  146. package/es/components/Tearsheet/Tearsheet.js +5 -0
  147. package/es/components/Tearsheet/TearsheetNarrow.js +5 -0
  148. package/es/components/Tearsheet/TearsheetShell.js +1 -1
  149. package/es/components/UserProfileImage/UserProfileImage.js +1 -1
  150. package/es/components/WebTerminal/WebTerminal.js +1 -1
  151. package/es/components/WebTerminal/preview-components/Navigation.js +1 -1
  152. package/es/components/index.js +4 -3
  153. package/es/global/js/hooks/index.js +2 -1
  154. package/es/global/js/hooks/useClickOutside.js +1 -1
  155. package/es/global/js/hooks/useControllableState.js +83 -0
  156. package/es/global/js/hooks/useCreateComponentFocus.js +38 -10
  157. package/es/global/js/hooks/useResetCreateComponent.js +6 -2
  158. package/es/global/js/package-settings.js +9 -6
  159. package/es/global/js/utils/getBezierValues.js +20 -0
  160. package/es/global/js/utils/getNumberOfHiddenSteps.js +19 -0
  161. package/es/global/js/utils/motionConstants.js +45 -0
  162. package/es/global/js/utils/rangeWithCallback.js +13 -0
  163. package/es/global/js/utils/story-helper.js +5 -1
  164. package/es/global/js/utils/uuidv4.spec.js +4 -0
  165. package/lib/components/APIKeyModal/APIKeyModal.js +4 -4
  166. package/lib/components/ActionBar/ActionBarOverflowItems.js +1 -0
  167. package/lib/components/ActionSet/ActionSet.js +7 -3
  168. package/lib/components/AddSelect/AddSelect.js +5 -6
  169. package/lib/components/AddSelect/AddSelectBody.js +68 -31
  170. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +15 -4
  171. package/lib/components/AddSelect/AddSelectColumn.js +7 -7
  172. package/lib/components/AddSelect/AddSelectFilter.js +9 -6
  173. package/lib/components/AddSelect/AddSelectList.js +65 -30
  174. package/lib/components/AddSelect/AddSelectMetaPanel.js +8 -2
  175. package/lib/components/AddSelect/AddSelectSidebar.js +4 -1
  176. package/lib/components/AddSelect/AddSelectSort.js +5 -5
  177. package/lib/components/AddSelect/add-select-utils.js +9 -2
  178. package/lib/components/AddSelect/hooks/useItemSort.js +6 -0
  179. package/lib/components/AddSelect/hooks/useParentSelect.js +6 -0
  180. package/lib/components/AddSelect/hooks/usePath.js +16 -1
  181. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +6 -6
  182. package/lib/components/ButtonMenu/ButtonMenu.js +4 -3
  183. package/lib/components/Card/Card.js +16 -6
  184. package/lib/components/Card/CardFooter.js +3 -1
  185. package/lib/components/Card/CardHeader.js +21 -1
  186. package/lib/components/ComboButton/ComboButton.js +3 -3
  187. package/lib/components/CreateFullPage/CreateFullPage.js +13 -3
  188. package/lib/components/CreateTearsheet/CreateTearsheet.js +18 -3
  189. package/lib/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +3 -1
  190. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +2 -2
  191. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +65 -14
  192. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +2 -1
  193. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +7 -0
  194. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +6 -5
  195. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +53 -0
  196. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -1
  197. package/lib/components/Datagrid/Datagrid/Datagrid.js +19 -47
  198. package/lib/components/Datagrid/Datagrid/DatagridContent.js +230 -0
  199. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +19 -9
  200. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +9 -1
  201. package/lib/components/Datagrid/Datagrid/DatagridHead.js +1 -3
  202. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +2 -5
  203. package/lib/components/Datagrid/Datagrid/DatagridRow.js +46 -8
  204. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +14 -6
  205. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +16 -5
  206. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -2
  207. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +14 -10
  208. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +33 -10
  209. package/lib/components/Datagrid/Datagrid/DraggableElement.js +12 -4
  210. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +11 -49
  211. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +11 -8
  212. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +76 -46
  213. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/{CustomizeColumnsModal.js → CustomizeColumnsTearsheet.js} +85 -48
  214. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/{ModalWrapper.js → TearsheetWrapper.js} +32 -36
  215. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/index.js +3 -3
  216. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +505 -0
  217. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +538 -0
  218. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +112 -0
  219. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +47 -0
  220. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +31 -0
  221. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +37 -0
  222. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +50 -0
  223. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +35 -0
  224. package/lib/components/Datagrid/Datagrid/addons/Filtering/index.js +37 -0
  225. package/lib/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +67 -0
  226. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +82 -0
  227. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +76 -0
  228. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +13 -0
  229. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +566 -0
  230. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +13 -0
  231. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +129 -0
  232. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +36 -0
  233. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +19 -0
  234. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +45 -0
  235. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +28 -0
  236. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +271 -0
  237. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +100 -0
  238. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +17 -13
  239. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +13 -35
  240. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/index.js +0 -8
  241. package/lib/components/Datagrid/index.js +25 -1
  242. package/lib/components/Datagrid/useActionsColumn.js +28 -13
  243. package/lib/components/Datagrid/useColumnOrder.js +17 -0
  244. package/lib/components/Datagrid/useCustomizeColumns.js +12 -7
  245. package/lib/components/Datagrid/useDisableSelectRows.js +6 -2
  246. package/lib/components/Datagrid/useExpandedRow.js +0 -1
  247. package/lib/components/Datagrid/useFiltering.js +105 -0
  248. package/lib/components/Datagrid/useInfiniteScroll.js +5 -2
  249. package/lib/components/Datagrid/useInlineEdit.js +85 -0
  250. package/lib/components/Datagrid/useNestedRowExpander.js +63 -0
  251. package/lib/components/Datagrid/useNestedRows.js +17 -4
  252. package/lib/components/Datagrid/useParentDimensions.js +3 -1
  253. package/lib/components/Datagrid/useRowExpander.js +17 -5
  254. package/lib/components/Datagrid/useRowSize.js +18 -13
  255. package/lib/components/Datagrid/useSelectAllToggle.js +18 -4
  256. package/lib/components/Datagrid/useSelectRows.js +13 -4
  257. package/lib/components/Datagrid/useSortableColumns.js +16 -7
  258. package/lib/components/Datagrid/useStickyColumn.js +11 -0
  259. package/lib/components/Datagrid/utils/DatagridActions.js +275 -0
  260. package/lib/components/Datagrid/utils/DatagridPagination.js +46 -0
  261. package/lib/components/Datagrid/utils/Wrapper.js +33 -0
  262. package/lib/components/Datagrid/utils/getArgTypes.js +102 -0
  263. package/lib/components/Datagrid/utils/getInlineEditColumns.js +174 -0
  264. package/lib/components/Datagrid/utils/makeData.js +56 -2
  265. package/lib/components/EditUpdateCards/EditUpdateCards.js +152 -0
  266. package/lib/components/EditUpdateCards/index.js +13 -0
  267. package/lib/components/ExportModal/ExportModal.js +3 -3
  268. package/lib/components/FilterSummary/FilterSummary.js +72 -0
  269. package/lib/components/FilterSummary/index.js +15 -0
  270. package/lib/components/ImportModal/ImportModal.js +4 -4
  271. package/lib/components/InlineEdit/InlineEdit.js +27 -426
  272. package/lib/components/InlineEditV1/InlineEditV1.js +464 -0
  273. package/lib/components/InlineEditV1/index.js +13 -0
  274. package/lib/components/InlineEditV2/InlineEditV2.js +309 -0
  275. package/lib/components/InlineEditV2/index.js +13 -0
  276. package/lib/components/ModifiedTabs/ModifiedTabLabelNew.js +2 -2
  277. package/lib/components/ModifiedTabs/ModifiedTabLabelWithClose.js +3 -3
  278. package/lib/components/MultiAddSelect/MultiAddSelect.js +14 -7
  279. package/lib/components/NotificationsPanel/NotificationsPanel.js +8 -8
  280. package/lib/components/OptionsTile/OptionsTile.js +36 -19
  281. package/lib/components/PageHeader/PageHeader.js +5 -5
  282. package/lib/components/PageHeader/PageHeaderTitle.js +1 -1
  283. package/lib/components/ProductiveCard/ProductiveCard.js +5 -0
  284. package/lib/components/RemoveModal/RemoveModal.js +20 -3
  285. package/lib/components/Saving/Saving.js +5 -5
  286. package/lib/components/SidePanel/SidePanel.js +48 -53
  287. package/lib/components/SidePanel/motion/variants.js +55 -0
  288. package/lib/components/SingleAddSelect/SingleAddSelect.js +6 -0
  289. package/lib/components/StatusIcon/StatusIcon.js +45 -45
  290. package/lib/components/Tearsheet/Tearsheet.js +5 -0
  291. package/lib/components/Tearsheet/TearsheetNarrow.js +5 -0
  292. package/lib/components/Tearsheet/TearsheetShell.js +1 -1
  293. package/lib/components/UserProfileImage/UserProfileImage.js +7 -7
  294. package/lib/components/WebTerminal/WebTerminal.js +3 -3
  295. package/lib/components/WebTerminal/preview-components/Navigation.js +4 -4
  296. package/lib/components/index.js +33 -1
  297. package/lib/global/js/hooks/index.js +9 -1
  298. package/lib/global/js/hooks/useClickOutside.js +1 -1
  299. package/lib/global/js/hooks/useControllableState.js +94 -0
  300. package/lib/global/js/hooks/useCreateComponentFocus.js +42 -11
  301. package/lib/global/js/hooks/useResetCreateComponent.js +7 -2
  302. package/lib/global/js/package-settings.js +9 -6
  303. package/lib/global/js/utils/getBezierValues.js +29 -0
  304. package/lib/global/js/utils/getNumberOfHiddenSteps.js +28 -0
  305. package/lib/global/js/utils/motionConstants.js +55 -0
  306. package/lib/global/js/utils/rangeWithCallback.js +22 -0
  307. package/lib/global/js/utils/story-helper.js +5 -1
  308. package/lib/global/js/utils/uuidv4.spec.js +4 -0
  309. package/package.json +18 -16
  310. package/scss/components/ActionSet/_action-set.scss +9 -4
  311. package/scss/components/AddSelect/_add-select.scss +132 -34
  312. package/scss/components/AddSelect/_index.scss +1 -1
  313. package/scss/components/AddSelect/_storybook-styles.scss +1 -1
  314. package/scss/components/Card/_card.scss +1 -0
  315. package/scss/components/Cascade/_cascade.scss +1 -1
  316. package/scss/components/CreateTearsheet/_create-tearsheet.scss +2 -0
  317. package/scss/components/Datagrid/_datagrid.scss +7 -1
  318. package/scss/components/Datagrid/_storybook-styles.scss +29 -5
  319. package/scss/components/Datagrid/styles/_datagrid.scss +131 -37
  320. package/scss/components/Datagrid/styles/_draggableElement.scss +50 -18
  321. package/scss/components/Datagrid/styles/_index.scss +10 -8
  322. package/scss/components/Datagrid/styles/_useActionsColumn.scss +14 -0
  323. package/scss/components/Datagrid/styles/_useExpandedRow.scss +56 -10
  324. package/scss/components/Datagrid/styles/_useInlineEdit.scss +419 -0
  325. package/scss/components/Datagrid/styles/_useNestedRows.scss +33 -1
  326. package/scss/components/Datagrid/styles/_useSortableColumns.scss +35 -16
  327. package/scss/components/Datagrid/styles/_useStickyColumn.scss +31 -2
  328. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +69 -0
  329. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +87 -0
  330. package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +129 -0
  331. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +12 -4
  332. package/scss/components/EditUpdateCards/_carbon-imports.scss +9 -0
  333. package/scss/components/EditUpdateCards/_edit-update-cards.scss +85 -0
  334. package/scss/components/EditUpdateCards/_index-with-carbon.scss +9 -0
  335. package/scss/components/EditUpdateCards/_index.scss +8 -0
  336. package/scss/components/EditUpdateCards/_storybook-styles.scss +55 -0
  337. package/scss/components/FilterSummary/_filter-summary.scss +21 -0
  338. package/scss/components/FilterSummary/_index.scss +10 -0
  339. package/scss/components/FilterSummary/_storybook-styles.scss +14 -0
  340. package/scss/components/{InlineEdit → InlineEditV1}/_index-with-carbon.scss +1 -1
  341. package/scss/components/{InlineEdit → InlineEditV1}/_index.scss +1 -1
  342. package/scss/components/{InlineEdit/_inline-edit.scss → InlineEditV1/_inline-edit-v1.scss} +4 -2
  343. package/scss/components/InlineEditV2/_carbon-imports.scss +9 -0
  344. package/scss/components/InlineEditV2/_index-with-carbon.scss +9 -0
  345. package/scss/components/InlineEditV2/_index.scss +10 -0
  346. package/scss/components/InlineEditV2/_inline-edit-v2.scss +83 -0
  347. package/scss/components/InlineEditV2/_storybook-styles.scss +9 -0
  348. package/scss/components/MultiAddSelect/_multi-add-select.scss +8 -1
  349. package/scss/components/MultiAddSelect/_storybook-styles.scss +1 -1
  350. package/scss/components/NotificationsPanel/_notifications-panel.scss +3 -6
  351. package/scss/components/RemoveModal/_remove-modal.scss +0 -4
  352. package/scss/components/SidePanel/_side-panel.scss +3 -82
  353. package/scss/components/SidePanel/_storybook-styles.scss +6 -1
  354. package/scss/components/SingleAddSelect/_carbon-imports.scss +1 -1
  355. package/scss/components/SingleAddSelect/_index-with-carbon.scss +1 -1
  356. package/scss/components/SingleAddSelect/_index.scss +7 -0
  357. package/scss/components/SingleAddSelect/_single-add-select.scss +8 -1
  358. package/scss/components/SingleAddSelect/_storybook-styles.scss +1 -1
  359. package/scss/components/Tearsheet/_tearsheet.scss +4 -2
  360. package/scss/components/_index-released-only-with-carbon.scss +3 -1
  361. package/scss/components/_index-released-only.scss +4 -1
  362. package/scss/components/_index-with-carbon.scss +3 -1
  363. package/scss/components/_index.scss +4 -1
  364. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsModal.js +0 -157
  365. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ModalWrapper.js +0 -62
  366. package/es/components/Datagrid/Datagrid.stories-helpers/LeftPanelStory.js +0 -6
  367. package/lib/components/Datagrid/Datagrid.stories-helpers/LeftPanelStory.js +0 -13
  368. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsModal.scss +0 -52
  369. /package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/CustomizeColumnStory.js +0 -0
  370. /package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/RowSizeDropdownStory.js +0 -0
  371. /package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/SelectAllWithToggleStory.js +0 -0
  372. /package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/StickyActionsColumnStory.js +0 -0
  373. /package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/common.js +0 -0
  374. /package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/CustomizeColumnStory.js +0 -0
  375. /package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/RowSizeDropdownStory.js +0 -0
  376. /package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/SelectAllWithToggleStory.js +0 -0
  377. /package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/StickyActionsColumnStory.js +0 -0
  378. /package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/common.js +0 -0
  379. /package/scss/components/{InlineEdit → InlineEditV1}/_carbon-imports.scss +0 -0
  380. /package/scss/components/{InlineEdit → InlineEditV1}/_storybook-styles.scss +0 -0
@@ -0,0 +1,39 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+
7
+ /**
8
+ * Copyright IBM Corp. 2022, 2022
9
+ *
10
+ * This source code is licensed under the Apache-2.0 license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */
13
+ import { pkg } from '../../../../../../settings';
14
+ var blockClass = "".concat(pkg.prefix, "--datagrid"); // This function returns the state back to the reducer after
15
+ // determining the new active cell value
16
+
17
+ export var returnUpdatedActiveCell = function returnUpdatedActiveCell(_ref) {
18
+ var activeCellCoords = _ref.activeCellCoords,
19
+ direction = _ref.direction,
20
+ totalVisibleColumns = _ref.totalVisibleColumns,
21
+ state = _ref.state,
22
+ instance = _ref.instance;
23
+
24
+ var newActiveCoords = _objectSpread(_objectSpread({}, activeCellCoords), {}, {
25
+ column: direction === 'right' ? activeCellCoords.column < totalVisibleColumns.length - 1 ? activeCellCoords.column + 1 : activeCellCoords.column : direction === 'left' ? activeCellCoords.column === 0 ? 0 : activeCellCoords.column - 1 : activeCellCoords.column,
26
+ row: direction === 'up' ? activeCellCoords.row === 0 ? 0 : activeCellCoords.row - 1 : direction === 'down' ? activeCellCoords.row < instance.rows.length - 1 ? activeCellCoords.row + 1 : activeCellCoords.row : activeCellCoords.row
27
+ });
28
+
29
+ var newActiveCellId = "column-".concat(newActiveCoords.column, "-row-").concat(newActiveCoords.row);
30
+ var newCellIdButton = document.querySelector("#".concat(instance.tableId, " .").concat(blockClass, "__table-with-inline-edit [data-cell-id=\"").concat(newActiveCellId, "\"] .").concat(blockClass, "__inline-edit-button")); // Allows scrollable area to keep focused/active cell id visible
31
+
32
+ if (newCellIdButton) {
33
+ newCellIdButton === null || newCellIdButton === void 0 ? void 0 : newCellIdButton.focus();
34
+ }
35
+
36
+ return _objectSpread(_objectSpread({}, state), {}, {
37
+ activeCellId: newActiveCellId
38
+ });
39
+ };
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Copyright IBM Corp. 2022, 2022
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ export var handleGridFocus = function handleGridFocus(state, dispatch) {
8
+ var gridActive = state.gridActive,
9
+ previousActiveCellId = state.previousActiveCellId;
10
+
11
+ if (!gridActive) {
12
+ // Initialize grid active state
13
+ dispatch({
14
+ type: 'ADD_GRID_ACTIVE_FOCUS',
15
+ payload: previousActiveCellId || 'column-0-row-0' // If there is a previous active cell id that is found use that, otherwise use the first cell in the grid area
16
+
17
+ });
18
+ }
19
+ };
@@ -0,0 +1,262 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+
7
+ /**
8
+ * Copyright IBM Corp. 2022, 2022
9
+ *
10
+ * This source code is licensed under the Apache-2.0 license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */
13
+ import { carbon, pkg } from '../../../../../settings';
14
+ import { handleMultipleKeys } from './handleMultipleKeys';
15
+ import { getCellIdAsObject } from './InlineEditContext/getCellIdAsObject';
16
+ var blockClass = "".concat(pkg.prefix, "--datagrid");
17
+ export var handleGridKeyPress = function handleGridKeyPress(_ref) {
18
+ var event = _ref.event,
19
+ dispatch = _ref.dispatch,
20
+ state = _ref.state,
21
+ instance = _ref.instance,
22
+ keysPressedList = _ref.keysPressedList,
23
+ usingMac = _ref.usingMac;
24
+ var key = event.key;
25
+ var gridActive = state.gridActive,
26
+ activeCellId = state.activeCellId,
27
+ editId = state.editId;
28
+ var focusedCell = document.querySelector("#".concat(instance.tableId, " .").concat(blockClass, "__table-with-inline-edit [data-cell-id=\"").concat(activeCellId, "\"]")); // If we reach this it means that tab was pressed while in
29
+ // edit mode which should not remove the focus from the grid
30
+
31
+ if (activeCellId === editId && key === 'Tab') {
32
+ // Attempting to exit date picker
33
+ if (focusedCell.getAttribute('data-inline-type') === 'date') {
34
+ dispatch({
35
+ type: 'EXIT_EDIT_MODE',
36
+ payload: activeCellId
37
+ });
38
+ var inlineEditArea = document.querySelector("#".concat(instance.tableId, " .").concat(blockClass, "__table-with-inline-edit"));
39
+ inlineEditArea.focus();
40
+ }
41
+
42
+ event.preventDefault();
43
+ return;
44
+ }
45
+
46
+ if (activeCellId === editId && key === 'Escape') {
47
+ if (focusedCell.getAttribute('data-inline-type') === 'date') {
48
+ dispatch({
49
+ type: 'EXIT_EDIT_MODE',
50
+ payload: activeCellId
51
+ });
52
+ event.preventDefault();
53
+
54
+ var _inlineEditArea = document.querySelector("#".concat(instance.tableId, " .").concat(blockClass, "__table-with-inline-edit"));
55
+
56
+ _inlineEditArea.focus();
57
+
58
+ return;
59
+ }
60
+ } // Checks if the dropdown menu is open
61
+
62
+
63
+ var dropdownIsActive = function dropdownIsActive() {
64
+ var focusedElementRole = document.activeElement.getAttribute('role');
65
+
66
+ if (focusedElementRole === 'listbox' && document.activeElement.classList.contains("".concat(carbon.prefix, "--list-box__menu"))) {
67
+ // Prevents arrow keys from scrolling any other content when dropdown menu is open
68
+ event.preventDefault();
69
+ return true;
70
+ }
71
+
72
+ return false;
73
+ }; // Checks if the date picker is open
74
+
75
+
76
+ var datePickerIsActive = function datePickerIsActive() {
77
+ var focusedCalendarElement = document.querySelector(".".concat(carbon.prefix, "--date-picker__input.flatpickr-input.active"));
78
+
79
+ if (focusedCalendarElement || document.activeElement.classList.contains("flatpickr-day")) {
80
+ return true;
81
+ }
82
+
83
+ return false;
84
+ }; // Stop grid key listener when in edit mode
85
+
86
+
87
+ var isEditing = document.activeElement.id === activeCellId && document.activeElement.id === editId || dropdownIsActive() || datePickerIsActive();
88
+
89
+ if (isEditing || !gridActive) {
90
+ return;
91
+ } // Command keys need to be returned as there is default browser behavior with these keys
92
+
93
+
94
+ if (key === 'Meta' || key === 'Control') {
95
+ return;
96
+ } // Prevent arrow keys, home key, and end key from scrolling the page when the data spreadsheet container has focus
97
+
98
+
99
+ if (['End', 'Home', 'ArrowLeft', 'ArrowUp', 'ArrowRight', 'ArrowDown'].indexOf(key) > -1 && !isEditing && keysPressedList.length < 2) {
100
+ event.preventDefault();
101
+ }
102
+
103
+ var isDisabledCell = !!focusedCell.getAttribute('data-disabled');
104
+ var sharedUpdateParams = {
105
+ oldId: activeCellId,
106
+ instance: instance
107
+ };
108
+
109
+ if (keysPressedList.length > 1) {
110
+ handleMultipleKeys({
111
+ usingMac: usingMac,
112
+ keysPressedList: keysPressedList,
113
+ dispatch: dispatch,
114
+ activeCellId: activeCellId,
115
+ instance: instance
116
+ });
117
+ }
118
+
119
+ if (keysPressedList.length < 2) {
120
+ switch (key) {
121
+ case 'Tab':
122
+ {
123
+ if (!editId) {
124
+ dispatch({
125
+ type: 'REMOVE_GRID_ACTIVE_FOCUS',
126
+ payload: activeCellId
127
+ });
128
+ }
129
+
130
+ break;
131
+ }
132
+
133
+ case 'ArrowRight':
134
+ {
135
+ dispatch({
136
+ type: 'UPDATE_ACTIVE_CELL_ID',
137
+ payload: _objectSpread({
138
+ direction: 'right'
139
+ }, sharedUpdateParams)
140
+ });
141
+ break;
142
+ }
143
+
144
+ case 'ArrowLeft':
145
+ {
146
+ dispatch({
147
+ type: 'UPDATE_ACTIVE_CELL_ID',
148
+ payload: _objectSpread({
149
+ direction: 'left'
150
+ }, sharedUpdateParams)
151
+ });
152
+ break;
153
+ }
154
+
155
+ case 'ArrowUp':
156
+ {
157
+ dispatch({
158
+ type: 'UPDATE_ACTIVE_CELL_ID',
159
+ payload: _objectSpread({
160
+ direction: 'up'
161
+ }, sharedUpdateParams)
162
+ });
163
+ break;
164
+ }
165
+
166
+ case 'ArrowDown':
167
+ {
168
+ dispatch({
169
+ type: 'UPDATE_ACTIVE_CELL_ID',
170
+ payload: _objectSpread({
171
+ direction: 'down'
172
+ }, sharedUpdateParams)
173
+ });
174
+ break;
175
+ }
176
+ // Move active cell to first column in current row
177
+
178
+ case 'Home':
179
+ {
180
+ var activeCellObject = getCellIdAsObject(activeCellId);
181
+
182
+ var newActiveCellCoords = _objectSpread(_objectSpread({}, activeCellObject), {}, {
183
+ column: 0
184
+ });
185
+
186
+ var newActiveCellId = "column-".concat(newActiveCellCoords.column, "-row-").concat(newActiveCellCoords.row);
187
+ var scrollElement = document.querySelector("#".concat(instance.tableId, " .").concat(pkg.prefix, "--datagrid__table-container")); // Scroll table container to the furthest left position
188
+
189
+ scrollElement.scrollLeft = 0;
190
+ dispatch({
191
+ type: 'UPDATE_ACTIVE_CELL_ID',
192
+ payload: newActiveCellId
193
+ });
194
+ break;
195
+ }
196
+ // Move active cell to last column in current row
197
+
198
+ case 'End':
199
+ {
200
+ var _activeCellObject = getCellIdAsObject(activeCellId);
201
+
202
+ var totalVisibleColumns = instance.visibleColumns.filter(function (item) {
203
+ return item.id !== 'spacer';
204
+ });
205
+
206
+ var _newActiveCellCoords = _objectSpread(_objectSpread({}, _activeCellObject), {}, {
207
+ column: totalVisibleColumns.length - 1
208
+ });
209
+
210
+ var _newActiveCellId = "column-".concat(_newActiveCellCoords.column, "-row-").concat(_newActiveCellCoords.row);
211
+
212
+ var _scrollElement = document.querySelector("#".concat(instance.tableId, " .").concat(pkg.prefix, "--datagrid__table-container")); // Scroll table container to the furthest right position
213
+
214
+
215
+ _scrollElement.scrollLeft = _scrollElement.scrollWidth;
216
+ dispatch({
217
+ type: 'UPDATE_ACTIVE_CELL_ID',
218
+ payload: _newActiveCellId
219
+ });
220
+ break;
221
+ }
222
+
223
+ case ' ':
224
+ case 'F2':
225
+ case 'Enter':
226
+ {
227
+ // Disabled cells are not allowed to go into edit mode
228
+ if (isDisabledCell) {
229
+ return;
230
+ } // Only go into edit mode if there is no editId, meaning that we're not already in edit mode
231
+
232
+
233
+ if (!editId) {
234
+ var focusedType = focusedCell.getAttribute('data-inline-type'); // Open dropdown immediately after entering edit mode for selection type
235
+
236
+ if (focusedType === 'selection') {
237
+ setTimeout(function () {
238
+ var dropdownTrigger = focusedCell.querySelector('button');
239
+ dropdownTrigger === null || dropdownTrigger === void 0 ? void 0 : dropdownTrigger.click();
240
+ }, 1);
241
+ }
242
+
243
+ if (focusedType === 'date') {
244
+ setTimeout(function () {
245
+ var dateInputTrigger = focusedCell.querySelector('input');
246
+ dateInputTrigger === null || dateInputTrigger === void 0 ? void 0 : dateInputTrigger.click();
247
+ dateInputTrigger === null || dateInputTrigger === void 0 ? void 0 : dateInputTrigger.focus();
248
+ }, 1);
249
+ }
250
+
251
+ dispatch({
252
+ type: 'ENTER_EDIT_MODE',
253
+ payload: {
254
+ activeCellId: activeCellId,
255
+ editId: activeCellId
256
+ }
257
+ });
258
+ }
259
+ }
260
+ }
261
+ }
262
+ };
@@ -0,0 +1,87 @@
1
+ /**
2
+ * Copyright IBM Corp. 2022, 2022
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { includesResourceKey } from '../../../../DataSpreadsheet/utils/handleMultipleKeys';
8
+ import { pkg } from '../../../../../settings';
9
+ import { getFocusableElements } from '../../../../../global/js/utils/getFocusableElements';
10
+ var blockClass = "".concat(pkg.prefix, "--datagrid");
11
+ export var handleMultipleKeys = function handleMultipleKeys(_ref) {
12
+ var usingMac = _ref.usingMac,
13
+ keysPressedList = _ref.keysPressedList,
14
+ dispatch = _ref.dispatch,
15
+ activeCellId = _ref.activeCellId,
16
+ instance = _ref.instance;
17
+
18
+ // Resource key and Home
19
+ // Move active cell to first cell in first row and column
20
+ if (includesResourceKey(keysPressedList, usingMac) && keysPressedList.includes('Home')) {
21
+ var scrollElement = document.querySelector("#".concat(instance.tableId, " .").concat(pkg.prefix, "--datagrid__table-container")); // Scroll table container to the furthest top left position
22
+
23
+ scrollElement.scrollTop = 0;
24
+ scrollElement.scrollLeft = 0;
25
+ dispatch({
26
+ type: 'UPDATE_ACTIVE_CELL_ID',
27
+ payload: 'column-0-row-0'
28
+ });
29
+ } // Resource key and End
30
+ // Move active cell to last cell in in the last row and column
31
+
32
+
33
+ if (includesResourceKey(keysPressedList, usingMac) && keysPressedList.includes('End')) {
34
+ var _instance$rows;
35
+
36
+ var totalVisibleColumns = instance.visibleColumns.filter(function (item) {
37
+ return item.id !== 'spacer';
38
+ }).length;
39
+ var totalRows = (_instance$rows = instance.rows) === null || _instance$rows === void 0 ? void 0 : _instance$rows.length;
40
+ var lastCellDataId = "column-".concat(totalVisibleColumns - 1, "-row-").concat(totalRows - 1);
41
+ var lastCellElement = document.querySelector("#".concat(instance.tableId, " .").concat(blockClass, "__table-with-inline-edit [data-cell-id=\"").concat(activeCellId, "\"]"));
42
+
43
+ var _scrollElement = document.querySelector("#".concat(instance.tableId, " .").concat(pkg.prefix, "--datagrid__table-container")); // Scroll table container to the furthest bottom right position
44
+
45
+
46
+ _scrollElement.scrollTop = _scrollElement.scrollHeight;
47
+ _scrollElement.scrollLeft = _scrollElement.scrollWidth;
48
+
49
+ if (lastCellElement) {
50
+ dispatch({
51
+ type: 'UPDATE_ACTIVE_CELL_ID',
52
+ payload: lastCellDataId
53
+ });
54
+ } else {
55
+ // If a Datagrid component is using virtualized data, it's possible that the last cell
56
+ // has not yet been rendered. In this case, we simply need to wait until the scrollable
57
+ // container has scrolled to the bottom/right most position, then we can dispatch the
58
+ // update active cell id action
59
+ setTimeout(function () {
60
+ dispatch({
61
+ type: 'UPDATE_ACTIVE_CELL_ID',
62
+ payload: lastCellDataId
63
+ });
64
+ }, 250);
65
+ }
66
+ } // Shift + Tab
67
+ // This should remove the active grid state
68
+
69
+
70
+ if ((keysPressedList.includes('ShiftLeft') || keysPressedList.includes('ShiftRight')) && keysPressedList.includes('Tab')) {
71
+ dispatch({
72
+ type: 'REMOVE_GRID_ACTIVE_FOCUS',
73
+ payload: activeCellId
74
+ });
75
+ var tableElement = document.querySelector("#".concat(instance.tableId));
76
+ var datagridFocusableElements = getFocusableElements(tableElement);
77
+ var indexOfTable = datagridFocusableElements.findIndex(function (item) {
78
+ return item instanceof HTMLTableElement;
79
+ });
80
+
81
+ if (indexOfTable && Number.isFinite(indexOfTable)) {
82
+ var _datagridFocusableEle;
83
+
84
+ (_datagridFocusableEle = datagridFocusableElements[indexOfTable]) === null || _datagridFocusableEle === void 0 ? void 0 : _datagridFocusableEle.focus();
85
+ }
86
+ }
87
+ };
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
3
3
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
4
4
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
5
- var _excluded = ["buttonLabel"];
5
+ var _excluded = ["legendText"];
6
6
  // @flow
7
7
 
8
8
  /*
@@ -14,47 +14,50 @@ var _excluded = ["buttonLabel"];
14
14
  */
15
15
  import * as React from 'react';
16
16
  import PropTypes from 'prop-types';
17
- import { Settings } from '@carbon/icons-react';
18
- import { IconButton } from '@carbon/react';
17
+ import { Settings } from '@carbon/react/icons';
18
+ import { IconButton, Popover, PopoverContent } from '@carbon/react';
19
19
  import cx from 'classnames';
20
20
  import RowSizeRadioGroup from './RowSizeRadioGroup';
21
21
  import { pkg } from '../../../../../settings';
22
22
  var blockClass = "".concat(pkg.prefix, "--datagrid");
23
23
 
24
24
  var RowSizeDropdown = function RowSizeDropdown(_ref) {
25
- var _ref$buttonLabel = _ref.buttonLabel,
26
- buttonLabel = _ref$buttonLabel === void 0 ? 'Row height' : _ref$buttonLabel,
25
+ var _ref$legendText = _ref.legendText,
26
+ legendText = _ref$legendText === void 0 ? 'Row height' : _ref$legendText,
27
27
  props = _objectWithoutProperties(_ref, _excluded);
28
28
 
29
- var buttonRef = React.useRef({});
30
-
31
29
  var _React$useState = React.useState(false),
32
30
  _React$useState2 = _slicedToArray(_React$useState, 2),
33
31
  isOpen = _React$useState2[0],
34
32
  setIsOpen = _React$useState2[1];
35
33
 
36
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(IconButton, {
37
- ref: buttonRef,
34
+ return /*#__PURE__*/React.createElement(Popover, {
35
+ align: "bottom-right",
36
+ caret: false,
37
+ dropShadow: false,
38
+ open: isOpen,
39
+ className: "".concat(blockClass, "__row-height-settings-popover")
40
+ }, /*#__PURE__*/React.createElement(IconButton, {
38
41
  kind: "ghost",
39
42
  align: "left",
40
43
  onClick: function onClick() {
41
44
  return setIsOpen(!isOpen);
42
45
  },
43
- label: buttonLabel,
46
+ label: legendText,
44
47
  className: cx("".concat(blockClass, "__row-size-button"), _defineProperty({}, "".concat(blockClass, "__row-size-button--open"), isOpen))
45
48
  }, /*#__PURE__*/React.createElement(Settings, {
46
49
  size: 16
47
- })), isOpen && /*#__PURE__*/React.createElement(RowSizeRadioGroup, _extends({}, props, {
48
- ref: buttonRef,
50
+ })), /*#__PURE__*/React.createElement(PopoverContent, null, /*#__PURE__*/React.createElement(RowSizeRadioGroup, _extends({}, props, {
51
+ legendText: legendText,
49
52
  hideRadioGroup: function hideRadioGroup() {
50
53
  setIsOpen(false);
51
54
  }
52
- })));
55
+ }))));
53
56
  };
54
57
 
55
58
  RowSizeDropdown.propTypes = {
56
- buttonLabel: PropTypes.string,
57
59
  datagridName: PropTypes.string,
60
+ legendText: PropTypes.string,
58
61
  light: PropTypes.bool,
59
62
  onChange: PropTypes.func.isRequired,
60
63
  selectedOption: PropTypes.string
@@ -8,20 +8,21 @@
8
8
  * US Government Users Restricted Rights - Use, duplication or disclosure
9
9
  * restricted by GSA ADP Schedule Contract with IBM Corp.
10
10
  */
11
- import React, { useEffect, forwardRef } from 'react';
11
+ import React, { useRef } from 'react';
12
12
  import PropTypes from 'prop-types';
13
13
  import { RadioButtonGroup, RadioButton } from '@carbon/react';
14
14
  import isArray from 'lodash/isArray';
15
15
  import { pkg } from '../../../../../settings';
16
+ import { useClickOutside } from '../../../../../global/js/hooks';
16
17
  var blockClass = "".concat(pkg.prefix, "--datagrid");
17
- var RowSizeRadioGroup = /*#__PURE__*/forwardRef(function (_ref, ref) {
18
+
19
+ var RowSizeRadioGroup = function RowSizeRadioGroup(_ref) {
18
20
  var rowSizes = _ref.rowSizes,
19
21
  selectedOption = _ref.selectedOption,
20
22
  datagridName = _ref.datagridName,
21
23
  onChange = _ref.onChange,
22
24
  hideRadioGroup = _ref.hideRadioGroup,
23
- _ref$legendText = _ref.legendText,
24
- legendText = _ref$legendText === void 0 ? 'Row height' : _ref$legendText,
25
+ legendText = _ref.legendText,
25
26
  _ref$rowSizeLabels = _ref.rowSizeLabels,
26
27
  rowSizeLabels = _ref$rowSizeLabels === void 0 ? {
27
28
  xl: 'Extra large',
@@ -30,41 +31,17 @@ var RowSizeRadioGroup = /*#__PURE__*/forwardRef(function (_ref, ref) {
30
31
  sm: 'Small',
31
32
  xs: 'Extra small'
32
33
  } : _ref$rowSizeLabels;
33
-
34
- var getDropdownPosition = function getDropdownPosition(buttonEle) {
35
- if (buttonEle instanceof HTMLElement) {
36
- var _top = buttonEle.offsetTop + buttonEle.offsetHeight;
37
-
38
- var _right = buttonEle.offsetLeft + buttonEle.offsetWidth;
39
-
40
- return {
41
- top: _top,
42
- right: _right
43
- };
34
+ var popoverContentRef = useRef();
35
+ useClickOutside(popoverContentRef, function (target) {
36
+ if (target.closest(".".concat(blockClass, "__row-size-button"))) {
37
+ return;
44
38
  }
45
39
 
46
- return {
47
- top: 0,
48
- right: 0
49
- };
50
- };
51
-
52
- var _getDropdownPosition = getDropdownPosition(ref.current),
53
- top = _getDropdownPosition.top,
54
- right = _getDropdownPosition.right;
55
-
56
- useEffect(function () {
57
- window.addEventListener('click', hideRadioGroup);
58
- return function () {
59
- window.removeEventListener('click', hideRadioGroup);
60
- };
61
- }, [hideRadioGroup]);
40
+ hideRadioGroup();
41
+ });
62
42
  return /*#__PURE__*/React.createElement("div", {
43
+ ref: popoverContentRef,
63
44
  className: "".concat(blockClass, "__row-size-dropdown"),
64
- style: {
65
- top: top,
66
- right: right
67
- },
68
45
  role: "presentation",
69
46
  onClick: function onClick(e) {
70
47
  e.stopPropagation();
@@ -91,7 +68,7 @@ var RowSizeRadioGroup = /*#__PURE__*/forwardRef(function (_ref, ref) {
91
68
  id: "".concat(datagridName || 'datagrid', "--row-density--").concat(option.value)
92
69
  });
93
70
  })));
94
- });
71
+ };
95
72
 
96
73
  var getBackwardCompatibleRowSize = function getBackwardCompatibleRowSize(rowSize) {
97
74
  // TODO: deprecate this function in next major release (v8) on carbon-components-react
@@ -1,5 +1,4 @@
1
1
  export { story as CustomizeColumnStoryNotes } from './CustomizeColumnStory';
2
2
  export { default as StickyActionsColumn } from './StickyActionsColumnStory';
3
3
  export { story as RowSizeDropdownStory } from './RowSizeDropdownStory';
4
- export { story as LeftPanelStory } from './LeftPanelStory';
5
4
  export { story as SelectAllWithToggle } from './SelectAllWithToggleStory';
@@ -20,4 +20,7 @@ export { default as useStickyColumn } from './useStickyColumn';
20
20
  export { default as useActionsColumn } from './useActionsColumn';
21
21
  export { default as useCustomizeColumns } from './useCustomizeColumns';
22
22
  export { default as useSelectAllWithToggle } from './useSelectAllToggle';
23
- export { default as useColumnCenterAlign } from './useColumnCenterAlign';
23
+ export { default as useColumnCenterAlign } from './useColumnCenterAlign';
24
+ export { default as useColumnOrder } from './useColumnOrder';
25
+ export { default as useInlineEdit } from './useInlineEdit';
26
+ export { default as useFiltering } from './useFiltering';