@carbon/ibm-products 2.0.0-rc.33 → 2.0.0-rc.35

Sign up to get free protection for your applications and to get access to all the features.
Files changed (947) hide show
  1. package/css/config.css +3 -0
  2. package/css/config.css.map +1 -0
  3. package/css/index-full-carbon.css +34268 -0
  4. package/css/index-full-carbon.css.map +1 -0
  5. package/css/index-full-carbon.min.css +8 -0
  6. package/css/index-full-carbon.min.css.map +1 -0
  7. package/css/index-without-carbon-released-only.css +8698 -0
  8. package/css/index-without-carbon-released-only.css.map +1 -0
  9. package/css/index-without-carbon-released-only.min.css +4 -0
  10. package/css/index-without-carbon-released-only.min.css.map +1 -0
  11. package/css/index-without-carbon.css +14253 -0
  12. package/css/index-without-carbon.css.map +1 -0
  13. package/css/index-without-carbon.min.css +8 -0
  14. package/css/index-without-carbon.min.css.map +1 -0
  15. package/css/index.css +17293 -0
  16. package/css/index.css.map +1 -0
  17. package/css/index.min.css +8 -0
  18. package/css/index.min.css.map +1 -0
  19. package/es/components/APIKeyModal/APIKeyDownloader.js +91 -0
  20. package/es/components/APIKeyModal/APIKeyModal.js +510 -0
  21. package/es/components/APIKeyModal/index.js +8 -0
  22. package/es/components/AboutModal/AboutModal.js +194 -0
  23. package/es/components/AboutModal/index.js +8 -0
  24. package/es/components/ActionBar/ActionBar.js +258 -0
  25. package/es/components/ActionBar/ActionBarItem.js +96 -0
  26. package/es/components/ActionBar/ActionBarOverflowItems.js +74 -0
  27. package/es/components/ActionBar/index.js +9 -0
  28. package/es/components/ActionSet/ActionSet.js +200 -0
  29. package/es/components/ActionSet/actions.js +55 -0
  30. package/es/components/ActionSet/index.js +8 -0
  31. package/es/components/AddSelect/AddSelect.js +129 -0
  32. package/es/components/AddSelect/AddSelectBody.js +368 -0
  33. package/es/components/AddSelect/AddSelectBreadcrumbs.js +45 -0
  34. package/es/components/AddSelect/AddSelectColumn.js +241 -0
  35. package/es/components/AddSelect/AddSelectFilter.js +172 -0
  36. package/es/components/AddSelect/AddSelectFormControl.js +82 -0
  37. package/es/components/AddSelect/AddSelectList.js +55 -0
  38. package/es/components/AddSelect/AddSelectMetaPanel.js +65 -0
  39. package/es/components/AddSelect/AddSelectRow.js +206 -0
  40. package/es/components/AddSelect/AddSelectSidebar.js +121 -0
  41. package/es/components/AddSelect/AddSelectSort.js +77 -0
  42. package/es/components/AddSelect/add-select-utils.js +127 -0
  43. package/es/components/AddSelect/hooks/useFocus.js +31 -0
  44. package/es/components/AddSelect/hooks/useItemSort.js +25 -0
  45. package/es/components/AddSelect/hooks/useParentSelect.js +20 -0
  46. package/es/components/AddSelect/hooks/usePath.js +72 -0
  47. package/es/components/AddSelect/index.js +8 -0
  48. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +336 -0
  49. package/es/components/BreadcrumbWithOverflow/index.js +10 -0
  50. package/es/components/ButtonMenu/ButtonMenu.js +129 -0
  51. package/es/components/ButtonMenu/ButtonMenuItem.js +33 -0
  52. package/es/components/ButtonMenu/index.js +9 -0
  53. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +211 -0
  54. package/es/components/ButtonSetWithOverflow/index.js +8 -0
  55. package/es/components/Card/Card.js +264 -0
  56. package/es/components/Card/CardFooter.js +79 -0
  57. package/es/components/Card/CardHeader.js +74 -0
  58. package/es/components/Card/index.js +10 -0
  59. package/es/components/Cascade/Cascade.js +80 -0
  60. package/es/components/Cascade/index.js +1 -0
  61. package/es/components/ComboButton/ComboButton.js +101 -0
  62. package/es/components/ComboButton/ComboButtonItem/index.js +30 -0
  63. package/es/components/ComboButton/index.js +9 -0
  64. package/es/components/CreateFullPage/CreateFullPage.js +288 -0
  65. package/es/components/CreateFullPage/CreateFullPageStep.js +166 -0
  66. package/es/components/CreateFullPage/index.js +9 -0
  67. package/es/components/CreateInfluencer/CreateInfluencer.js +92 -0
  68. package/es/components/CreateInfluencer/index.js +8 -0
  69. package/es/components/CreateModal/CreateModal.js +137 -0
  70. package/es/components/CreateModal/index.js +10 -0
  71. package/es/components/CreateSidePanel/CreateSidePanel.js +156 -0
  72. package/es/components/CreateSidePanel/index.js +8 -0
  73. package/es/components/CreateTearsheet/CreateTearsheet.js +308 -0
  74. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +33 -0
  75. package/es/components/CreateTearsheet/CreateTearsheetStep.js +174 -0
  76. package/es/components/CreateTearsheet/index.js +10 -0
  77. package/es/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +284 -0
  78. package/es/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +280 -0
  79. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +165 -0
  80. package/es/components/CreateTearsheetNarrow/index.js +8 -0
  81. package/es/components/DataSpreadsheet/DataSpreadsheet.js +883 -0
  82. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +551 -0
  83. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +282 -0
  84. package/es/components/DataSpreadsheet/hooks/index.js +14 -0
  85. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +28 -0
  86. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +119 -0
  87. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +26 -0
  88. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +102 -0
  89. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +58 -0
  90. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +164 -0
  91. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +41 -0
  92. package/es/components/DataSpreadsheet/index.js +8 -0
  93. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +30 -0
  94. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +29 -0
  95. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +54 -0
  96. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +64 -0
  97. package/es/components/DataSpreadsheet/utils/generateData.js +52 -0
  98. package/es/components/DataSpreadsheet/utils/getCellSize.js +25 -0
  99. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +19 -0
  100. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +34 -0
  101. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +107 -0
  102. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +98 -0
  103. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +40 -0
  104. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +80 -0
  105. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +158 -0
  106. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +259 -0
  107. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +33 -0
  108. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +28 -0
  109. package/es/components/DataSpreadsheet/utils/selectAllCells.js +49 -0
  110. package/es/components/Datagrid/Datagrid/Datagrid.js +63 -0
  111. package/es/components/Datagrid/Datagrid/DatagridBody.js +30 -0
  112. package/es/components/Datagrid/Datagrid/DatagridContent.js +181 -0
  113. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +41 -0
  114. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +32 -0
  115. package/es/components/Datagrid/Datagrid/DatagridHead.js +22 -0
  116. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +52 -0
  117. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +36 -0
  118. package/es/components/Datagrid/Datagrid/DatagridRow.js +118 -0
  119. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +62 -0
  120. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +140 -0
  121. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +32 -0
  122. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +142 -0
  123. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +109 -0
  124. package/es/components/Datagrid/Datagrid/DraggableElement.js +177 -0
  125. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +39 -0
  126. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +52 -0
  127. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +117 -0
  128. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +176 -0
  129. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +109 -0
  130. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +51 -0
  131. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +13 -0
  132. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/index.js +10 -0
  133. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +244 -0
  134. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +269 -0
  135. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +83 -0
  136. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +27 -0
  137. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +11 -0
  138. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +299 -0
  139. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +21 -0
  140. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +34 -0
  141. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +23 -0
  142. package/es/components/Datagrid/Datagrid/addons/Filtering/index.js +9 -0
  143. package/es/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +55 -0
  144. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +84 -0
  145. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +59 -0
  146. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +1 -0
  147. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +489 -0
  148. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +1 -0
  149. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +98 -0
  150. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +27 -0
  151. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +1 -0
  152. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +34 -0
  153. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +18 -0
  154. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +228 -0
  155. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +80 -0
  156. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +67 -0
  157. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +105 -0
  158. package/es/components/Datagrid/Datagrid/addons/RowSize/index.js +9 -0
  159. package/es/components/Datagrid/Datagrid/index.js +8 -0
  160. package/es/components/Datagrid/Datagrid.stories/CustomizeColumnStory.js +6 -0
  161. package/es/components/Datagrid/Datagrid.stories/RowSizeDropdownStory.js +6 -0
  162. package/es/components/Datagrid/Datagrid.stories/SelectAllWithToggleStory.js +6 -0
  163. package/es/components/Datagrid/Datagrid.stories/StickyActionsColumnStory.js +102 -0
  164. package/es/components/Datagrid/Datagrid.stories/common.js +190 -0
  165. package/es/components/Datagrid/Datagrid.stories/index.js +4 -0
  166. package/es/components/Datagrid/common-column-ids.js +9 -0
  167. package/es/components/Datagrid/index.js +28 -0
  168. package/es/components/Datagrid/useActionsColumn.js +137 -0
  169. package/es/components/Datagrid/useColumnCenterAlign.js +44 -0
  170. package/es/components/Datagrid/useColumnOrder.js +9 -0
  171. package/es/components/Datagrid/useColumnRightAlign.js +44 -0
  172. package/es/components/Datagrid/useCustomizeColumns.js +42 -0
  173. package/es/components/Datagrid/useDatagrid.js +37 -0
  174. package/es/components/Datagrid/useDefaultStringRenderer.js +42 -0
  175. package/es/components/Datagrid/useDisableSelectRows.js +80 -0
  176. package/es/components/Datagrid/useEditableCell.js +12 -0
  177. package/es/components/Datagrid/useExpandedRow.js +42 -0
  178. package/es/components/Datagrid/useFiltering.js +91 -0
  179. package/es/components/Datagrid/useFlexResize.js +44 -0
  180. package/es/components/Datagrid/useFloatingScroll.js +75 -0
  181. package/es/components/Datagrid/useInfiniteScroll.js +52 -0
  182. package/es/components/Datagrid/useInlineEdit.js +68 -0
  183. package/es/components/Datagrid/useNestedRowExpander.js +41 -0
  184. package/es/components/Datagrid/useNestedRows.js +54 -0
  185. package/es/components/Datagrid/useOnRowClick.js +47 -0
  186. package/es/components/Datagrid/useParentDimensions.js +57 -0
  187. package/es/components/Datagrid/useResizeTable.js +34 -0
  188. package/es/components/Datagrid/useRowExpander.js +41 -0
  189. package/es/components/Datagrid/useRowIsMouseOver.js +52 -0
  190. package/es/components/Datagrid/useRowRenderer.js +25 -0
  191. package/es/components/Datagrid/useRowSize.js +55 -0
  192. package/es/components/Datagrid/useSelectAllToggle.js +90 -0
  193. package/es/components/Datagrid/useSelectRows.js +117 -0
  194. package/es/components/Datagrid/useSkeletonRows.js +27 -0
  195. package/es/components/Datagrid/useSortableColumns.js +115 -0
  196. package/es/components/Datagrid/useStickyColumn.js +182 -0
  197. package/es/components/Datagrid/utils/DatagridActions.js +239 -0
  198. package/es/components/Datagrid/utils/DatagridPagination.js +32 -0
  199. package/es/components/Datagrid/utils/Wrapper.js +21 -0
  200. package/es/components/Datagrid/utils/getArgTypes.js +95 -0
  201. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +27 -0
  202. package/es/components/Datagrid/utils/getInlineEditColumns.js +157 -0
  203. package/es/components/Datagrid/utils/makeData.js +193 -0
  204. package/es/components/EditFullPage/EditFullPage.js +86 -0
  205. package/es/components/EditFullPage/index.js +8 -0
  206. package/es/components/EditInPlace/EditInPlace.js +303 -0
  207. package/es/components/EditInPlace/index.js +8 -0
  208. package/es/components/EditSidePanel/EditSidePanel.js +189 -0
  209. package/es/components/EditSidePanel/index.js +8 -0
  210. package/es/components/EditTearsheet/EditTearsheet.js +195 -0
  211. package/es/components/EditTearsheet/EditTearsheetForm.js +99 -0
  212. package/es/components/EditTearsheet/index.js +9 -0
  213. package/es/components/EditTearsheet/preview-components/MultiFormEditTearsheet.js +218 -0
  214. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +86 -0
  215. package/es/components/EditTearsheetNarrow/index.js +8 -0
  216. package/es/components/EditUpdateCards/EditUpdateCards.js +142 -0
  217. package/es/components/EditUpdateCards/index.js +8 -0
  218. package/es/components/EmptyStates/EmptyState.js +116 -0
  219. package/es/components/EmptyStates/EmptyStateContent.js +87 -0
  220. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +111 -0
  221. package/es/components/EmptyStates/ErrorEmptyState/index.js +8 -0
  222. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +111 -0
  223. package/es/components/EmptyStates/NoDataEmptyState/index.js +8 -0
  224. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +111 -0
  225. package/es/components/EmptyStates/NoTagsEmptyState/index.js +8 -0
  226. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +111 -0
  227. package/es/components/EmptyStates/NotFoundEmptyState/index.js +8 -0
  228. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +111 -0
  229. package/es/components/EmptyStates/NotificationsEmptyState/index.js +8 -0
  230. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +111 -0
  231. package/es/components/EmptyStates/UnauthorizedEmptyState/index.js +8 -0
  232. package/es/components/EmptyStates/assets/ErrorIllustration.js +218 -0
  233. package/es/components/EmptyStates/assets/NoDataIllustration.js +181 -0
  234. package/es/components/EmptyStates/assets/NoTagsIllustration.js +489 -0
  235. package/es/components/EmptyStates/assets/NotFoundIllustration.js +366 -0
  236. package/es/components/EmptyStates/assets/NotificationsIllustration.js +337 -0
  237. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +310 -0
  238. package/es/components/EmptyStates/index.js +14 -0
  239. package/es/components/ExampleComponent/ExampleComponent.js +180 -0
  240. package/es/components/ExampleComponent/ExampleDeprecatedComponent.js +28 -0
  241. package/es/components/ExampleComponent/index.js +8 -0
  242. package/es/components/ExampleComponent/useExample.js +49 -0
  243. package/es/components/ExportModal/ExportModal.js +278 -0
  244. package/es/components/ExportModal/index.js +8 -0
  245. package/es/components/ExpressiveCard/ExpressiveCard.js +114 -0
  246. package/es/components/ExpressiveCard/index.js +8 -0
  247. package/es/components/FilterSummary/FilterSummary.js +54 -0
  248. package/es/components/FilterSummary/index.js +7 -0
  249. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +85 -0
  250. package/es/components/HTTPErrors/HTTPError403/index.js +8 -0
  251. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +85 -0
  252. package/es/components/HTTPErrors/HTTPError404/index.js +8 -0
  253. package/es/components/HTTPErrors/HTTPErrorContent.js +81 -0
  254. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +85 -0
  255. package/es/components/HTTPErrors/HTTPErrorOther/index.js +8 -0
  256. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1240 -0
  257. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1039 -0
  258. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1090 -0
  259. package/es/components/HTTPErrors/index.js +10 -0
  260. package/es/components/ImportModal/ImportModal.js +383 -0
  261. package/es/components/ImportModal/index.js +8 -0
  262. package/es/components/MultiAddSelect/MultiAddSelect.js +148 -0
  263. package/es/components/MultiAddSelect/index.js +8 -0
  264. package/es/components/NotificationsPanel/NotificationsPanel.js +556 -0
  265. package/es/components/NotificationsPanel/NotificationsPanel_data.js +135 -0
  266. package/es/components/NotificationsPanel/index.js +8 -0
  267. package/es/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +48 -0
  268. package/es/components/NotificationsPanel/utils.js +50 -0
  269. package/es/components/OptionsTile/OptionsTile.js +327 -0
  270. package/es/components/OptionsTile/index.js +8 -0
  271. package/es/components/PageHeader/PageHeader.js +767 -0
  272. package/es/components/PageHeader/PageHeaderDemo.data.js +613 -0
  273. package/es/components/PageHeader/PageHeaderTitle.js +121 -0
  274. package/es/components/PageHeader/PageHeaderUtils.js +179 -0
  275. package/es/components/PageHeader/index.js +8 -0
  276. package/es/components/ProductiveCard/ProductiveCard.js +123 -0
  277. package/es/components/ProductiveCard/index.js +8 -0
  278. package/es/components/RemoveModal/RemoveModal.js +183 -0
  279. package/es/components/RemoveModal/index.js +8 -0
  280. package/es/components/Saving/Saving.js +159 -0
  281. package/es/components/Saving/index.js +8 -0
  282. package/es/components/SidePanel/SidePanel.js +630 -0
  283. package/es/components/SidePanel/constants.js +14 -0
  284. package/es/components/SidePanel/index.js +8 -0
  285. package/es/components/SidePanel/motion/variants.js +46 -0
  286. package/es/components/SingleAddSelect/SingleAddSelect.js +94 -0
  287. package/es/components/SingleAddSelect/index.js +8 -0
  288. package/es/components/StatusIcon/StatusIcon.js +345 -0
  289. package/es/components/StatusIcon/index.js +8 -0
  290. package/es/components/TagSet/TagSet.js +324 -0
  291. package/es/components/TagSet/TagSetModal.js +112 -0
  292. package/es/components/TagSet/TagSetOverflow.js +123 -0
  293. package/es/components/TagSet/constants.js +21 -0
  294. package/es/components/TagSet/index.js +8 -0
  295. package/es/components/Tearsheet/Tearsheet.js +190 -0
  296. package/es/components/Tearsheet/TearsheetNarrow.js +152 -0
  297. package/es/components/Tearsheet/TearsheetShell.js +405 -0
  298. package/es/components/Tearsheet/index.js +9 -0
  299. package/es/components/Toolbar/Toolbar.js +102 -0
  300. package/es/components/Toolbar/ToolbarButton.js +57 -0
  301. package/es/components/Toolbar/ToolbarGroup.js +35 -0
  302. package/es/components/Toolbar/index.js +10 -0
  303. package/es/components/UserProfileImage/UserProfileImage.js +176 -0
  304. package/es/components/UserProfileImage/index.js +10 -0
  305. package/es/components/WebTerminal/WebTerminal.js +205 -0
  306. package/es/components/WebTerminal/WebTerminalContentWrapper.js +50 -0
  307. package/es/components/WebTerminal/hooks/index.js +52 -0
  308. package/es/components/WebTerminal/index.js +10 -0
  309. package/es/components/WebTerminal/preview-components/Navigation.js +37 -0
  310. package/es/components/WebTerminal/preview-components/documentationLinks.js +32 -0
  311. package/es/components/WebTerminal/preview-components/index.js +12 -0
  312. package/es/components/_Canary/Canary.js +48 -0
  313. package/es/components/_Canary/index.js +8 -0
  314. package/es/components/index.js +44 -0
  315. package/es/global/js/hooks/index.js +18 -0
  316. package/es/global/js/hooks/useActiveElement.js +25 -0
  317. package/es/global/js/hooks/useClickOutside.js +21 -0
  318. package/es/global/js/hooks/useControllableState.js +74 -0
  319. package/es/global/js/hooks/useCreateComponentFocus.js +55 -0
  320. package/es/global/js/hooks/useCreateComponentStepChange.js +203 -0
  321. package/es/global/js/hooks/usePreviousValue.js +20 -0
  322. package/es/global/js/hooks/useResetCreateComponent.js +48 -0
  323. package/es/global/js/hooks/useResizeObserver.js +74 -0
  324. package/es/global/js/hooks/useRetrieveStepData.js +48 -0
  325. package/es/global/js/hooks/useValidCreateStepCount.js +21 -0
  326. package/es/global/js/hooks/useWindowResize.js +66 -0
  327. package/es/global/js/hooks/useWindowScroll.js +77 -0
  328. package/es/global/js/package-settings.js +184 -0
  329. package/es/global/js/utils/ClickListener.js +65 -0
  330. package/es/global/js/utils/DisplayBox.js +32 -0
  331. package/es/global/js/utils/Wrap.js +84 -0
  332. package/es/global/js/utils/deepCloneObject.js +23 -0
  333. package/es/global/js/utils/devtools.js +17 -0
  334. package/es/global/js/utils/getBezierValues.js +19 -0
  335. package/es/global/js/utils/getFocusableElements.js +14 -0
  336. package/es/global/js/utils/getNumberOfHiddenSteps.js +19 -0
  337. package/es/global/js/utils/getScrollbarWidth.js +15 -0
  338. package/es/global/js/utils/keyboardNavigation.js +36 -0
  339. package/es/global/js/utils/lastIndexInArray.js +24 -0
  340. package/es/global/js/utils/motionConstants.js +44 -0
  341. package/es/global/js/utils/pconsole.js +34 -0
  342. package/es/global/js/utils/props-helper.js +256 -0
  343. package/es/global/js/utils/rangeWithCallback.js +14 -0
  344. package/es/global/js/utils/scrollableAncestor.js +38 -0
  345. package/es/global/js/utils/story-helper.js +108 -0
  346. package/es/global/js/utils/test-helper.js +309 -0
  347. package/es/global/js/utils/unwrap-if-fragment.js +63 -0
  348. package/es/global/js/utils/uuidv4.js +11 -0
  349. package/es/global/js/utils/uuidv4.spec.js +27 -0
  350. package/es/global/js/utils/wait.js +8 -0
  351. package/es/global/js/utils/wrapFocus.js +68 -0
  352. package/es/index.js +9 -0
  353. package/es/settings.js +79 -0
  354. package/lib/components/APIKeyModal/APIKeyDownloader.js +102 -0
  355. package/lib/components/APIKeyModal/APIKeyModal.js +519 -0
  356. package/lib/components/APIKeyModal/index.js +12 -0
  357. package/lib/components/AboutModal/AboutModal.js +201 -0
  358. package/lib/components/AboutModal/index.js +12 -0
  359. package/lib/components/ActionBar/ActionBar.js +264 -0
  360. package/lib/components/ActionBar/ActionBarItem.js +99 -0
  361. package/lib/components/ActionBar/ActionBarOverflowItems.js +86 -0
  362. package/lib/components/ActionBar/index.js +19 -0
  363. package/lib/components/ActionSet/ActionSet.js +205 -0
  364. package/lib/components/ActionSet/actions.js +64 -0
  365. package/lib/components/ActionSet/index.js +12 -0
  366. package/lib/components/AddSelect/AddSelect.js +138 -0
  367. package/lib/components/AddSelect/AddSelectBody.js +377 -0
  368. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +53 -0
  369. package/lib/components/AddSelect/AddSelectColumn.js +250 -0
  370. package/lib/components/AddSelect/AddSelectFilter.js +181 -0
  371. package/lib/components/AddSelect/AddSelectFormControl.js +90 -0
  372. package/lib/components/AddSelect/AddSelectList.js +61 -0
  373. package/lib/components/AddSelect/AddSelectMetaPanel.js +76 -0
  374. package/lib/components/AddSelect/AddSelectRow.js +217 -0
  375. package/lib/components/AddSelect/AddSelectSidebar.js +127 -0
  376. package/lib/components/AddSelect/AddSelectSort.js +85 -0
  377. package/lib/components/AddSelect/add-select-utils.js +138 -0
  378. package/lib/components/AddSelect/hooks/useFocus.js +39 -0
  379. package/lib/components/AddSelect/hooks/useItemSort.js +33 -0
  380. package/lib/components/AddSelect/hooks/useParentSelect.js +28 -0
  381. package/lib/components/AddSelect/hooks/usePath.js +78 -0
  382. package/lib/components/AddSelect/index.js +12 -0
  383. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +342 -0
  384. package/lib/components/BreadcrumbWithOverflow/index.js +12 -0
  385. package/lib/components/ButtonMenu/ButtonMenu.js +133 -0
  386. package/lib/components/ButtonMenu/ButtonMenuItem.js +42 -0
  387. package/lib/components/ButtonMenu/index.js +19 -0
  388. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +220 -0
  389. package/lib/components/ButtonSetWithOverflow/index.js +12 -0
  390. package/lib/components/Card/Card.js +273 -0
  391. package/lib/components/Card/CardFooter.js +87 -0
  392. package/lib/components/Card/CardHeader.js +82 -0
  393. package/lib/components/Card/index.js +26 -0
  394. package/lib/components/Cascade/Cascade.js +89 -0
  395. package/lib/components/Cascade/index.js +12 -0
  396. package/lib/components/ComboButton/ComboButton.js +110 -0
  397. package/lib/components/ComboButton/ComboButtonItem/index.js +36 -0
  398. package/lib/components/ComboButton/index.js +19 -0
  399. package/lib/components/CreateFullPage/CreateFullPage.js +298 -0
  400. package/lib/components/CreateFullPage/CreateFullPageStep.js +176 -0
  401. package/lib/components/CreateFullPage/index.js +19 -0
  402. package/lib/components/CreateInfluencer/CreateInfluencer.js +100 -0
  403. package/lib/components/CreateInfluencer/index.js +12 -0
  404. package/lib/components/CreateModal/CreateModal.js +143 -0
  405. package/lib/components/CreateModal/index.js +12 -0
  406. package/lib/components/CreateSidePanel/CreateSidePanel.js +160 -0
  407. package/lib/components/CreateSidePanel/index.js +12 -0
  408. package/lib/components/CreateTearsheet/CreateTearsheet.js +320 -0
  409. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +43 -0
  410. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +184 -0
  411. package/lib/components/CreateTearsheet/index.js +26 -0
  412. package/lib/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +294 -0
  413. package/lib/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +291 -0
  414. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +170 -0
  415. package/lib/components/CreateTearsheetNarrow/index.js +12 -0
  416. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +891 -0
  417. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +560 -0
  418. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +291 -0
  419. package/lib/components/DataSpreadsheet/hooks/index.js +54 -0
  420. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +34 -0
  421. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +127 -0
  422. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +33 -0
  423. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +110 -0
  424. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +64 -0
  425. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +170 -0
  426. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +47 -0
  427. package/lib/components/DataSpreadsheet/index.js +12 -0
  428. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +37 -0
  429. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +36 -0
  430. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +61 -0
  431. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +71 -0
  432. package/lib/components/DataSpreadsheet/utils/generateData.js +60 -0
  433. package/lib/components/DataSpreadsheet/utils/getCellSize.js +32 -0
  434. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +26 -0
  435. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +41 -0
  436. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +113 -0
  437. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +105 -0
  438. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +47 -0
  439. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +85 -0
  440. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +166 -0
  441. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +267 -0
  442. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +40 -0
  443. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +35 -0
  444. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +55 -0
  445. package/lib/components/Datagrid/Datagrid/Datagrid.js +70 -0
  446. package/lib/components/Datagrid/Datagrid/DatagridBody.js +39 -0
  447. package/lib/components/Datagrid/Datagrid/DatagridContent.js +192 -0
  448. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +49 -0
  449. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +40 -0
  450. package/lib/components/Datagrid/Datagrid/DatagridHead.js +30 -0
  451. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +61 -0
  452. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +43 -0
  453. package/lib/components/Datagrid/Datagrid/DatagridRow.js +126 -0
  454. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +72 -0
  455. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +150 -0
  456. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +39 -0
  457. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +153 -0
  458. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +119 -0
  459. package/lib/components/Datagrid/Datagrid/DraggableElement.js +189 -0
  460. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +50 -0
  461. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +62 -0
  462. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +125 -0
  463. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +184 -0
  464. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +117 -0
  465. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +61 -0
  466. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +21 -0
  467. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/index.js +20 -0
  468. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +255 -0
  469. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +280 -0
  470. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +96 -0
  471. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +45 -0
  472. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +34 -0
  473. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +309 -0
  474. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +30 -0
  475. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +41 -0
  476. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +30 -0
  477. package/lib/components/Datagrid/Datagrid/addons/Filtering/index.js +33 -0
  478. package/lib/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +64 -0
  479. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +91 -0
  480. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +67 -0
  481. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +12 -0
  482. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +498 -0
  483. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +12 -0
  484. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +108 -0
  485. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +34 -0
  486. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +18 -0
  487. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +40 -0
  488. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +25 -0
  489. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +234 -0
  490. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +87 -0
  491. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +77 -0
  492. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +116 -0
  493. package/lib/components/Datagrid/Datagrid/addons/RowSize/index.js +13 -0
  494. package/lib/components/Datagrid/Datagrid/index.js +12 -0
  495. package/lib/components/Datagrid/Datagrid.stories/CustomizeColumnStory.js +13 -0
  496. package/lib/components/Datagrid/Datagrid.stories/RowSizeDropdownStory.js +13 -0
  497. package/lib/components/Datagrid/Datagrid.stories/SelectAllWithToggleStory.js +13 -0
  498. package/lib/components/Datagrid/Datagrid.stories/StickyActionsColumnStory.js +103 -0
  499. package/lib/components/Datagrid/Datagrid.stories/common.js +200 -0
  500. package/lib/components/Datagrid/Datagrid.stories/index.js +34 -0
  501. package/lib/components/Datagrid/common-column-ids.js +16 -0
  502. package/lib/components/Datagrid/index.js +153 -0
  503. package/lib/components/Datagrid/useActionsColumn.js +145 -0
  504. package/lib/components/Datagrid/useColumnCenterAlign.js +51 -0
  505. package/lib/components/Datagrid/useColumnOrder.js +15 -0
  506. package/lib/components/Datagrid/useColumnRightAlign.js +51 -0
  507. package/lib/components/Datagrid/useCustomizeColumns.js +51 -0
  508. package/lib/components/Datagrid/useDatagrid.js +44 -0
  509. package/lib/components/Datagrid/useDefaultStringRenderer.js +49 -0
  510. package/lib/components/Datagrid/useDisableSelectRows.js +87 -0
  511. package/lib/components/Datagrid/useEditableCell.js +20 -0
  512. package/lib/components/Datagrid/useExpandedRow.js +49 -0
  513. package/lib/components/Datagrid/useFiltering.js +98 -0
  514. package/lib/components/Datagrid/useFlexResize.js +52 -0
  515. package/lib/components/Datagrid/useFloatingScroll.js +84 -0
  516. package/lib/components/Datagrid/useInfiniteScroll.js +61 -0
  517. package/lib/components/Datagrid/useInlineEdit.js +79 -0
  518. package/lib/components/Datagrid/useNestedRowExpander.js +50 -0
  519. package/lib/components/Datagrid/useNestedRows.js +63 -0
  520. package/lib/components/Datagrid/useOnRowClick.js +54 -0
  521. package/lib/components/Datagrid/useParentDimensions.js +66 -0
  522. package/lib/components/Datagrid/useResizeTable.js +42 -0
  523. package/lib/components/Datagrid/useRowExpander.js +50 -0
  524. package/lib/components/Datagrid/useRowIsMouseOver.js +58 -0
  525. package/lib/components/Datagrid/useRowRenderer.js +34 -0
  526. package/lib/components/Datagrid/useRowSize.js +61 -0
  527. package/lib/components/Datagrid/useSelectAllToggle.js +102 -0
  528. package/lib/components/Datagrid/useSelectRows.js +126 -0
  529. package/lib/components/Datagrid/useSkeletonRows.js +35 -0
  530. package/lib/components/Datagrid/useSortableColumns.js +121 -0
  531. package/lib/components/Datagrid/useStickyColumn.js +188 -0
  532. package/lib/components/Datagrid/utils/DatagridActions.js +250 -0
  533. package/lib/components/Datagrid/utils/DatagridPagination.js +40 -0
  534. package/lib/components/Datagrid/utils/Wrapper.js +29 -0
  535. package/lib/components/Datagrid/utils/getArgTypes.js +102 -0
  536. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +35 -0
  537. package/lib/components/Datagrid/utils/getInlineEditColumns.js +166 -0
  538. package/lib/components/Datagrid/utils/makeData.js +201 -0
  539. package/lib/components/EditFullPage/EditFullPage.js +89 -0
  540. package/lib/components/EditFullPage/index.js +12 -0
  541. package/lib/components/EditInPlace/EditInPlace.js +312 -0
  542. package/lib/components/EditInPlace/index.js +12 -0
  543. package/lib/components/EditSidePanel/EditSidePanel.js +193 -0
  544. package/lib/components/EditSidePanel/index.js +12 -0
  545. package/lib/components/EditTearsheet/EditTearsheet.js +207 -0
  546. package/lib/components/EditTearsheet/EditTearsheetForm.js +109 -0
  547. package/lib/components/EditTearsheet/index.js +19 -0
  548. package/lib/components/EditTearsheet/preview-components/MultiFormEditTearsheet.js +229 -0
  549. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +89 -0
  550. package/lib/components/EditTearsheetNarrow/index.js +12 -0
  551. package/lib/components/EditUpdateCards/EditUpdateCards.js +146 -0
  552. package/lib/components/EditUpdateCards/index.js +12 -0
  553. package/lib/components/EmptyStates/EmptyState.js +122 -0
  554. package/lib/components/EmptyStates/EmptyStateContent.js +89 -0
  555. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +116 -0
  556. package/lib/components/EmptyStates/ErrorEmptyState/index.js +12 -0
  557. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +116 -0
  558. package/lib/components/EmptyStates/NoDataEmptyState/index.js +12 -0
  559. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +116 -0
  560. package/lib/components/EmptyStates/NoTagsEmptyState/index.js +12 -0
  561. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +116 -0
  562. package/lib/components/EmptyStates/NotFoundEmptyState/index.js +12 -0
  563. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +116 -0
  564. package/lib/components/EmptyStates/NotificationsEmptyState/index.js +12 -0
  565. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +116 -0
  566. package/lib/components/EmptyStates/UnauthorizedEmptyState/index.js +12 -0
  567. package/lib/components/EmptyStates/assets/ErrorIllustration.js +223 -0
  568. package/lib/components/EmptyStates/assets/NoDataIllustration.js +186 -0
  569. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +494 -0
  570. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +371 -0
  571. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +342 -0
  572. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +315 -0
  573. package/lib/components/EmptyStates/index.js +54 -0
  574. package/lib/components/ExampleComponent/ExampleComponent.js +188 -0
  575. package/lib/components/ExampleComponent/ExampleDeprecatedComponent.js +36 -0
  576. package/lib/components/ExampleComponent/index.js +12 -0
  577. package/lib/components/ExampleComponent/useExample.js +58 -0
  578. package/lib/components/ExportModal/ExportModal.js +287 -0
  579. package/lib/components/ExportModal/index.js +12 -0
  580. package/lib/components/ExpressiveCard/ExpressiveCard.js +125 -0
  581. package/lib/components/ExpressiveCard/index.js +12 -0
  582. package/lib/components/FilterSummary/FilterSummary.js +63 -0
  583. package/lib/components/FilterSummary/index.js +13 -0
  584. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +90 -0
  585. package/lib/components/HTTPErrors/HTTPError403/index.js +12 -0
  586. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +90 -0
  587. package/lib/components/HTTPErrors/HTTPError404/index.js +12 -0
  588. package/lib/components/HTTPErrors/HTTPErrorContent.js +83 -0
  589. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +90 -0
  590. package/lib/components/HTTPErrors/HTTPErrorOther/index.js +12 -0
  591. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +1249 -0
  592. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +1048 -0
  593. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1099 -0
  594. package/lib/components/HTTPErrors/index.js +26 -0
  595. package/lib/components/ImportModal/ImportModal.js +392 -0
  596. package/lib/components/ImportModal/index.js +12 -0
  597. package/lib/components/MultiAddSelect/MultiAddSelect.js +159 -0
  598. package/lib/components/MultiAddSelect/index.js +12 -0
  599. package/lib/components/NotificationsPanel/NotificationsPanel.js +562 -0
  600. package/lib/components/NotificationsPanel/NotificationsPanel_data.js +143 -0
  601. package/lib/components/NotificationsPanel/index.js +12 -0
  602. package/lib/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +55 -0
  603. package/lib/components/NotificationsPanel/utils.js +57 -0
  604. package/lib/components/OptionsTile/OptionsTile.js +334 -0
  605. package/lib/components/OptionsTile/index.js +12 -0
  606. package/lib/components/PageHeader/PageHeader.js +775 -0
  607. package/lib/components/PageHeader/PageHeaderDemo.data.js +620 -0
  608. package/lib/components/PageHeader/PageHeaderTitle.js +129 -0
  609. package/lib/components/PageHeader/PageHeaderUtils.js +188 -0
  610. package/lib/components/PageHeader/index.js +12 -0
  611. package/lib/components/ProductiveCard/ProductiveCard.js +132 -0
  612. package/lib/components/ProductiveCard/index.js +12 -0
  613. package/lib/components/RemoveModal/RemoveModal.js +192 -0
  614. package/lib/components/RemoveModal/index.js +12 -0
  615. package/lib/components/Saving/Saving.js +169 -0
  616. package/lib/components/Saving/index.js +12 -0
  617. package/lib/components/SidePanel/SidePanel.js +638 -0
  618. package/lib/components/SidePanel/constants.js +21 -0
  619. package/lib/components/SidePanel/index.js +12 -0
  620. package/lib/components/SidePanel/motion/variants.js +54 -0
  621. package/lib/components/SingleAddSelect/SingleAddSelect.js +105 -0
  622. package/lib/components/SingleAddSelect/index.js +12 -0
  623. package/lib/components/StatusIcon/StatusIcon.js +356 -0
  624. package/lib/components/StatusIcon/index.js +12 -0
  625. package/lib/components/TagSet/TagSet.js +335 -0
  626. package/lib/components/TagSet/TagSetModal.js +121 -0
  627. package/lib/components/TagSet/TagSetOverflow.js +132 -0
  628. package/lib/components/TagSet/constants.js +28 -0
  629. package/lib/components/TagSet/index.js +12 -0
  630. package/lib/components/Tearsheet/Tearsheet.js +196 -0
  631. package/lib/components/Tearsheet/TearsheetNarrow.js +158 -0
  632. package/lib/components/Tearsheet/TearsheetShell.js +416 -0
  633. package/lib/components/Tearsheet/index.js +19 -0
  634. package/lib/components/Toolbar/Toolbar.js +114 -0
  635. package/lib/components/Toolbar/ToolbarButton.js +68 -0
  636. package/lib/components/Toolbar/ToolbarGroup.js +44 -0
  637. package/lib/components/Toolbar/index.js +26 -0
  638. package/lib/components/UserProfileImage/UserProfileImage.js +180 -0
  639. package/lib/components/UserProfileImage/index.js +12 -0
  640. package/lib/components/WebTerminal/WebTerminal.js +212 -0
  641. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +55 -0
  642. package/lib/components/WebTerminal/hooks/index.js +64 -0
  643. package/lib/components/WebTerminal/index.js +32 -0
  644. package/lib/components/WebTerminal/preview-components/Navigation.js +45 -0
  645. package/lib/components/WebTerminal/preview-components/documentationLinks.js +39 -0
  646. package/lib/components/WebTerminal/preview-components/index.js +13 -0
  647. package/lib/components/_Canary/Canary.js +51 -0
  648. package/lib/components/_Canary/index.js +12 -0
  649. package/lib/components/index.js +486 -0
  650. package/lib/global/js/hooks/index.js +88 -0
  651. package/lib/global/js/hooks/useActiveElement.js +33 -0
  652. package/lib/global/js/hooks/useClickOutside.js +28 -0
  653. package/lib/global/js/hooks/useControllableState.js +80 -0
  654. package/lib/global/js/hooks/useCreateComponentFocus.js +62 -0
  655. package/lib/global/js/hooks/useCreateComponentStepChange.js +211 -0
  656. package/lib/global/js/hooks/usePreviousValue.js +26 -0
  657. package/lib/global/js/hooks/useResetCreateComponent.js +54 -0
  658. package/lib/global/js/hooks/useResizeObserver.js +83 -0
  659. package/lib/global/js/hooks/useRetrieveStepData.js +55 -0
  660. package/lib/global/js/hooks/useValidCreateStepCount.js +27 -0
  661. package/lib/global/js/hooks/useWindowResize.js +73 -0
  662. package/lib/global/js/hooks/useWindowScroll.js +86 -0
  663. package/lib/global/js/package-settings.js +190 -0
  664. package/lib/global/js/utils/ClickListener.js +76 -0
  665. package/lib/global/js/utils/DisplayBox.js +40 -0
  666. package/lib/global/js/utils/Wrap.js +89 -0
  667. package/lib/global/js/utils/deepCloneObject.js +31 -0
  668. package/lib/global/js/utils/devtools.js +26 -0
  669. package/lib/global/js/utils/getBezierValues.js +25 -0
  670. package/lib/global/js/utils/getFocusableElements.js +22 -0
  671. package/lib/global/js/utils/getNumberOfHiddenSteps.js +26 -0
  672. package/lib/global/js/utils/getScrollbarWidth.js +22 -0
  673. package/lib/global/js/utils/keyboardNavigation.js +46 -0
  674. package/lib/global/js/utils/lastIndexInArray.js +31 -0
  675. package/lib/global/js/utils/motionConstants.js +51 -0
  676. package/lib/global/js/utils/pconsole.js +47 -0
  677. package/lib/global/js/utils/props-helper.js +267 -0
  678. package/lib/global/js/utils/rangeWithCallback.js +21 -0
  679. package/lib/global/js/utils/scrollableAncestor.js +46 -0
  680. package/lib/global/js/utils/story-helper.js +120 -0
  681. package/lib/global/js/utils/test-helper.js +329 -0
  682. package/lib/global/js/utils/unwrap-if-fragment.js +70 -0
  683. package/lib/global/js/utils/uuidv4.js +18 -0
  684. package/lib/global/js/utils/uuidv4.spec.js +30 -0
  685. package/lib/global/js/utils/wait.js +15 -0
  686. package/lib/global/js/utils/wrapFocus.js +74 -0
  687. package/lib/index.js +27 -0
  688. package/lib/settings.js +88 -0
  689. package/package.json +2 -2
  690. package/scss/components/APIKeyModal/_api-key-modal.scss +52 -0
  691. package/scss/components/APIKeyModal/_carbon-imports.scss +15 -0
  692. package/scss/components/APIKeyModal/_index-with-carbon.scss +9 -0
  693. package/scss/components/APIKeyModal/_index.scss +10 -0
  694. package/scss/components/APIKeyModal/_storybook-styles.scss +35 -0
  695. package/scss/components/AboutModal/_about-modal.scss +95 -0
  696. package/scss/components/AboutModal/_carbon-imports.scss +11 -0
  697. package/scss/components/AboutModal/_index-with-carbon.scss +9 -0
  698. package/scss/components/AboutModal/_index.scss +8 -0
  699. package/scss/components/AboutModal/_storybook-styles.scss +29 -0
  700. package/scss/components/ActionBar/_action-bar.scss +51 -0
  701. package/scss/components/ActionBar/_carbon-imports.scss +11 -0
  702. package/scss/components/ActionBar/_index-with-carbon.scss +9 -0
  703. package/scss/components/ActionBar/_index.scss +8 -0
  704. package/scss/components/ActionBar/_storybook-styles.scss +8 -0
  705. package/scss/components/ActionSet/_action-set.scss +126 -0
  706. package/scss/components/ActionSet/_carbon-imports.scss +11 -0
  707. package/scss/components/ActionSet/_index-with-carbon.scss +9 -0
  708. package/scss/components/ActionSet/_index.scss +8 -0
  709. package/scss/components/ActionSet/_storybook-styles.scss +36 -0
  710. package/scss/components/AddSelect/_add-select.scss +462 -0
  711. package/scss/components/AddSelect/_carbon-imports.scss +19 -0
  712. package/scss/components/AddSelect/_index-with-carbon.scss +9 -0
  713. package/scss/components/AddSelect/_index.scss +10 -0
  714. package/scss/components/AddSelect/_storybook-styles.scss +6 -0
  715. package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +97 -0
  716. package/scss/components/BreadcrumbWithOverflow/_carbon-imports.scss +12 -0
  717. package/scss/components/BreadcrumbWithOverflow/_index-with-carbon.scss +9 -0
  718. package/scss/components/BreadcrumbWithOverflow/_index.scss +8 -0
  719. package/scss/components/BreadcrumbWithOverflow/_storybook-styles.scss +8 -0
  720. package/scss/components/ButtonMenu/_button-menu.scss +29 -0
  721. package/scss/components/ButtonMenu/_carbon-imports.scss +9 -0
  722. package/scss/components/ButtonMenu/_index-with-carbon.scss +9 -0
  723. package/scss/components/ButtonMenu/_index.scss +8 -0
  724. package/scss/components/ButtonMenu/_storybook-styles.scss +6 -0
  725. package/scss/components/ButtonSetWithOverflow/_button-set-with-overflow.scss +42 -0
  726. package/scss/components/ButtonSetWithOverflow/_carbon-imports.scss +10 -0
  727. package/scss/components/ButtonSetWithOverflow/_index-with-carbon.scss +9 -0
  728. package/scss/components/ButtonSetWithOverflow/_index.scss +8 -0
  729. package/scss/components/ButtonSetWithOverflow/_storybook-styles.scss +8 -0
  730. package/scss/components/Card/_carbon-imports.scss +11 -0
  731. package/scss/components/Card/_card.scss +123 -0
  732. package/scss/components/Card/_index-with-carbon.scss +9 -0
  733. package/scss/components/Card/_index.scss +8 -0
  734. package/scss/components/Card/_storybook-styles.scss +12 -0
  735. package/scss/components/Cascade/_carbon-imports.scss +6 -0
  736. package/scss/components/Cascade/_cascade.scss +47 -0
  737. package/scss/components/Cascade/_index-with-carbon.scss +9 -0
  738. package/scss/components/Cascade/_index.scss +10 -0
  739. package/scss/components/Cascade/_storybook-styles.scss +33 -0
  740. package/scss/components/ComboButton/_carbon-imports.scss +11 -0
  741. package/scss/components/ComboButton/_combo-button.scss +76 -0
  742. package/scss/components/ComboButton/_index-with-carbon.scss +9 -0
  743. package/scss/components/ComboButton/_index.scss +10 -0
  744. package/scss/components/CreateFullPage/_carbon-imports.scss +17 -0
  745. package/scss/components/CreateFullPage/_create-full-page.scss +169 -0
  746. package/scss/components/CreateFullPage/_index-with-carbon.scss +9 -0
  747. package/scss/components/CreateFullPage/_index.scss +8 -0
  748. package/scss/components/CreateFullPage/_storybook-styles.scss +67 -0
  749. package/scss/components/CreateInfluencer/_carbon-imports.scss +10 -0
  750. package/scss/components/CreateInfluencer/_create-influencer.scss +86 -0
  751. package/scss/components/CreateInfluencer/_index-with-carbon.scss +9 -0
  752. package/scss/components/CreateInfluencer/_index.scss +8 -0
  753. package/scss/components/CreateModal/_carbon-imports.scss +12 -0
  754. package/scss/components/CreateModal/_create-modal.scss +81 -0
  755. package/scss/components/CreateModal/_index-with-carbon.scss +9 -0
  756. package/scss/components/CreateModal/_index.scss +8 -0
  757. package/scss/components/CreateModal/_storybook-styles.scss +54 -0
  758. package/scss/components/CreateSidePanel/_carbon-imports.scss +10 -0
  759. package/scss/components/CreateSidePanel/_create-side-panel.scss +93 -0
  760. package/scss/components/CreateSidePanel/_index-with-carbon.scss +9 -0
  761. package/scss/components/CreateSidePanel/_index.scss +8 -0
  762. package/scss/components/CreateSidePanel/_storybook-styles.scss +29 -0
  763. package/scss/components/CreateTearsheet/_carbon-imports.scss +10 -0
  764. package/scss/components/CreateTearsheet/_create-tearsheet.scss +158 -0
  765. package/scss/components/CreateTearsheet/_index-with-carbon.scss +9 -0
  766. package/scss/components/CreateTearsheet/_index.scss +8 -0
  767. package/scss/components/CreateTearsheet/_storybook-styles.scss +56 -0
  768. package/scss/components/CreateTearsheetNarrow/_carbon-imports.scss +10 -0
  769. package/scss/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss +61 -0
  770. package/scss/components/CreateTearsheetNarrow/_index-with-carbon.scss +9 -0
  771. package/scss/components/CreateTearsheetNarrow/_index.scss +8 -0
  772. package/scss/components/CreateTearsheetNarrow/_storybook-styles.scss +27 -0
  773. package/scss/components/DataSpreadsheet/_carbon-imports.scss +6 -0
  774. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +294 -0
  775. package/scss/components/DataSpreadsheet/_index-with-carbon.scss +9 -0
  776. package/scss/components/DataSpreadsheet/_index.scss +8 -0
  777. package/scss/components/DataSpreadsheet/_storybook-styles.scss +6 -0
  778. package/scss/components/Datagrid/_carbon-imports.scss +6 -0
  779. package/scss/components/Datagrid/_datagrid.scss +63 -0
  780. package/scss/components/Datagrid/_index-with-carbon.scss +9 -0
  781. package/scss/components/Datagrid/_index.scss +8 -0
  782. package/scss/components/Datagrid/_storybook-styles.scss +116 -0
  783. package/scss/components/Datagrid/styles/_datagrid.scss +634 -0
  784. package/scss/components/Datagrid/styles/_draggableElement.scss +92 -0
  785. package/scss/components/Datagrid/styles/_index.scss +22 -0
  786. package/scss/components/Datagrid/styles/_useActionsColumn.scss +39 -0
  787. package/scss/components/Datagrid/styles/_useColumnCenterAlign.scss +20 -0
  788. package/scss/components/Datagrid/styles/_useColumnRightAlign.scss +29 -0
  789. package/scss/components/Datagrid/styles/_useExpandedRow.scss +60 -0
  790. package/scss/components/Datagrid/styles/_useInlineEdit.scss +431 -0
  791. package/scss/components/Datagrid/styles/_useNestedRows.scss +71 -0
  792. package/scss/components/Datagrid/styles/_useNestedTable.scss +34 -0
  793. package/scss/components/Datagrid/styles/_useSelectAllToggle.scss +37 -0
  794. package/scss/components/Datagrid/styles/_useSortableColumns.scss +79 -0
  795. package/scss/components/Datagrid/styles/_useStickyColumn.scss +68 -0
  796. package/scss/components/Datagrid/styles/_variables.scss +10 -0
  797. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +82 -0
  798. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +87 -0
  799. package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +129 -0
  800. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +45 -0
  801. package/scss/components/EditFullPage/_edit-full-page.scss +26 -0
  802. package/scss/components/EditFullPage/_index.scss +8 -0
  803. package/scss/components/EditFullPage/_storybook-styles.scss +10 -0
  804. package/scss/components/EditInPlace/_carbon-imports.scss +9 -0
  805. package/scss/components/EditInPlace/_edit-in-place.scss +164 -0
  806. package/scss/components/EditInPlace/_index-with-carbon.scss +9 -0
  807. package/scss/components/EditInPlace/_index.scss +10 -0
  808. package/scss/components/EditInPlace/_storybook-styles.scss +15 -0
  809. package/scss/components/EditSidePanel/_carbon-imports.scss +9 -0
  810. package/scss/components/EditSidePanel/_edit-side-panel.scss +66 -0
  811. package/scss/components/EditSidePanel/_index-with-carbon.scss +9 -0
  812. package/scss/components/EditSidePanel/_index.scss +8 -0
  813. package/scss/components/EditSidePanel/_storybook-styles.scss +29 -0
  814. package/scss/components/EditTearsheet/_edit-tearsheet.scss +136 -0
  815. package/scss/components/EditTearsheet/_index.scss +8 -0
  816. package/scss/components/EditTearsheet/_storybook-styles.scss +59 -0
  817. package/scss/components/EditTearsheetNarrow/_edit-tearsheet-narrow.scss +26 -0
  818. package/scss/components/EditTearsheetNarrow/_index.scss +8 -0
  819. package/scss/components/EditTearsheetNarrow/_storybook-styles.scss +10 -0
  820. package/scss/components/EditUpdateCards/_carbon-imports.scss +9 -0
  821. package/scss/components/EditUpdateCards/_edit-update-cards.scss +85 -0
  822. package/scss/components/EditUpdateCards/_index-with-carbon.scss +9 -0
  823. package/scss/components/EditUpdateCards/_index.scss +8 -0
  824. package/scss/components/EditUpdateCards/_storybook-styles.scss +55 -0
  825. package/scss/components/EmptyStates/_carbon-imports.scss +11 -0
  826. package/scss/components/EmptyStates/_empty-state.scss +82 -0
  827. package/scss/components/EmptyStates/_index-with-carbon.scss +9 -0
  828. package/scss/components/EmptyStates/_index.scss +8 -0
  829. package/scss/components/EmptyStates/_storybook-styles.scss +6 -0
  830. package/scss/components/ExampleComponent/_carbon-imports.scss +10 -0
  831. package/scss/components/ExampleComponent/_example-component.scss +28 -0
  832. package/scss/components/ExampleComponent/_index-with-carbon.scss +9 -0
  833. package/scss/components/ExampleComponent/_index.scss +8 -0
  834. package/scss/components/ExampleComponent/_storybook-styles.scss +6 -0
  835. package/scss/components/ExportModal/_carbon-imports.scss +16 -0
  836. package/scss/components/ExportModal/_export-modal.scss +46 -0
  837. package/scss/components/ExportModal/_index-with-carbon.scss +9 -0
  838. package/scss/components/ExportModal/_index.scss +10 -0
  839. package/scss/components/ExportModal/_storybook-styles.scss +6 -0
  840. package/scss/components/ExpressiveCard/_carbon-imports.scss +6 -0
  841. package/scss/components/ExpressiveCard/_expressive-card.scss +18 -0
  842. package/scss/components/ExpressiveCard/_index-with-carbon.scss +9 -0
  843. package/scss/components/ExpressiveCard/_index.scss +10 -0
  844. package/scss/components/ExpressiveCard/_storybook-styles.scss +26 -0
  845. package/scss/components/FilterSummary/_filter-summary.scss +21 -0
  846. package/scss/components/FilterSummary/_index.scss +10 -0
  847. package/scss/components/FilterSummary/_storybook-styles.scss +14 -0
  848. package/scss/components/HTTPErrors/_carbon-imports.scss +10 -0
  849. package/scss/components/HTTPErrors/_http-errors.scss +68 -0
  850. package/scss/components/HTTPErrors/_index-with-carbon.scss +9 -0
  851. package/scss/components/HTTPErrors/_index.scss +8 -0
  852. package/scss/components/HTTPErrors/_storybook-styles.scss +6 -0
  853. package/scss/components/ImportModal/_carbon-imports.scss +14 -0
  854. package/scss/components/ImportModal/_import-modal.scss +83 -0
  855. package/scss/components/ImportModal/_index-with-carbon.scss +9 -0
  856. package/scss/components/ImportModal/_index.scss +8 -0
  857. package/scss/components/ImportModal/_storybook-styles.scss +6 -0
  858. package/scss/components/MultiAddSelect/_carbon-imports.scss +6 -0
  859. package/scss/components/MultiAddSelect/_index-with-carbon.scss +9 -0
  860. package/scss/components/MultiAddSelect/_index.scss +8 -0
  861. package/scss/components/MultiAddSelect/_multi-add-select.scss +8 -0
  862. package/scss/components/MultiAddSelect/_storybook-styles.scss +6 -0
  863. package/scss/components/NotificationsPanel/_carbon-imports.scss +12 -0
  864. package/scss/components/NotificationsPanel/_index-with-carbon.scss +9 -0
  865. package/scss/components/NotificationsPanel/_index.scss +8 -0
  866. package/scss/components/NotificationsPanel/_notifications-panel.scss +294 -0
  867. package/scss/components/NotificationsPanel/_storybook-styles.scss +15 -0
  868. package/scss/components/OptionsTile/_carbon-imports.scss +10 -0
  869. package/scss/components/OptionsTile/_index-with-carbon.scss +9 -0
  870. package/scss/components/OptionsTile/_index.scss +8 -0
  871. package/scss/components/OptionsTile/_options-tile.scss +230 -0
  872. package/scss/components/OptionsTile/_storybook-styles.scss +29 -0
  873. package/scss/components/PageHeader/_carbon-imports.scss +13 -0
  874. package/scss/components/PageHeader/_index-with-carbon.scss +9 -0
  875. package/scss/components/PageHeader/_index.scss +10 -0
  876. package/scss/components/PageHeader/_page-header.scss +654 -0
  877. package/scss/components/PageHeader/_storybook-styles.scss +80 -0
  878. package/scss/components/ProductiveCard/_carbon-imports.scss +6 -0
  879. package/scss/components/ProductiveCard/_index-with-carbon.scss +9 -0
  880. package/scss/components/ProductiveCard/_index.scss +10 -0
  881. package/scss/components/ProductiveCard/_productive-card.scss +95 -0
  882. package/scss/components/ProductiveCard/_storybook-styles.scss +23 -0
  883. package/scss/components/RemoveModal/_carbon-imports.scss +12 -0
  884. package/scss/components/RemoveModal/_index-with-carbon.scss +9 -0
  885. package/scss/components/RemoveModal/_index.scss +10 -0
  886. package/scss/components/RemoveModal/_remove-modal.scss +27 -0
  887. package/scss/components/RemoveModal/_storybook-styles.scss +6 -0
  888. package/scss/components/Saving/_carbon-imports.scss +11 -0
  889. package/scss/components/Saving/_index-with-carbon.scss +9 -0
  890. package/scss/components/Saving/_index.scss +10 -0
  891. package/scss/components/Saving/_saving.scss +34 -0
  892. package/scss/components/Saving/_storybook-styles.scss +12 -0
  893. package/scss/components/SidePanel/_carbon-imports.scss +10 -0
  894. package/scss/components/SidePanel/_index-with-carbon.scss +9 -0
  895. package/scss/components/SidePanel/_index.scss +8 -0
  896. package/scss/components/SidePanel/_side-panel-variables.scss +14 -0
  897. package/scss/components/SidePanel/_side-panel.scss +450 -0
  898. package/scss/components/SidePanel/_storybook-styles.scss +45 -0
  899. package/scss/components/SingleAddSelect/_carbon-imports.scss +6 -0
  900. package/scss/components/SingleAddSelect/_index-with-carbon.scss +9 -0
  901. package/scss/components/SingleAddSelect/_index.scss +8 -0
  902. package/scss/components/SingleAddSelect/_single-add-select.scss +8 -0
  903. package/scss/components/SingleAddSelect/_storybook-styles.scss +6 -0
  904. package/scss/components/StatusIcon/_carbon-imports.scss +6 -0
  905. package/scss/components/StatusIcon/_index-with-carbon.scss +9 -0
  906. package/scss/components/StatusIcon/_index.scss +8 -0
  907. package/scss/components/StatusIcon/_status-icon.scss +145 -0
  908. package/scss/components/StatusIcon/_storybook-styles.scss +6 -0
  909. package/scss/components/TagSet/_carbon-imports.scss +14 -0
  910. package/scss/components/TagSet/_index-with-carbon.scss +9 -0
  911. package/scss/components/TagSet/_index.scss +8 -0
  912. package/scss/components/TagSet/_storybook-styles.scss +8 -0
  913. package/scss/components/TagSet/_tag-set.scss +180 -0
  914. package/scss/components/Tearsheet/_carbon-imports.scss +11 -0
  915. package/scss/components/Tearsheet/_index-with-carbon.scss +9 -0
  916. package/scss/components/Tearsheet/_index.scss +8 -0
  917. package/scss/components/Tearsheet/_storybook-styles.scss +25 -0
  918. package/scss/components/Tearsheet/_tearsheet.scss +336 -0
  919. package/scss/components/Toolbar/_carbon-imports.scss +8 -0
  920. package/scss/components/Toolbar/_index-with-carbon.scss +9 -0
  921. package/scss/components/Toolbar/_index.scss +8 -0
  922. package/scss/components/Toolbar/_toolbar.scss +75 -0
  923. package/scss/components/UserProfileImage/_carbon-imports.scss +10 -0
  924. package/scss/components/UserProfileImage/_color-map.scss +39 -0
  925. package/scss/components/UserProfileImage/_index-with-carbon.scss +9 -0
  926. package/scss/components/UserProfileImage/_index.scss +8 -0
  927. package/scss/components/UserProfileImage/_storybook.scss +6 -0
  928. package/scss/components/UserProfileImage/_user-profile-image.scss +155 -0
  929. package/scss/components/WebTerminal/_carbon-imports.scss +12 -0
  930. package/scss/components/WebTerminal/_index-with-carbon.scss +9 -0
  931. package/scss/components/WebTerminal/_index.scss +8 -0
  932. package/scss/components/WebTerminal/_storybook-styles.scss +36 -0
  933. package/scss/components/WebTerminal/_web-terminal.scss +94 -0
  934. package/scss/components/_Canary/_canary.scss +7 -0
  935. package/scss/components/_index-released-only-with-carbon.scss +37 -0
  936. package/scss/components/_index-released-only.scss +38 -0
  937. package/scss/components/_index-with-carbon.scss +47 -0
  938. package/scss/components/_index.scss +51 -0
  939. package/scss/config.scss +1 -0
  940. package/scss/global/styles/_display-box.scss +66 -0
  941. package/scss/global/styles/_imported-carbon-modules.scss +25 -0
  942. package/scss/global/styles/_mixins.scss +22 -0
  943. package/scss/global/styles/_project-settings.scss +10 -0
  944. package/scss/index-full-carbon.scss +10 -0
  945. package/scss/index-without-carbon-released-only.scss +12 -0
  946. package/scss/index-without-carbon.scss +12 -0
  947. package/scss/index.scss +10 -0
@@ -0,0 +1,342 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ var _typeof = require("@babel/runtime/helpers/typeof");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.BreadcrumbWithOverflow = void 0;
9
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
12
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
13
+ var _react = _interopRequireWildcard(require("react"));
14
+ var _propTypes = _interopRequireDefault(require("prop-types"));
15
+ var _classnames = _interopRequireDefault(require("classnames"));
16
+ var _useResizeObserver = require("../../global/js/hooks/useResizeObserver");
17
+ var _react2 = require("@carbon/react");
18
+ var _settings = require("../../settings");
19
+ var _icons = require("@carbon/react/icons");
20
+ var _uuidv = _interopRequireDefault(require("../../global/js/utils/uuidv4"));
21
+ require("../../global/js/utils/props-helper");
22
+ var _excluded = ["breadcrumbs", "className", "maxVisible", "noTrailingSlash", "overflowAriaLabel"],
23
+ _excluded2 = ["label", "key", "title", "id"],
24
+ _excluded3 = ["className", "key", "label", "title"]; //
25
+ // Copyright IBM Corp. 2020, 2023
26
+ //
27
+ // This source code is licensed under the Apache-2.0 license found in the
28
+ // LICENSE file in the root directory of this source tree.
29
+ //
30
+ // Import portions of React that are needed.
31
+ // Other standard imports.
32
+ // Carbon and package components we use.
33
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
34
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
35
+ function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
36
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
37
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
38
+ // The block part of our conventional BEM class names (blockClass__E--M).
39
+ var blockClass = "".concat(_settings.pkg.prefix, "--breadcrumb-with-overflow");
40
+ var componentName = 'BreadcrumbWithOverflow';
41
+
42
+ // NOTE: the component SCSS is not imported here: it is rolled up separately.
43
+
44
+ /**
45
+ * The BreadcrumbWithOverflow is used internally by the PageHeader to wrap BreadcrumbItems.
46
+ */
47
+ var BreadcrumbWithOverflow = function BreadcrumbWithOverflow(_ref) {
48
+ var _backItem, _backItem2, _backItem3;
49
+ var breadcrumbs = _ref.breadcrumbs,
50
+ className = _ref.className,
51
+ maxVisible = _ref.maxVisible,
52
+ noTrailingSlash = _ref.noTrailingSlash,
53
+ overflowAriaLabel = _ref.overflowAriaLabel,
54
+ other = (0, _objectWithoutProperties2.default)(_ref, _excluded);
55
+ var carbonPrefix = (0, _react2.usePrefix)();
56
+ var _useState = (0, _react.useState)(3),
57
+ _useState2 = (0, _slicedToArray2.default)(_useState, 2),
58
+ displayCount = _useState2[0],
59
+ setDisplayCount = _useState2[1];
60
+ var _useState3 = (0, _react.useState)([]),
61
+ _useState4 = (0, _slicedToArray2.default)(_useState3, 2),
62
+ displayedBreadcrumbItems = _useState4[0],
63
+ setDisplayedBreadcrumbItems = _useState4[1];
64
+ var breadcrumbItemWithOverflow = (0, _react.useRef)(null);
65
+ var sizingContainerRef = (0, _react.useRef)(null);
66
+ var internalId = (0, _react.useRef)((0, _uuidv.default)());
67
+ var _useState5 = (0, _react.useState)([]),
68
+ _useState6 = (0, _slicedToArray2.default)(_useState5, 2),
69
+ hiddenSizingItems = _useState6[0],
70
+ setHiddenSizingItems = _useState6[1];
71
+
72
+ // eslint-disable-next-line react/prop-types
73
+ var BreadcrumbOverflowMenu = function BreadcrumbOverflowMenu(_ref2) {
74
+ var overflowItems = _ref2.overflowItems;
75
+ return /*#__PURE__*/_react.default.createElement(_react2.BreadcrumbItem, {
76
+ key: "breadcrumb-overflow-".concat(internalId.current)
77
+ }, /*#__PURE__*/_react.default.createElement(_react2.OverflowMenu, {
78
+ "aria-label": overflowAriaLabel,
79
+ iconDescription: overflowAriaLabel // also needs setting to avoid a11y "Accessible name does not match or contain the visible label text"
80
+ ,
81
+ renderIcon: function renderIcon(props) {
82
+ return /*#__PURE__*/_react.default.createElement(_icons.OverflowMenuHorizontal, (0, _extends2.default)({
83
+ size: 32
84
+ }, props));
85
+ },
86
+ className: "".concat(blockClass, "__overflow-menu"),
87
+ menuOptionsClass: "".concat(blockClass, "__overflow-menu-options")
88
+ },
89
+ // eslint-disable-next-line react/prop-types
90
+ overflowItems.map(function (item, index) {
91
+ return /*#__PURE__*/_react.default.createElement(_react2.OverflowMenuItem, {
92
+ key: "breadcrumb-overflow-menu-item-".concat(internalId.current, "-").concat(index),
93
+ href: item.props.href,
94
+ onClick: item.props.onClick,
95
+ itemText: item.props.children
96
+ });
97
+ })));
98
+ };
99
+
100
+ // create hidden sizing items
101
+ (0, _react.useEffect)(function () {
102
+ // Hidden action bar and items used to calculate sizes
103
+ setHiddenSizingItems( /*#__PURE__*/_react.default.createElement("div", {
104
+ className: "".concat(blockClass, "__breadcrumb-container ").concat(blockClass, "__breadcrumb-container--hidden"),
105
+ "aria-hidden": true,
106
+ ref: sizingContainerRef
107
+ }, /*#__PURE__*/_react.default.createElement(_react2.Breadcrumb, null, /*#__PURE__*/_react.default.createElement(_react2.BreadcrumbItem, {
108
+ key: "".concat(blockClass, "-hidden-overflow-").concat(internalId)
109
+ }, /*#__PURE__*/_react.default.createElement(_react2.OverflowMenu, {
110
+ "aria-label": overflowAriaLabel,
111
+ renderIcon: function renderIcon(props) {
112
+ return /*#__PURE__*/_react.default.createElement(_icons.OverflowMenuHorizontal, (0, _extends2.default)({
113
+ size: 32
114
+ }, props));
115
+ }
116
+ })), breadcrumbs.map(function (_ref3) {
117
+ var label = _ref3.label,
118
+ key = _ref3.key,
119
+ title = _ref3.title,
120
+ id = _ref3.id,
121
+ rest = (0, _objectWithoutProperties2.default)(_ref3, _excluded2);
122
+ return /*#__PURE__*/_react.default.createElement(_react2.BreadcrumbItem, (0, _extends2.default)({
123
+ key: key
124
+ }, rest, {
125
+ // ensure id is not duplicated
126
+ "data-original-id": id,
127
+ title: title !== null && title !== void 0 ? title : label
128
+ }), label);
129
+ }))));
130
+ }, [breadcrumbs, overflowAriaLabel]);
131
+ (0, _react.useEffect)(function () {
132
+ // updates displayedBreadcrumbItems and overflowBreadcrumbItems based on displayCount and breadcrumbs
133
+ /* istanbul ignore if */
134
+ if (breadcrumbs.length === 0) {
135
+ setDisplayedBreadcrumbItems([]);
136
+ return;
137
+ }
138
+ var newDisplayedBreadcrumbItems = breadcrumbs.map(function (_ref4, index) {
139
+ var className = _ref4.className,
140
+ key = _ref4.key,
141
+ label = _ref4.label,
142
+ title = _ref4.title,
143
+ rest = (0, _objectWithoutProperties2.default)(_ref4, _excluded3);
144
+ return /*#__PURE__*/_react.default.createElement(_react2.BreadcrumbItem, (0, _extends2.default)({
145
+ key: key,
146
+ className: index > 0 || displayCount > 1 ? (0, _classnames.default)([className, "".concat(blockClass, "__displayed-breadcrumb")]) : className,
147
+ title: index + 1 === breadcrumbs.length ? title : null
148
+ }, rest), label);
149
+ });
150
+
151
+ // The breadcrumb has the form [first item] [overflow] [items 2...(n-1)] [last item].
152
+ // The overflow is only shown if there isn't space to display all the items, and in that case:
153
+ // * the last item is always displayed (even if there isn't really space for it -- it can contract to an ellipsis);
154
+ // * the first item is the next to be displayed, if there's space once the last item and overflow are shown;
155
+ // * any remaining space after the first item, last item and overflow are shown is used to show items (n-1), (n-2), (n-3), ..., until the space is used up ;
156
+ // Note that displayCount (min 1) has been computed based on the available space and the above sequence.
157
+ var overflowPosition = displayCount > 1 ? 1 : 0;
158
+ var newOverflowBreadcrumbItems = newDisplayedBreadcrumbItems.splice(overflowPosition, breadcrumbs.length - displayCount);
159
+
160
+ // if needed add overflow menu
161
+ if (newOverflowBreadcrumbItems.length) {
162
+ newDisplayedBreadcrumbItems.splice(overflowPosition, 0, /*#__PURE__*/_react.default.createElement(BreadcrumbOverflowMenu, {
163
+ overflowItems: newOverflowBreadcrumbItems,
164
+ key: "displayed-breadcrumb-".concat(internalId, "-overflow")
165
+ }));
166
+ }
167
+ setDisplayedBreadcrumbItems(newDisplayedBreadcrumbItems);
168
+ }, [breadcrumbs, displayCount]);
169
+ var checkFullyVisibleBreadcrumbItems = function checkFullyVisibleBreadcrumbItems() {
170
+ var displayItemIndex = function displayItemIndex(itemCount, index) {
171
+ // In this data set the overflow measuring item is [0]
172
+ // so the first displayItem in the list is [1]
173
+ // we never return 0;
174
+
175
+ if (index === 0) {
176
+ return itemCount - 1; // the last item in the list
177
+ } else if (index === 1) {
178
+ return 1; // the first item in the list
179
+ } else {
180
+ return itemCount - index; // count down from itemCount - 2 to 1
181
+ }
182
+ };
183
+
184
+ if (maxVisible <= 1) {
185
+ setDisplayCount(1);
186
+ } else {
187
+ // how many will fit?
188
+ var willFit = 0;
189
+ var spaceAvailable = breadcrumbItemWithOverflow.current.offsetWidth; // not sure how to test resize
190
+
191
+ /* istanbul ignore next */
192
+ if (sizingContainerRef.current) {
193
+ var sizingBreadcrumbItems = sizingContainerRef.current.querySelectorAll(".".concat(carbonPrefix, "--breadcrumb-item"));
194
+ var breadcrumbWidthsIncludingMargin = [];
195
+ var _iterator = _createForOfIteratorHelper(sizingBreadcrumbItems),
196
+ _step;
197
+ try {
198
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
199
+ var item = _step.value;
200
+ var computedStyle = window ? window.getComputedStyle(sizingBreadcrumbItems[0]) : null;
201
+ var marginWidths = computedStyle ? parseFloat(computedStyle.marginLeft || 0, 10) + parseFloat(computedStyle.marginRight || 0, 10) : 0;
202
+ breadcrumbWidthsIncludingMargin.push(item.offsetWidth + marginWidths);
203
+ }
204
+ } catch (err) {
205
+ _iterator.e(err);
206
+ } finally {
207
+ _iterator.f();
208
+ }
209
+ var overflowWidth = breadcrumbWidthsIncludingMargin[0];
210
+ for (var i = 0; i < breadcrumbWidthsIncludingMargin.length - 1; i++) {
211
+ // count used one less than length to account for the included overflow item
212
+ var index = displayItemIndex(breadcrumbWidthsIncludingMargin.length, i);
213
+ if (spaceAvailable >= breadcrumbWidthsIncludingMargin[index]) {
214
+ spaceAvailable -= breadcrumbWidthsIncludingMargin[index];
215
+ willFit += 1;
216
+ } else {
217
+ break;
218
+ }
219
+ }
220
+
221
+ // if not enough space for all breadcrumb items
222
+ if (willFit < breadcrumbWidthsIncludingMargin.length - 1) {
223
+ // -1 for overflow item
224
+
225
+ while (willFit > 0 && spaceAvailable < overflowWidth) {
226
+ willFit -= 1;
227
+
228
+ // Highly unlikely any useful breadcrumb-item is smaller than the overflow menu, but we loop anyway just in case
229
+
230
+ // item removed is based on last item added which is the current value of willFit
231
+ var itemToRemove = displayItemIndex(breadcrumbWidthsIncludingMargin.length, willFit);
232
+ spaceAvailable += breadcrumbWidthsIncludingMargin[itemToRemove];
233
+ }
234
+ }
235
+ }
236
+ if (willFit <= 1) {
237
+ setDisplayCount(1);
238
+ } else {
239
+ setDisplayCount(maxVisible ? Math.min(willFit, maxVisible) : willFit);
240
+ }
241
+ }
242
+ };
243
+ (0, _react.useEffect)(function () {
244
+ checkFullyVisibleBreadcrumbItems();
245
+ // eslint-disable-next-line react-hooks/exhaustive-deps
246
+ }, [hiddenSizingItems, maxVisible]);
247
+
248
+ /* istanbul ignore next */ // not sure how to test resize
249
+ var handleResize = function handleResize() {
250
+ /* istanbul ignore next */ // not sure how to test resize
251
+ checkFullyVisibleBreadcrumbItems();
252
+ };
253
+ var backItem = breadcrumbs[breadcrumbs.length - 1];
254
+ /* istanbul ignore if */ // not sure how to test media queries
255
+ if (backItem.isCurrentPage) {
256
+ backItem = breadcrumbs[breadcrumbs.length - 2];
257
+ }
258
+
259
+ // container resize
260
+ (0, _useResizeObserver.useResizeObserver)(sizingContainerRef, {
261
+ callback: handleResize
262
+ });
263
+ // item resize
264
+ (0, _useResizeObserver.useResizeObserver)(breadcrumbItemWithOverflow, {
265
+ callback: handleResize
266
+ });
267
+ return /*#__PURE__*/_react.default.createElement("div", {
268
+ className: (0, _classnames.default)(blockClass, className, (0, _defineProperty2.default)({}, "".concat(blockClass, "__with-items"), displayedBreadcrumbItems.length > 1)),
269
+ ref: breadcrumbItemWithOverflow
270
+ }, /*#__PURE__*/_react.default.createElement("div", {
271
+ className: (0, _classnames.default)(["".concat(blockClass, "__space")])
272
+ }, hiddenSizingItems, /*#__PURE__*/_react.default.createElement(_react2.Breadcrumb, (0, _extends2.default)({
273
+ className: (0, _classnames.default)("".concat(blockClass, "__breadcrumb-container"), (0, _defineProperty2.default)({}, "".concat(blockClass, "__breadcrumb-container-with-items"), displayedBreadcrumbItems.length > 1)),
274
+ noTrailingSlash: noTrailingSlash
275
+ }, other), ((_backItem = backItem) === null || _backItem === void 0 ? void 0 : _backItem.href) && (((_backItem2 = backItem) === null || _backItem2 === void 0 ? void 0 : _backItem2.label) || ((_backItem3 = backItem) === null || _backItem3 === void 0 ? void 0 : _backItem3.title)) && /*#__PURE__*/_react.default.createElement(_react2.BreadcrumbItem, {
276
+ className: (0, _classnames.default)("".concat(blockClass, "__breadcrumb-back"))
277
+ }, /*#__PURE__*/_react.default.createElement(_react2.Link, {
278
+ href: backItem.href,
279
+ renderIcon: function renderIcon() {
280
+ return /*#__PURE__*/_react.default.createElement(_react2.IconButton, {
281
+ className: "".concat(blockClass, "__back__button"),
282
+ align: "right",
283
+ kind: "ghost",
284
+ label: backItem.title || backItem.label,
285
+ size: "sm"
286
+ }, /*#__PURE__*/_react.default.createElement(_icons.ArrowLeft, {
287
+ size: 16
288
+ }));
289
+ }
290
+ })), displayedBreadcrumbItems)));
291
+ };
292
+
293
+ // Return a placeholder if not released and not enabled by feature flag
294
+ exports.BreadcrumbWithOverflow = BreadcrumbWithOverflow;
295
+ exports.BreadcrumbWithOverflow = BreadcrumbWithOverflow = _settings.pkg.checkComponentEnabled(BreadcrumbWithOverflow, componentName);
296
+ BreadcrumbWithOverflow.propTypes = {
297
+ breadcrumbs: _propTypes.default.arrayOf(_propTypes.default.shape({
298
+ /**
299
+ * Optional string representing the link location for the BreadcrumbItem
300
+ */
301
+ href: _propTypes.default.string,
302
+ /**
303
+ * Provide if this breadcrumb item represents the current page
304
+ */
305
+ isCurrentPage: _propTypes.default.bool,
306
+ /**
307
+ * Key required to render array efficiently
308
+ */
309
+ key: _propTypes.default.string.isRequired,
310
+ /**
311
+ * Pass in content that will be inside of the BreadcrumbItem
312
+ */
313
+ label: _propTypes.default.node,
314
+ /**
315
+ * A string based alternative to the children, required only if children is not of type string.
316
+ */
317
+ title: _propTypes.default.string.isRequired.if(function (_ref5) {
318
+ var label = _ref5.label;
319
+ return typeof label !== 'string';
320
+ })
321
+ })),
322
+ /**
323
+ * className
324
+ */
325
+ className: _propTypes.default.string,
326
+ /**
327
+ * maxVisible: maximum visible breadcrumb-items before overflow is used (values less than 1 are treated as 1)
328
+ */
329
+ maxVisible: _propTypes.default.number,
330
+ /**
331
+ * noTrailing slash - same as for Carbon
332
+ */
333
+ noTrailingSlash: _propTypes.default.bool,
334
+ /**
335
+ * overflowAriaLabel label for open close button overflow used for breadcrumb items that do not fit.
336
+ */
337
+ overflowAriaLabel: _propTypes.default.string.isRequired.if(function (_ref6) {
338
+ var breadcrumbs = _ref6.breadcrumbs;
339
+ return breadcrumbs.length > 1;
340
+ })
341
+ };
342
+ BreadcrumbWithOverflow.displayName = componentName;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "BreadcrumbWithOverflow", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _BreadcrumbWithOverflow.BreadcrumbWithOverflow;
10
+ }
11
+ });
12
+ var _BreadcrumbWithOverflow = require("./BreadcrumbWithOverflow");
@@ -0,0 +1,133 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.ButtonMenu = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _propTypes = _interopRequireDefault(require("prop-types"));
12
+ var _classnames = _interopRequireDefault(require("classnames"));
13
+ var _settings = require("../../settings");
14
+ var _react2 = require("@carbon/react");
15
+ var _excluded = ["children", "className", "iconDescription", "kind", "label", "menuAriaLabel", "menuOptionsClass", "renderIcon", "size"];
16
+ /**
17
+ * Copyright IBM Corp. 2021, 2023
18
+ *
19
+ * This source code is licensed under the Apache-2.0 license found in the
20
+ * LICENSE file in the root directory of this source tree.
21
+ */
22
+ // Import portions of React that are needed.
23
+ // Other standard imports.
24
+ // Carbon and package components we use.
25
+ // The block part of our conventional BEM class names (blockClass__E--M).
26
+ var blockClass = "".concat(_settings.pkg.prefix, "--button-menu");
27
+ var componentName = 'ButtonMenu';
28
+
29
+ // NOTE: the component SCSS is not imported here: it is rolled up separately.
30
+
31
+ // Default values for props
32
+ var defaults = {
33
+ size: 'lg',
34
+ kind: 'primary'
35
+ };
36
+
37
+ /**
38
+ * Combining a standard button with an overflow menu, this component appears
39
+ * as a button and has all the usual carbon Button props and rendering, but
40
+ * acts as an overflow menu when clicked. The ButtonMenu component can contain
41
+ * zero to many ButtonMenuItem, which is identical to the carbon
42
+ * OverflowMenuItem component.
43
+ */
44
+ var ButtonMenu = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
45
+ var children = _ref.children,
46
+ className = _ref.className,
47
+ iconDescription = _ref.iconDescription,
48
+ _ref$kind = _ref.kind,
49
+ kind = _ref$kind === void 0 ? defaults.kind : _ref$kind,
50
+ label = _ref.label,
51
+ menuAriaLabel = _ref.menuAriaLabel,
52
+ menuOptionsClass = _ref.menuOptionsClass,
53
+ Icon = _ref.renderIcon,
54
+ _ref$size = _ref.size,
55
+ size = _ref$size === void 0 ? defaults.size : _ref$size,
56
+ rest = (0, _objectWithoutProperties2.default)(_ref, _excluded);
57
+ var carbonPrefix = (0, _react2.usePrefix)();
58
+ return /*#__PURE__*/_react.default.createElement(_react2.OverflowMenu, (0, _extends2.default)({}, rest, {
59
+ className: (0, _classnames.default)(blockClass,
60
+ // Apply the block class to the main HTML element
61
+ className // Apply any supplied class names to the main HTML element.
62
+ ),
63
+
64
+ "aria-label": menuAriaLabel,
65
+ menuOptionsClass: (0, _classnames.default)("".concat(blockClass, "__options"), menuOptionsClass),
66
+ size: size,
67
+ renderIcon: function renderIcon() {
68
+ return /*#__PURE__*/_react.default.createElement("div", {
69
+ className: (0, _classnames.default)(["".concat(blockClass, "__trigger"), "".concat(carbonPrefix, "--btn"), "".concat(carbonPrefix, "--btn--").concat(kind), "".concat(carbonPrefix, "--btn--").concat(size)])
70
+ }, label, Icon && /*#__PURE__*/_react.default.createElement(Icon, {
71
+ "aria-hidden": "true",
72
+ "aria-label": iconDescription,
73
+ className: "".concat(carbonPrefix, "--btn__icon")
74
+ }));
75
+ },
76
+ innerRef: ref
77
+ }), children);
78
+ });
79
+
80
+ // Return a placeholder if not released and not enabled by feature flag
81
+ exports.ButtonMenu = ButtonMenu;
82
+ exports.ButtonMenu = ButtonMenu = _settings.pkg.checkComponentEnabled(ButtonMenu, componentName);
83
+
84
+ // The display name of the component, used by React. Note that displayName
85
+ // is used in preference to relying on function.name.
86
+ ButtonMenu.displayName = componentName;
87
+
88
+ // The types and DocGen commentary for the component props,
89
+ // in alphabetical order (for consistency).
90
+ // See https://www.npmjs.com/package/prop-types#usage.
91
+ ButtonMenu.propTypes = {
92
+ /**
93
+ * Provide the contents of the ButtonMenu. This should be one or more
94
+ * ButtonMenuItem components.
95
+ */
96
+ children: _propTypes.default.arrayOf(_propTypes.default.element).isRequired,
97
+ /**
98
+ * Provide an optional class to be applied to the containing node.
99
+ */
100
+ className: _propTypes.default.string,
101
+ /**
102
+ * If specifying the `renderIcon` prop, provide a description for that icon that can
103
+ * be read by screen readers
104
+ */
105
+ iconDescription: _react2.Button.propTypes.iconDescription,
106
+ /**
107
+ * The three types the menu button supports: primary, tertiary and ghost.
108
+ */
109
+ kind: _propTypes.default.oneOf(['primary', 'tertiary', 'ghost']),
110
+ /**
111
+ * The button label for the menu trigger.
112
+ */
113
+ label: _propTypes.default.node,
114
+ /**
115
+ * Provide the ariaLabel prop to be passed to the OverflowMenu. This is distinctly
116
+ * separate from `label` to support icon only ButtonMenus
117
+ */
118
+ menuAriaLabel: _propTypes.default.string.isRequired,
119
+ /**
120
+ * class name applied to the overflow options
121
+ */
122
+ menuOptionsClass: _propTypes.default.string,
123
+ /**
124
+ * Optional prop to allow overriding the icon rendering.
125
+ * Can be a React component class
126
+ */
127
+ renderIcon: _react2.Button.propTypes.renderIcon,
128
+ /**
129
+ * The size of the button for the menu trigger.
130
+ * The menu button supports: sm, md, lg
131
+ */
132
+ size: _propTypes.default.oneOf(['sm', 'md', 'lg'])
133
+ };
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.ButtonMenuItem = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _settings = require("../../settings");
11
+ var _react2 = require("@carbon/react");
12
+ /**
13
+ * Copyright IBM Corp. 2021, 2021
14
+ *
15
+ * This source code is licensed under the Apache-2.0 license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */
18
+
19
+ // Import portions of React that are needed.
20
+
21
+ // Other standard imports.
22
+
23
+ // Carbon and package components we use.
24
+
25
+ var componentName = 'ButtonMenuItem';
26
+
27
+ // NOTE: the component SCSS is not imported here: it is rolled up separately.
28
+
29
+ /**
30
+ * A menu item to include in a button menu component. This component has the
31
+ * same props and behaviors as carbon OverflowMenuItem.
32
+ */
33
+ var ButtonMenuItem = /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
34
+ return /*#__PURE__*/_react.default.createElement(_react2.OverflowMenuItem, (0, _extends2.default)({}, props, {
35
+ ref: ref
36
+ }));
37
+ });
38
+
39
+ // Return a placeholder if not released and not enabled by feature flag
40
+ exports.ButtonMenuItem = ButtonMenuItem;
41
+ exports.ButtonMenuItem = ButtonMenuItem = _settings.pkg.checkComponentEnabled(ButtonMenuItem, componentName);
42
+ ButtonMenuItem.propTypes = _react2.OverflowMenuItem.propTypes;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ButtonMenu", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _ButtonMenu.ButtonMenu;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "ButtonMenuItem", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _ButtonMenuItem.ButtonMenuItem;
16
+ }
17
+ });
18
+ var _ButtonMenu = require("./ButtonMenu");
19
+ var _ButtonMenuItem = require("./ButtonMenuItem");