@laerdal/life-react-components 6.0.0-dev.7.full → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (315) hide show
  1. package/README.md +1 -1
  2. package/dist/Accordion/__tests__/AccordionMenu.test.tsx +42 -0
  3. package/dist/Accordion/__tests__/ContentAccordion.test.tsx +150 -0
  4. package/dist/AuthPage/__tests__/AuthPage.test.tsx +27 -0
  5. package/dist/Banners/__tests__/Banner.test.tsx +47 -0
  6. package/dist/Banners/__tests__/OverviewBanner.test.tsx +20 -0
  7. package/dist/Breadcrumb/__tests__/Breadcrumb.test.tsx +78 -0
  8. package/dist/Button/DualFunctionButton.cjs +4 -4
  9. package/dist/Button/DualFunctionButton.cjs.map +1 -1
  10. package/dist/Button/DualFunctionButton.d.ts +2 -2
  11. package/dist/Button/DualFunctionButton.js +4 -4
  12. package/dist/Button/DualFunctionButton.js.map +1 -1
  13. package/dist/Button/{Button.cjs → TextButton.cjs} +179 -92
  14. package/dist/Button/TextButton.cjs.map +1 -0
  15. package/dist/Button/TextButton.d.ts +70 -0
  16. package/dist/Button/{Button.js → TextButton.js} +178 -91
  17. package/dist/Button/TextButton.js.map +1 -0
  18. package/dist/Button/__tests__/BackButton.test.tsx +32 -0
  19. package/dist/Button/__tests__/Button.test.tsx +45 -0
  20. package/dist/Button/__tests__/DualButton.test.tsx +119 -0
  21. package/dist/Button/__tests__/TextButton.test.tsx +45 -0
  22. package/dist/Button/index.cjs +11 -11
  23. package/dist/Button/index.cjs.map +1 -1
  24. package/dist/Button/index.d.ts +2 -2
  25. package/dist/Button/index.js +2 -2
  26. package/dist/Button/index.js.map +1 -1
  27. package/dist/Card/HorizontalCard/__tests__/HorizontalCard.test.tsx +71 -0
  28. package/dist/Card/VerticalCard/{Card.cjs → VerticalCard.cjs} +62 -26
  29. package/dist/Card/VerticalCard/VerticalCard.cjs.map +1 -0
  30. package/dist/Card/VerticalCard/VerticalCard.d.ts +25 -0
  31. package/dist/Card/VerticalCard/{Card.js → VerticalCard.js} +62 -26
  32. package/dist/Card/VerticalCard/VerticalCard.js.map +1 -0
  33. package/dist/Card/VerticalCard/{CardBottomSection.cjs → VerticalCardBottomSection.cjs} +45 -27
  34. package/dist/Card/VerticalCard/VerticalCardBottomSection.cjs.map +1 -0
  35. package/dist/Card/VerticalCard/VerticalCardBottomSection.d.ts +53 -0
  36. package/dist/Card/VerticalCard/{CardBottomSection.js → VerticalCardBottomSection.js} +45 -27
  37. package/dist/Card/VerticalCard/VerticalCardBottomSection.js.map +1 -0
  38. package/dist/Card/VerticalCard/{CardMiddleSection.cjs → VerticalCardMiddleSection.cjs} +46 -23
  39. package/dist/Card/VerticalCard/VerticalCardMiddleSection.cjs.map +1 -0
  40. package/dist/Card/VerticalCard/VerticalCardMiddleSection.d.ts +42 -0
  41. package/dist/Card/VerticalCard/{CardMiddleSection.js → VerticalCardMiddleSection.js} +45 -23
  42. package/dist/Card/VerticalCard/VerticalCardMiddleSection.js.map +1 -0
  43. package/dist/Card/VerticalCard/{CardTopSection.cjs → VerticalCardTopSection.cjs} +18 -16
  44. package/dist/Card/VerticalCard/VerticalCardTopSection.cjs.map +1 -0
  45. package/dist/Card/VerticalCard/{CardTopSection.d.ts → VerticalCardTopSection.d.ts} +8 -8
  46. package/dist/Card/VerticalCard/{CardTopSection.js → VerticalCardTopSection.js} +17 -15
  47. package/dist/Card/VerticalCard/VerticalCardTopSection.js.map +1 -0
  48. package/dist/Card/VerticalCard/__tests__/VerticalCard.test.tsx +124 -0
  49. package/dist/Card/VerticalCard/index.cjs +25 -25
  50. package/dist/Card/VerticalCard/index.cjs.map +1 -1
  51. package/dist/Card/VerticalCard/index.d.ts +7 -7
  52. package/dist/Card/VerticalCard/index.js +7 -7
  53. package/dist/Card/VerticalCard/index.js.map +1 -1
  54. package/dist/Chips/ActionChip.cjs +6 -0
  55. package/dist/Chips/ActionChip.cjs.map +1 -1
  56. package/dist/Chips/ActionChip.js +6 -0
  57. package/dist/Chips/ActionChip.js.map +1 -1
  58. package/dist/Chips/ChipStyles.cjs +210 -31
  59. package/dist/Chips/ChipStyles.cjs.map +1 -1
  60. package/dist/Chips/ChipStyles.js +210 -31
  61. package/dist/Chips/ChipStyles.js.map +1 -1
  62. package/dist/Chips/ChoiceChips.cjs +1 -1
  63. package/dist/Chips/ChoiceChips.cjs.map +1 -1
  64. package/dist/Chips/ChoiceChips.js +1 -1
  65. package/dist/Chips/ChoiceChips.js.map +1 -1
  66. package/dist/Chips/FilterChip.cjs +8 -1
  67. package/dist/Chips/FilterChip.cjs.map +1 -1
  68. package/dist/Chips/FilterChip.js +8 -1
  69. package/dist/Chips/FilterChip.js.map +1 -1
  70. package/dist/Chips/InputChip.cjs +14 -0
  71. package/dist/Chips/InputChip.cjs.map +1 -1
  72. package/dist/Chips/InputChip.js +14 -0
  73. package/dist/Chips/InputChip.js.map +1 -1
  74. package/dist/Chips/__tests__/ActionChip.test.tsx +94 -0
  75. package/dist/Chips/__tests__/ChoiceChips.test.tsx +79 -0
  76. package/dist/Chips/__tests__/FilterChip.test.tsx +95 -0
  77. package/dist/Chips/__tests__/InputChip.test.tsx +155 -0
  78. package/dist/ChipsInput/ChipInputField.cjs +8 -2
  79. package/dist/ChipsInput/ChipInputField.cjs.map +1 -1
  80. package/dist/ChipsInput/ChipInputField.js +8 -2
  81. package/dist/ChipsInput/ChipInputField.js.map +1 -1
  82. package/dist/ChipsInput/__tests__/ChipDropdownInput.test.tsx +100 -0
  83. package/dist/ChipsInput/__tests__/ChipInputFields.test.tsx +155 -0
  84. package/dist/Dropdown/DropdownContent.cjs +2 -2
  85. package/dist/Dropdown/DropdownContent.cjs.map +1 -1
  86. package/dist/Dropdown/DropdownContent.js +2 -2
  87. package/dist/Dropdown/DropdownContent.js.map +1 -1
  88. package/dist/Dropdown/__tests__/DropdownFilter.test.tsx +39 -0
  89. package/dist/Footer/Components/FooterTop.cjs +3 -0
  90. package/dist/Footer/Components/FooterTop.cjs.map +1 -1
  91. package/dist/Footer/Components/FooterTop.js +3 -0
  92. package/dist/Footer/Components/FooterTop.js.map +1 -1
  93. package/dist/Footer/__tests__/Footer.test.tsx +182 -0
  94. package/dist/GlobalNavigationBar/Logo.cjs +2 -1
  95. package/dist/GlobalNavigationBar/Logo.cjs.map +1 -1
  96. package/dist/GlobalNavigationBar/Logo.js +2 -1
  97. package/dist/GlobalNavigationBar/Logo.js.map +1 -1
  98. package/dist/GlobalNavigationBar/__tests__/Logo.test.tsx +39 -0
  99. package/dist/GlobalNavigationBar/desktop/MainMenu.cjs +10 -1
  100. package/dist/GlobalNavigationBar/desktop/MainMenu.cjs.map +1 -1
  101. package/dist/GlobalNavigationBar/desktop/MainMenu.js +10 -1
  102. package/dist/GlobalNavigationBar/desktop/MainMenu.js.map +1 -1
  103. package/dist/GlobalNavigationBar/desktop/RightSideNav.cjs +5 -4
  104. package/dist/GlobalNavigationBar/desktop/RightSideNav.cjs.map +1 -1
  105. package/dist/GlobalNavigationBar/desktop/RightSideNav.js +6 -5
  106. package/dist/GlobalNavigationBar/desktop/RightSideNav.js.map +1 -1
  107. package/dist/GlobalNavigationBar/desktop/UserMenu.cjs +1 -1
  108. package/dist/GlobalNavigationBar/desktop/UserMenu.cjs.map +1 -1
  109. package/dist/GlobalNavigationBar/desktop/UserMenu.js +2 -2
  110. package/dist/GlobalNavigationBar/desktop/UserMenu.js.map +1 -1
  111. package/dist/GlobalNavigationBar/desktop/__tests__/DesktopActions.test.tsx +108 -0
  112. package/dist/GlobalNavigationBar/desktop/__tests__/ExtendedMainMenu.test.tsx +28 -0
  113. package/dist/GlobalNavigationBar/desktop/__tests__/MainMenu.test.tsx +55 -0
  114. package/dist/GlobalNavigationBar/desktop/__tests__/RightSideNav.test.tsx +45 -0
  115. package/dist/GlobalNavigationBar/desktop/__tests__/UserMenu.test.tsx +125 -0
  116. package/dist/GlobalNavigationBar/mobile/CommonStyles.cjs.map +1 -1
  117. package/dist/GlobalNavigationBar/mobile/CommonStyles.js.map +1 -1
  118. package/dist/GlobalNavigationBar/mobile/MobileActionContainer.cjs +1 -1
  119. package/dist/GlobalNavigationBar/mobile/MobileActionContainer.cjs.map +1 -1
  120. package/dist/GlobalNavigationBar/mobile/MobileActionContainer.js +2 -2
  121. package/dist/GlobalNavigationBar/mobile/MobileActionContainer.js.map +1 -1
  122. package/dist/GlobalNavigationBar/mobile/__tests__/MobileMenu.test.tsx +317 -0
  123. package/dist/GlobalNavigationBar/mobile/__tests__/MobileMenuContent.test.tsx +294 -0
  124. package/dist/GlobalNavigationBar/mobile/__tests__/MobileMenuHeader.test.tsx +195 -0
  125. package/dist/GlobalNavigationBar/types.cjs.map +1 -1
  126. package/dist/GlobalNavigationBar/types.d.ts +2 -2
  127. package/dist/GlobalNavigationBar/types.js.map +1 -1
  128. package/dist/HyperLink/HyperLink.cjs +18 -2
  129. package/dist/HyperLink/HyperLink.cjs.map +1 -1
  130. package/dist/HyperLink/HyperLink.d.ts +2 -0
  131. package/dist/HyperLink/HyperLink.js +18 -2
  132. package/dist/HyperLink/HyperLink.js.map +1 -1
  133. package/dist/HyperLink/styling.cjs +4 -0
  134. package/dist/HyperLink/styling.cjs.map +1 -1
  135. package/dist/HyperLink/styling.js +4 -0
  136. package/dist/HyperLink/styling.js.map +1 -1
  137. package/dist/InputFields/DatepickerField.cjs +21 -5
  138. package/dist/InputFields/DatepickerField.cjs.map +1 -1
  139. package/dist/InputFields/DatepickerField.d.ts +1 -1
  140. package/dist/InputFields/DatepickerField.js +21 -5
  141. package/dist/InputFields/DatepickerField.js.map +1 -1
  142. package/dist/InputFields/NumberField.cjs +4 -0
  143. package/dist/InputFields/NumberField.cjs.map +1 -1
  144. package/dist/InputFields/NumberField.js +4 -0
  145. package/dist/InputFields/NumberField.js.map +1 -1
  146. package/dist/InputFields/RadioButton.cjs +2 -2
  147. package/dist/InputFields/RadioButton.cjs.map +1 -1
  148. package/dist/InputFields/RadioButton.d.ts +4 -4
  149. package/dist/InputFields/RadioButton.js +2 -2
  150. package/dist/InputFields/RadioButton.js.map +1 -1
  151. package/dist/InputFields/__tests__/NumberField.test.tsx +67 -0
  152. package/dist/InputFields/__tests__/NumberInput.test.tsx +68 -0
  153. package/dist/InputFields/__tests__/QuickSearch.test.tsx +42 -0
  154. package/dist/InputFields/components/SearchBarInput.cjs +5 -0
  155. package/dist/InputFields/components/SearchBarInput.cjs.map +1 -1
  156. package/dist/InputFields/components/SearchBarInput.js +5 -0
  157. package/dist/InputFields/components/SearchBarInput.js.map +1 -1
  158. package/dist/LinearProgress/__tests__/LinearProgress.test.tsx +25 -0
  159. package/dist/List/__tests__/ListRow.test.tsx +18 -0
  160. package/dist/LoadingPage/__tests__/GlobalLoadingPage.test.tsx +23 -0
  161. package/dist/MiniProductCard/MiniProductCard.cjs +15 -1
  162. package/dist/MiniProductCard/MiniProductCard.cjs.map +1 -1
  163. package/dist/MiniProductCard/MiniProductCard.d.ts +1 -0
  164. package/dist/MiniProductCard/MiniProductCard.js +15 -1
  165. package/dist/MiniProductCard/MiniProductCard.js.map +1 -1
  166. package/dist/Modals/ModalContainer.cjs +102 -83
  167. package/dist/Modals/ModalContainer.cjs.map +1 -1
  168. package/dist/Modals/ModalContainer.d.ts +20 -1
  169. package/dist/Modals/ModalContainer.js +103 -84
  170. package/dist/Modals/ModalContainer.js.map +1 -1
  171. package/dist/Modals/ModalContent.cjs +7 -3
  172. package/dist/Modals/ModalContent.cjs.map +1 -1
  173. package/dist/Modals/ModalContent.js +8 -4
  174. package/dist/Modals/ModalContent.js.map +1 -1
  175. package/dist/Modals/ModalDialog.cjs +2 -2
  176. package/dist/Modals/ModalDialog.cjs.map +1 -1
  177. package/dist/Modals/ModalDialog.js +3 -3
  178. package/dist/Modals/ModalDialog.js.map +1 -1
  179. package/dist/Modals/ModalStyles.cjs +12 -0
  180. package/dist/Modals/ModalStyles.cjs.map +1 -1
  181. package/dist/Modals/ModalStyles.js +12 -0
  182. package/dist/Modals/ModalStyles.js.map +1 -1
  183. package/dist/Modals/ModalTypes.cjs.map +1 -1
  184. package/dist/Modals/ModalTypes.d.ts +3 -3
  185. package/dist/Modals/ModalTypes.js.map +1 -1
  186. package/dist/Modals/__tests__/Modal.test.tsx +169 -0
  187. package/dist/Modals/__tests__/ModalContainer.test.tsx +77 -0
  188. package/dist/Modals/__tests__/ModalContent.test.tsx +126 -0
  189. package/dist/NavItem/NavItem.cjs +7 -1
  190. package/dist/NavItem/NavItem.cjs.map +1 -1
  191. package/dist/NavItem/NavItem.js +7 -1
  192. package/dist/NavItem/NavItem.js.map +1 -1
  193. package/dist/NavItem/__tests__/NavItem.test.ts +6 -0
  194. package/dist/Navigation/NavigationProvider.cjs.map +1 -1
  195. package/dist/Navigation/NavigationProvider.d.ts +3 -0
  196. package/dist/Navigation/NavigationProvider.js.map +1 -1
  197. package/dist/NotificationDot/__tests__/NotificationDot.test.tsx +33 -0
  198. package/dist/Paginator/Paginator.cjs +18 -14
  199. package/dist/Paginator/Paginator.cjs.map +1 -1
  200. package/dist/Paginator/Paginator.d.ts +1 -5
  201. package/dist/Paginator/Paginator.js +18 -14
  202. package/dist/Paginator/Paginator.js.map +1 -1
  203. package/dist/Paginator/__tests__/Paginator.test.tsx +33 -0
  204. package/dist/Popover/Popover.cjs +1 -1
  205. package/dist/Popover/Popover.cjs.map +1 -1
  206. package/dist/Popover/Popover.js +2 -2
  207. package/dist/Popover/Popover.js.map +1 -1
  208. package/dist/Popover/__tests__/Popover.test.tsx +64 -0
  209. package/dist/ProfileButton/__tests__/ProfileButton.test.tsx +31 -0
  210. package/dist/QuizButton/__tests__/QuizButton.test.tsx +53 -0
  211. package/dist/SegmentControl/__tests__/SegmentControl.test.tsx +145 -0
  212. package/dist/SideMenu/SideMenuFooter.cjs +1 -1
  213. package/dist/SideMenu/SideMenuFooter.cjs.map +1 -1
  214. package/dist/SideMenu/SideMenuFooter.js +2 -2
  215. package/dist/SideMenu/SideMenuFooter.js.map +1 -1
  216. package/dist/SideMenu/__tests__/SideMenu.test.tsx +99 -0
  217. package/dist/SideMenu/types.cjs.map +1 -1
  218. package/dist/SideMenu/types.d.ts +2 -2
  219. package/dist/SideMenu/types.js.map +1 -1
  220. package/dist/Switcher/__tests__/SwitcherMenuItem.tsx +14 -0
  221. package/dist/Table/TableBody.cjs +1 -1
  222. package/dist/Table/TableBody.cjs.map +1 -1
  223. package/dist/Table/TableBody.js +2 -2
  224. package/dist/Table/TableBody.js.map +1 -1
  225. package/dist/Table/TableStyles.cjs +4 -1
  226. package/dist/Table/TableStyles.cjs.map +1 -1
  227. package/dist/Table/TableStyles.js +4 -1
  228. package/dist/Table/TableStyles.js.map +1 -1
  229. package/dist/Table/TableTypes.cjs.map +1 -1
  230. package/dist/Table/TableTypes.d.ts +2 -2
  231. package/dist/Table/TableTypes.js.map +1 -1
  232. package/dist/Table/__tests__/Table.test.tsx +499 -0
  233. package/dist/Tabs/VerticalTabs.cjs +1 -0
  234. package/dist/Tabs/VerticalTabs.cjs.map +1 -1
  235. package/dist/Tabs/VerticalTabs.js +1 -0
  236. package/dist/Tabs/VerticalTabs.js.map +1 -1
  237. package/dist/Tabs/__tests__/HorizontalTabs.test.tsx +95 -0
  238. package/dist/Tabs/__tests__/TabLink.test.tsx +40 -0
  239. package/dist/Tabs/__tests__/Tablist.test.tsx +37 -0
  240. package/dist/Tag/Tag.cjs +48 -12
  241. package/dist/Tag/Tag.cjs.map +1 -1
  242. package/dist/Tag/Tag.js +48 -12
  243. package/dist/Tag/Tag.js.map +1 -1
  244. package/dist/Tag/__tests__/Tag.test.tsx +86 -0
  245. package/dist/Tile/TileCommonItems.cjs +1 -1
  246. package/dist/Tile/TileCommonItems.cjs.map +1 -1
  247. package/dist/Tile/TileCommonItems.js +2 -2
  248. package/dist/Tile/TileCommonItems.js.map +1 -1
  249. package/dist/Tile/TileTypes.cjs.map +1 -1
  250. package/dist/Tile/TileTypes.d.ts +2 -2
  251. package/dist/Tile/TileTypes.js.map +1 -1
  252. package/dist/Toasters/Toast.cjs +1 -2
  253. package/dist/Toasters/Toast.cjs.map +1 -1
  254. package/dist/Toasters/Toast.js +2 -3
  255. package/dist/Toasters/Toast.js.map +1 -1
  256. package/dist/Toasters/__tests__/Toast.test.tsx +74 -0
  257. package/dist/Toggles/TogglerStyles.cjs +171 -15
  258. package/dist/Toggles/TogglerStyles.cjs.map +1 -1
  259. package/dist/Toggles/TogglerStyles.js +171 -15
  260. package/dist/Toggles/TogglerStyles.js.map +1 -1
  261. package/dist/Toggles/__tests__/ToggleButton.test.tsx +53 -0
  262. package/dist/Toggles/__tests__/ToggleSwitch.test.tsx +87 -0
  263. package/dist/Tooltips/__tests__/TooltipWrapper.test.tsx +16 -0
  264. package/dist/common/NavigationHelper.cjs +0 -28
  265. package/dist/common/NavigationHelper.cjs.map +1 -1
  266. package/dist/common/NavigationHelper.d.ts +0 -4
  267. package/dist/common/NavigationHelper.js +1 -22
  268. package/dist/common/NavigationHelper.js.map +1 -1
  269. package/dist/styles/colors.cjs +6 -0
  270. package/dist/styles/colors.cjs.map +1 -1
  271. package/dist/styles/colors.d.ts +6 -0
  272. package/dist/styles/colors.js +6 -0
  273. package/dist/styles/colors.js.map +1 -1
  274. package/dist/styles/design-tokens/dark/tokens.css +481 -0
  275. package/dist/styles/design-tokens/light/tokens.css +481 -0
  276. package/dist/styles/design-tokens/rqi_dark/tokens.css +481 -0
  277. package/dist/styles/design-tokens/rqi_light/tokens.css +481 -0
  278. package/dist/styles/global.cjs +4 -4
  279. package/dist/styles/global.cjs.map +1 -1
  280. package/dist/styles/global.js +4 -4
  281. package/dist/styles/global.js.map +1 -1
  282. package/dist/styles/react-datepicker.css +766 -0
  283. package/dist/styles/typography.cjs +4 -1
  284. package/dist/styles/typography.cjs.map +1 -1
  285. package/dist/styles/typography.js +4 -1
  286. package/dist/styles/typography.js.map +1 -1
  287. package/dist/test-utils.cjs +7 -1
  288. package/dist/test-utils.cjs.map +1 -1
  289. package/dist/test-utils.js +7 -1
  290. package/dist/test-utils.js.map +1 -1
  291. package/package.json +11 -6
  292. package/dist/Button/Button.cjs.map +0 -1
  293. package/dist/Button/Button.d.ts +0 -70
  294. package/dist/Button/Button.js.map +0 -1
  295. package/dist/Card/VerticalCard/Card.cjs.map +0 -1
  296. package/dist/Card/VerticalCard/Card.d.ts +0 -24
  297. package/dist/Card/VerticalCard/Card.js.map +0 -1
  298. package/dist/Card/VerticalCard/CardBottomSection.cjs.map +0 -1
  299. package/dist/Card/VerticalCard/CardBottomSection.d.ts +0 -49
  300. package/dist/Card/VerticalCard/CardBottomSection.js.map +0 -1
  301. package/dist/Card/VerticalCard/CardMiddleSection.cjs.map +0 -1
  302. package/dist/Card/VerticalCard/CardMiddleSection.d.ts +0 -37
  303. package/dist/Card/VerticalCard/CardMiddleSection.js.map +0 -1
  304. package/dist/Card/VerticalCard/CardTopSection.cjs.map +0 -1
  305. package/dist/Card/VerticalCard/CardTopSection.js.map +0 -1
  306. package/dist/GlobalNavigationBar/__tests__/GlobalNavigationBar.tests.d.ts +0 -1
  307. package/dist/GlobalNavigationBar/__tests__/Logo.tests.d.ts +0 -1
  308. package/dist/List/__tests__/ListRow.tests.d.ts +0 -1
  309. package/dist/Tabs/__tests__/TabLink.tests.d.ts +0 -1
  310. package/dist/Tabs/__tests__/Tablist.tests.d.ts +0 -2
  311. package/dist/common/Link.cjs +0 -45
  312. package/dist/common/Link.cjs.map +0 -1
  313. package/dist/common/Link.d.ts +0 -9
  314. package/dist/common/Link.js +0 -37
  315. package/dist/common/Link.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"ModalDialog.js","names":["React","Button","IconButton","SystemIcons","COLORS","ComponentL","ComponentM","ComponentTextStyle","ComponentXL","Size","ModalContainer","BackButtonWrapper","CloseButtonWrapper","Column","FlexContainer","ModalBody","ModalFooter","ModalHeaderActions","ModalHeaderActionsWithImage","ModalTitleSection","StyledModalHeader","ModalHoverModifier","ImageOverlay","ImageContainer","ModalNote","TooltipWrapper","HyperLink","ImageWithFallbacks","useTheme","jsx","_jsx","jsxs","_jsxs","ModalDialog","_ref","size","isModalOpen","title","topImage","topImageWithFallbacksProps","topImageGrayscale","buttons","leftFooterAction","backButton","closeAction","submitAction","tooltip","children","note","shouldCloseOnOverlayClick","state","icon","zIndex","contentOverflow","hideCloseButton","width","hasContentBorders","theme","getMinWidth","Small","Large","Medium","getMaxWidth","getImageHeight","getMarginBottom","getPadding","getMaxHeight","ModalTitle","textStyle","Bold","ModalTootip","delay","XSmall","align","position","withArrow","label","variant","shape","action","Help","color","generateToken","componentType","defaultVariant","ModalCloseButton","onClick","$hasImage","$size","borderRadius","Close","ModalBackButton","ArrowLineLeft","getLeftActionIconElement","cloneElement","LeftFooterAction","text","actionType","disabled","button","id","type","loading","style","order","marginRight","className","href","e","preventDefault","showModal","closeModal","minWidth","maxWidth","height","padding","onSubmit","display","flexDirection","maxHeight","$height","$marginBottom","src","alt","loader","fallbacks","$hasBackButton","$overflow","$hasContentBorders","map","b","i","propTypes","_pt","bool","isRequired","node","oneOfType","string","any","array","func","number"],"sources":["../../src/Modals/ModalDialog.tsx"],"sourcesContent":["import React from 'react';\r\nimport { Button, IconButton } from '../Button';\r\nimport { SystemIcons } from '../icons';\r\nimport { COLORS, ComponentL, ComponentM, ComponentTextStyle, ComponentXL } from '../styles';\r\nimport { Size } from '../types';\r\nimport ModalContainer from './ModalContainer';\r\nimport {\r\n BackButtonWrapper,\r\n CloseButtonWrapper,\r\n Column,\r\n FlexContainer,\r\n ModalBody,\r\n ModalFooter,\r\n ModalHeaderActions,\r\n ModalHeaderActionsWithImage,\r\n ModalTitleSection,\r\n StyledModalHeader,\r\n ModalHoverModifier,\r\n ImageOverlay,\r\n ImageContainer,\r\n} from './ModalStyles';\r\n\r\nimport { ModalNote } from './ModalNote';\r\nimport { TooltipWrapper } from '../Tooltips';\r\nimport { ButtonAction, LeftFooterAction, LeftFooterButton, LeftFooterHyperlink } from './ModalTypes';\r\nimport { HyperLink, ImageWithFallbacks } from '..';\r\nimport { ImageWithFallbacksProps } from '../Image/ImageWithFallbacks';\r\nimport { useTheme } from 'styled-components';\r\n\r\nexport interface ModalDialogProps {\r\n /** Optional. Size of the modal. Defaults to 'medium' */\r\n size?: Size.Small | Size.Medium | Size.Large;\r\n /** Required. Current state of the modal. */\r\n isModalOpen: boolean;\r\n /** Optional. Content of the ModalDialog. */\r\n children?: React.ReactNode;\r\n /** Optional. Title of the ModalDialog. */\r\n title?: string | React.ReactNode;\r\n /** Optional. Content of the image to be shown in the header of the modal. */\r\n topImage?: any;\r\n /** Optional. Serves same purpose as 'topImage' except adds support for fallback options. Has higher priority than 'topImage'. */\r\n topImageWithFallbacksProps?: ImageWithFallbacksProps;\r\n /** Optional. If flag is set then overlay is added that converts image to grey color. */\r\n topImageGrayscale?: boolean;\r\n /** Optional. Collection of Buttons that will be shown in the footer on the right side of the ModalDialog. */\r\n buttons?: ButtonAction[];\r\n /** Optional. Left footer action that will be shown on the left side of the footer of ModalDialog. Can be a hyperlink, button or a note. */\r\n leftFooterAction?: LeftFooterAction;\r\n /** Optional. Tooltip that will be shown */\r\n tooltip?: string;\r\n /** */\r\n backButton?: () => void;\r\n closeAction: () => void;\r\n hideCloseButton?: boolean;\r\n submitAction: (event?: React.FormEvent<HTMLFormElement> | undefined) => void;\r\n note?: string | React.ReactNode;\r\n state?: string;\r\n icon?: React.ReactNode;\r\n zIndex?: number;\r\n contentOverflow?: string;\r\n width?: string;\r\n hasContentBorders?: boolean;\r\n shouldCloseOnOverlayClick?: boolean;\r\n}\r\n\r\nexport const ModalDialog: React.FunctionComponent<ModalDialogProps> = ({\r\n size,\r\n isModalOpen,\r\n title,\r\n topImage,\r\n topImageWithFallbacksProps,\r\n topImageGrayscale,\r\n buttons,\r\n leftFooterAction,\r\n backButton,\r\n closeAction,\r\n submitAction,\r\n tooltip,\r\n children,\r\n note,\r\n shouldCloseOnOverlayClick,\r\n state,\r\n icon,\r\n zIndex,\r\n contentOverflow,\r\n hideCloseButton,\r\n width,\r\n hasContentBorders,\r\n}) => {\r\n\r\n const theme = useTheme();\r\n const getMinWidth = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '320px';\r\n case Size.Large:\r\n return '640px';\r\n case Size.Medium:\r\n default:\r\n return '480px';\r\n }\r\n };\r\n\r\n const getMaxWidth = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '480px';\r\n case Size.Large:\r\n return '720px';\r\n case Size.Medium:\r\n default:\r\n return '640px';\r\n }\r\n };\r\n\r\n const getImageHeight = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return 160;\r\n case Size.Medium:\r\n return 200;\r\n case Size.Large:\r\n return 240;\r\n default:\r\n return 200;\r\n }\r\n };\r\n\r\n const getMarginBottom = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '16px';\r\n case Size.Medium:\r\n return '24px';\r\n case Size.Large:\r\n return '32px';\r\n default:\r\n return '24px';\r\n }\r\n };\r\n\r\n const getPadding = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '16px 16px 8px';\r\n case Size.Medium:\r\n return '24px 24px 20px';\r\n case Size.Large:\r\n return '32px';\r\n default:\r\n return '24px 24px 16px';\r\n }\r\n };\r\n\r\n const getMaxHeight = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return 'calc(100vh - 56px)';\r\n case Size.Medium:\r\n return 'calc(100vh - 76px)';\r\n case Size.Large:\r\n return 'calc(100vh - 96px)';\r\n default:\r\n return 'calc(100vh - 72px)';\r\n }\r\n };\r\n\r\n const ModalTitle = (title: string | React.ReactNode, size?: Size) => {\r\n if (typeof title === 'string') {\r\n switch (size) {\r\n case Size.Small:\r\n return <ComponentM textStyle={ComponentTextStyle.Bold}>{title}</ComponentM>;\r\n case Size.Medium:\r\n return <ComponentL textStyle={ComponentTextStyle.Bold}>{title}</ComponentL>;\r\n case Size.Large:\r\n return <ComponentXL textStyle={ComponentTextStyle.Bold}>{title}</ComponentXL>;\r\n default:\r\n return <ComponentL textStyle={ComponentTextStyle.Bold}>{title}</ComponentL>;\r\n }\r\n } else {\r\n return title;\r\n }\r\n };\r\n\r\n const ModalTootip = (tooltip: string) => {\r\n return (\r\n <ModalHoverModifier>\r\n <TooltipWrapper delay=\"0s\" size={Size.XSmall} align=\"center\" position=\"top\" withArrow={false} label={tooltip}>\r\n <IconButton variant=\"secondary\" shape=\"circular\" action={() => {}}>\r\n <SystemIcons.Help size=\"24px\" color={COLORS.generateToken({componentType:'icon', defaultVariant:'subtle'}, theme)} />\r\n </IconButton>\r\n </TooltipWrapper>\r\n </ModalHoverModifier>\r\n );\r\n };\r\n\r\n const ModalCloseButton = (onClick: any) => {\r\n return (\r\n <CloseButtonWrapper $hasImage={!!topImage || !!topImageWithFallbacksProps} $size={size}>\r\n <IconButton variant=\"secondary\" shape=\"circular\" action={() => onClick()} borderRadius={48}>\r\n <SystemIcons.Close size=\"24px\" color={COLORS.generateToken({componentType:'icon', defaultVariant:'subtle'}, theme)} />\r\n </IconButton>\r\n </CloseButtonWrapper>\r\n );\r\n };\r\n\r\n const ModalBackButton = () => {\r\n if (backButton) {\r\n return (\r\n <BackButtonWrapper $hasImage={!!topImage || !!topImageWithFallbacksProps} $size={size}>\r\n <IconButton variant=\"secondary\" shape=\"circular\" action={() => backButton()} borderRadius={48}>\r\n <SystemIcons.ArrowLineLeft size=\"24px\" color={COLORS.generateToken({componentType:'icon', defaultVariant:'subtle'}, theme)} />\r\n </IconButton>\r\n </BackButtonWrapper>\r\n );\r\n }\r\n };\r\n\r\n const getLeftActionIconElement = (icon: React.ReactNode) => {\r\n return React.cloneElement(icon as React.ReactElement<any>, { size: size === Size.Small ? '20px' : size === Size.Large ? '28px' : '24px' });\r\n };\r\n\r\n const LeftFooterAction = (leftFooterAction: LeftFooterAction) => {\r\n const { text, actionType, disabled, icon, action } = leftFooterAction;\r\n switch (actionType) {\r\n case 'button':\r\n const button = leftFooterAction as LeftFooterButton;\r\n return (\r\n <Button\r\n id={'left-action-button'}\r\n type={button?.type}\r\n disabled={disabled}\r\n loading={button?.loading}\r\n icon={icon}\r\n size={size}\r\n onClick={action}\r\n variant={button?.variant ?? 'secondary'}\r\n style={{ order: -1, marginRight: 'auto' }}>\r\n {button?.children ?? button?.text}\r\n </Button>\r\n );\r\n case 'hyperlink':\r\n return (\r\n <HyperLink\r\n id=\"left-action-hyperlink\"\r\n className=\"footer-action\"\r\n href={(leftFooterAction as LeftFooterHyperlink).href}\r\n disabled={disabled}\r\n variant=\"default\"\r\n onClick={(e) => {\r\n if (action) {\r\n e.preventDefault();\r\n action(e);\r\n }\r\n }}>\r\n {text}\r\n {icon && getLeftActionIconElement(icon)}\r\n </HyperLink>\r\n );\r\n case 'note':\r\n return (\r\n <div className=\"footer-action note\">\r\n {icon && getLeftActionIconElement(icon)}\r\n <span>{text}</span>\r\n </div>\r\n );\r\n }\r\n };\r\n\r\n return (\r\n <ModalContainer\r\n showModal={isModalOpen}\r\n closeModal={closeAction}\r\n minWidth={getMinWidth()}\r\n shouldCloseOnOverlayClick={shouldCloseOnOverlayClick}\r\n maxWidth={getMaxWidth()}\r\n height=\"auto\"\r\n padding={getPadding()}\r\n zIndex={zIndex}\r\n width={width}>\r\n <Column>\r\n <form onSubmit={submitAction} style={{ display: 'flex', flexDirection: 'column', maxHeight: getMaxHeight() }}>\r\n {(topImage || topImageWithFallbacksProps) && (\r\n <StyledModalHeader $size={size} $height={getImageHeight()} $marginBottom={getMarginBottom()}>\r\n <ImageContainer $height={getImageHeight()}>\r\n {topImageGrayscale && <ImageOverlay $height={getImageHeight()} />}\r\n {topImage && <img src={topImage} alt=\"Modal top\" />}\r\n {!topImage && topImageWithFallbacksProps && (\r\n <ImageWithFallbacks\r\n loader={topImageWithFallbacksProps.loader}\r\n alt={topImageWithFallbacksProps.alt}\r\n fallbacks={topImageWithFallbacksProps.fallbacks}\r\n src={topImageWithFallbacksProps.src}\r\n />\r\n )}\r\n </ImageContainer>\r\n <ModalHeaderActionsWithImage $hasBackButton={!!backButton}>\r\n {ModalBackButton()}\r\n {!hideCloseButton && ModalCloseButton(closeAction)}\r\n </ModalHeaderActionsWithImage>\r\n </StyledModalHeader>\r\n )}\r\n <ModalTitleSection>\r\n <FlexContainer>\r\n {!(topImage || topImageWithFallbacksProps) && ModalBackButton()}\r\n {title && ModalTitle(title, size)}\r\n </FlexContainer>\r\n {(tooltip || !(topImage || topImageWithFallbacksProps)) && (\r\n <ModalHeaderActions>\r\n {tooltip && ModalTootip(tooltip)}\r\n {!(topImage || topImageWithFallbacksProps || hideCloseButton) && ModalCloseButton(closeAction)}\r\n </ModalHeaderActions>\r\n )}\r\n </ModalTitleSection>\r\n\r\n <ModalBody $size={size} $overflow={contentOverflow} $hasContentBorders={hasContentBorders}>\r\n {children}\r\n </ModalBody>\r\n\r\n {note && <ModalNote note={note} state={state} size={size} icon={icon} />}\r\n\r\n <ModalFooter $size={size}>\r\n {leftFooterAction && LeftFooterAction(leftFooterAction)}\r\n {buttons?.map((b, i) => (\r\n <Button key={b.id || i} icon={b.icon} id={b.id} disabled={b.disabled} loading={b.loading} size={size} onClick={b.action} type={b.type} variant={b.variant}>\r\n {b.children ?? b.text}\r\n </Button>\r\n ))}\r\n </ModalFooter>\r\n </form>\r\n </Column>\r\n </ModalContainer>\r\n );\r\n};\r\n\r\nexport default ModalDialog;\r\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"ModalDialog.js","names":["React","TextButton","IconButton","SystemIcons","COLORS","ComponentL","ComponentM","ComponentTextStyle","ComponentXL","Size","ModalContainer","BackButtonWrapper","CloseButtonWrapper","Column","FlexContainer","ModalBody","ModalFooter","ModalHeaderActions","ModalHeaderActionsWithImage","ModalTitleSection","StyledModalHeader","ModalHoverModifier","ImageOverlay","ImageContainer","ModalNote","TooltipWrapper","HyperLink","ImageWithFallbacks","useTheme","jsx","_jsx","jsxs","_jsxs","ModalDialog","_ref","size","isModalOpen","title","topImage","topImageWithFallbacksProps","topImageGrayscale","buttons","leftFooterAction","backButton","closeAction","submitAction","tooltip","children","note","shouldCloseOnOverlayClick","state","icon","zIndex","contentOverflow","hideCloseButton","width","hasContentBorders","theme","getMinWidth","Small","Large","Medium","getMaxWidth","getImageHeight","getMarginBottom","getPadding","getMaxHeight","ModalTitle","textStyle","Bold","ModalTootip","delay","XSmall","align","position","withArrow","label","variant","shape","action","Help","color","generateToken","componentType","defaultVariant","ModalCloseButton","onClick","$hasImage","$size","borderRadius","Close","ModalBackButton","ArrowLineLeft","getLeftActionIconElement","cloneElement","LeftFooterAction","text","actionType","disabled","button","id","type","loading","style","order","marginRight","className","href","e","preventDefault","showModal","closeModal","minWidth","maxWidth","height","padding","onSubmit","display","flexDirection","maxHeight","$height","$marginBottom","src","alt","loader","fallbacks","$hasBackButton","$overflow","$hasContentBorders","map","b","i","propTypes","_pt","bool","isRequired","node","oneOfType","string","any","array","func","number"],"sources":["../../src/Modals/ModalDialog.tsx"],"sourcesContent":["import React from 'react';\r\nimport { TextButton, IconButton } from '../Button';\r\nimport { SystemIcons } from '../icons';\r\nimport { COLORS, ComponentL, ComponentM, ComponentTextStyle, ComponentXL } from '../styles';\r\nimport { Size } from '../types';\r\nimport ModalContainer from './ModalContainer';\r\nimport {\r\n BackButtonWrapper,\r\n CloseButtonWrapper,\r\n Column,\r\n FlexContainer,\r\n ModalBody,\r\n ModalFooter,\r\n ModalHeaderActions,\r\n ModalHeaderActionsWithImage,\r\n ModalTitleSection,\r\n StyledModalHeader,\r\n ModalHoverModifier,\r\n ImageOverlay,\r\n ImageContainer,\r\n} from './ModalStyles';\r\n\r\nimport { ModalNote } from './ModalNote';\r\nimport { TooltipWrapper } from '../Tooltips';\r\nimport { ButtonAction, LeftFooterAction, LeftFooterButton, LeftFooterHyperlink } from './ModalTypes';\r\nimport { HyperLink, ImageWithFallbacks } from '..';\r\nimport { ImageWithFallbacksProps } from '../Image/ImageWithFallbacks';\r\nimport { useTheme } from 'styled-components';\r\n\r\nexport interface ModalDialogProps {\r\n /** Optional. Size of the modal. Defaults to 'medium' */\r\n size?: Size.Small | Size.Medium | Size.Large;\r\n /** Required. Current state of the modal. */\r\n isModalOpen: boolean;\r\n /** Optional. Content of the ModalDialog. */\r\n children?: React.ReactNode;\r\n /** Optional. Title of the ModalDialog. */\r\n title?: string | React.ReactNode;\r\n /** Optional. Content of the image to be shown in the header of the modal. */\r\n topImage?: any;\r\n /** Optional. Serves same purpose as 'topImage' except adds support for fallback options. Has higher priority than 'topImage'. */\r\n topImageWithFallbacksProps?: ImageWithFallbacksProps;\r\n /** Optional. If flag is set then overlay is added that converts image to grey color. */\r\n topImageGrayscale?: boolean;\r\n /** Optional. Collection of Buttons that will be shown in the footer on the right side of the ModalDialog. */\r\n buttons?: ButtonAction[];\r\n /** Optional. Left footer action that will be shown on the left side of the footer of ModalDialog. Can be a hyperlink, button or a note. */\r\n leftFooterAction?: LeftFooterAction;\r\n /** Optional. Tooltip that will be shown */\r\n tooltip?: string;\r\n /** */\r\n backButton?: () => void;\r\n closeAction: () => void;\r\n hideCloseButton?: boolean;\r\n submitAction: (event?: React.FormEvent<HTMLFormElement> | undefined) => void;\r\n note?: string | React.ReactNode;\r\n state?: string;\r\n icon?: React.ReactNode;\r\n zIndex?: number;\r\n contentOverflow?: string;\r\n width?: string;\r\n hasContentBorders?: boolean;\r\n shouldCloseOnOverlayClick?: boolean;\r\n}\r\n\r\nexport const ModalDialog: React.FunctionComponent<ModalDialogProps> = ({\r\n size,\r\n isModalOpen,\r\n title,\r\n topImage,\r\n topImageWithFallbacksProps,\r\n topImageGrayscale,\r\n buttons,\r\n leftFooterAction,\r\n backButton,\r\n closeAction,\r\n submitAction,\r\n tooltip,\r\n children,\r\n note,\r\n shouldCloseOnOverlayClick,\r\n state,\r\n icon,\r\n zIndex,\r\n contentOverflow,\r\n hideCloseButton,\r\n width,\r\n hasContentBorders,\r\n}) => {\r\n\r\n const theme = useTheme();\r\n const getMinWidth = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '320px';\r\n case Size.Large:\r\n return '640px';\r\n case Size.Medium:\r\n default:\r\n return '480px';\r\n }\r\n };\r\n\r\n const getMaxWidth = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '480px';\r\n case Size.Large:\r\n return '720px';\r\n case Size.Medium:\r\n default:\r\n return '640px';\r\n }\r\n };\r\n\r\n const getImageHeight = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return 160;\r\n case Size.Medium:\r\n return 200;\r\n case Size.Large:\r\n return 240;\r\n default:\r\n return 200;\r\n }\r\n };\r\n\r\n const getMarginBottom = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '16px';\r\n case Size.Medium:\r\n return '24px';\r\n case Size.Large:\r\n return '32px';\r\n default:\r\n return '24px';\r\n }\r\n };\r\n\r\n const getPadding = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return '16px 16px 8px';\r\n case Size.Medium:\r\n return '24px 24px 20px';\r\n case Size.Large:\r\n return '32px';\r\n default:\r\n return '24px 24px 16px';\r\n }\r\n };\r\n\r\n const getMaxHeight = () => {\r\n switch (size) {\r\n case Size.Small:\r\n return 'calc(100vh - 56px)';\r\n case Size.Medium:\r\n return 'calc(100vh - 76px)';\r\n case Size.Large:\r\n return 'calc(100vh - 96px)';\r\n default:\r\n return 'calc(100vh - 72px)';\r\n }\r\n };\r\n\r\n const ModalTitle = (title: string | React.ReactNode, size?: Size) => {\r\n if (typeof title === 'string') {\r\n switch (size) {\r\n case Size.Small:\r\n return <ComponentM textStyle={ComponentTextStyle.Bold}>{title}</ComponentM>;\r\n case Size.Medium:\r\n return <ComponentL textStyle={ComponentTextStyle.Bold}>{title}</ComponentL>;\r\n case Size.Large:\r\n return <ComponentXL textStyle={ComponentTextStyle.Bold}>{title}</ComponentXL>;\r\n default:\r\n return <ComponentL textStyle={ComponentTextStyle.Bold}>{title}</ComponentL>;\r\n }\r\n } else {\r\n return title;\r\n }\r\n };\r\n\r\n const ModalTootip = (tooltip: string) => {\r\n return (\r\n <ModalHoverModifier>\r\n <TooltipWrapper delay=\"0s\" size={Size.XSmall} align=\"center\" position=\"top\" withArrow={false} label={tooltip}>\r\n <IconButton variant=\"secondary\" shape=\"circular\" action={() => {}}>\r\n <SystemIcons.Help size=\"24px\" color={COLORS.generateToken({componentType:'icon', defaultVariant:'subtle'}, theme)} />\r\n </IconButton>\r\n </TooltipWrapper>\r\n </ModalHoverModifier>\r\n );\r\n };\r\n\r\n const ModalCloseButton = (onClick: any) => {\r\n return (\r\n <CloseButtonWrapper $hasImage={!!topImage || !!topImageWithFallbacksProps} $size={size}>\r\n <IconButton variant=\"secondary\" shape=\"circular\" action={() => onClick()} borderRadius={48}>\r\n <SystemIcons.Close size=\"24px\" color={COLORS.generateToken({componentType:'icon', defaultVariant:'subtle'}, theme)} />\r\n </IconButton>\r\n </CloseButtonWrapper>\r\n );\r\n };\r\n\r\n const ModalBackButton = () => {\r\n if (backButton) {\r\n return (\r\n <BackButtonWrapper $hasImage={!!topImage || !!topImageWithFallbacksProps} $size={size}>\r\n <IconButton variant=\"secondary\" shape=\"circular\" action={() => backButton()} borderRadius={48}>\r\n <SystemIcons.ArrowLineLeft size=\"24px\" color={COLORS.generateToken({componentType:'icon', defaultVariant:'subtle'}, theme)} />\r\n </IconButton>\r\n </BackButtonWrapper>\r\n );\r\n }\r\n };\r\n\r\n const getLeftActionIconElement = (icon: React.ReactNode) => {\r\n return React.cloneElement(icon as React.ReactElement<any>, { size: size === Size.Small ? '20px' : size === Size.Large ? '28px' : '24px' });\r\n };\r\n\r\n const LeftFooterAction = (leftFooterAction: LeftFooterAction) => {\r\n const { text, actionType, disabled, icon, action } = leftFooterAction;\r\n switch (actionType) {\r\n case 'button':\r\n const button = leftFooterAction as LeftFooterButton;\r\n return (\r\n <TextButton\r\n id={'left-action-button'}\r\n type={button?.type}\r\n disabled={disabled}\r\n loading={button?.loading}\r\n icon={icon}\r\n size={size}\r\n onClick={action}\r\n variant={button?.variant ?? 'secondary'}\r\n style={{ order: -1, marginRight: 'auto' }}>\r\n {button?.children ?? button?.text}\r\n </TextButton>\r\n );\r\n case 'hyperlink':\r\n return (\r\n <HyperLink\r\n id=\"left-action-hyperlink\"\r\n className=\"footer-action\"\r\n href={(leftFooterAction as LeftFooterHyperlink).href}\r\n disabled={disabled}\r\n variant=\"default\"\r\n onClick={(e) => {\r\n if (action) {\r\n e.preventDefault();\r\n action(e);\r\n }\r\n }}>\r\n {text}\r\n {icon && getLeftActionIconElement(icon)}\r\n </HyperLink>\r\n );\r\n case 'note':\r\n return (\r\n <div className=\"footer-action note\">\r\n {icon && getLeftActionIconElement(icon)}\r\n <span>{text}</span>\r\n </div>\r\n );\r\n }\r\n };\r\n\r\n return (\r\n <ModalContainer\r\n showModal={isModalOpen}\r\n closeModal={closeAction}\r\n minWidth={getMinWidth()}\r\n shouldCloseOnOverlayClick={shouldCloseOnOverlayClick}\r\n maxWidth={getMaxWidth()}\r\n height=\"auto\"\r\n padding={getPadding()}\r\n zIndex={zIndex}\r\n width={width}>\r\n <Column>\r\n <form onSubmit={submitAction} style={{ display: 'flex', flexDirection: 'column', maxHeight: getMaxHeight() }}>\r\n {(topImage || topImageWithFallbacksProps) && (\r\n <StyledModalHeader $size={size} $height={getImageHeight()} $marginBottom={getMarginBottom()}>\r\n <ImageContainer $height={getImageHeight()}>\r\n {topImageGrayscale && <ImageOverlay $height={getImageHeight()} />}\r\n {topImage && <img src={topImage} alt=\"Modal top\" />}\r\n {!topImage && topImageWithFallbacksProps && (\r\n <ImageWithFallbacks\r\n loader={topImageWithFallbacksProps.loader}\r\n alt={topImageWithFallbacksProps.alt}\r\n fallbacks={topImageWithFallbacksProps.fallbacks}\r\n src={topImageWithFallbacksProps.src}\r\n />\r\n )}\r\n </ImageContainer>\r\n <ModalHeaderActionsWithImage $hasBackButton={!!backButton}>\r\n {ModalBackButton()}\r\n {!hideCloseButton && ModalCloseButton(closeAction)}\r\n </ModalHeaderActionsWithImage>\r\n </StyledModalHeader>\r\n )}\r\n <ModalTitleSection>\r\n <FlexContainer>\r\n {!(topImage || topImageWithFallbacksProps) && ModalBackButton()}\r\n {title && ModalTitle(title, size)}\r\n </FlexContainer>\r\n {(tooltip || !(topImage || topImageWithFallbacksProps)) && (\r\n <ModalHeaderActions>\r\n {tooltip && ModalTootip(tooltip)}\r\n {!(topImage || topImageWithFallbacksProps || hideCloseButton) && ModalCloseButton(closeAction)}\r\n </ModalHeaderActions>\r\n )}\r\n </ModalTitleSection>\r\n\r\n <ModalBody $size={size} $overflow={contentOverflow} $hasContentBorders={hasContentBorders}>\r\n {children}\r\n </ModalBody>\r\n\r\n {note && <ModalNote note={note} state={state} size={size} icon={icon} />}\r\n\r\n <ModalFooter $size={size}>\r\n {leftFooterAction && LeftFooterAction(leftFooterAction)}\r\n {buttons?.map((b, i) => (\r\n <TextButton key={b.id || i} icon={b.icon} id={b.id} disabled={b.disabled} loading={b.loading} size={size} onClick={b.action} type={b.type} variant={b.variant}>\r\n {b.children ?? b.text}\r\n </TextButton>\r\n ))}\r\n </ModalFooter>\r\n </form>\r\n </Column>\r\n </ModalContainer>\r\n );\r\n};\r\n\r\nexport default ModalDialog;\r\n"],"mappings":"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","ignoreList":[]}
@@ -20,6 +20,10 @@ const ModalHeader = exports.ModalHeader = _styledComponents.default.section`
20
20
  margin-bottom: ${props => props.$marginBottom || '24px'};
21
21
  `;
22
22
  const StyledModalHeader = exports.StyledModalHeader = (0, _styledComponents.default)(ModalHeader)`
23
+ color: ${props => _.COLORS.generateToken({
24
+ componentType: 'text',
25
+ defaultVariant: 'default'
26
+ }, props.theme)};
23
27
  flex: 1 0 calc(50% - 5px);
24
28
  flex-direction: column;
25
29
  flex-basis: auto;
@@ -68,12 +72,20 @@ const ImageOverlay = exports.ImageOverlay = _styledComponents.default.div`
68
72
  }
69
73
  `;
70
74
  const Column = exports.Column = _styledComponents.default.div`
75
+ background: ${props => _.COLORS.generateToken({
76
+ componentType: 'bg-surface',
77
+ defaultVariant: 'default'
78
+ }, props.theme)};
71
79
  display: flex;
72
80
  flex-direction: column;
73
81
  justify-content: stretch;
74
82
  height: 100%;
75
83
  `;
76
84
  const ModalTitleSection = exports.ModalTitleSection = _styledComponents.default.section`
85
+ color: ${props => _.COLORS.generateToken({
86
+ componentType: 'text',
87
+ defaultVariant: 'default'
88
+ }, props.theme)};
77
89
  word-break: break-word;
78
90
  display: flex;
79
91
  width: 100%;
@@ -1 +1 @@
1
- {"version":3,"file":"ModalStyles.cjs","names":["_styledComponents","_interopRequireWildcard","require","_","_styles","_types","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","ModalHeader","exports","styled","section","props","$marginBottom","StyledModalHeader","$height","$size","ImageContainer","div","ImageOverlay","Column","ModalTitleSection","ModalHeaderActionsWithImage","$hasBackButton","ModalHeaderActions","FlexContainer","ModalHoverModifier","CloseButtonWrapper","$hasImage","css","BackButtonWrapper","ModalTitle","h5","$fontSize","ModalNoteSection","getBackgroundColor","$state","theme","getNoteMessageColor","ModalBody","$overflow","$hasContentBorders","COLORS","generateToken","componentType","defaultVariant","scrollBarStyling","Size","Small","ModalFooter","Large","state"],"sources":["../../src/Modals/ModalStyles.ts"],"sourcesContent":["import styled, { css } from 'styled-components';\r\nimport { COLORS } from '..';\r\nimport { scrollBarStyling } from '../styles';\r\nimport { Size } from '../types';\r\n\r\n/**\r\n * Modal styles\r\n */\r\nexport const ModalHeader = styled.section<{ $marginBottom?: string }>`\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n margin-bottom: ${(props) => props.$marginBottom || '24px'};\r\n`;\r\n\r\nexport const StyledModalHeader = styled(ModalHeader)<{ $marginBottom?: string; $size?: string; $height?: number }>`\r\n flex: 1 0 calc(50% - 5px);\r\n flex-direction: column;\r\n flex-basis: auto;\r\n text-align: left;\r\n height: ${(props) => (props.$height ? `${props.$height - (props.$size === 'small' ? 16 : props.$size === 'large' ? 32 : 24)}px` : '')};\r\n img {\r\n width: 100%;\r\n height: ${(props) => `${props.$height}px`};\r\n object-fit: cover;\r\n border-radius: 8px 8px 0 0;\r\n }\r\n`;\r\n\r\nexport const ImageContainer = styled.div<{ $height: number }>`\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n\r\n #imgWithFallbackLoadingIndicator {\r\n position: absolute;\r\n left: 50%;\r\n top: 0;\r\n }\r\n`;\r\n\r\nexport const ImageOverlay = styled.div<{ $height: number }>`\r\n position: absolute;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n width: 100%;\r\n background: rgba(255, 255, 255, 0.5);\r\n border-radius: 8px 8px 0 0;\r\n\r\n &:after {\r\n position: absolute;\r\n height: ${(props) => `${props.$height}px`};\r\n border-radius: 8px 8px 0 0;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n background: #888888;\r\n mix-blend-mode: saturation;\r\n }\r\n`;\r\n\r\nexport const Column = styled.div`\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: stretch;\r\n height: 100%;\r\n`;\r\n\r\nexport const ModalTitleSection = styled.section`\r\n word-break: break-word;\r\n display: flex;\r\n width: 100%;\r\n justify-content: space-between;\r\n`;\r\n\r\nexport const ModalHeaderActionsWithImage = styled.div<{ $hasBackButton?: boolean }>`\r\n display: flex;\r\n flex-direction: ${(props) => (!props.$hasBackButton ? 'row-reverse' : 'row')};\r\n justify-content: space-between;\r\n width: 100%;\r\n z-index: 1;\r\n`;\r\n\r\nexport const ModalHeaderActions = styled.div`\r\n display: flex;\r\n margin: -12px -12px 0 0;\r\n`;\r\n\r\nexport const FlexContainer = styled.div`\r\n display: flex;\r\n width: 100%;\r\n`;\r\n\r\nexport const ModalHoverModifier = styled.div`\r\n button:hover {\r\n cursor: help !important;\r\n }\r\n`;\r\n\r\nexport const CloseButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n ${(props) =>\r\n props.$hasImage\r\n ? css`\r\n margin: -12px -12px 0 0 !important;\r\n `\r\n : css`\r\n left: unset;\r\n `}\r\n }\r\n`;\r\n\r\nexport const BackButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n margin: -12px 0 0 -12px !important;\r\n }\r\n`;\r\n\r\nexport const ModalTitle = styled.h5<{ $fontSize?: string }>`\r\n margin: 0;\r\n font-size: ${(props) => props.$fontSize || '1.25em'};\r\n font-weight: bold;\r\n`;\r\n\r\nexport const ModalNoteSection = styled.section<{ $state: string; $size?: string }>`\r\n background-color: ${(props) => getBackgroundColor(props.$state, props.theme)};\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n margin-top: ${(props) => (props?.$size === 'small' ? `0px` : props?.$size === 'large' ? '16px' : '4px')};\r\n margin-bottom: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '24px' : '16px')};\r\n display: flex;\r\n flex-direction: row;\r\n padding: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '16px' : '12px')};\r\n border-radius: 2px;\r\n\r\n span {\r\n display: block;\r\n width: calc(100% - 32px);\r\n margin-left: 8px;\r\n color: ${(props) => getNoteMessageColor(props.$state, props.theme)};\r\n }\r\n`;\r\n\r\nexport const ModalBody = styled.section<{ $size?: string; $overflow?: string; $hasContentBorders?: boolean }>`\r\n flex: 1 1 auto;\r\n overflow: ${(props) => props?.$overflow ?? 'unset'};\r\n margin: ${(props) => (props?.$size === 'small' ? `8px 0` : props?.$size === 'large' ? '16px 0' : '12px 0')};\r\n\r\n border-top: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n border-bottom: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n\r\n ${scrollBarStyling(Size.Small)}\r\n`;\r\n\r\nexport const ModalFooter = styled.section<{ $size?: Size }>`\r\n display: flex;\r\n justify-content: flex-end;\r\n\r\n gap: ${(props) => (props?.$size === 'large' ? `16px` : '8px')};\r\n\r\n .footer-action {\r\n order: -1;\r\n margin-right: auto;\r\n display: flex;\r\n align-items: center;\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n gap: ${(props) => (props?.$size === Size.Large ? `8px` : props?.$size === Size.Small ? '4px' : '6px')};\r\n }\r\n\r\n .footer-action.note {\r\n color: ${props => COLORS.generateToken({componentType: 'text', defaultVariant: 'subtle' }, props.theme)};\r\n }\r\n`;\r\n\r\nexport const getBackgroundColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'positive'}, theme);\r\n case 'warning':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'warning'}, theme);\r\n case 'critical':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'critical'}, theme);\r\n default:\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'primary'}, theme);\r\n }\r\n};\r\n\r\nexport const getNoteMessageColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'positive' }, theme);\r\n case 'warning':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'warning' }, theme);\r\n case 'critical':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'critical' }, theme);\r\n default:\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'primary' }, theme);\r\n }\r\n};\r\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"ModalStyles.cjs","names":["_styledComponents","_interopRequireWildcard","require","_","_styles","_types","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","ModalHeader","exports","styled","section","props","$marginBottom","StyledModalHeader","COLORS","generateToken","componentType","defaultVariant","theme","$height","$size","ImageContainer","div","ImageOverlay","Column","ModalTitleSection","ModalHeaderActionsWithImage","$hasBackButton","ModalHeaderActions","FlexContainer","ModalHoverModifier","CloseButtonWrapper","$hasImage","css","BackButtonWrapper","ModalTitle","h5","$fontSize","ModalNoteSection","getBackgroundColor","$state","getNoteMessageColor","ModalBody","$overflow","$hasContentBorders","scrollBarStyling","Size","Small","ModalFooter","Large","state"],"sources":["../../src/Modals/ModalStyles.ts"],"sourcesContent":["import styled, { css } from 'styled-components';\r\nimport { COLORS } from '..';\r\nimport { scrollBarStyling } from '../styles';\r\nimport { Size } from '../types';\r\n\r\n/**\r\n * Modal styles\r\n */\r\nexport const ModalHeader = styled.section<{ $marginBottom?: string }>`\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n margin-bottom: ${(props) => props.$marginBottom || '24px'};\r\n`;\r\n\r\nexport const StyledModalHeader = styled(ModalHeader)<{ $marginBottom?: string; $size?: string; $height?: number }>`\r\n color: ${props => COLORS.generateToken({componentType:'text', defaultVariant:'default'}, props.theme)};\r\n flex: 1 0 calc(50% - 5px);\r\n flex-direction: column;\r\n flex-basis: auto;\r\n text-align: left;\r\n height: ${(props) => (props.$height ? `${props.$height - (props.$size === 'small' ? 16 : props.$size === 'large' ? 32 : 24)}px` : '')};\r\n img {\r\n width: 100%;\r\n height: ${(props) => `${props.$height}px`};\r\n object-fit: cover;\r\n border-radius: 8px 8px 0 0;\r\n }\r\n`;\r\n\r\nexport const ImageContainer = styled.div<{ $height: number }>`\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n\r\n #imgWithFallbackLoadingIndicator {\r\n position: absolute;\r\n left: 50%;\r\n top: 0;\r\n }\r\n`;\r\n\r\nexport const ImageOverlay = styled.div<{ $height: number }>`\r\n position: absolute;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n width: 100%;\r\n background: rgba(255, 255, 255, 0.5);\r\n border-radius: 8px 8px 0 0;\r\n\r\n &:after {\r\n position: absolute;\r\n height: ${(props) => `${props.$height}px`};\r\n border-radius: 8px 8px 0 0;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n background: #888888;\r\n mix-blend-mode: saturation;\r\n }\r\n`;\r\n\r\nexport const Column = styled.div`\r\n background: ${props => COLORS.generateToken({componentType:'bg-surface', defaultVariant:'default'}, props.theme)};\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: stretch;\r\n height: 100%;\r\n`;\r\n\r\nexport const ModalTitleSection = styled.section`\r\n color: ${props => COLORS.generateToken({componentType:'text', defaultVariant:'default'}, props.theme)};\r\n word-break: break-word;\r\n display: flex;\r\n width: 100%;\r\n justify-content: space-between;\r\n`;\r\n\r\nexport const ModalHeaderActionsWithImage = styled.div<{ $hasBackButton?: boolean }>`\r\n display: flex;\r\n flex-direction: ${(props) => (!props.$hasBackButton ? 'row-reverse' : 'row')};\r\n justify-content: space-between;\r\n width: 100%;\r\n z-index: 1;\r\n`;\r\n\r\nexport const ModalHeaderActions = styled.div`\r\n display: flex;\r\n margin: -12px -12px 0 0;\r\n`;\r\n\r\nexport const FlexContainer = styled.div`\r\n display: flex;\r\n width: 100%;\r\n`;\r\n\r\nexport const ModalHoverModifier = styled.div`\r\n button:hover {\r\n cursor: help !important;\r\n }\r\n`;\r\n\r\nexport const CloseButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n ${(props) =>\r\n props.$hasImage\r\n ? css`\r\n margin: -12px -12px 0 0 !important;\r\n `\r\n : css`\r\n left: unset;\r\n `}\r\n }\r\n`;\r\n\r\nexport const BackButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n margin: -12px 0 0 -12px !important;\r\n }\r\n`;\r\n\r\nexport const ModalTitle = styled.h5<{ $fontSize?: string }>`\r\n margin: 0;\r\n font-size: ${(props) => props.$fontSize || '1.25em'};\r\n font-weight: bold;\r\n`;\r\n\r\nexport const ModalNoteSection = styled.section<{ $state: string; $size?: string }>`\r\n background-color: ${(props) => getBackgroundColor(props.$state, props.theme)};\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n margin-top: ${(props) => (props?.$size === 'small' ? `0px` : props?.$size === 'large' ? '16px' : '4px')};\r\n margin-bottom: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '24px' : '16px')};\r\n display: flex;\r\n flex-direction: row;\r\n padding: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '16px' : '12px')};\r\n border-radius: 2px;\r\n\r\n span {\r\n display: block;\r\n width: calc(100% - 32px);\r\n margin-left: 8px;\r\n color: ${(props) => getNoteMessageColor(props.$state, props.theme)};\r\n }\r\n`;\r\n\r\nexport const ModalBody = styled.section<{ $size?: string; $overflow?: string; $hasContentBorders?: boolean }>`\r\n flex: 1 1 auto;\r\n overflow: ${(props) => props?.$overflow ?? 'unset'};\r\n margin: ${(props) => (props?.$size === 'small' ? `8px 0` : props?.$size === 'large' ? '16px 0' : '12px 0')};\r\n\r\n border-top: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n border-bottom: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n\r\n ${scrollBarStyling(Size.Small)}\r\n`;\r\n\r\nexport const ModalFooter = styled.section<{ $size?: Size }>`\r\n display: flex;\r\n justify-content: flex-end;\r\n\r\n gap: ${(props) => (props?.$size === 'large' ? `16px` : '8px')};\r\n\r\n .footer-action {\r\n order: -1;\r\n margin-right: auto;\r\n display: flex;\r\n align-items: center;\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n gap: ${(props) => (props?.$size === Size.Large ? `8px` : props?.$size === Size.Small ? '4px' : '6px')};\r\n }\r\n\r\n .footer-action.note {\r\n color: ${props => COLORS.generateToken({componentType: 'text', defaultVariant: 'subtle' }, props.theme)};\r\n }\r\n`;\r\n\r\nexport const getBackgroundColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'positive'}, theme);\r\n case 'warning':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'warning'}, theme);\r\n case 'critical':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'critical'}, theme);\r\n default:\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'primary'}, theme);\r\n }\r\n};\r\n\r\nexport const getNoteMessageColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'positive' }, theme);\r\n case 'warning':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'warning' }, theme);\r\n case 'critical':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'critical' }, theme);\r\n default:\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'primary' }, theme);\r\n }\r\n};\r\n"],"mappings":"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","ignoreList":[]}
@@ -13,6 +13,10 @@ export const ModalHeader = styled.section`
13
13
  margin-bottom: ${props => props.$marginBottom || '24px'};
14
14
  `;
15
15
  export const StyledModalHeader = styled(ModalHeader)`
16
+ color: ${props => COLORS.generateToken({
17
+ componentType: 'text',
18
+ defaultVariant: 'default'
19
+ }, props.theme)};
16
20
  flex: 1 0 calc(50% - 5px);
17
21
  flex-direction: column;
18
22
  flex-basis: auto;
@@ -61,12 +65,20 @@ export const ImageOverlay = styled.div`
61
65
  }
62
66
  `;
63
67
  export const Column = styled.div`
68
+ background: ${props => COLORS.generateToken({
69
+ componentType: 'bg-surface',
70
+ defaultVariant: 'default'
71
+ }, props.theme)};
64
72
  display: flex;
65
73
  flex-direction: column;
66
74
  justify-content: stretch;
67
75
  height: 100%;
68
76
  `;
69
77
  export const ModalTitleSection = styled.section`
78
+ color: ${props => COLORS.generateToken({
79
+ componentType: 'text',
80
+ defaultVariant: 'default'
81
+ }, props.theme)};
70
82
  word-break: break-word;
71
83
  display: flex;
72
84
  width: 100%;
@@ -1 +1 @@
1
- {"version":3,"file":"ModalStyles.js","names":["styled","css","COLORS","scrollBarStyling","Size","ModalHeader","section","props","$marginBottom","StyledModalHeader","$height","$size","ImageContainer","div","ImageOverlay","Column","ModalTitleSection","ModalHeaderActionsWithImage","$hasBackButton","ModalHeaderActions","FlexContainer","ModalHoverModifier","CloseButtonWrapper","$hasImage","BackButtonWrapper","ModalTitle","h5","$fontSize","ModalNoteSection","getBackgroundColor","$state","theme","getNoteMessageColor","ModalBody","$overflow","$hasContentBorders","generateToken","componentType","defaultVariant","Small","ModalFooter","Large","state"],"sources":["../../src/Modals/ModalStyles.ts"],"sourcesContent":["import styled, { css } from 'styled-components';\r\nimport { COLORS } from '..';\r\nimport { scrollBarStyling } from '../styles';\r\nimport { Size } from '../types';\r\n\r\n/**\r\n * Modal styles\r\n */\r\nexport const ModalHeader = styled.section<{ $marginBottom?: string }>`\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n margin-bottom: ${(props) => props.$marginBottom || '24px'};\r\n`;\r\n\r\nexport const StyledModalHeader = styled(ModalHeader)<{ $marginBottom?: string; $size?: string; $height?: number }>`\r\n flex: 1 0 calc(50% - 5px);\r\n flex-direction: column;\r\n flex-basis: auto;\r\n text-align: left;\r\n height: ${(props) => (props.$height ? `${props.$height - (props.$size === 'small' ? 16 : props.$size === 'large' ? 32 : 24)}px` : '')};\r\n img {\r\n width: 100%;\r\n height: ${(props) => `${props.$height}px`};\r\n object-fit: cover;\r\n border-radius: 8px 8px 0 0;\r\n }\r\n`;\r\n\r\nexport const ImageContainer = styled.div<{ $height: number }>`\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n\r\n #imgWithFallbackLoadingIndicator {\r\n position: absolute;\r\n left: 50%;\r\n top: 0;\r\n }\r\n`;\r\n\r\nexport const ImageOverlay = styled.div<{ $height: number }>`\r\n position: absolute;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n width: 100%;\r\n background: rgba(255, 255, 255, 0.5);\r\n border-radius: 8px 8px 0 0;\r\n\r\n &:after {\r\n position: absolute;\r\n height: ${(props) => `${props.$height}px`};\r\n border-radius: 8px 8px 0 0;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n background: #888888;\r\n mix-blend-mode: saturation;\r\n }\r\n`;\r\n\r\nexport const Column = styled.div`\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: stretch;\r\n height: 100%;\r\n`;\r\n\r\nexport const ModalTitleSection = styled.section`\r\n word-break: break-word;\r\n display: flex;\r\n width: 100%;\r\n justify-content: space-between;\r\n`;\r\n\r\nexport const ModalHeaderActionsWithImage = styled.div<{ $hasBackButton?: boolean }>`\r\n display: flex;\r\n flex-direction: ${(props) => (!props.$hasBackButton ? 'row-reverse' : 'row')};\r\n justify-content: space-between;\r\n width: 100%;\r\n z-index: 1;\r\n`;\r\n\r\nexport const ModalHeaderActions = styled.div`\r\n display: flex;\r\n margin: -12px -12px 0 0;\r\n`;\r\n\r\nexport const FlexContainer = styled.div`\r\n display: flex;\r\n width: 100%;\r\n`;\r\n\r\nexport const ModalHoverModifier = styled.div`\r\n button:hover {\r\n cursor: help !important;\r\n }\r\n`;\r\n\r\nexport const CloseButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n ${(props) =>\r\n props.$hasImage\r\n ? css`\r\n margin: -12px -12px 0 0 !important;\r\n `\r\n : css`\r\n left: unset;\r\n `}\r\n }\r\n`;\r\n\r\nexport const BackButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n margin: -12px 0 0 -12px !important;\r\n }\r\n`;\r\n\r\nexport const ModalTitle = styled.h5<{ $fontSize?: string }>`\r\n margin: 0;\r\n font-size: ${(props) => props.$fontSize || '1.25em'};\r\n font-weight: bold;\r\n`;\r\n\r\nexport const ModalNoteSection = styled.section<{ $state: string; $size?: string }>`\r\n background-color: ${(props) => getBackgroundColor(props.$state, props.theme)};\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n margin-top: ${(props) => (props?.$size === 'small' ? `0px` : props?.$size === 'large' ? '16px' : '4px')};\r\n margin-bottom: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '24px' : '16px')};\r\n display: flex;\r\n flex-direction: row;\r\n padding: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '16px' : '12px')};\r\n border-radius: 2px;\r\n\r\n span {\r\n display: block;\r\n width: calc(100% - 32px);\r\n margin-left: 8px;\r\n color: ${(props) => getNoteMessageColor(props.$state, props.theme)};\r\n }\r\n`;\r\n\r\nexport const ModalBody = styled.section<{ $size?: string; $overflow?: string; $hasContentBorders?: boolean }>`\r\n flex: 1 1 auto;\r\n overflow: ${(props) => props?.$overflow ?? 'unset'};\r\n margin: ${(props) => (props?.$size === 'small' ? `8px 0` : props?.$size === 'large' ? '16px 0' : '12px 0')};\r\n\r\n border-top: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n border-bottom: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n\r\n ${scrollBarStyling(Size.Small)}\r\n`;\r\n\r\nexport const ModalFooter = styled.section<{ $size?: Size }>`\r\n display: flex;\r\n justify-content: flex-end;\r\n\r\n gap: ${(props) => (props?.$size === 'large' ? `16px` : '8px')};\r\n\r\n .footer-action {\r\n order: -1;\r\n margin-right: auto;\r\n display: flex;\r\n align-items: center;\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n gap: ${(props) => (props?.$size === Size.Large ? `8px` : props?.$size === Size.Small ? '4px' : '6px')};\r\n }\r\n\r\n .footer-action.note {\r\n color: ${props => COLORS.generateToken({componentType: 'text', defaultVariant: 'subtle' }, props.theme)};\r\n }\r\n`;\r\n\r\nexport const getBackgroundColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'positive'}, theme);\r\n case 'warning':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'warning'}, theme);\r\n case 'critical':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'critical'}, theme);\r\n default:\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'primary'}, theme);\r\n }\r\n};\r\n\r\nexport const getNoteMessageColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'positive' }, theme);\r\n case 'warning':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'warning' }, theme);\r\n case 'critical':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'critical' }, theme);\r\n default:\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'primary' }, theme);\r\n }\r\n};\r\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"ModalStyles.js","names":["styled","css","COLORS","scrollBarStyling","Size","ModalHeader","section","props","$marginBottom","StyledModalHeader","generateToken","componentType","defaultVariant","theme","$height","$size","ImageContainer","div","ImageOverlay","Column","ModalTitleSection","ModalHeaderActionsWithImage","$hasBackButton","ModalHeaderActions","FlexContainer","ModalHoverModifier","CloseButtonWrapper","$hasImage","BackButtonWrapper","ModalTitle","h5","$fontSize","ModalNoteSection","getBackgroundColor","$state","getNoteMessageColor","ModalBody","$overflow","$hasContentBorders","Small","ModalFooter","Large","state"],"sources":["../../src/Modals/ModalStyles.ts"],"sourcesContent":["import styled, { css } from 'styled-components';\r\nimport { COLORS } from '..';\r\nimport { scrollBarStyling } from '../styles';\r\nimport { Size } from '../types';\r\n\r\n/**\r\n * Modal styles\r\n */\r\nexport const ModalHeader = styled.section<{ $marginBottom?: string }>`\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n margin-bottom: ${(props) => props.$marginBottom || '24px'};\r\n`;\r\n\r\nexport const StyledModalHeader = styled(ModalHeader)<{ $marginBottom?: string; $size?: string; $height?: number }>`\r\n color: ${props => COLORS.generateToken({componentType:'text', defaultVariant:'default'}, props.theme)};\r\n flex: 1 0 calc(50% - 5px);\r\n flex-direction: column;\r\n flex-basis: auto;\r\n text-align: left;\r\n height: ${(props) => (props.$height ? `${props.$height - (props.$size === 'small' ? 16 : props.$size === 'large' ? 32 : 24)}px` : '')};\r\n img {\r\n width: 100%;\r\n height: ${(props) => `${props.$height}px`};\r\n object-fit: cover;\r\n border-radius: 8px 8px 0 0;\r\n }\r\n`;\r\n\r\nexport const ImageContainer = styled.div<{ $height: number }>`\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n\r\n #imgWithFallbackLoadingIndicator {\r\n position: absolute;\r\n left: 50%;\r\n top: 0;\r\n }\r\n`;\r\n\r\nexport const ImageOverlay = styled.div<{ $height: number }>`\r\n position: absolute;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n height: ${(props) => `${props.$height}px`};\r\n width: 100%;\r\n background: rgba(255, 255, 255, 0.5);\r\n border-radius: 8px 8px 0 0;\r\n\r\n &:after {\r\n position: absolute;\r\n height: ${(props) => `${props.$height}px`};\r\n border-radius: 8px 8px 0 0;\r\n content: '';\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n background: #888888;\r\n mix-blend-mode: saturation;\r\n }\r\n`;\r\n\r\nexport const Column = styled.div`\r\n background: ${props => COLORS.generateToken({componentType:'bg-surface', defaultVariant:'default'}, props.theme)};\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: stretch;\r\n height: 100%;\r\n`;\r\n\r\nexport const ModalTitleSection = styled.section`\r\n color: ${props => COLORS.generateToken({componentType:'text', defaultVariant:'default'}, props.theme)};\r\n word-break: break-word;\r\n display: flex;\r\n width: 100%;\r\n justify-content: space-between;\r\n`;\r\n\r\nexport const ModalHeaderActionsWithImage = styled.div<{ $hasBackButton?: boolean }>`\r\n display: flex;\r\n flex-direction: ${(props) => (!props.$hasBackButton ? 'row-reverse' : 'row')};\r\n justify-content: space-between;\r\n width: 100%;\r\n z-index: 1;\r\n`;\r\n\r\nexport const ModalHeaderActions = styled.div`\r\n display: flex;\r\n margin: -12px -12px 0 0;\r\n`;\r\n\r\nexport const FlexContainer = styled.div`\r\n display: flex;\r\n width: 100%;\r\n`;\r\n\r\nexport const ModalHoverModifier = styled.div`\r\n button:hover {\r\n cursor: help !important;\r\n }\r\n`;\r\n\r\nexport const CloseButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n ${(props) =>\r\n props.$hasImage\r\n ? css`\r\n margin: -12px -12px 0 0 !important;\r\n `\r\n : css`\r\n left: unset;\r\n `}\r\n }\r\n`;\r\n\r\nexport const BackButtonWrapper = styled.div<{ $size?: Size; $hasImage?: boolean }>`\r\n button {\r\n margin: -12px 0 0 -12px !important;\r\n }\r\n`;\r\n\r\nexport const ModalTitle = styled.h5<{ $fontSize?: string }>`\r\n margin: 0;\r\n font-size: ${(props) => props.$fontSize || '1.25em'};\r\n font-weight: bold;\r\n`;\r\n\r\nexport const ModalNoteSection = styled.section<{ $state: string; $size?: string }>`\r\n background-color: ${(props) => getBackgroundColor(props.$state, props.theme)};\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n margin-top: ${(props) => (props?.$size === 'small' ? `0px` : props?.$size === 'large' ? '16px' : '4px')};\r\n margin-bottom: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '24px' : '16px')};\r\n display: flex;\r\n flex-direction: row;\r\n padding: ${(props) => (props?.$size === 'small' ? `8px` : props?.$size === 'large' ? '16px' : '12px')};\r\n border-radius: 2px;\r\n\r\n span {\r\n display: block;\r\n width: calc(100% - 32px);\r\n margin-left: 8px;\r\n color: ${(props) => getNoteMessageColor(props.$state, props.theme)};\r\n }\r\n`;\r\n\r\nexport const ModalBody = styled.section<{ $size?: string; $overflow?: string; $hasContentBorders?: boolean }>`\r\n flex: 1 1 auto;\r\n overflow: ${(props) => props?.$overflow ?? 'unset'};\r\n margin: ${(props) => (props?.$size === 'small' ? `8px 0` : props?.$size === 'large' ? '16px 0' : '12px 0')};\r\n\r\n border-top: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n border-bottom: ${(props) => (props?.$hasContentBorders ? `1px solid ${COLORS.generateToken({componentType: 'border', defaultVariant: 'subtle'}, props.theme)}` : 'none')};\r\n\r\n ${scrollBarStyling(Size.Small)}\r\n`;\r\n\r\nexport const ModalFooter = styled.section<{ $size?: Size }>`\r\n display: flex;\r\n justify-content: flex-end;\r\n\r\n gap: ${(props) => (props?.$size === 'large' ? `16px` : '8px')};\r\n\r\n .footer-action {\r\n order: -1;\r\n margin-right: auto;\r\n display: flex;\r\n align-items: center;\r\n font-size: ${(props) => (props?.$size === 'small' ? `16px` : props?.$size === 'large' ? '20px' : '18px')};\r\n gap: ${(props) => (props?.$size === Size.Large ? `8px` : props?.$size === Size.Small ? '4px' : '6px')};\r\n }\r\n\r\n .footer-action.note {\r\n color: ${props => COLORS.generateToken({componentType: 'text', defaultVariant: 'subtle' }, props.theme)};\r\n }\r\n`;\r\n\r\nexport const getBackgroundColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'positive'}, theme);\r\n case 'warning':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'warning'}, theme);\r\n case 'critical':\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'critical'}, theme);\r\n default:\r\n return COLORS.generateToken({componentType: 'bg-surface', defaultVariant: 'primary'}, theme);\r\n }\r\n};\r\n\r\nexport const getNoteMessageColor = (state: string, theme: any) => {\r\n switch (state) {\r\n case 'positive':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'positive' }, theme);\r\n case 'warning':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'warning' }, theme);\r\n case 'critical':\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'critical' }, theme);\r\n default:\r\n return COLORS.generateToken({ componentType: 'text', defaultVariant: 'primary' }, theme);\r\n }\r\n};\r\n"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"ModalTypes.cjs","names":[],"sources":["../../src/Modals/ModalTypes.ts"],"sourcesContent":["import {ButtonProps} from '../Button';\r\nimport {HyperlinkProps} from '../HyperLink/HyperLink';\r\nimport {IconButtonProps} from '../Button';\r\nimport React from 'react';\r\nimport {IconDropdownButtonProps} from \"../Dropdown/DropdownButtonTypes\";\r\nimport {ToggleButtonProps} from \"../Toggles/ToggleButton\";\r\n\r\nexport interface ModalHeaderIconButton extends Omit<IconButtonProps, 'hideOnLowWidth' | 'flatEdge' | 'isInMobileMenu' | 'useTransparentBackground' | 'shouldNotInteract' | 'unsetIconSize' | 'borderRadius' | 'focusBackgroundColor' | 'children' | 'focusOnClick'> {\r\n componentType: 'icon';\r\n icon: React.ReactNode;\r\n}\r\n\r\nexport interface ModalHeaderDropdownButton extends Omit<IconDropdownButtonProps, 'size' | 'type'> {\r\n componentType: 'dropdown';\r\n}\r\n\r\nexport interface ModalHeaderToggleButton extends ToggleButtonProps {\r\n componentType: 'toggle';\r\n}\r\n\r\nexport type ModalHeaderButtons = ModalHeaderIconButton | ModalHeaderDropdownButton | ModalHeaderToggleButton;\r\n\r\n\r\nexport interface ButtonAction extends Pick<ButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'> {\r\n action?: (() => void) | ((e: any) => void);\r\n text?: string;\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport interface LeftFooterActionBase {\r\n actionType: 'hyperlink' | 'note' | 'button';\r\n text: string;\r\n icon?: React.ReactNode;\r\n action?: (() => void) | ((e: any) => void);\r\n}\r\n\r\nexport interface LeftFooterHyperlink extends HyperlinkProps, LeftFooterActionBase {\r\n}\r\n\r\nexport interface LeftFooterButton extends Pick<ButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'>, LeftFooterActionBase {\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport type LeftFooterAction = LeftFooterButton | LeftFooterHyperlink;\r\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"file":"ModalTypes.cjs","names":[],"sources":["../../src/Modals/ModalTypes.ts"],"sourcesContent":["import {TextButtonProps} from '../Button';\r\nimport {HyperlinkProps} from '../HyperLink/HyperLink';\r\nimport {IconButtonProps} from '../Button';\r\nimport React from 'react';\r\nimport {IconDropdownButtonProps} from \"../Dropdown/DropdownButtonTypes\";\r\nimport {ToggleButtonProps} from \"../Toggles/ToggleButton\";\r\n\r\nexport interface ModalHeaderIconButton extends Omit<IconButtonProps, 'hideOnLowWidth' | 'flatEdge' | 'isInMobileMenu' | 'useTransparentBackground' | 'shouldNotInteract' | 'unsetIconSize' | 'borderRadius' | 'focusBackgroundColor' | 'children' | 'focusOnClick'> {\r\n componentType: 'icon';\r\n icon: React.ReactNode;\r\n}\r\n\r\nexport interface ModalHeaderDropdownButton extends Omit<IconDropdownButtonProps, 'size' | 'type'> {\r\n componentType: 'dropdown';\r\n}\r\n\r\nexport interface ModalHeaderToggleButton extends ToggleButtonProps {\r\n componentType: 'toggle';\r\n}\r\n\r\nexport type ModalHeaderButtons = ModalHeaderIconButton | ModalHeaderDropdownButton | ModalHeaderToggleButton;\r\n\r\n\r\nexport interface ButtonAction extends Pick<TextButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'> {\r\n action?: (() => void) | ((e: any) => void);\r\n text?: string;\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport interface LeftFooterActionBase {\r\n actionType: 'hyperlink' | 'note' | 'button';\r\n text: string;\r\n icon?: React.ReactNode;\r\n action?: (() => void) | ((e: any) => void);\r\n}\r\n\r\nexport interface LeftFooterHyperlink extends HyperlinkProps, LeftFooterActionBase {\r\n}\r\n\r\nexport interface LeftFooterButton extends Pick<TextButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'>, LeftFooterActionBase {\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport type LeftFooterAction = LeftFooterButton | LeftFooterHyperlink;\r\n"],"mappings":"","ignoreList":[]}
@@ -1,4 +1,4 @@
1
- import { ButtonProps } from '../Button';
1
+ import { TextButtonProps } from '../Button';
2
2
  import { HyperlinkProps } from '../HyperLink/HyperLink';
3
3
  import { IconButtonProps } from '../Button';
4
4
  import React from 'react';
@@ -15,7 +15,7 @@ export interface ModalHeaderToggleButton extends ToggleButtonProps {
15
15
  componentType: 'toggle';
16
16
  }
17
17
  export type ModalHeaderButtons = ModalHeaderIconButton | ModalHeaderDropdownButton | ModalHeaderToggleButton;
18
- export interface ButtonAction extends Pick<ButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'> {
18
+ export interface ButtonAction extends Pick<TextButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'> {
19
19
  action?: (() => void) | ((e: any) => void);
20
20
  text?: string;
21
21
  children?: React.ReactNode;
@@ -28,7 +28,7 @@ export interface LeftFooterActionBase {
28
28
  }
29
29
  export interface LeftFooterHyperlink extends HyperlinkProps, LeftFooterActionBase {
30
30
  }
31
- export interface LeftFooterButton extends Pick<ButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'>, LeftFooterActionBase {
31
+ export interface LeftFooterButton extends Pick<TextButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'>, LeftFooterActionBase {
32
32
  children?: React.ReactNode;
33
33
  }
34
34
  export type LeftFooterAction = LeftFooterButton | LeftFooterHyperlink;
@@ -1 +1 @@
1
- {"version":3,"file":"ModalTypes.js","names":[],"sources":["../../src/Modals/ModalTypes.ts"],"sourcesContent":["import {ButtonProps} from '../Button';\r\nimport {HyperlinkProps} from '../HyperLink/HyperLink';\r\nimport {IconButtonProps} from '../Button';\r\nimport React from 'react';\r\nimport {IconDropdownButtonProps} from \"../Dropdown/DropdownButtonTypes\";\r\nimport {ToggleButtonProps} from \"../Toggles/ToggleButton\";\r\n\r\nexport interface ModalHeaderIconButton extends Omit<IconButtonProps, 'hideOnLowWidth' | 'flatEdge' | 'isInMobileMenu' | 'useTransparentBackground' | 'shouldNotInteract' | 'unsetIconSize' | 'borderRadius' | 'focusBackgroundColor' | 'children' | 'focusOnClick'> {\r\n componentType: 'icon';\r\n icon: React.ReactNode;\r\n}\r\n\r\nexport interface ModalHeaderDropdownButton extends Omit<IconDropdownButtonProps, 'size' | 'type'> {\r\n componentType: 'dropdown';\r\n}\r\n\r\nexport interface ModalHeaderToggleButton extends ToggleButtonProps {\r\n componentType: 'toggle';\r\n}\r\n\r\nexport type ModalHeaderButtons = ModalHeaderIconButton | ModalHeaderDropdownButton | ModalHeaderToggleButton;\r\n\r\n\r\nexport interface ButtonAction extends Pick<ButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'> {\r\n action?: (() => void) | ((e: any) => void);\r\n text?: string;\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport interface LeftFooterActionBase {\r\n actionType: 'hyperlink' | 'note' | 'button';\r\n text: string;\r\n icon?: React.ReactNode;\r\n action?: (() => void) | ((e: any) => void);\r\n}\r\n\r\nexport interface LeftFooterHyperlink extends HyperlinkProps, LeftFooterActionBase {\r\n}\r\n\r\nexport interface LeftFooterButton extends Pick<ButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'>, LeftFooterActionBase {\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport type LeftFooterAction = LeftFooterButton | LeftFooterHyperlink;\r\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"file":"ModalTypes.js","names":[],"sources":["../../src/Modals/ModalTypes.ts"],"sourcesContent":["import {TextButtonProps} from '../Button';\r\nimport {HyperlinkProps} from '../HyperLink/HyperLink';\r\nimport {IconButtonProps} from '../Button';\r\nimport React from 'react';\r\nimport {IconDropdownButtonProps} from \"../Dropdown/DropdownButtonTypes\";\r\nimport {ToggleButtonProps} from \"../Toggles/ToggleButton\";\r\n\r\nexport interface ModalHeaderIconButton extends Omit<IconButtonProps, 'hideOnLowWidth' | 'flatEdge' | 'isInMobileMenu' | 'useTransparentBackground' | 'shouldNotInteract' | 'unsetIconSize' | 'borderRadius' | 'focusBackgroundColor' | 'children' | 'focusOnClick'> {\r\n componentType: 'icon';\r\n icon: React.ReactNode;\r\n}\r\n\r\nexport interface ModalHeaderDropdownButton extends Omit<IconDropdownButtonProps, 'size' | 'type'> {\r\n componentType: 'dropdown';\r\n}\r\n\r\nexport interface ModalHeaderToggleButton extends ToggleButtonProps {\r\n componentType: 'toggle';\r\n}\r\n\r\nexport type ModalHeaderButtons = ModalHeaderIconButton | ModalHeaderDropdownButton | ModalHeaderToggleButton;\r\n\r\n\r\nexport interface ButtonAction extends Pick<TextButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'> {\r\n action?: (() => void) | ((e: any) => void);\r\n text?: string;\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport interface LeftFooterActionBase {\r\n actionType: 'hyperlink' | 'note' | 'button';\r\n text: string;\r\n icon?: React.ReactNode;\r\n action?: (() => void) | ((e: any) => void);\r\n}\r\n\r\nexport interface LeftFooterHyperlink extends HyperlinkProps, LeftFooterActionBase {\r\n}\r\n\r\nexport interface LeftFooterButton extends Pick<TextButtonProps, 'variant' | 'id' | 'loading' | 'disabled' | 'icon' | 'type'>, LeftFooterActionBase {\r\n children?: React.ReactNode;\r\n}\r\n\r\nexport type LeftFooterAction = LeftFooterButton | LeftFooterHyperlink;\r\n"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,169 @@
1
+ import * as React from 'react';
2
+ import {render} from '../../test-utils';
3
+ import 'jest-styled-components';
4
+ import {ModalDialog} from '..';
5
+ import {Size, SystemIcons} from '../..';
6
+
7
+
8
+
9
+ describe('<ModalDialog />', () => {
10
+ let mountingDiv: HTMLElement;
11
+
12
+ beforeEach(() => {
13
+ //being rendered as a React.Portal we need to have the 'root' div defined
14
+ mountingDiv = document.createElement('div');
15
+ mountingDiv.id = 'root';
16
+ document.body.appendChild(mountingDiv);
17
+ });
18
+
19
+ afterEach(() => {
20
+ document.body.removeChild(mountingDiv);
21
+ });
22
+
23
+ it('Check modal not rendered when isModalOpen is false', async () => {
24
+ const {container, getByText} = render(
25
+ <ModalDialog
26
+ key="smallModalWithoutImage"
27
+ title={'Header'}
28
+ size={Size.Small}
29
+ isModalOpen={false}
30
+ closeAction={() => {
31
+ }}
32
+ submitAction={() => {
33
+ }}
34
+ />,
35
+ );
36
+ //check modal portal not exists when modal not opened
37
+ expect(container.querySelector('.ReactModalPortal')).toBeNull();
38
+ });
39
+
40
+ it('Check modal visible, title and footer buttons displayed correctly', async () => {
41
+ const {container, getByText} = render(
42
+ <ModalDialog
43
+ key="smallModalWithoutImage"
44
+
45
+ title={'Header'}
46
+ size={Size.Small}
47
+ isModalOpen={true}
48
+ closeAction={() => {
49
+ }}
50
+ submitAction={() => {
51
+ }}
52
+ buttons={[
53
+ {
54
+ action: () => {
55
+ },
56
+ text: 'Close',
57
+ variant: 'tertiary',
58
+ },
59
+ {
60
+ action: () => {
61
+ },
62
+ text: 'Save',
63
+ },
64
+ ]}
65
+ />,
66
+ );
67
+ //check modal portal defined
68
+ expect(container.querySelector('.ReactModalPortal')).toBeDefined();
69
+ //Check header and footer buttons
70
+ expect(getByText('Header')).toBeDefined();
71
+ expect(getByText('Close')).toBeDefined();
72
+ expect(getByText('Save')).toBeDefined();
73
+ });
74
+
75
+ it('Check tooltip, and link displayed without right footer buttons', async () => {
76
+ const {baseElement, getByText} = render(
77
+ <ModalDialog
78
+ key="smallModalWithoutImage"
79
+
80
+ title={'Header'}
81
+ size={Size.Small}
82
+ isModalOpen={true}
83
+ closeAction={() => {
84
+ }}
85
+ submitAction={() => {
86
+ }}
87
+ tooltip={'some test tooltip'}
88
+ leftFooterAction={{
89
+ id: 'test-link',
90
+ actionType: 'hyperlink',
91
+ text: 'Link',
92
+ href: 'http://test.com',
93
+ icon: <></>,
94
+ variant: 'default'
95
+ }}
96
+ />,
97
+ );
98
+ //check tooltip displayed
99
+ expect(getByText('some test tooltip').textContent).toBeDefined();
100
+ //check footer link displayed
101
+ expect(getByText('Link').children).toBeDefined();
102
+ });
103
+
104
+ it('Check note and footer note displayed', async () => {
105
+ const {baseElement, getByText} = render(
106
+ <ModalDialog
107
+ key="smallModalWithoutImage"
108
+
109
+ title={'Header'}
110
+ size={Size.Small}
111
+ isModalOpen={true}
112
+ closeAction={() => {
113
+ }}
114
+ submitAction={() => {
115
+ }}
116
+ leftFooterAction={{id: 'test-note', actionType: 'note', text: 'Test note', icon: <SystemIcons.Information/>}}
117
+ note={'Message text'}
118
+ state={'critical'}
119
+ />,
120
+ );
121
+ //check footer note text displayed
122
+ expect(getByText('Test note').textContent).toBeDefined();
123
+ //check note section added
124
+ expect(baseElement.querySelectorAll('section')?.length).toEqual(4);
125
+ //check note message displayed
126
+ expect(getByText('Message text').children).toBeDefined();
127
+ });
128
+
129
+ it('Check back button and close icon displayed', async () => {
130
+ const {baseElement, getByText, container} = render(
131
+ <ModalDialog
132
+ key="smallModalWithoutImage"
133
+
134
+ title={'Header'}
135
+ size={Size.Small}
136
+ backButton={() => {
137
+ }}
138
+ isModalOpen={true}
139
+ closeAction={() => {
140
+ }}
141
+ submitAction={() => {
142
+ }}
143
+ />,
144
+ );
145
+ //only 2 svg elements should be found in the header of the modal
146
+ expect(baseElement.querySelectorAll('svg')?.length).toEqual(2);
147
+ });
148
+
149
+ it('Check modal body displayed', async () => {
150
+ const {baseElement, getByText, container} = render(
151
+ <ModalDialog
152
+ key="smallModalWithoutImage"
153
+
154
+ title={'Header'}
155
+ size={Size.Small}
156
+ isModalOpen={true}
157
+ closeAction={() => {
158
+ }}
159
+ submitAction={() => {
160
+ }}>
161
+ <span>Inner modal text</span>
162
+ </ModalDialog>,
163
+ );
164
+ //Check all dialog sections are displayed
165
+ expect(baseElement.querySelectorAll('section')?.length).toEqual(3);
166
+ //Check that the second section (modal body) has the correct text
167
+ expect(baseElement.querySelectorAll('section')?.[1].textContent).toEqual('Inner modal text');
168
+ });
169
+ });
@@ -0,0 +1,77 @@
1
+ import * as React from 'react';
2
+ import {ModalContainer} from '../index';
3
+ import {act, fireEvent, render} from '../../test-utils';
4
+
5
+
6
+
7
+ describe('ModalContainer', () => {
8
+
9
+ let mountingDiv: HTMLElement;
10
+ const scrollToSpy = jest.fn();
11
+
12
+ beforeEach(() => {
13
+ //being rendered as a React.Portal we need to have the 'root' div defined
14
+ mountingDiv = document.createElement('div');
15
+ mountingDiv.id = 'root';
16
+ document.body.appendChild(mountingDiv);
17
+ window.scrollTo = scrollToSpy;
18
+ document.body.style.position = '';
19
+ document.body.style.left = '';
20
+ document.body.style.top = '';
21
+ document.body.style.right = '';
22
+
23
+ });
24
+
25
+ afterEach(() => {
26
+ document.body.removeChild(mountingDiv);
27
+ scrollToSpy.mockReset();
28
+ });
29
+
30
+ it('should not render content', () => {
31
+ const wrapper = render(<ModalContainer showModal={false} closeModal={jest.fn()} children={'text'}/>);
32
+
33
+ expect(wrapper.queryByText('text')).not.toBeInTheDocument();
34
+ });
35
+
36
+ it('should render children inside react modal', () => {
37
+ const wrapper = render(<ModalContainer showModal={true} closeModal={jest.fn()} children={'text'}/>);
38
+
39
+ expect(wrapper.queryByText('text')).toBeInTheDocument();
40
+ });
41
+
42
+ it('should call onClose when react modal closes', () => {
43
+ const onClose = jest.fn();
44
+ const wrapper = render(<ModalContainer showModal={true} closeModal={onClose} children={'text'}/>);
45
+
46
+ act(() => {
47
+ fireEvent.click(document.querySelector('.ReactModal__Overlay')!);
48
+ });
49
+
50
+ expect(onClose).toHaveBeenCalled();
51
+ });
52
+
53
+ it('should append custom styles when modal is mounted', () => {
54
+ const wrapper = render(<ModalContainer showModal={false} closeModal={jest.fn()} children={'text'}/>);
55
+
56
+ expect(document.querySelectorAll('[modal-custom-styling="active"]')).toHaveLength(1);
57
+ });
58
+
59
+ it('should prevent scroll when modal is open', () => {
60
+ Object.defineProperty(window, 'scrollY', {value: 5, writable: true});
61
+
62
+ const wrapper = render(<ModalContainer showModal={true} closeModal={jest.fn()} children={'text'}/>);
63
+
64
+ expect(document.body.style.top).toEqual('-5px');
65
+ expect(document.body.style.position).toEqual('fixed');
66
+ });
67
+
68
+ it('should not touch scroll if modal was not opened yet', async () => {
69
+ Object.defineProperty(window, 'scrollY', {value: 5, writable: true});
70
+
71
+ const wrapper = render(<ModalContainer showModal={false} closeModal={jest.fn()} children={'text'}/>);
72
+
73
+ expect(document.body.style.top).toBeFalsy();
74
+ expect(document.body.style.position).toBeFalsy();
75
+ });
76
+
77
+ });