@carbon/ibm-products 1.0.0-rc.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (479) hide show
  1. package/README.md +11 -12
  2. package/css/index-full-carbon.css +33427 -0
  3. package/css/index-full-carbon.css.map +1 -0
  4. package/css/index-full-carbon.min.css +9 -0
  5. package/css/index-without-carbon-released-only.css +7831 -0
  6. package/css/index-without-carbon-released-only.css.map +1 -0
  7. package/css/index-without-carbon-released-only.min.css +9 -0
  8. package/css/index-without-carbon.css +9841 -0
  9. package/css/index-without-carbon.css.map +1 -0
  10. package/css/index-without-carbon.min.css +9 -0
  11. package/css/index.css +22317 -0
  12. package/css/index.css.map +1 -0
  13. package/css/index.min.css +9 -0
  14. package/es/components/APIKeyModal/APIKeyDownloader.js +103 -0
  15. package/es/components/APIKeyModal/APIKeyModal.js +593 -0
  16. package/es/components/APIKeyModal/index.js +7 -0
  17. package/es/components/AboutModal/AboutModal.js +202 -0
  18. package/es/components/AboutModal/index.js +7 -0
  19. package/es/components/ActionBar/ActionBar.js +274 -0
  20. package/es/components/ActionBar/ActionBarItem.js +99 -0
  21. package/es/components/ActionBar/ActionBarOverflowItems.js +70 -0
  22. package/es/components/ActionBar/index.js +8 -0
  23. package/es/components/ActionSet/ActionSet.js +195 -0
  24. package/es/components/ActionSet/actions.js +48 -0
  25. package/es/components/ActionSet/index.js +7 -0
  26. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +349 -0
  27. package/es/components/BreadcrumbWithOverflow/index.js +8 -0
  28. package/es/components/ButtonMenu/ButtonMenu.js +108 -0
  29. package/es/components/ButtonMenu/ButtonMenuItem.js +30 -0
  30. package/es/components/ButtonMenu/index.js +8 -0
  31. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +231 -0
  32. package/es/components/ButtonSetWithOverflow/index.js +7 -0
  33. package/es/components/Card/Card.js +242 -0
  34. package/es/components/Card/CardFooter.js +72 -0
  35. package/es/components/Card/CardHeader.js +53 -0
  36. package/es/components/Card/index.js +9 -0
  37. package/es/components/Cascade/Cascade.js +88 -0
  38. package/es/components/Cascade/index.js +1 -0
  39. package/es/components/ComboButton/ComboButton.js +110 -0
  40. package/es/components/ComboButton/ComboButtonItem/index.js +39 -0
  41. package/es/components/ComboButton/index.js +8 -0
  42. package/es/components/CreateFullPage/CreateFullPage.js +454 -0
  43. package/es/components/CreateFullPage/CreateFullPageSection.js +53 -0
  44. package/es/components/CreateFullPage/CreateFullPageStep.js +112 -0
  45. package/es/components/CreateFullPage/constants.js +8 -0
  46. package/es/components/CreateFullPage/index.js +9 -0
  47. package/es/components/CreateInfluencer/CreateInfluencer.js +273 -0
  48. package/es/components/CreateInfluencer/index.js +7 -0
  49. package/es/components/CreateModal/CreateModal.js +152 -0
  50. package/es/components/CreateModal/index.js +8 -0
  51. package/es/components/CreateSidePanel/CreateSidePanel.js +175 -0
  52. package/es/components/CreateSidePanel/index.js +7 -0
  53. package/es/components/CreateTearsheet/CreateTearsheet.js +371 -0
  54. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +33 -0
  55. package/es/components/CreateTearsheet/CreateTearsheetSection.js +83 -0
  56. package/es/components/CreateTearsheet/CreateTearsheetStep.js +129 -0
  57. package/es/components/CreateTearsheet/constants.js +8 -0
  58. package/es/components/CreateTearsheet/index.js +10 -0
  59. package/es/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +244 -0
  60. package/es/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +295 -0
  61. package/es/components/CreateTearsheet/preview-components/MultiStepWithSectionsTearsheet.js +327 -0
  62. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +174 -0
  63. package/es/components/CreateTearsheetNarrow/index.js +7 -0
  64. package/es/components/EditSidePanel/EditSidePanel.js +209 -0
  65. package/es/components/EditSidePanel/index.js +7 -0
  66. package/es/components/EmptyStates/EmptyState.js +118 -0
  67. package/es/components/EmptyStates/EmptyStateContent.js +85 -0
  68. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +113 -0
  69. package/es/components/EmptyStates/ErrorEmptyState/index.js +7 -0
  70. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +113 -0
  71. package/es/components/EmptyStates/NoDataEmptyState/index.js +7 -0
  72. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +113 -0
  73. package/es/components/EmptyStates/NoTagsEmptyState/index.js +7 -0
  74. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +113 -0
  75. package/es/components/EmptyStates/NotFoundEmptyState/index.js +7 -0
  76. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +113 -0
  77. package/es/components/EmptyStates/NotificationsEmptyState/index.js +7 -0
  78. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +113 -0
  79. package/es/components/EmptyStates/UnauthorizedEmptyState/index.js +7 -0
  80. package/es/components/EmptyStates/assets/ErrorIllustration.js +217 -0
  81. package/es/components/EmptyStates/assets/NoDataIllustration.js +180 -0
  82. package/es/components/EmptyStates/assets/NoTagsIllustration.js +488 -0
  83. package/es/components/EmptyStates/assets/NotFoundIllustration.js +365 -0
  84. package/es/components/EmptyStates/assets/NotificationsIllustration.js +336 -0
  85. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +309 -0
  86. package/es/components/EmptyStates/index.js +13 -0
  87. package/es/components/ExampleComponent/ExampleComponent.js +160 -0
  88. package/es/components/ExampleComponent/index.js +7 -0
  89. package/es/components/ExportModal/ExportModal.js +276 -0
  90. package/es/components/ExportModal/index.js +7 -0
  91. package/es/components/ExpressiveCard/ExpressiveCard.js +138 -0
  92. package/es/components/ExpressiveCard/index.js +7 -0
  93. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +87 -0
  94. package/es/components/HTTPErrors/HTTPError403/index.js +7 -0
  95. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +87 -0
  96. package/es/components/HTTPErrors/HTTPError404/index.js +7 -0
  97. package/es/components/HTTPErrors/HTTPErrorContent.js +84 -0
  98. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +87 -0
  99. package/es/components/HTTPErrors/HTTPErrorOther/index.js +7 -0
  100. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1238 -0
  101. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1037 -0
  102. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1088 -0
  103. package/es/components/HTTPErrors/index.js +9 -0
  104. package/es/components/ImportModal/ImportModal.js +421 -0
  105. package/es/components/ImportModal/index.js +7 -0
  106. package/es/components/LoadingBar/LoadingBar.js +160 -0
  107. package/es/components/LoadingBar/index.js +7 -0
  108. package/es/components/ModifiedTabs/ModifiedTabLabelNew.js +34 -0
  109. package/es/components/ModifiedTabs/ModifiedTabLabelWithClose.js +54 -0
  110. package/es/components/ModifiedTabs/ModifiedTabs.js +113 -0
  111. package/es/components/ModifiedTabs/index.js +1 -0
  112. package/es/components/NotificationsPanel/NotificationsPanel.js +547 -0
  113. package/es/components/NotificationsPanel/NotificationsPanel_data.js +134 -0
  114. package/es/components/NotificationsPanel/index.js +7 -0
  115. package/es/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +49 -0
  116. package/es/components/NotificationsPanel/utils.js +56 -0
  117. package/es/components/OptionsTile/OptionsTile.js +306 -0
  118. package/es/components/OptionsTile/index.js +7 -0
  119. package/es/components/PageHeader/PageHeader.js +789 -0
  120. package/es/components/PageHeader/PageHeaderDemo.data.js +614 -0
  121. package/es/components/PageHeader/PageHeaderTitle.js +49 -0
  122. package/es/components/PageHeader/PageHeaderUtils.js +187 -0
  123. package/es/components/PageHeader/index.js +7 -0
  124. package/es/components/ProductiveCard/ProductiveCard.js +118 -0
  125. package/es/components/ProductiveCard/index.js +7 -0
  126. package/es/components/RemoveModal/RemoveModal.js +189 -0
  127. package/es/components/RemoveModal/index.js +7 -0
  128. package/es/components/Saving/Saving.js +156 -0
  129. package/es/components/Saving/index.js +7 -0
  130. package/es/components/SidePanel/SidePanel.js +643 -0
  131. package/es/components/SidePanel/constants.js +13 -0
  132. package/es/components/SidePanel/index.js +7 -0
  133. package/es/components/StatusIcon/StatusIcon.js +132 -0
  134. package/es/components/StatusIcon/index.js +7 -0
  135. package/es/components/TagSet/TagSet.js +326 -0
  136. package/es/components/TagSet/TagSetModal.js +118 -0
  137. package/es/components/TagSet/TagSetOverflow.js +121 -0
  138. package/es/components/TagSet/index.js +7 -0
  139. package/es/components/Tearsheet/Tearsheet.js +180 -0
  140. package/es/components/Tearsheet/TearsheetNarrow.js +148 -0
  141. package/es/components/Tearsheet/TearsheetShell.js +390 -0
  142. package/es/components/Tearsheet/index.js +8 -0
  143. package/es/components/Toolbar/Toolbar.js +54 -0
  144. package/es/components/Toolbar/ToolbarButton.js +57 -0
  145. package/es/components/Toolbar/ToolbarGroup.js +37 -0
  146. package/es/components/Toolbar/index.js +9 -0
  147. package/es/components/UserProfileImage/UserProfileImage.js +136 -0
  148. package/es/components/UserProfileImage/index.js +8 -0
  149. package/es/components/WebTerminal/WebTerminal.js +168 -0
  150. package/es/components/WebTerminal/index.js +1 -0
  151. package/es/components/WebTerminal/preview-components/Navigation.js +31 -0
  152. package/es/components/WebTerminal/preview-components/documentationLinks.js +25 -0
  153. package/es/components/WebTerminal/preview-components/index.js +5 -0
  154. package/es/components/_Canary/Canary.js +48 -0
  155. package/es/components/_Canary/index.js +7 -0
  156. package/es/components/index.js +37 -0
  157. package/es/generated/feature-flags/feature-flags.js +15 -0
  158. package/es/global/js/hooks/index.js +14 -0
  159. package/es/global/js/hooks/useClickOutside.js +21 -0
  160. package/es/global/js/hooks/useCreateComponentFocus.js +37 -0
  161. package/es/global/js/hooks/useCreateComponentStepChange.js +250 -0
  162. package/es/global/js/hooks/usePreviousValue.js +19 -0
  163. package/es/global/js/hooks/useResetCreateComponent.js +40 -0
  164. package/es/global/js/hooks/useValidCreateStepCount.js +23 -0
  165. package/es/global/js/hooks/useWindowResize.js +67 -0
  166. package/es/global/js/hooks/useWindowScroll.js +80 -0
  167. package/es/global/js/package-settings.js +161 -0
  168. package/es/global/js/utils/ClickListener.js +70 -0
  169. package/es/global/js/utils/Wrap.js +85 -0
  170. package/es/global/js/utils/devtools.js +20 -0
  171. package/es/global/js/utils/getFocusableElements.js +14 -0
  172. package/es/global/js/utils/hasValidType.js +94 -0
  173. package/es/global/js/utils/keyboardNavigation.js +34 -0
  174. package/es/global/js/utils/pconsole.js +36 -0
  175. package/es/global/js/utils/props-helper.js +272 -0
  176. package/es/global/js/utils/scrollableAncestor.js +40 -0
  177. package/es/global/js/utils/story-helper.js +75 -0
  178. package/es/global/js/utils/test-helper.js +296 -0
  179. package/es/global/js/utils/unwrap-if-fragment.js +71 -0
  180. package/es/global/js/utils/uuidv4.js +12 -0
  181. package/es/global/js/utils/uuidv4.spec.js +23 -0
  182. package/es/global/js/utils/wait.js +8 -0
  183. package/es/global/js/utils/wrapFocus.js +74 -0
  184. package/es/index.js +8 -0
  185. package/es/settings.js +73 -0
  186. package/lib/components/APIKeyModal/APIKeyDownloader.js +127 -0
  187. package/lib/components/APIKeyModal/APIKeyModal.js +619 -0
  188. package/lib/components/APIKeyModal/index.js +13 -0
  189. package/lib/components/AboutModal/AboutModal.js +222 -0
  190. package/lib/components/AboutModal/index.js +13 -0
  191. package/lib/components/ActionBar/ActionBar.js +294 -0
  192. package/lib/components/ActionBar/ActionBarItem.js +107 -0
  193. package/lib/components/ActionBar/ActionBarOverflowItems.js +94 -0
  194. package/lib/components/ActionBar/index.js +21 -0
  195. package/lib/components/ActionSet/ActionSet.js +205 -0
  196. package/lib/components/ActionSet/actions.js +60 -0
  197. package/lib/components/ActionSet/index.js +13 -0
  198. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +366 -0
  199. package/lib/components/BreadcrumbWithOverflow/index.js +13 -0
  200. package/lib/components/ButtonMenu/ButtonMenu.js +115 -0
  201. package/lib/components/ButtonMenu/ButtonMenuItem.js +44 -0
  202. package/lib/components/ButtonMenu/index.js +21 -0
  203. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +255 -0
  204. package/lib/components/ButtonSetWithOverflow/index.js +13 -0
  205. package/lib/components/Card/Card.js +260 -0
  206. package/lib/components/Card/CardFooter.js +90 -0
  207. package/lib/components/Card/CardHeader.js +70 -0
  208. package/lib/components/Card/index.js +29 -0
  209. package/lib/components/Cascade/Cascade.js +109 -0
  210. package/lib/components/Cascade/index.js +13 -0
  211. package/lib/components/ComboButton/ComboButton.js +129 -0
  212. package/lib/components/ComboButton/ComboButtonItem/index.js +49 -0
  213. package/lib/components/ComboButton/index.js +21 -0
  214. package/lib/components/CreateFullPage/CreateFullPage.js +478 -0
  215. package/lib/components/CreateFullPage/CreateFullPageSection.js +74 -0
  216. package/lib/components/CreateFullPage/CreateFullPageStep.js +134 -0
  217. package/lib/components/CreateFullPage/constants.js +16 -0
  218. package/lib/components/CreateFullPage/index.js +29 -0
  219. package/lib/components/CreateInfluencer/CreateInfluencer.js +304 -0
  220. package/lib/components/CreateInfluencer/index.js +13 -0
  221. package/lib/components/CreateModal/CreateModal.js +161 -0
  222. package/lib/components/CreateModal/index.js +13 -0
  223. package/lib/components/CreateSidePanel/CreateSidePanel.js +187 -0
  224. package/lib/components/CreateSidePanel/index.js +13 -0
  225. package/lib/components/CreateTearsheet/CreateTearsheet.js +397 -0
  226. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +48 -0
  227. package/lib/components/CreateTearsheet/CreateTearsheetSection.js +105 -0
  228. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +151 -0
  229. package/lib/components/CreateTearsheet/constants.js +17 -0
  230. package/lib/components/CreateTearsheet/index.js +37 -0
  231. package/lib/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +268 -0
  232. package/lib/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +320 -0
  233. package/lib/components/CreateTearsheet/preview-components/MultiStepWithSectionsTearsheet.js +354 -0
  234. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +184 -0
  235. package/lib/components/CreateTearsheetNarrow/index.js +13 -0
  236. package/lib/components/EditSidePanel/EditSidePanel.js +220 -0
  237. package/lib/components/EditSidePanel/index.js +13 -0
  238. package/lib/components/EmptyStates/EmptyState.js +134 -0
  239. package/lib/components/EmptyStates/EmptyStateContent.js +94 -0
  240. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +128 -0
  241. package/lib/components/EmptyStates/ErrorEmptyState/index.js +13 -0
  242. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +128 -0
  243. package/lib/components/EmptyStates/NoDataEmptyState/index.js +13 -0
  244. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +128 -0
  245. package/lib/components/EmptyStates/NoTagsEmptyState/index.js +13 -0
  246. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +128 -0
  247. package/lib/components/EmptyStates/NotFoundEmptyState/index.js +13 -0
  248. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +128 -0
  249. package/lib/components/EmptyStates/NotificationsEmptyState/index.js +13 -0
  250. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +128 -0
  251. package/lib/components/EmptyStates/UnauthorizedEmptyState/index.js +13 -0
  252. package/lib/components/EmptyStates/assets/ErrorIllustration.js +226 -0
  253. package/lib/components/EmptyStates/assets/NoDataIllustration.js +189 -0
  254. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +497 -0
  255. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +374 -0
  256. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +345 -0
  257. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +318 -0
  258. package/lib/components/EmptyStates/index.js +61 -0
  259. package/lib/components/ExampleComponent/ExampleComponent.js +169 -0
  260. package/lib/components/ExampleComponent/index.js +13 -0
  261. package/lib/components/ExportModal/ExportModal.js +298 -0
  262. package/lib/components/ExportModal/index.js +13 -0
  263. package/lib/components/ExpressiveCard/ExpressiveCard.js +161 -0
  264. package/lib/components/ExpressiveCard/index.js +13 -0
  265. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +98 -0
  266. package/lib/components/HTTPErrors/HTTPError403/index.js +13 -0
  267. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +98 -0
  268. package/lib/components/HTTPErrors/HTTPError404/index.js +13 -0
  269. package/lib/components/HTTPErrors/HTTPErrorContent.js +90 -0
  270. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +98 -0
  271. package/lib/components/HTTPErrors/HTTPErrorOther/index.js +13 -0
  272. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +1251 -0
  273. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +1050 -0
  274. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1101 -0
  275. package/lib/components/HTTPErrors/index.js +29 -0
  276. package/lib/components/ImportModal/ImportModal.js +443 -0
  277. package/lib/components/ImportModal/index.js +13 -0
  278. package/lib/components/LoadingBar/LoadingBar.js +174 -0
  279. package/lib/components/LoadingBar/index.js +13 -0
  280. package/lib/components/ModifiedTabs/ModifiedTabLabelNew.js +48 -0
  281. package/lib/components/ModifiedTabs/ModifiedTabLabelWithClose.js +68 -0
  282. package/lib/components/ModifiedTabs/ModifiedTabs.js +137 -0
  283. package/lib/components/ModifiedTabs/index.js +13 -0
  284. package/lib/components/NotificationsPanel/NotificationsPanel.js +569 -0
  285. package/lib/components/NotificationsPanel/NotificationsPanel_data.js +146 -0
  286. package/lib/components/NotificationsPanel/index.js +13 -0
  287. package/lib/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +58 -0
  288. package/lib/components/NotificationsPanel/utils.js +65 -0
  289. package/lib/components/OptionsTile/OptionsTile.js +327 -0
  290. package/lib/components/OptionsTile/index.js +13 -0
  291. package/lib/components/PageHeader/PageHeader.js +822 -0
  292. package/lib/components/PageHeader/PageHeaderDemo.data.js +623 -0
  293. package/lib/components/PageHeader/PageHeaderTitle.js +63 -0
  294. package/lib/components/PageHeader/PageHeaderUtils.js +205 -0
  295. package/lib/components/PageHeader/index.js +13 -0
  296. package/lib/components/ProductiveCard/ProductiveCard.js +141 -0
  297. package/lib/components/ProductiveCard/index.js +13 -0
  298. package/lib/components/RemoveModal/RemoveModal.js +210 -0
  299. package/lib/components/RemoveModal/index.js +13 -0
  300. package/lib/components/Saving/Saving.js +175 -0
  301. package/lib/components/Saving/index.js +13 -0
  302. package/lib/components/SidePanel/SidePanel.js +668 -0
  303. package/lib/components/SidePanel/constants.js +21 -0
  304. package/lib/components/SidePanel/index.js +13 -0
  305. package/lib/components/StatusIcon/StatusIcon.js +145 -0
  306. package/lib/components/StatusIcon/index.js +13 -0
  307. package/lib/components/TagSet/TagSet.js +352 -0
  308. package/lib/components/TagSet/TagSetModal.js +139 -0
  309. package/lib/components/TagSet/TagSetOverflow.js +147 -0
  310. package/lib/components/TagSet/index.js +13 -0
  311. package/lib/components/Tearsheet/Tearsheet.js +192 -0
  312. package/lib/components/Tearsheet/TearsheetNarrow.js +160 -0
  313. package/lib/components/Tearsheet/TearsheetShell.js +420 -0
  314. package/lib/components/Tearsheet/index.js +21 -0
  315. package/lib/components/Toolbar/Toolbar.js +72 -0
  316. package/lib/components/Toolbar/ToolbarButton.js +75 -0
  317. package/lib/components/Toolbar/ToolbarGroup.js +52 -0
  318. package/lib/components/Toolbar/index.js +29 -0
  319. package/lib/components/UserProfileImage/UserProfileImage.js +146 -0
  320. package/lib/components/UserProfileImage/index.js +13 -0
  321. package/lib/components/WebTerminal/WebTerminal.js +186 -0
  322. package/lib/components/WebTerminal/index.js +13 -0
  323. package/lib/components/WebTerminal/preview-components/Navigation.js +44 -0
  324. package/lib/components/WebTerminal/preview-components/documentationLinks.js +32 -0
  325. package/lib/components/WebTerminal/preview-components/index.js +15 -0
  326. package/lib/components/_Canary/Canary.js +54 -0
  327. package/lib/components/_Canary/index.js +13 -0
  328. package/lib/components/index.js +343 -0
  329. package/lib/generated/feature-flags/feature-flags.js +22 -0
  330. package/lib/global/js/hooks/index.js +75 -0
  331. package/lib/global/js/hooks/useClickOutside.js +31 -0
  332. package/lib/global/js/hooks/useCreateComponentFocus.js +48 -0
  333. package/lib/global/js/hooks/useCreateComponentStepChange.js +263 -0
  334. package/lib/global/js/hooks/usePreviousValue.js +29 -0
  335. package/lib/global/js/hooks/useResetCreateComponent.js +50 -0
  336. package/lib/global/js/hooks/useValidCreateStepCount.js +33 -0
  337. package/lib/global/js/hooks/useWindowResize.js +79 -0
  338. package/lib/global/js/hooks/useWindowScroll.js +91 -0
  339. package/lib/global/js/package-settings.js +166 -0
  340. package/lib/global/js/utils/ClickListener.js +89 -0
  341. package/lib/global/js/utils/Wrap.js +93 -0
  342. package/lib/global/js/utils/devtools.js +31 -0
  343. package/lib/global/js/utils/getFocusableElements.js +25 -0
  344. package/lib/global/js/utils/hasValidType.js +110 -0
  345. package/lib/global/js/utils/keyboardNavigation.js +45 -0
  346. package/lib/global/js/utils/pconsole.js +53 -0
  347. package/lib/global/js/utils/props-helper.js +304 -0
  348. package/lib/global/js/utils/scrollableAncestor.js +48 -0
  349. package/lib/global/js/utils/story-helper.js +100 -0
  350. package/lib/global/js/utils/test-helper.js +342 -0
  351. package/lib/global/js/utils/unwrap-if-fragment.js +82 -0
  352. package/lib/global/js/utils/uuidv4.js +20 -0
  353. package/lib/global/js/utils/uuidv4.spec.js +28 -0
  354. package/lib/global/js/utils/wait.js +16 -0
  355. package/lib/global/js/utils/wrapFocus.js +84 -0
  356. package/lib/index.js +30 -0
  357. package/lib/settings.js +92 -0
  358. package/package.json +5 -5
  359. package/scss/components/APIKeyModal/_api-key-modal.scss +63 -0
  360. package/scss/components/APIKeyModal/_index.scss +10 -0
  361. package/scss/components/APIKeyModal/_storybook-styles.scss +33 -0
  362. package/scss/components/AboutModal/_about-modal.scss +116 -0
  363. package/scss/components/AboutModal/_index.scss +8 -0
  364. package/scss/components/AboutModal/_storybook-styles.scss +15 -0
  365. package/scss/components/ActionBar/_action-bar.scss +67 -0
  366. package/scss/components/ActionBar/_index.scss +8 -0
  367. package/scss/components/ActionSet/_action-set.scss +114 -0
  368. package/scss/components/ActionSet/_index.scss +8 -0
  369. package/scss/components/ActionSet/_storybook-styles.scss +38 -0
  370. package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +86 -0
  371. package/scss/components/BreadcrumbWithOverflow/_index.scss +8 -0
  372. package/scss/components/ButtonMenu/_button-menu.scss +36 -0
  373. package/scss/components/ButtonMenu/_index.scss +8 -0
  374. package/scss/components/ButtonMenu/_storybook-styles.scss +6 -0
  375. package/scss/components/ButtonSetWithOverflow/_button-set-with-overflow.scss +52 -0
  376. package/scss/components/ButtonSetWithOverflow/_index.scss +8 -0
  377. package/scss/components/Card/_card.scss +121 -0
  378. package/scss/components/Card/_index.scss +10 -0
  379. package/scss/components/Card/_storybook-styles.scss +12 -0
  380. package/scss/components/Cascade/_cascade.scss +50 -0
  381. package/scss/components/Cascade/_index.scss +10 -0
  382. package/scss/components/Cascade/_storybook-styles.scss +32 -0
  383. package/scss/components/ComboButton/_combo-button.scss +64 -0
  384. package/scss/components/ComboButton/_index.scss +10 -0
  385. package/scss/components/CreateFullPage/_create-full-page.scss +187 -0
  386. package/scss/components/CreateFullPage/_index.scss +8 -0
  387. package/scss/components/CreateFullPage/_storybook-styles.scss +51 -0
  388. package/scss/components/CreateInfluencer/_create-influencer.scss +89 -0
  389. package/scss/components/CreateInfluencer/_index.scss +8 -0
  390. package/scss/components/CreateModal/_create-modal.scss +81 -0
  391. package/scss/components/CreateModal/_index.scss +8 -0
  392. package/scss/components/CreateModal/_storybook-styles.scss +50 -0
  393. package/scss/components/CreateSidePanel/_create-side-panel.scss +99 -0
  394. package/scss/components/CreateSidePanel/_index.scss +8 -0
  395. package/scss/components/CreateSidePanel/_storybook-styles.scss +27 -0
  396. package/scss/components/CreateTearsheet/_create-tearsheet.scss +136 -0
  397. package/scss/components/CreateTearsheet/_index.scss +8 -0
  398. package/scss/components/CreateTearsheet/_storybook-styles.scss +53 -0
  399. package/scss/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss +68 -0
  400. package/scss/components/CreateTearsheetNarrow/_index.scss +8 -0
  401. package/scss/components/CreateTearsheetNarrow/_storybook-styles.scss +32 -0
  402. package/scss/components/EditSidePanel/_edit-side-panel.scss +66 -0
  403. package/scss/components/EditSidePanel/_index.scss +8 -0
  404. package/scss/components/EditSidePanel/_storybook-styles.scss +35 -0
  405. package/scss/components/EmptyStates/_empty-state.scss +62 -0
  406. package/scss/components/EmptyStates/_index.scss +8 -0
  407. package/scss/components/EmptyStates/_storybook-styles.scss +6 -0
  408. package/scss/components/ExampleComponent/_example-component.scss +39 -0
  409. package/scss/components/ExampleComponent/_index.scss +8 -0
  410. package/scss/components/ExampleComponent/_storybook-styles.scss +6 -0
  411. package/scss/components/ExportModal/_export-modal.scss +61 -0
  412. package/scss/components/ExportModal/_index.scss +10 -0
  413. package/scss/components/ExportModal/_storybook-styles.scss +6 -0
  414. package/scss/components/ExpressiveCard/_expressive-card.scss +25 -0
  415. package/scss/components/ExpressiveCard/_index.scss +10 -0
  416. package/scss/components/ExpressiveCard/_storybook-styles.scss +25 -0
  417. package/scss/components/HTTPErrors/_http-errors.scss +72 -0
  418. package/scss/components/HTTPErrors/_index.scss +8 -0
  419. package/scss/components/HTTPErrors/_storybook-styles.scss +6 -0
  420. package/scss/components/ImportModal/_import-modal.scss +88 -0
  421. package/scss/components/ImportModal/_index.scss +8 -0
  422. package/scss/components/ImportModal/_storybook-styles.scss +6 -0
  423. package/scss/components/LoadingBar/_index.scss +8 -0
  424. package/scss/components/LoadingBar/_loading-bar.scss +211 -0
  425. package/scss/components/LoadingBar/_storybook-styles.scss +19 -0
  426. package/scss/components/ModifiedTabs/_index.scss +1 -0
  427. package/scss/components/ModifiedTabs/_modified-tabs.scss +72 -0
  428. package/scss/components/ModifiedTabs/_storybook-styles.scss +6 -0
  429. package/scss/components/NotificationsPanel/_index.scss +8 -0
  430. package/scss/components/NotificationsPanel/_notifications-panel.scss +285 -0
  431. package/scss/components/NotificationsPanel/_storybook-styles.scss +6 -0
  432. package/scss/components/OptionsTile/_index.scss +8 -0
  433. package/scss/components/OptionsTile/_options-tile.scss +221 -0
  434. package/scss/components/OptionsTile/_storybook-styles.scss +33 -0
  435. package/scss/components/PageHeader/_index.scss +10 -0
  436. package/scss/components/PageHeader/_page-header.scss +641 -0
  437. package/scss/components/PageHeader/_storybook-styles.scss +76 -0
  438. package/scss/components/ProductiveCard/_index.scss +10 -0
  439. package/scss/components/ProductiveCard/_productive-card.scss +71 -0
  440. package/scss/components/ProductiveCard/_storybook-styles.scss +22 -0
  441. package/scss/components/RemoveModal/_index.scss +10 -0
  442. package/scss/components/RemoveModal/_remove-modal.scss +40 -0
  443. package/scss/components/RemoveModal/_storybook-styles.scss +6 -0
  444. package/scss/components/Saving/_index.scss +10 -0
  445. package/scss/components/Saving/_saving.scss +42 -0
  446. package/scss/components/Saving/_storybook-styles.scss +12 -0
  447. package/scss/components/SidePanel/_index.scss +8 -0
  448. package/scss/components/SidePanel/_side-panel-variables.scss +14 -0
  449. package/scss/components/SidePanel/_side-panel.scss +496 -0
  450. package/scss/components/SidePanel/_storybook-styles.scss +38 -0
  451. package/scss/components/StatusIcon/_index.scss +8 -0
  452. package/scss/components/StatusIcon/_status-icon.scss +139 -0
  453. package/scss/components/StatusIcon/_storybook-styles.scss +6 -0
  454. package/scss/components/TagSet/_index.scss +8 -0
  455. package/scss/components/TagSet/_tag-set.scss +162 -0
  456. package/scss/components/Tearsheet/_index.scss +8 -0
  457. package/scss/components/Tearsheet/_storybook-styles.scss +24 -0
  458. package/scss/components/Tearsheet/_tearsheet.scss +308 -0
  459. package/scss/components/Toolbar/_index.scss +8 -0
  460. package/scss/components/Toolbar/_toolbar.scss +78 -0
  461. package/scss/components/UserProfileImage/_color-map.scss +39 -0
  462. package/scss/components/UserProfileImage/_index.scss +8 -0
  463. package/scss/components/UserProfileImage/_storybook.scss +6 -0
  464. package/scss/components/UserProfileImage/_user-profile-image.scss +137 -0
  465. package/scss/components/WebTerminal/_index.scss +1 -0
  466. package/scss/components/WebTerminal/_storybook-styles.scss +14 -0
  467. package/scss/components/WebTerminal/_web-terminal.scss +70 -0
  468. package/scss/components/_Canary/_canary.scss +9 -0
  469. package/scss/components/_index-released-only.scss +34 -0
  470. package/scss/components/_index.scss +44 -0
  471. package/scss/generated/feature-flags/_feature-flags.scss +19 -0
  472. package/scss/global/styles/_generate-carbon-modules.scss +14 -0
  473. package/scss/global/styles/_imported-carbon-modules.scss +25 -0
  474. package/scss/global/styles/_mixins.scss +22 -0
  475. package/scss/global/styles/_project-settings.scss +22 -0
  476. package/scss/index-full-carbon.scss +11 -0
  477. package/scss/index-without-carbon-released-only.scss +13 -0
  478. package/scss/index-without-carbon.scss +13 -0
  479. package/scss/index.scss +10 -0
@@ -0,0 +1,822 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _typeof = require("@babel/runtime/helpers/typeof");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports.deprecatedProps = exports.PageHeader = void 0;
11
+
12
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
+
14
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
15
+
16
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
17
+
18
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
19
+
20
+ var _react = _interopRequireWildcard(require("react"));
21
+
22
+ var _propTypes = _interopRequireDefault(require("prop-types"));
23
+
24
+ var _layout = require("@carbon/layout");
25
+
26
+ var _classnames = _interopRequireDefault(require("classnames"));
27
+
28
+ var _reactResizeDetector = require("react-resize-detector");
29
+
30
+ var _carbonComponentsReact = require("carbon-components-react");
31
+
32
+ var _hooks = require("../../global/js/hooks");
33
+
34
+ var _devtools = require("../../global/js/utils/devtools");
35
+
36
+ var _propsHelper = require("../../global/js/utils/props-helper");
37
+
38
+ var _settings = require("../../settings");
39
+
40
+ var _ActionBar = require("../ActionBar/");
41
+
42
+ var _BreadcrumbWithOverflow = require("../BreadcrumbWithOverflow");
43
+
44
+ var _TagSet = require("../TagSet/TagSet");
45
+
46
+ var _ButtonSetWithOverflow = require("../ButtonSetWithOverflow");
47
+
48
+ var _iconsReact = require("@carbon/icons-react");
49
+
50
+ var _PageHeaderUtils = require("./PageHeaderUtils");
51
+
52
+ var _PageHeaderTitle = require("./PageHeaderTitle");
53
+
54
+ var _excluded = ["actionBarItems", "actionBarMenuOptionsClass", "actionBarOverflowAriaLabel", "allTagsModalSearchLabel", "allTagsModalSearchPlaceholderText", "allTagsModalTitle", "hasBackgroundAlways", "breadcrumbOverflowAriaLabel", "breadcrumbs", "children", "className", "collapseHeader", "collapseHeaderIconDescription", "collapseTitle", "disableBreadcrumbScroll", "expandHeaderIconDescription", "fullWidthGrid", "hasCollapseHeaderToggle", "narrowGrid", "navigation", "pageActions", "pageActionsOverflowLabel", "pageActionsMenuOptionsClass", "showAllTagsLabel", "subtitle", "tags", "title", "withoutBackground"];
55
+
56
+ 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); }
57
+
58
+ 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; }
59
+
60
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
61
+
62
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
63
+
64
+ var componentName = 'PageHeader';
65
+
66
+ var PageHeader = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
67
+ var _withoutBackground, _ref5, _cx2, _ref6, _cx4, _cx7;
68
+
69
+ var actionBarItems = _ref.actionBarItems,
70
+ actionBarMenuOptionsClass = _ref.actionBarMenuOptionsClass,
71
+ actionBarOverflowAriaLabel = _ref.actionBarOverflowAriaLabel,
72
+ allTagsModalSearchLabel = _ref.allTagsModalSearchLabel,
73
+ allTagsModalSearchPlaceholderText = _ref.allTagsModalSearchPlaceholderText,
74
+ allTagsModalTitle = _ref.allTagsModalTitle,
75
+ deprecated_hasBackgroundAlways = _ref.hasBackgroundAlways,
76
+ breadcrumbOverflowAriaLabel = _ref.breadcrumbOverflowAriaLabel,
77
+ breadcrumbs = _ref.breadcrumbs,
78
+ children = _ref.children,
79
+ className = _ref.className,
80
+ collapseHeader = _ref.collapseHeader,
81
+ collapseHeaderIconDescription = _ref.collapseHeaderIconDescription,
82
+ collapseTitle = _ref.collapseTitle,
83
+ disableBreadcrumbScroll = _ref.disableBreadcrumbScroll,
84
+ expandHeaderIconDescription = _ref.expandHeaderIconDescription,
85
+ fullWidthGrid = _ref.fullWidthGrid,
86
+ hasCollapseHeaderToggle = _ref.hasCollapseHeaderToggle,
87
+ narrowGrid = _ref.narrowGrid,
88
+ navigation = _ref.navigation,
89
+ pageActions = _ref.pageActions,
90
+ pageActionsOverflowLabel = _ref.pageActionsOverflowLabel,
91
+ pageActionsMenuOptionsClass = _ref.pageActionsMenuOptionsClass,
92
+ showAllTagsLabel = _ref.showAllTagsLabel,
93
+ subtitle = _ref.subtitle,
94
+ tags = _ref.tags,
95
+ title = _ref.title,
96
+ withoutBackground = _ref.withoutBackground,
97
+ rest = (0, _objectWithoutProperties2.default)(_ref, _excluded);
98
+ // handle deprecated props - START
99
+ // if withoutBackground is null check deprecated_hasBackgroundAlways and default false
100
+ (_withoutBackground = withoutBackground) !== null && _withoutBackground !== void 0 ? _withoutBackground : withoutBackground = !(deprecated_hasBackgroundAlways !== null && deprecated_hasBackgroundAlways !== void 0 ? deprecated_hasBackgroundAlways : true); // handle deprecated props - END
101
+
102
+ var _useState = (0, _react.useState)({}),
103
+ _useState2 = (0, _slicedToArray2.default)(_useState, 2),
104
+ metrics = _useState2[0],
105
+ setMetrics = _useState2[1];
106
+
107
+ var _useState3 = (0, _react.useState)(_objectSpread({}, rest.style)),
108
+ _useState4 = (0, _slicedToArray2.default)(_useState3, 2),
109
+ pageHeaderStyles = _useState4[0],
110
+ setPageHeaderStyles = _useState4[1]; // refs
111
+
112
+
113
+ var localHeaderRef = (0, _react.useRef)(null);
114
+ var headerRef = ref || localHeaderRef;
115
+ var sizingContainerRef = (0, _react.useRef)();
116
+ var offsetTopMeasuringRef = (0, _react.useRef)(null); // utility functions
117
+
118
+ var checkUpdateVerticalSpace = function checkUpdateVerticalSpace() {
119
+ return (0, _PageHeaderUtils.utilCheckUpdateVerticalSpace)(headerRef, offsetTopMeasuringRef, navigation, disableBreadcrumbScroll, setMetrics);
120
+ }; // state based on props only
121
+
122
+
123
+ var hasActionBar = actionBarItems && actionBarItems.length > 0;
124
+ var hasBreadcrumbRow = breadcrumbs || actionBarItems; // NOTE: The buffer is used to add space between the bottom of the header and the last content
125
+ // Not pre-collapsed and (subtitle or children)
126
+
127
+ var lastRowBufferActive = (title || pageActions) && !collapseTitle || subtitle || children; // state based on scroll/resize based effects
128
+
129
+ var _useState5 = (0, _react.useState)(false),
130
+ _useState6 = (0, _slicedToArray2.default)(_useState5, 2),
131
+ pageActionsInBreadcrumbRow = _useState6[0],
132
+ setPageActionsInBreadcrumbRow = _useState6[1];
133
+
134
+ var _useState7 = (0, _react.useState)(0),
135
+ _useState8 = (0, _slicedToArray2.default)(_useState7, 2),
136
+ scrollYValue = _useState8[0],
137
+ setScrollYValue = _useState8[1];
138
+
139
+ var _useState9 = (0, _react.useState)(false),
140
+ _useState10 = (0, _slicedToArray2.default)(_useState9, 2),
141
+ hasCollapseButton = _useState10[0],
142
+ setHasCollapseButton = _useState10[1];
143
+
144
+ var _useState11 = (0, _react.useState)(false),
145
+ _useState12 = (0, _slicedToArray2.default)(_useState11, 2),
146
+ spaceForCollapseButton = _useState12[0],
147
+ setSpaceForCollapseButton = _useState12[1];
148
+
149
+ var _useState13 = (0, _react.useState)(0),
150
+ _useState14 = (0, _slicedToArray2.default)(_useState13, 2),
151
+ actionBarMaxWidth = _useState14[0],
152
+ setActionBarMaxWidth = _useState14[1];
153
+
154
+ var _useState15 = (0, _react.useState)(0),
155
+ _useState16 = (0, _slicedToArray2.default)(_useState15, 2),
156
+ actionBarMinWidth = _useState16[0],
157
+ setActionBarMinWidth = _useState16[1];
158
+
159
+ var _useState17 = (0, _react.useState)(0),
160
+ _useState18 = (0, _slicedToArray2.default)(_useState17, 2),
161
+ pageActionInBreadcrumbMaxWidth = _useState18[0],
162
+ setPageActionInBreadcrumbMaxWidth = _useState18[1];
163
+
164
+ var _useState19 = (0, _react.useState)(0),
165
+ _useState20 = (0, _slicedToArray2.default)(_useState19, 2),
166
+ pageActionInBreadcrumbMinWidth = _useState20[0],
167
+ setPageActionInBreadcrumbMinWidth = _useState20[1];
168
+
169
+ var _useState21 = (0, _react.useState)(0),
170
+ _useState22 = (0, _slicedToArray2.default)(_useState21, 2),
171
+ actionBarColumnWidth = _useState22[0],
172
+ setActionBarColumnWidth = _useState22[1];
173
+
174
+ var _useState23 = (0, _react.useState)(false),
175
+ _useState24 = (0, _slicedToArray2.default)(_useState23, 2),
176
+ fullyCollapsed = _useState24[0],
177
+ setFullyCollapsed = _useState24[1]; // handlers
178
+
179
+
180
+ var handleActionBarWidthChange = function handleActionBarWidthChange(_ref2) {
181
+ var minWidth = _ref2.minWidth,
182
+ maxWidth = _ref2.maxWidth;
183
+
184
+ /* don't know how to test resize */
185
+
186
+ /* istanbul ignore next */
187
+ setActionBarMaxWidth(maxWidth);
188
+ /* don't know how to test resize */
189
+
190
+ /* istanbul ignore next */
191
+
192
+ setActionBarMinWidth(minWidth);
193
+ };
194
+
195
+ var handlePageActionWidthChange = function handlePageActionWidthChange(_ref3) {
196
+ var minWidth = _ref3.minWidth,
197
+ maxWidth = _ref3.maxWidth;
198
+
199
+ /* don't know how to test resize */
200
+
201
+ /* istanbul ignore next */
202
+ setPageActionInBreadcrumbMaxWidth(maxWidth);
203
+ /* don't know how to test resize */
204
+
205
+ /* istanbul ignore next */
206
+
207
+ setPageActionInBreadcrumbMinWidth(minWidth);
208
+ };
209
+ /* istanbul ignore next */
210
+
211
+
212
+ var handleResizeActionBarColumn = function handleResizeActionBarColumn(width) {
213
+ /* don't know how to test resize */
214
+
215
+ /* istanbul ignore next */
216
+ setActionBarColumnWidth(width);
217
+ };
218
+ /* istanbul ignore next */
219
+
220
+
221
+ var handleResize = function handleResize() {
222
+ // receives width and height parameters if needed
223
+
224
+ /* don't know how to test resize */
225
+
226
+ /* istanbul ignore next */
227
+ checkUpdateVerticalSpace();
228
+ };
229
+
230
+ var handleCollapseToggle = function handleCollapseToggle() {
231
+ (0, _PageHeaderUtils.utilSetCollapsed)(!fullyCollapsed, metrics.headerOffset, metrics.headerTopValue);
232
+ }; // use effects
233
+
234
+
235
+ (0, _react.useEffect)(function () {
236
+ if (pageActions !== null && pageActions !== void 0 && pageActions.content) {
237
+ var minWidth = pageActions.minWidth,
238
+ maxWidth = pageActions.maxWidth;
239
+ handlePageActionWidthChange({
240
+ minWidth: minWidth,
241
+ maxWidth: maxWidth
242
+ });
243
+ }
244
+ }, [pageActions]);
245
+ (0, _react.useEffect)(function () {
246
+ // Determine the location of the pageAction buttons
247
+
248
+ /* istanbul ignore next */
249
+ setPageActionsInBreadcrumbRow(collapseTitle || scrollYValue > metrics.titleRowSpaceAbove && hasActionBar);
250
+ }, [hasActionBar, metrics.breadcrumbRowSpaceBelow, metrics.titleRowSpaceAbove, collapseTitle, scrollYValue]);
251
+ (0, _react.useEffect)(function () {
252
+ // Assesses the size of the action bar and page action area and their required
253
+ // space before setting their sizes
254
+ //
255
+ var newActionBarWidth = 'initial';
256
+ var newPageActionInBreadcrumbWidth = 'initial';
257
+ /* don't know how to test resize */
258
+
259
+ /* istanbul ignore if */
260
+
261
+ if (actionBarColumnWidth > 0) {
262
+ if (pageActionInBreadcrumbMaxWidth > 0 && actionBarColumnWidth > actionBarMaxWidth + pageActionInBreadcrumbMaxWidth) {
263
+ newPageActionInBreadcrumbWidth = "".concat(pageActionInBreadcrumbMaxWidth, "px");
264
+ } else if (pageActionInBreadcrumbMinWidth > 0) {
265
+ newPageActionInBreadcrumbWidth = "".concat(pageActionInBreadcrumbMinWidth, "px");
266
+ }
267
+
268
+ if (actionBarMaxWidth > 0 && actionBarColumnWidth > pageActionInBreadcrumbMinWidth + actionBarMaxWidth) {
269
+ newActionBarWidth = "".concat(actionBarMaxWidth, "px");
270
+ } else {
271
+ if (actionBarMinWidth > 0) {
272
+ newActionBarWidth = "".concat(actionBarColumnWidth - pageActionInBreadcrumbMinWidth, "px");
273
+ }
274
+ }
275
+ }
276
+
277
+ setPageHeaderStyles(function (prev) {
278
+ var _objectSpread2;
279
+
280
+ return _objectSpread(_objectSpread({}, prev), {}, (_objectSpread2 = {}, (0, _defineProperty2.default)(_objectSpread2, "--".concat(_PageHeaderUtils.blockClass, "--max-action-bar-width-px"), newActionBarWidth), (0, _defineProperty2.default)(_objectSpread2, "--".concat(_PageHeaderUtils.blockClass, "--button-set-in-breadcrumb-width-px"), "".concat(newPageActionInBreadcrumbWidth)), _objectSpread2));
281
+ });
282
+ }, [actionBarColumnWidth, actionBarMaxWidth, actionBarMinWidth, pageActionInBreadcrumbMaxWidth, pageActionInBreadcrumbMinWidth, headerRef]);
283
+ (0, _react.useEffect)(function () {
284
+ // Updates custom CSS props used to manage scroll behavior
285
+
286
+ /* istanbul ignore next */
287
+ setPageHeaderStyles(function (prev) {
288
+ var _objectSpread3;
289
+
290
+ return _objectSpread(_objectSpread({}, prev), {}, (_objectSpread3 = {}, (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--height-px"), "".concat(metrics.headerHeight, "px")), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--width-px"), "".concat(metrics.headerWidth, "px")), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--header-top"), "".concat(metrics.headerTopValue + metrics.headerOffset, "px")), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--breadcrumb-title-visibility"), scrollYValue > 0 ? 'visible' : 'hidden'), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--scroll"), "".concat(scrollYValue)), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--breadcrumb-title-top"), "".concat(Math.max(0, metrics.breadcrumbTitleHeight + metrics.titleRowSpaceAbove - scrollYValue), "px")), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--breadcrumb-title-opacity"), "".concat(Math.min(1, Math.max(0, (scrollYValue - (metrics.titleRowSpaceAbove || 0)) / (metrics.breadcrumbTitleHeight || 1) // don't want to divide by zero
291
+ )))), (0, _defineProperty2.default)(_objectSpread3, "--".concat(_PageHeaderUtils.blockClass, "--breadcrumb-row-width-px"), "".concat(metrics.breadcrumbRowWidth, "px")), _objectSpread3));
292
+ });
293
+ }, [headerRef, disableBreadcrumbScroll, metrics, metrics.breadcrumbRowHeight, metrics.breadcrumbRowSpaceBelow, metrics.breadcrumbTitleHeight, metrics.breadcrumbRowWidth, metrics.headerHeight, metrics.headerWidth, metrics.headerOffset, metrics.headerTopValue, metrics.navigationRowHeight, navigation, scrollYValue, tags]);
294
+ (0, _hooks.useNearestScroll)(headerRef, // on scroll or various layout changes check updates if needed
295
+ function (_ref4) {
296
+ var current = _ref4.current;
297
+ setPageHeaderStyles(function (prev) {
298
+ return _objectSpread(_objectSpread({}, prev), {}, (0, _defineProperty2.default)({}, "--".concat(_PageHeaderUtils.blockClass, "--breadcrumb-top"), "".concat(metrics.headerOffset, "px")));
299
+ });
300
+ var fullyCollapsed = current.scrollY + metrics.headerTopValue + metrics.headerOffset >= 0;
301
+ setFullyCollapsed(fullyCollapsed); // set offset for tagset tooltip
302
+
303
+ /* istanbul ignore next */
304
+
305
+ var tagsetTooltipOffset = fullyCollapsed ? metrics.headerHeight + metrics.headerTopValue + metrics.headerOffset : metrics.headerHeight + metrics.headerOffset;
306
+ /* istanbul ignore next */
307
+
308
+ document.documentElement.style.setProperty("--".concat(_PageHeaderUtils.blockClass, "--tagset-tooltip-position"), fullyCollapsed ? 'fixed' : 'absolute');
309
+ document.documentElement.style.setProperty("--".concat(_PageHeaderUtils.blockClass, "--tagset-tooltip-offset"), "".concat(tagsetTooltipOffset, "px"));
310
+ setScrollYValue(current.scrollY);
311
+ }, [metrics.headerHeight, metrics.headerTopValue, metrics.headerOffset, disableBreadcrumbScroll]);
312
+ (0, _hooks.useWindowResize)(function () {
313
+ // on window resize and other updates some values may have changed
314
+ checkUpdateVerticalSpace();
315
+ }, [actionBarItems, children, breadcrumbs, disableBreadcrumbScroll, navigation, pageActions, subtitle, tags, title]);
316
+ (0, _react.useEffect)(function () {
317
+ checkUpdateVerticalSpace(); // eslint-disable-next-line react-hooks/exhaustive-deps
318
+ }, [fullWidthGrid, narrowGrid]);
319
+ (0, _react.useEffect)(function () {
320
+ // Determines the appropriate header background opacity based on the header config/height/scroll and the withoutBackground setting
321
+ var result = withoutBackground ? 0 : 1;
322
+
323
+ if (!result && metrics.headerHeight > 0 && (breadcrumbs || actionBarItems || tags || navigation)) {
324
+ var startAddingAt = parseFloat(_layout.layout05, 10) * parseInt(_layout.baseFontSize);
325
+ var scrollRemaining = metrics.headerHeight - scrollYValue;
326
+ /* don't know how to test resize */
327
+
328
+ /* istanbul ignore if */
329
+
330
+ if (scrollRemaining < startAddingAt) {
331
+ var distanceAddingOver = startAddingAt - metrics.breadcrumbRowHeight;
332
+ result = Math.min(1, (startAddingAt - scrollRemaining) / distanceAddingOver);
333
+ }
334
+ }
335
+
336
+ setPageHeaderStyles(function (prev) {
337
+ return _objectSpread(_objectSpread({}, prev), {}, (0, _defineProperty2.default)({}, "--".concat(_PageHeaderUtils.blockClass, "--background-opacity"), result));
338
+ });
339
+ }, [actionBarItems, withoutBackground, breadcrumbs, headerRef, metrics.breadcrumbRowHeight, metrics.headerHeight, navigation, scrollYValue, hasCollapseHeaderToggle, tags]);
340
+ (0, _react.useEffect)(function () {
341
+ // only has toggle if requested and withoutBackground is unset/falsy
342
+ // NOTE: prop-types isRequired.if for the expand and collapse
343
+ // icon descriptions depends on the this.
344
+ setHasCollapseButton(hasCollapseHeaderToggle && !withoutBackground);
345
+ }, [withoutBackground, hasCollapseHeaderToggle]);
346
+ (0, _react.useEffect)(function () {
347
+ // Determine if space is needed in the breadcrumb for a collapse button
348
+ setSpaceForCollapseButton(hasCollapseButton && !(navigation || tags) && metrics.headerHeight);
349
+ }, [hasCollapseButton, navigation, tags, metrics.headerHeight]);
350
+
351
+ var nextToTabsCheck = function nextToTabsCheck() {
352
+ /* istanbul ignore next */
353
+ return disableBreadcrumbScroll && !actionBarItems && scrollYValue + metrics.headerTopValue >= 0;
354
+ };
355
+
356
+ (0, _react.useEffect)(function () {
357
+ if (typeof collapseHeader === 'boolean') {
358
+ (0, _PageHeaderUtils.utilSetCollapsed)(collapseHeader, metrics.headerOffset, metrics.headerTopValue);
359
+ }
360
+ }, [collapseHeader, metrics.headerOffset, metrics.headerTopValue]);
361
+ (0, _reactResizeDetector.useResizeDetector)({
362
+ onResize: handleResizeActionBarColumn,
363
+ targetRef: sizingContainerRef,
364
+ handleWidth: true
365
+ });
366
+ (0, _reactResizeDetector.useResizeDetector)({
367
+ onResize: handleResize,
368
+ targetRef: headerRef,
369
+ handleHeight: true
370
+ }); // Determine what form of title to display in the breadcrumb
371
+
372
+ var breadcrumbItemForTitle = (0, _PageHeaderUtils.utilGetBreadcrumbItemForTitle)(_PageHeaderUtils.blockClass, collapseTitle, title);
373
+ return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("div", {
374
+ className: "".concat(_PageHeaderUtils.blockClass, "--offset-top-measuring-element"),
375
+ ref: offsetTopMeasuringRef
376
+ }), /*#__PURE__*/_react.default.createElement("section", (0, _extends2.default)({}, rest, {
377
+ className: (0, _classnames.default)([_PageHeaderUtils.blockClass, "".concat(_PageHeaderUtils.blockClass, "--no-margins-below-row"), className, (_ref5 = {}, (0, _defineProperty2.default)(_ref5, "".concat(_PageHeaderUtils.blockClass, "--has-navigation"), navigation || tags), (0, _defineProperty2.default)(_ref5, "".concat(_PageHeaderUtils.blockClass, "--has-navigation-tags-only"), !navigation && tags), _ref5)]),
378
+ style: pageHeaderStyles,
379
+ ref: headerRef
380
+ }, (0, _devtools.getDevtoolsProps)(componentName)), /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Grid, {
381
+ fullWidth: fullWidthGrid === true || fullWidthGrid === 'xl',
382
+ narrow: narrowGrid,
383
+ className: (0, _classnames.default)((0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "--width--xl"), fullWidthGrid === 'xl'))
384
+ }, /*#__PURE__*/_react.default.createElement("div", {
385
+ className: "".concat(_PageHeaderUtils.blockClass, "__non-navigation-row-content")
386
+ }, hasBreadcrumbRow ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Row, {
387
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__breadcrumb-row"), (_cx2 = {}, (0, _defineProperty2.default)(_cx2, "".concat(_PageHeaderUtils.blockClass, "__breadcrumb-row--next-to-tabs"), nextToTabsCheck()), (0, _defineProperty2.default)(_cx2, "".concat(_PageHeaderUtils.blockClass, "__breadcrumb-row--has-breadcrumbs"), breadcrumbs), (0, _defineProperty2.default)(_cx2, "".concat(_PageHeaderUtils.blockClass, "__breadcrumb-row--has-action-bar"), hasActionBar), (0, _defineProperty2.default)(_cx2, "".concat(_PageHeaderUtils.blockClass, "__has-page-actions-without-action-bar"), !hasActionBar && pageActions), _cx2))
388
+ }, /*#__PURE__*/_react.default.createElement("div", {
389
+ className: "".concat(_PageHeaderUtils.blockClass, "__breadcrumb-row--container")
390
+ }, /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
391
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__breadcrumb-column"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__breadcrumb-column--background"), !!breadcrumbs || hasActionBar))
392
+ }, breadcrumbs ? /*#__PURE__*/_react.default.createElement(_BreadcrumbWithOverflow.BreadcrumbWithOverflow, {
393
+ className: "".concat(_PageHeaderUtils.blockClass, "__breadcrumb"),
394
+ noTrailingSlash: !!title,
395
+ overflowAriaLabel: breadcrumbOverflowAriaLabel,
396
+ breadcrumbs: breadcrumbs ? breadcrumbItemForTitle ? breadcrumbs.concat(breadcrumbItemForTitle) : breadcrumbs : null
397
+ }) : null), /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
398
+ className: (0, _classnames.default)(["".concat(_PageHeaderUtils.blockClass, "__action-bar-column ").concat(_PageHeaderUtils.blockClass, "__action-bar-column--background"), (_ref6 = {}, (0, _defineProperty2.default)(_ref6, "".concat(_PageHeaderUtils.blockClass, "__action-bar-column--has-page-actions"), pageActions), (0, _defineProperty2.default)(_ref6, "".concat(_PageHeaderUtils.blockClass, "__action-bar-column--influenced-by-collapse-button"), spaceForCollapseButton), _ref6)])
399
+ }, /*#__PURE__*/_react.default.createElement("div", {
400
+ className: "".concat(_PageHeaderUtils.blockClass, "__action-bar-column-content"),
401
+ ref: sizingContainerRef
402
+ }, hasActionBar ?
403
+ /*#__PURE__*/
404
+ // Investigate the responsive behavior or this and the title also fix the ActionBar Item and PageAction story css
405
+ _react.default.createElement(_react.default.Fragment, null, thePageActions(true, pageActionsInBreadcrumbRow), /*#__PURE__*/_react.default.createElement(_ActionBar.ActionBar, {
406
+ menuOptionsClass: (0, _classnames.default)(actionBarMenuOptionsClass, "".concat(_PageHeaderUtils.blockClass, "__action-bar-menu-options")),
407
+ overflowAriaLabel: actionBarOverflowAriaLabel,
408
+ actions: actionBarItems,
409
+ className: "".concat(_PageHeaderUtils.blockClass, "__action-bar"),
410
+ onWidthChange: handleActionBarWidthChange,
411
+ rightAlign: true
412
+ })) : null)))) : null, !collapseTitle && (title || pageActions) ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Row, {
413
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__title-row"), (_cx4 = {}, (0, _defineProperty2.default)(_cx4, "".concat(_PageHeaderUtils.blockClass, "__title-row--no-breadcrumb-row"), !hasBreadcrumbRow), (0, _defineProperty2.default)(_cx4, "".concat(_PageHeaderUtils.blockClass, "__title-row--under-action-bar"), hasActionBar), (0, _defineProperty2.default)(_cx4, "".concat(_PageHeaderUtils.blockClass, "__title-row--has-page-actions"), !!pageActions), (0, _defineProperty2.default)(_cx4, "".concat(_PageHeaderUtils.blockClass, "__title-row--sticky"), !!pageActions && !actionBarItems && hasBreadcrumbRow), _cx4))
414
+ }, /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
415
+ className: "".concat(_PageHeaderUtils.blockClass, "__title-column")
416
+ }, title ? /*#__PURE__*/_react.default.createElement(_PageHeaderTitle.PageHeaderTitle, {
417
+ blockClass: _PageHeaderUtils.blockClass,
418
+ hasBreadcrumbRow: hasBreadcrumbRow,
419
+ title: title
420
+ }) : null), thePageActions(false, pageActionsInBreadcrumbRow)) : null, subtitle ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Row, {
421
+ className: "".concat(_PageHeaderUtils.blockClass, "__subtitle-row")
422
+ }, /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
423
+ className: "".concat(_PageHeaderUtils.blockClass, "__subtitle")
424
+ }, subtitle)) : null, children ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Row, {
425
+ className: "".concat(_PageHeaderUtils.blockClass, "__available-row")
426
+ }, /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
427
+ className: "".concat(_PageHeaderUtils.blockClass, "__available-column")
428
+ }, children)) : null, (breadcrumbs || actionBarItems || title || pageActions || children || subtitle) && /*#__PURE__*/_react.default.createElement("div", {
429
+ className: (0, _classnames.default)(["".concat(_PageHeaderUtils.blockClass, "__last-row-buffer"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__last-row-buffer--active"), lastRowBufferActive)])
430
+ }), // this navigation row scrolls under the breadcrumb if there is one
431
+ tags && !navigation ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Row, {
432
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__navigation-row"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__navigation-row--has-tags"), tags))
433
+ }, /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
434
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__navigation-tags"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__navigation-tags--tags-only"), !navigation))
435
+ }, /*#__PURE__*/_react.default.createElement(_TagSet.TagSet, {
436
+ overflowAlign: "start",
437
+ allTagsModalSearchLabel: allTagsModalSearchLabel,
438
+ allTagsModalSearchPlaceholderText: allTagsModalSearchPlaceholderText,
439
+ allTagsModalTitle: allTagsModalTitle,
440
+ showAllTagsLabel: showAllTagsLabel,
441
+ tags: tags,
442
+ overflowClassName: "".concat(_PageHeaderUtils.blockClass, "__navigation-tags-overflow")
443
+ }))) : null), // this navigation pushes the breadcrumb off or settles underneath it depending on disableBreadcrumbScroll
444
+ navigation ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Row, {
445
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__navigation-row"), (_cx7 = {}, (0, _defineProperty2.default)(_cx7, "".concat(_PageHeaderUtils.blockClass, "__navigation-row--spacing-above-06"), !!navigation), (0, _defineProperty2.default)(_cx7, "".concat(_PageHeaderUtils.blockClass, "__navigation-row--has-tags"), tags), _cx7))
446
+ }, /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
447
+ className: "".concat(_PageHeaderUtils.blockClass, "__navigation-tabs")
448
+ }, navigation), tags ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Column, {
449
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__navigation-tags"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__navigation-tags--tags-only"), !navigation))
450
+ }, /*#__PURE__*/_react.default.createElement(_TagSet.TagSet, {
451
+ overflowAlign: "end",
452
+ allTagsModalSearchLabel: allTagsModalSearchLabel,
453
+ allTagsModalSearchPlaceholderText: allTagsModalSearchPlaceholderText,
454
+ allTagsModalTitle: allTagsModalTitle,
455
+ showAllTagsLabel: showAllTagsLabel,
456
+ tags: tags,
457
+ overflowClassName: "".concat(_PageHeaderUtils.blockClass, "__navigation-tags-overflow")
458
+ })) : null) : null), hasCollapseButton ? /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Button, {
459
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__collapse-expand-toggle"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__collapse-expand-toggle--collapsed"), fullyCollapsed)),
460
+ hasIconOnly: true,
461
+ iconDescription:
462
+ /* istanbul ignore next */
463
+ fullyCollapsed ? expandHeaderIconDescription : collapseHeaderIconDescription,
464
+ kind: "ghost",
465
+ onClick: handleCollapseToggle,
466
+ renderIcon: _iconsReact.ChevronUp16,
467
+ size: "field",
468
+ tooltipPosition: "bottom",
469
+ tooltipAlignment: "end",
470
+ type: "button"
471
+ }) : null));
472
+
473
+ function thePageActions(isBreadcrumbRow, inBreadcrumbRow) {
474
+ if (pageActions) {
475
+ var _pageActions$content;
476
+
477
+ var _Tag = isBreadcrumbRow ? 'div' : _carbonComponentsReact.Column; // Only report size change of version action bar is rendered as part of the breadcrumb row.
478
+ // and when there is an actionBar
479
+
480
+
481
+ var handleWidthChange = isBreadcrumbRow && hasBreadcrumbRow ? handlePageActionWidthChange : function () {};
482
+ return /*#__PURE__*/_react.default.createElement(_Tag, {
483
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__page-actions"), (0, _defineProperty2.default)({}, "".concat(_PageHeaderUtils.blockClass, "__page-actions--in-breadcrumb"), inBreadcrumbRow))
484
+ }, /*#__PURE__*/_react.default.createElement("div", {
485
+ className: (0, _classnames.default)("".concat(_PageHeaderUtils.blockClass, "__page-actions-content"))
486
+ }, (_pageActions$content = pageActions.content) !== null && _pageActions$content !== void 0 ? _pageActions$content : /*#__PURE__*/_react.default.createElement(_ButtonSetWithOverflow.ButtonSetWithOverflow, {
487
+ classname: "".concat(_PageHeaderUtils.blockClass, "__button-set-with-overflow"),
488
+ menuOptionsClass: (0, _classnames.default)(pageActionsMenuOptionsClass, "".concat(_PageHeaderUtils.blockClass, "__button-set-menu-options")),
489
+ onWidthChange: handleWidthChange,
490
+ buttons: pageActions,
491
+ buttonSetOverflowLabel: pageActionsOverflowLabel,
492
+ rightAlign: true
493
+ })));
494
+ }
495
+ }
496
+ }); // Return a placeholder if not released and not enabled by feature flag
497
+
498
+
499
+ exports.PageHeader = PageHeader;
500
+ exports.PageHeader = PageHeader = _settings.pkg.checkComponentEnabled(PageHeader, componentName); // copied from carbon-components-react/src/components/Tag/Tag.js for DocGen
501
+
502
+ var TYPES = {
503
+ red: 'Red',
504
+ magenta: 'Magenta',
505
+ purple: 'Purple',
506
+ blue: 'Blue',
507
+ cyan: 'Cyan',
508
+ teal: 'Teal',
509
+ green: 'Green',
510
+ gray: 'Gray',
511
+ 'cool-gray': 'Cool-Gray',
512
+ 'warm-gray': 'Warm-Gray',
513
+ 'high-contrast': 'High-Contrast'
514
+ };
515
+ var tagTypes = Object.keys(TYPES);
516
+ var deprecatedProps = {
517
+ /**
518
+ * **Deprecated** see property `withoutBackground`
519
+ */
520
+ hasBackgroundAlways: (0, _propsHelper.deprecateProp)(_propTypes.default.bool, 'Property replaced by `withoutBackground`')
521
+ };
522
+ exports.deprecatedProps = deprecatedProps;
523
+ PageHeader.propTypes = _objectSpread({
524
+ /**
525
+ * Specifies the action bar items which are the final items in the row top of the PageHeader.
526
+ * Each item is specified as an object with the properties of a Carbon Button in icon only form.
527
+ * Button kind, size, tooltipPosition, tooltipAlignment and type are ignored.
528
+ */
529
+ actionBarItems: _propTypes.default.arrayOf(_propTypes.default.shape(_objectSpread(_objectSpread({}, (0, _propsHelper.prepareProps)(_carbonComponentsReact.Button.propTypes, ['kind', 'size', 'tooltipPosition', 'tooltipAlignment'])), {}, {
530
+ iconDescription: _propTypes.default.string.isRequired,
531
+ onClick: _carbonComponentsReact.Button.propTypes.onClick,
532
+ renderIcon: _carbonComponentsReact.Button.propTypes.renderIcon.isRequired
533
+ }))),
534
+
535
+ /**
536
+ * class name applied to the action bar overflow options
537
+ */
538
+ actionBarMenuOptionsClass: _propTypes.default.string,
539
+
540
+ /**
541
+ * When there is insufficient space for all actionBarItems to be displayed this
542
+ * aria label is used for the action bar overflow menu
543
+ *
544
+ * NOTE: This prop is required if actionBarItems are supplied
545
+ */
546
+ actionBarOverflowAriaLabel: _propTypes.default.string.isRequired.if(function (_ref8) {
547
+ var actionBarItems = _ref8.actionBarItems;
548
+ return actionBarItems && actionBarItems.length > 0;
549
+ }),
550
+
551
+ /**
552
+ * When tags are supplied there may not be sufficient space to display all of the tags. This results in an overflow
553
+ * menu being shown. If in the overflow menu there is still insufficient space this label is used in a dialog showing
554
+ * all tags.
555
+ *
556
+ * **Note: Required if more than 10 tags**
557
+ */
558
+ allTagsModalSearchLabel: _TagSet.string_required_if_more_than_10_tags,
559
+
560
+ /**
561
+ * When tags are supplied there may not be sufficient space to display all of the tags. This results in an overflow
562
+ * menu being shown. If in the overflow menu there is still insufficient space this placeholder is used in a dialog
563
+ * showing all tags.
564
+ *
565
+ * **Note: Required if more than 10 tags**
566
+ */
567
+ allTagsModalSearchPlaceholderText: _TagSet.string_required_if_more_than_10_tags,
568
+
569
+ /**
570
+ * When tags are supplied there may not be sufficient space to display all of the tags. This results in an overflow
571
+ * menu being shown. If in the overflow menu there is still insufficient space this title is used in a dialog showing
572
+ * all tags.
573
+ *
574
+ * **Note: Required if more than 10 tags**
575
+ */
576
+ allTagsModalTitle: _TagSet.string_required_if_more_than_10_tags,
577
+
578
+ /**
579
+ * If the user supplies breadcrumbs then this property is required.
580
+ * It is used in an overflow menu when there is insufficient space to display all breadcrumbs inline.
581
+ */
582
+ breadcrumbOverflowAriaLabel: _propTypes.default.string.isRequired.if(function (_ref9) {
583
+ var breadcrumbs = _ref9.breadcrumbs;
584
+ return breadcrumbs && breadcrumbs.length > 0;
585
+ }),
586
+
587
+ /**
588
+ * Specifies the breadcrumb components to be shown in the breadcrumb area of
589
+ * the page header. Each item is specified as an object with optional fields
590
+ * 'label' to supply the breadcrumb label, 'href' to supply the link location,
591
+ * and 'isCurrentPage' to specify whether this breadcrumb component represents
592
+ * the current page. Each item should also include a unique 'key' field to
593
+ * enable efficient rendering, and if the label is not a string then a 'title'
594
+ * field is required to provide a text alternative for display. Any other
595
+ * fields in the object will be passed through to the breadcrumb element as
596
+ * HTML attributes.
597
+ */
598
+ breadcrumbs: _propTypes.default.arrayOf(_propTypes.default.shape({
599
+ /**
600
+ * Optional string representing the link location for the BreadcrumbItem
601
+ */
602
+ href: _propTypes.default.string,
603
+
604
+ /**
605
+ * Provide if this breadcrumb item represents the current page
606
+ */
607
+ isCurrentPage: _propTypes.default.bool,
608
+
609
+ /**
610
+ * Key required to render array efficiently
611
+ */
612
+ key: _propTypes.default.string.isRequired,
613
+
614
+ /**
615
+ * Pass in content that will be inside of the BreadcrumbItem
616
+ */
617
+ label: _propTypes.default.node,
618
+
619
+ /**
620
+ * A text version of the `label` for display, required if `label` is not a string.
621
+ */
622
+ title: _propTypes.default.string.isRequired.if(function (_ref10) {
623
+ var label = _ref10.label;
624
+ return typeof label !== 'string';
625
+ })
626
+ })),
627
+
628
+ /**
629
+ * A zone for placing high-level, client content above the page tabs.
630
+ * Accepts arbitrary renderable content as a React node. Optional.
631
+ */
632
+ children: _propTypes.default.node,
633
+
634
+ /**
635
+ * Specifies class(es) to be applied to the top-level PageHeader node.
636
+ * Optional.
637
+ */
638
+ className: _propTypes.default.string,
639
+
640
+ /**
641
+ * The header can as a whole be collapsed, expanded or somewhere in between.
642
+ * This setting controls the initial value, but also takes effect on change
643
+ *
644
+ * NOTE: The header is collapsed by setting the scroll position to hide part of the header.
645
+ * Collapsing has no effect if there is insufficient content to scroll.
646
+ */
647
+ collapseHeader: _propTypes.default.bool,
648
+
649
+ /**
650
+ * If `hasCollapseHeaderToggle` is set and `withoutBackground` is unset/falsy then assistive text is
651
+ * required for both the expend and collapse states of the button component used.
652
+ */
653
+ collapseHeaderIconDescription: _propTypes.default.string.isRequired.if(function (_ref11) {
654
+ var withoutBackground = _ref11.withoutBackground,
655
+ hasCollapseHeaderToggle = _ref11.hasCollapseHeaderToggle;
656
+ return !withoutBackground && hasCollapseHeaderToggle;
657
+ }),
658
+
659
+ /**
660
+ * The title row typically starts below the breadcrumb row. This option
661
+ * preCollapses it into the breadcrumb row.
662
+ */
663
+ collapseTitle: _propTypes.default.bool,
664
+
665
+ /**
666
+ * Standard behavior scrolls the breadcrumb off to leave just tabs. This
667
+ * option preserves vertical space for both the breadcrumb and tabs if they're supplied.
668
+ */
669
+ disableBreadcrumbScroll: _propTypes.default.bool,
670
+
671
+ /**
672
+ * If `hasCollapseHeaderToggle` is set and `withoutBackground` is unset/falsy then assistive text is
673
+ * required for both the expend and collapse states of the button component used.
674
+ */
675
+ expandHeaderIconDescription: _propTypes.default.string.isRequired.if(function (_ref12) {
676
+ var withoutBackground = _ref12.withoutBackground,
677
+ hasCollapseHeaderToggle = _ref12.hasCollapseHeaderToggle;
678
+ return !withoutBackground && hasCollapseHeaderToggle;
679
+ }),
680
+
681
+ /**
682
+ * The PageHeader is hosted in a Carbon grid, this value is passed through to the Carbon grid fullWidth prop.
683
+ * 'xl' is used to override the grid width setting. Can be used with narrowGrid: true to get the largest size.
684
+ */
685
+ fullWidthGrid: _propTypes.default.oneOfType([_propTypes.default.bool, _propTypes.default.oneOf(['xl'])]),
686
+
687
+ /**
688
+ * Adds a button as the last element of the bottom row which collapses and expands the header.
689
+ *
690
+ * NOTE: The header is collapsed by setting the scroll position to hide part of the header.
691
+ * Collapsing has no effect if there is insufficient content to scroll.
692
+ */
693
+ hasCollapseHeaderToggle: _propTypes.default.bool,
694
+
695
+ /**
696
+ * The PageHeader is hosted in a Carbon grid, this value is passed through to the Carbon grid narrow prop
697
+ */
698
+ narrowGrid: _propTypes.default.bool,
699
+
700
+ /**
701
+ * Content for the navigation area in the PageHeader. Should
702
+ * be a React element that is normally a Carbon Tabs component. Optional.
703
+ */
704
+ navigation: _propTypes.default.element,
705
+ // Supports Tabs
706
+
707
+ /**
708
+ * Specifies the primary page actions which are placed at the same level in the page as the title.
709
+ *
710
+ * Either a set of actions, each specified as an object with the properties of a Carbon Button plus:
711
+ *
712
+ * - label: node
713
+ *
714
+ * Or a single object
715
+ *
716
+ * - content: content to be rendered. NOTE: must be capable of restricting itself to the space provided. This 2.5rem height ($spacing-08)
717
+ * and the width not used by action bar items when scrolled into toolbar.
718
+ * - minWidth: smallest number of pixel width the content would like. NOTE: This is not guaranteed and may be less on small viewports.
719
+ * - maxWidth: maximum number of pixels the content will grow to
720
+ * Carbon Button API https://react.carbondesignsystem.com/?path=/docs/components-button--default#component-api
721
+ */
722
+ pageActions: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.shape(_objectSpread(_objectSpread({}, _carbonComponentsReact.Button.propTypes), {}, {
723
+ key: _propTypes.default.string.isRequired,
724
+ kind: _carbonComponentsReact.Button.propTypes.kind,
725
+ label: _propTypes.default.node,
726
+ onClick: _propTypes.default.func
727
+ }))), _propTypes.default.shape({
728
+ /**
729
+ * minWidth should not be more than 180
730
+ * The content is expected to adjust itself to fit in
731
+ */
732
+ content: _propTypes.default.node.isRequired,
733
+ minWidth: _propTypes.default.number.isRequired,
734
+ maxWidth: _propTypes.default.number.isRequired
735
+ })]),
736
+
737
+ /**
738
+ * class name applied to the page actions overflow options
739
+ */
740
+ pageActionsMenuOptionsClass: _propTypes.default.string,
741
+
742
+ /**
743
+ * When there is insufficient space to display all of hte page actions inline a dropdown button menu is shown,
744
+ * containing the page actions. This label is used as the display content of the dropdown button menu.
745
+ *
746
+ * NOTE: This prop is required if pageActions are supplied
747
+ */
748
+ pageActionsOverflowLabel: _propTypes.default.node.isRequired.if(function (_ref13) {
749
+ var pageActions = _ref13.pageActions;
750
+ return pageActions && pageActions.length > 0 && !pageActions.content;
751
+ }),
752
+
753
+ /**
754
+ * When tags are supplied there may not be sufficient space to display all of the tags. This results in an overflow
755
+ * menu being shown. If in the overflow menu there is still insufficient space this label is used to offer a
756
+ * "View all tags" option.
757
+ *
758
+ * **Note: Required if more than 10 tags**
759
+ */
760
+ showAllTagsLabel: _TagSet.string_required_if_more_than_10_tags,
761
+
762
+ /**
763
+ * Sitting just below the title is this optional subtitle that provides additional context to
764
+ * identify the current page.
765
+ */
766
+ subtitle: _propTypes.default.string,
767
+
768
+ /**
769
+ * An array of tags to be shown as the final content in the PageHeader.
770
+ *
771
+ * Each tag is specified as an object with the following properties
772
+ * **label**\* (required) to supply the tag content, and properties of the the Carbon Tag component,
773
+ * such as **type**, **disabled**, **ref**, **className** , and any other Tag props.
774
+ *
775
+ * NOTE: **filter** is not supported. Any remaining fields in the object will be passed through to the HTML element
776
+ * as HTML attributes.
777
+ *
778
+ * See https://react.carbondesignsystem.com/?path=/docs/components-tag--default
779
+ */
780
+ tags: _propTypes.default.arrayOf(_propTypes.default.shape(_objectSpread(_objectSpread({}, (0, _propsHelper.prepareProps)(_carbonComponentsReact.Tag.propTypes, 'filter')), {}, {
781
+ label: _propTypes.default.string.isRequired,
782
+ // we duplicate this prop to improve the DocGen
783
+ type: _propTypes.default.oneOf(tagTypes)
784
+ }))),
785
+
786
+ /**
787
+ * An optional page title supplied as a string or object with the following attributes: text, icon, loading
788
+ *
789
+ * Can be supplied either as:
790
+ * - String
791
+ * - Object containing
792
+ * - text: title string
793
+ * - icon: optional icon
794
+ * - loading: boolean shows loading indicator if true
795
+ * - Object containing user defined contents. These must fit within the area defined for the title in both main part of the header and the breadcrumb.
796
+ * - content: title or name of current location shown in main part of page header
797
+ * - breadcrumbContent: version of content used in the breadcrumb on scroll. If not supplied
798
+ * - asText: String based representation of the title
799
+ */
800
+ title: _propTypes.default.oneOfType([_propTypes.default.shape({
801
+ // Update docgen if changed
802
+ text: _propTypes.default.string.isRequired,
803
+ icon: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]),
804
+ loading: _propTypes.default.bool // Update docgen if changed
805
+
806
+ }), _propTypes.default.string, _propTypes.default.shape({
807
+ content: _propTypes.default.node.isRequired,
808
+ breadcrumbContent: _propTypes.default.node,
809
+ asText: _propTypes.default.string.isRequired
810
+ })]),
811
+
812
+ /**
813
+ * Specifies if the PageHeader should appear without a background color, and defaults to the preferred `false` (a background color is shown).
814
+ * Note that when `true` some parts of the header still gain a background if and when they stick to the top of the PageHeader on scroll.
815
+ */
816
+ withoutBackground: _propTypes.default.bool
817
+ }, deprecatedProps);
818
+ PageHeader.defaultProps = {
819
+ fullWidthGrid: false,
820
+ narrowGrid: false
821
+ };
822
+ PageHeader.displayName = componentName;