@carbon/ibm-products 1.0.0-rc.0 → 1.0.1

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 +19 -18
  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 +779 -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 +55 -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 +812 -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 +72 -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 +9 -8
  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,75 @@
1
+ //
2
+ // Copyright IBM Corp. 2021, 2021
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+ import React from 'react';
8
+ import PropTypes from 'prop-types';
9
+ import { sanitize } from '@storybook/csf';
10
+ import pkg from '../package-settings';
11
+ import { getPathForComponent } from '../../../../../core/story-structure';
12
+ /**
13
+ * A helper function to return the structured story title for a component.
14
+ * @param {string} componentName The name of the component.
15
+ * @returns The structured story title.
16
+ */
17
+
18
+ export var getStoryTitle = function getStoryTitle(componentName) {
19
+ var title = // if the component isn't in the master structure, put it in a lost+found section
20
+ getPathForComponent('c', componentName) || "Cloud & Cognitive/Lost + found/".concat(componentName); // add a canary tag if the component is public but not normally enabled
21
+
22
+ return !pkg.isComponentEnabled(componentName, true) && pkg.isComponentPublic(componentName, true) ? "".concat(title, "#canary") : title;
23
+ };
24
+ /**
25
+ * A helper function to return the slug (structured path name reduced to lower
26
+ * case text and hyphens) which identifies individual story instances.
27
+ * @param {string} componentName The name of the component.
28
+ * @param {string} scenario The scenario name, also as a slug.
29
+ * @returns The story id.
30
+ */
31
+
32
+ export var getStoryId = function getStoryId(componentName, scenario) {
33
+ return "".concat(sanitize(getStoryTitle(componentName)), "--").concat(scenario);
34
+ };
35
+ /**
36
+ * A helper function to prepare storybook stories for export. This function
37
+ * binds the template, adds the supplied fields, and also inserts a sequence
38
+ * number so that stories can then be sorted into declared order reliably.
39
+ * @param template the story template render function
40
+ * @param options an object containing fields to be added to the bound
41
+ * template, such as `args`, `storyName`, etc.
42
+ * @returns A bound template with the option fields applied.
43
+ */
44
+
45
+ var sequence = 0;
46
+ var bindTarget = {};
47
+ export var prepareStory = function prepareStory(template, options) {
48
+ var _result$parameters, _result$parameters2, _result$parameters2$c;
49
+
50
+ var result = Object.assign(template.bind(bindTarget), options);
51
+ (_result$parameters = result.parameters) !== null && _result$parameters !== void 0 ? _result$parameters : result.parameters = {};
52
+ (_result$parameters2$c = (_result$parameters2 = result.parameters).ccsSettings) !== null && _result$parameters2$c !== void 0 ? _result$parameters2$c : _result$parameters2.ccsSettings = {};
53
+ result.parameters.ccsSettings.sequence = sequence++;
54
+ return result;
55
+ };
56
+ /**
57
+ * A helper component that returns a codesandbox link to an example codesandbox for the component.
58
+ * The link URL is based on the example directory name and the standard codesandbox URL for package examples.
59
+ */
60
+
61
+ export var CodesandboxLink = function CodesandboxLink(_ref) {
62
+ var exampleDirectory = _ref.exampleDirectory;
63
+ return /*#__PURE__*/React.createElement("a", {
64
+ href: "https://codesandbox.io/s/github/carbon-design-system/ibm-cloud-cognitive/tree/main/examples/cloud-cognitive/".concat(exampleDirectory)
65
+ }, /*#__PURE__*/React.createElement("img", {
66
+ alt: "Edit on CodeSandbox",
67
+ src: "https://codesandbox.io/static/img/play-codesandbox.svg"
68
+ }));
69
+ };
70
+ CodesandboxLink.propTypes = {
71
+ /**
72
+ * directory withing examples codesandbox will be found
73
+ */
74
+ exampleDirectory: PropTypes.string
75
+ };
@@ -0,0 +1,296 @@
1
+ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
2
+ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
3
+ import _regeneratorRuntime from "@babel/runtime/regenerator";
4
+
5
+ //
6
+ // Copyright IBM Corp. 2021, 2021
7
+ //
8
+ // This source code is licensed under the Apache-2.0 license found in the
9
+ // LICENSE file in the root directory of this source tree.
10
+ //
11
+ var _require = require('child_process'),
12
+ execFileSync = _require.execFileSync;
13
+
14
+ var _require2 = require('path'),
15
+ resolve = _require2.resolve;
16
+
17
+ var r = function r(file) {
18
+ return resolve(__dirname, file);
19
+ };
20
+
21
+ var loadPath1 = r('../../../../node_modules');
22
+ var loadPath2 = r('../../../../../../node_modules');
23
+ /**
24
+ * Check that an SCSS file compiles correctly. This function does not return
25
+ * a value, but if the SCSS file does not compile it will throw an Error
26
+ * containing details of the compilation failure.
27
+ * @param {string} file fully qualified file name of the SCSS file to check.
28
+ */
29
+
30
+ export var scssCheck = function scssCheck(file) {
31
+ // We use the sass cli because this is currently much faster than using
32
+ // the API owing to the overhead of @import resolution through the API.
33
+ // When the sass API is revised it may be feasible to switch back to
34
+ // using the API for SCSS compilation and checking.
35
+ execFileSync('sass', ['--style=expanded', '--no-source-map', '--load-path', loadPath1, '--load-path', loadPath2, file], {
36
+ stdio: ['ignore', 'ignore', 'pipe']
37
+ });
38
+ };
39
+ /**
40
+ * Compile an SCSS file, and return the compiled CSS as a String. If the SCSS
41
+ * file does not compile this function will throw an Error containing details
42
+ * of the compilation failure.
43
+ * @param {string} file fully qualified file name of the SCSS file to compile.
44
+ */
45
+
46
+ export var scssCompile = function scssCompile(file) {
47
+ var compressed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
48
+ return (// We use the sass cli because this is currently much faster than using
49
+ // the API owing to the overhead of @import resolution through the API.
50
+ // When the sass API is revised it may be feasible to switch back to
51
+ // using the API for SCSS compilation and checking.
52
+ execFileSync('sass', [compressed ? '--style=compressed' : '--style=expanded', '--no-source-map', '--load-path', loadPath1, '--load-path', loadPath2, file], {
53
+ stdio: ['ignore', 'pipe', 'pipe']
54
+ }).toString()
55
+ );
56
+ };
57
+ /**
58
+ * A helper function to mock properties of the HTML element prototype.
59
+ * @param {*} options An object containing one or more properties, being the
60
+ * names of properties to add/replace in the HTML element prototype along with
61
+ * a property descriptor to apply. The property descriptor may contain a value
62
+ * field, and optionally a writable flag, or it may contain a get and/or a set
63
+ * method. Other property descriptor fields may also be included, but each
64
+ * mocked property will always be made configurable (in order to enable the
65
+ * mock to be restored later).
66
+ * @returns An object containing a mockRestore function which will return all
67
+ * replaced properties to their original states and remove all added properties.
68
+ * This function should be called after tests in order not to pollute other
69
+ * tests with the installed mocks.
70
+ */
71
+
72
+ var hep = HTMLElement.prototype;
73
+ export var mockHTMLElement = function mockHTMLElement(options) {
74
+ var originals = {};
75
+
76
+ for (var option in options) {
77
+ originals[option] = Object.getOwnPropertyDescriptor(hep, option);
78
+ Object.defineProperty(hep, option, // Ensure we'll be able to restore or delete the property later
79
+ Object.assign({}, options[option], {
80
+ configurable: true
81
+ }));
82
+ }
83
+
84
+ return {
85
+ mockRestore: function mockRestore() {
86
+ for (var _option in options) {
87
+ if (originals[_option]) {
88
+ Object.defineProperty(hep, _option, originals[_option]);
89
+ } else {
90
+ delete hep[_option];
91
+ }
92
+ }
93
+ }
94
+ };
95
+ }; // a utility function used by expectWarn/Error to convert an argument
96
+ // match element to an expect matcher
97
+
98
+ var makeMatcher = function makeMatcher(arg) {
99
+ return typeof arg === 'string' ? expect.stringContaining(arg) : arg instanceof RegExp ? expect.stringMatching(arg) : arg;
100
+ }; // a utility function used by expectWarn/Error to convert a single argument
101
+ // match or an array of argument matches to an array of expect matchers
102
+
103
+
104
+ var makeMatcherArray = function makeMatcherArray(args) {
105
+ return Array.isArray(args) ? args.map(function (arg) {
106
+ return makeMatcher(arg);
107
+ }) : [makeMatcher(args)];
108
+ };
109
+ /**
110
+ * A helper function to enable a test to expect a single call to
111
+ * console.warn, for example when intentionally using a deprecated prop
112
+ * or supplying invalid parameters for the purposes of the test.
113
+ * @param {string|regex|function|[]} message the expected parameters for the call to
114
+ * console.warn, which must be called exactly once. A single string or regex or an
115
+ * expect matcher can be used to match a single-argument call to console.warn (most common),
116
+ * while an array of strings and/or regex and/or expect matchers can be used to match a
117
+ * multiple-argument call. Strings can be full or substring matches to the corresponding
118
+ * argument.
119
+ * @param {Function} test the test function to call, during which the call to
120
+ * console.warn will be expected.
121
+ */
122
+
123
+
124
+ export var expectWarn = function expectWarn(message, test) {
125
+ var _expect;
126
+
127
+ var warn = jest.spyOn(console, 'warn').mockImplementation(jest.fn());
128
+ var result = test();
129
+ expect(warn).toBeCalledTimes(1);
130
+
131
+ (_expect = expect(warn)).toHaveBeenCalledWith.apply(_expect, _toConsumableArray(makeMatcherArray(message)));
132
+
133
+ warn.mockRestore();
134
+ return result;
135
+ };
136
+ /**
137
+ * An async version of expectWarn which awaits the test function and expects the call
138
+ * to console.warn to have been made.
139
+ */
140
+
141
+ export var expectWarnAsync = /*#__PURE__*/function () {
142
+ var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(message, test) {
143
+ var _expect2;
144
+
145
+ var warn;
146
+ return _regeneratorRuntime.wrap(function _callee$(_context) {
147
+ while (1) {
148
+ switch (_context.prev = _context.next) {
149
+ case 0:
150
+ warn = jest.spyOn(console, 'warn').mockImplementation(jest.fn());
151
+ _context.next = 3;
152
+ return test();
153
+
154
+ case 3:
155
+ expect(warn).toBeCalledTimes(1);
156
+
157
+ (_expect2 = expect(warn)).toHaveBeenCalledWith.apply(_expect2, _toConsumableArray(makeMatcherArray(message)));
158
+
159
+ warn.mockRestore();
160
+
161
+ case 6:
162
+ case "end":
163
+ return _context.stop();
164
+ }
165
+ }
166
+ }, _callee);
167
+ }));
168
+
169
+ return function expectWarnAsync(_x, _x2) {
170
+ return _ref.apply(this, arguments);
171
+ };
172
+ }();
173
+ /**
174
+ * A helper function to enable a test to expect multiple calls to
175
+ * console.warn, for example when intentionally using a deprecated prop
176
+ * or supplying invalid parameters for the purposes of the test.
177
+ * @param {[]} messages the expected parameters for successive calls to console.warn,
178
+ * which must be called exactly as many times as there are elements in the array.
179
+ * Each element of the array can either be a string or a regex or an expect matcher,
180
+ * all of which can be used to match a single-argument call to console.warn (most common),
181
+ * or can be an array of strings and/or regex and/or expect matchers, to match a
182
+ * multiple-argument call. Strings can be full or substring matches to the corresponding
183
+ * argument.
184
+ * @param {Function} test the test function to call, during which the calls to
185
+ * console.warn will be expected.
186
+ */
187
+
188
+ export var expectMultipleWarn = function expectMultipleWarn(messages, test) {
189
+ var warn = jest.spyOn(console, 'warn').mockImplementation(jest.fn());
190
+ var result = test();
191
+ expect(warn).toBeCalledTimes(messages.length);
192
+ messages.forEach(function (args, index) {
193
+ var _expect3;
194
+
195
+ return (_expect3 = expect(warn)).toHaveBeenNthCalledWith.apply(_expect3, [index + 1].concat(_toConsumableArray(makeMatcherArray(args))));
196
+ });
197
+ warn.mockRestore();
198
+ return result;
199
+ };
200
+ /**
201
+ * A helper function to enable a test to expect a single call to
202
+ * console.error, for example when intentionally omitting a required prop
203
+ * or supplying an invalid prop type or value for the purposes of the test.
204
+ * @param {string|regex|function|[]} message the expected parameters for the call to
205
+ * console.error, which must be called exactly once. A single string or regex or an
206
+ * expect matcher can be used to match a single-argument call to console.error (most common),
207
+ * while an array of strings and/or regex and/or expect matchers can be used to match a
208
+ * multiple-argument call. Strings can be full or substring matches to the corresponding
209
+ * argument.
210
+ * @param {Function} test the test function to call, during which the call to
211
+ * console.error will be expected.
212
+ */
213
+
214
+ export var expectError = function expectError(message, test) {
215
+ var _expect4;
216
+
217
+ var error = jest.spyOn(console, 'error').mockImplementation(jest.fn());
218
+ var result = test();
219
+ expect(error).toBeCalledTimes(1);
220
+
221
+ (_expect4 = expect(error)).toHaveBeenCalledWith.apply(_expect4, _toConsumableArray(makeMatcherArray(message)));
222
+
223
+ error.mockRestore();
224
+ return result;
225
+ };
226
+ /**
227
+ * A helper function to enable a test to expect multiple calls to
228
+ * console.warn, for example when intentionally using a deprecated prop
229
+ * or supplying invalid parameters for the purposes of the test.
230
+ * @param {[]} messages the expected parameters for successive calls to console.error,
231
+ * which must be called exactly as many times as there are elements in the array.
232
+ * Each element of the array can either be a string or a regex or an expect matcher,
233
+ * all of which can be used to match a single-argument call to console.error (most common),
234
+ * or can be an array of strings and/or regex and/or expect matchers, to match a
235
+ * multiple-argument call. Strings can be full or substring matches to the corresponding
236
+ * argument.
237
+ * @param {Function} test the test function to call, during which the calls to
238
+ * console.error will be expected.
239
+ */
240
+
241
+ export var expectMultipleError = function expectMultipleError(messages, test) {
242
+ var error = jest.spyOn(console, 'error').mockImplementation(jest.fn());
243
+ var result = test();
244
+ expect(error).toBeCalledTimes(messages.length);
245
+ messages.forEach(function (args, index) {
246
+ var _expect5;
247
+
248
+ return (_expect5 = expect(error)).toHaveBeenNthCalledWith.apply(_expect5, [index + 1].concat(_toConsumableArray(makeMatcherArray(args))));
249
+ });
250
+ error.mockRestore();
251
+ return result;
252
+ };
253
+ /**
254
+ * Return an expect matcher for a prop deprecation, suitable to pass to expectWarn
255
+ * or expectMultipleWarn.
256
+ * @param {string} propName the prop name that is deprecated, or a matching regex
257
+ * @param {string} componentName the component name on which the prop is defined, or a matching regex
258
+ */
259
+
260
+ export var deprecated = function deprecated(propName, componentName) {
261
+ var additionalInfo = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
262
+ return expect.stringMatching(new RegExp("^The prop `".concat(propName, "` of `").concat(componentName, "` has been deprecated and will soon be removed. ").concat(additionalInfo)));
263
+ };
264
+ /**
265
+ * Return an expect matcher for a prop usage deprecation, suitable to pass to expectWarn
266
+ * or expectMultipleWarn.
267
+ * @param {string} propName the prop name whose usage has changed
268
+ * @param {string} componentName the component name on which the prop is defined
269
+ */
270
+
271
+ export var deprecatedUsage = function deprecatedUsage(propName, componentName) {
272
+ var additionalInfo = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
273
+ return expect.stringMatching(new RegExp("^The usage of the prop `".concat(propName, "` of `").concat(componentName, "` has been changed and support for the old usage will soon be removed. ").concat(additionalInfo)));
274
+ };
275
+ /**
276
+ * Return an expect matcher for a missing required prop, suitable to pass to expectError
277
+ * or expectMultipleError.
278
+ * @param {string} propName the prop name that is required, or a matching regex
279
+ * @param {string} componentName the component name on which the prop is defined, or a matching regex
280
+ */
281
+
282
+ export var required = function required(propName, componentName) {
283
+ return expect.stringMatching(new RegExp("^Warning: Failed prop type: The prop `".concat(propName, "` is marked as required in `").concat(componentName, "`, but its value is `(.*)`.")));
284
+ };
285
+ /**
286
+ * Return an expect matcher for an invalid prop, suitable to pass to expectError
287
+ * or expectMultipleError.
288
+ * @param {string} propName the prop name that is invalid, or a matching regex
289
+ * @param {string} componentName the component name on which the prop is defined, or a matching regex
290
+ * @param {string} suppliedType the type that is being supplied, or a matching regex
291
+ * @param {string} expectedType the type that is expected, or a matching regex
292
+ */
293
+
294
+ export var invalid = function invalid(propName, componentName, suppliedType, expectedType) {
295
+ return expect.stringMatching(new RegExp("^Warning: Failed prop type: Invalid prop `".concat(propName, "` of type `").concat(suppliedType, "` supplied to `").concat(componentName, "`, expected `").concat(expectedType, "`.")));
296
+ };
@@ -0,0 +1,71 @@
1
+ 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; } } }; }
2
+
3
+ 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); }
4
+
5
+ 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; }
6
+
7
+ import React from 'react';
8
+ /**
9
+ * unwrapIfFragment - walks the passed children unwrapping fragments
10
+ * to create a flat array of all children
11
+ */
12
+
13
+ var unwrapIfFragment = function unwrapIfFragment(children) {
14
+ // When passed one of the following
15
+ // - A fragment with zero or more children *1
16
+ // - An array with zero or more children *1
17
+ // - A single node
18
+ // *1 - The children of the above can be any of the above
19
+ // Outputs - A flat array of child nodes
20
+ var newChildArray = [];
21
+
22
+ var isFragment = function isFragment(item) {
23
+ return item && item.type === React.Fragment;
24
+ };
25
+
26
+ var addChildren = function addChildren(children) {
27
+ var loopOver = function loopOver(children) {
28
+ // children may be a single item
29
+ var _children = Array.isArray(children) ? children : [children];
30
+
31
+ var _iterator = _createForOfIteratorHelper(_children),
32
+ _step;
33
+
34
+ try {
35
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
36
+ var child = _step.value;
37
+ addChildren(child);
38
+ }
39
+ } catch (err) {
40
+ _iterator.e(err);
41
+ } finally {
42
+ _iterator.f();
43
+ }
44
+ }; // children is nothing, one fragment, array with one or more children, or a single item
45
+
46
+
47
+ if (!children) {
48
+ return;
49
+ }
50
+
51
+ if (isFragment(children)) {
52
+ loopOver(children.props.children);
53
+ } else {
54
+ if (Array.isArray(children)) {
55
+ loopOver(children);
56
+ } else {
57
+ newChildArray.push(children);
58
+ }
59
+ }
60
+ }; // nothing, one fragment, array with one or more children, or a single item
61
+
62
+
63
+ addChildren(children); // wrapping with React.Children caters for any missing keys
64
+
65
+ var keyedChildren = React.Children.map(newChildArray, function (child) {
66
+ return child;
67
+ });
68
+ return keyedChildren;
69
+ };
70
+
71
+ export default unwrapIfFragment;
@@ -0,0 +1,12 @@
1
+ // https://stackoverflow.com/a/2117523
2
+ function uuidv4() {
3
+ var randomValues = function randomValues(c) {
4
+ return typeof crypto !== 'undefined' ? crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4 : Math.random() * 16 >> c / 4;
5
+ };
6
+
7
+ return ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, function (c) {
8
+ return (c ^ randomValues(c)).toString(16);
9
+ });
10
+ }
11
+
12
+ export default uuidv4;
@@ -0,0 +1,23 @@
1
+ import uuidv4 from './uuidv4';
2
+ describe('uuidv4', function () {
3
+ beforeEach(function () {
4
+ jest.resetAllMocks();
5
+ });
6
+ it('Uses Math.random when window is not defined', function () {
7
+ var mockMath = Object.create(global.Math);
8
+ var mockMathRandom = jest.fn().mockReturnValue(0.5);
9
+ mockMath.random = mockMathRandom;
10
+ global.Math = mockMath;
11
+ expect(uuidv4()).toEqual('98888888-9888-4888-a888-988888888888');
12
+ });
13
+ it('Uses crypto from window when window is defined', function () {
14
+ var mGetRandomValues = jest.fn().mockReturnValue(new Uint32Array(10));
15
+ Object.defineProperty(window, 'crypto', {
16
+ value: {
17
+ getRandomValues: mGetRandomValues
18
+ }
19
+ });
20
+ expect(uuidv4()).toEqual('10000000-1000-4000-8000-100000000000');
21
+ expect(mGetRandomValues).toBeCalledWith(new Uint8Array(1));
22
+ });
23
+ });
@@ -0,0 +1,8 @@
1
+ // utility function for an async timeout
2
+ function wait(ms) {
3
+ return new Promise(function (resolve) {
4
+ return setTimeout(resolve, ms);
5
+ });
6
+ }
7
+
8
+ export default wait;
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Copyright IBM Corp. 2020
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { DOCUMENT_POSITION_BROAD_PRECEDING, DOCUMENT_POSITION_BROAD_FOLLOWING, selectorTabbable } from './keyboardNavigation';
8
+ import { carbon } from '../../../settings';
9
+ /**
10
+ * @param {Node} node A DOM node.
11
+ * @param {string[]} selectorsFloatingMenus The CSS selectors that matches floating menus.
12
+ * @returns {boolean} `true` of the given `node` is in a floating menu.
13
+ */
14
+
15
+ function elementOrParentIsFloatingMenu(node) {
16
+ var selectorsFloatingMenus = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [".".concat(carbon.prefix, "--overflow-menu-options"), ".".concat(carbon.prefix, "--tooltip"), '.flatpickr-calendar'];
17
+
18
+ if (node && typeof node.closest === 'function') {
19
+ return selectorsFloatingMenus.some(function (selector) {
20
+ return node.closest(selector);
21
+ });
22
+ }
23
+ }
24
+ /**
25
+ * Ensures the focus is kept in the given `modalNode`, implementing "focus-wrap" behavior.
26
+ * @param {object} options The options.
27
+ * @param {Node} options.bodyNode The DOM node of the inner modal.
28
+ * @param {Node} options.startTrapNode The DOM node of the focus sentinel the is placed earlier next to `modalNode`.
29
+ * @param {Node} options.endTrapNode The DOM node of the focus sentinel the is placed next to `modalNode`.
30
+ * @param {Node} options.currentActiveNode The DOM node that has focus.
31
+ * @param {Node} options.oldActiveNode The DOM node that previously had focus.
32
+ * @param {Node} [options.selectorsFloatingMenus] The CSS selectors that matches floating menus
33
+ */
34
+
35
+
36
+ function wrapFocus(_ref) {
37
+ var bodyNode = _ref.bodyNode,
38
+ startTrapNode = _ref.startTrapNode,
39
+ endTrapNode = _ref.endTrapNode,
40
+ currentActiveNode = _ref.currentActiveNode,
41
+ oldActiveNode = _ref.oldActiveNode,
42
+ selectorsFloatingMenus = _ref.selectorsFloatingMenus;
43
+
44
+ if (bodyNode && currentActiveNode && oldActiveNode && !bodyNode.contains(currentActiveNode) && !elementOrParentIsFloatingMenu(currentActiveNode, selectorsFloatingMenus)) {
45
+ var comparisonResult = oldActiveNode.compareDocumentPosition(currentActiveNode);
46
+
47
+ if (currentActiveNode === startTrapNode || comparisonResult & DOCUMENT_POSITION_BROAD_PRECEDING) {
48
+ var arrayNodes = Array.from(bodyNode.querySelectorAll(selectorTabbable));
49
+ arrayNodes.reverse();
50
+ var tabbable = arrayNodes.find(function (elem) {
51
+ return Boolean(elem.offsetParent);
52
+ });
53
+
54
+ if (tabbable) {
55
+ tabbable.focus();
56
+ } else if (bodyNode !== oldActiveNode) {
57
+ bodyNode.focus();
58
+ }
59
+ } else if (currentActiveNode === endTrapNode || comparisonResult & DOCUMENT_POSITION_BROAD_FOLLOWING) {
60
+ var _tabbable = Array.prototype.find.call(bodyNode.querySelectorAll(selectorTabbable), function (elem) {
61
+ return Boolean(elem.offsetParent);
62
+ });
63
+
64
+ if (_tabbable) {
65
+ _tabbable.focus();
66
+ } else if (bodyNode !== oldActiveNode) {
67
+ bodyNode.focus();
68
+ }
69
+ }
70
+ }
71
+ }
72
+
73
+ export { elementOrParentIsFloatingMenu };
74
+ export default wrapFocus;
package/es/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Copyright IBM Corp. 2020, 2020
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ export { pkg } from './settings';
8
+ export * from './components';
package/es/settings.js ADDED
@@ -0,0 +1,73 @@
1
+ import { Canary } from './components/_Canary';
2
+ import featureFlags from './generated/feature-flags/feature-flags';
3
+ import pkgSettings from './global/js/package-settings';
4
+ import { settings as carbonSettings } from 'carbon-components';
5
+ import React from 'react';
6
+ import { themes } from '@carbon/themes';
7
+ export var carbon = {
8
+ get prefix() {
9
+ return carbonSettings.prefix;
10
+ },
11
+
12
+ set prefix(val) {
13
+ carbonSettings.prefix = val;
14
+ },
15
+
16
+ get flags() {
17
+ return featureFlags;
18
+ },
19
+
20
+ get themes() {
21
+ return themes;
22
+ }
23
+
24
+ }; // Check that a component is enabled. This function returns a stub which checks
25
+ // the component status on first use and then renders as the component or as
26
+ // a Canary placeholder initialized with the name of the replaced component.
27
+ // Note that the returned stub carries any other properties which had already
28
+ // been assigned (eg propTypes, displayName, etc).
29
+
30
+ pkgSettings.checkComponentEnabled = function (component, name) {
31
+ if (component.render) {
32
+ // The component is a forward-ref, so make a stub forward-ref.
33
+ var forward = /*#__PURE__*/React.forwardRef(function (props, ref) {
34
+ return (// Replace the stub's render fn so this test only happens once.
35
+ (forward.render = pkgSettings.isComponentEnabled(name) || !pkgSettings.isComponentPublic(name) ? // If the component is enabled, or if it's not a public component,
36
+ // replace the stub's render fn with the component's render fn.
37
+ component.render : // Note that Canary is a direct render fn (not a forward-ref) and
38
+ // will ignore the passed props and ref (if any)
39
+ Canary.bind(undefined, {
40
+ componentName: name
41
+ }))( // Call it now (after this it will be directly called).
42
+ props, ref)
43
+ );
44
+ }); // Transfer object properties already assigned (eg propTypes, displayName)
45
+ // then merge in the stub forward-ref which checks the component status
46
+ // when first used.
47
+
48
+ return Object.assign({}, component, forward);
49
+ } else {
50
+ // The component is a direct render fn, so make a stub render fn.
51
+ var _render = function render(props) {
52
+ return (// Replace the stub render fn so this test only happens once.
53
+ (_render = pkgSettings.isComponentEnabled(name) || !pkgSettings.isComponentPublic(name) ? // If the component is enabled, or if it's not a public component,
54
+ // replace the stub render fn with the component render fn.
55
+ component : // Replace the stub render fn with the Canary render fn, which will
56
+ // ignore the passed props.
57
+ Canary.bind(undefined, {
58
+ componentName: name
59
+ }))( // Call it now (after this it will be directly called).
60
+ props)
61
+ );
62
+ }; // Transfer object properties already assigned (eg propTypes, displayName)
63
+ // to a function which calls the stub render fn which checks the component
64
+ // status when first used.
65
+
66
+
67
+ return Object.assign(function (props) {
68
+ return _render(props);
69
+ }, component);
70
+ }
71
+ };
72
+
73
+ export var pkg = pkgSettings;