@ilo-org/react 0.0.18 → 0.1.1

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 (680) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/lib/cjs/AccordionCtx-fe08ff45.js +9 -0
  3. package/lib/cjs/Callout.args-bcd5a9f1.js +17 -0
  4. package/lib/cjs/DailyMotion-97d1831a.js +260 -0
  5. package/lib/cjs/Facebook-ccb27d1d.js +240 -0
  6. package/lib/cjs/FilePlayer-81b9fc3f.js +597 -0
  7. package/lib/cjs/GlobalCtx-97e4b433.js +9 -0
  8. package/lib/cjs/Kaltura-d6c19814.js +236 -0
  9. package/lib/cjs/ListCtx-7db7fe04.js +9 -0
  10. package/lib/cjs/Mixcloud-f02a460e.js +223 -0
  11. package/lib/cjs/Preview-8238ea6e.js +227 -0
  12. package/lib/cjs/SoundCloud-cd1b1590.js +250 -0
  13. package/lib/cjs/Streamable-f47da42a.js +235 -0
  14. package/lib/cjs/TagCtx-929c7753.js +7 -0
  15. package/lib/cjs/Twitch-c503e140.js +245 -0
  16. package/lib/cjs/Vidyard-d9c2f073.js +238 -0
  17. package/lib/cjs/Vimeo-009601ef.js +286 -0
  18. package/lib/cjs/Wistia-8c9f4c58.js +289 -0
  19. package/lib/cjs/YouTube-ec5847d4.js +378 -0
  20. package/lib/cjs/_commonjsHelpers-9f9f50a8.js +39 -0
  21. package/lib/cjs/components/Accordion/Accordion.js +47 -0
  22. package/lib/cjs/components/Accordion/AccordionButton.js +34 -0
  23. package/lib/cjs/components/Accordion/AccordionItem.js +21 -0
  24. package/lib/cjs/components/Accordion/AccordionPanel.js +30 -0
  25. package/lib/cjs/components/Accordion/index.js +22 -0
  26. package/lib/cjs/components/Button/Button.js +36 -0
  27. package/lib/cjs/components/Button/index.js +39 -0
  28. package/lib/cjs/components/Callout/Callout.js +47 -0
  29. package/lib/cjs/components/Callout/index.js +19 -0
  30. package/lib/cjs/components/Checkbox/Checkbox.js +34 -0
  31. package/lib/cjs/components/Checkbox/index.js +17 -0
  32. package/lib/cjs/components/ChoiceGroup/ChoiceGroup.js +34 -0
  33. package/lib/cjs/components/ChoiceGroup/index.js +19 -0
  34. package/lib/cjs/components/Collapse/Collapse.js +725 -0
  35. package/lib/cjs/components/Collapse/index.js +18 -0
  36. package/lib/cjs/components/ContextMenu/ContextMenu.js +20 -0
  37. package/lib/cjs/components/ContextMenu/index.js +13 -0
  38. package/lib/cjs/components/Credit/Credit.js +33 -0
  39. package/lib/cjs/components/Credit/index.js +13 -0
  40. package/lib/cjs/components/DatePicker/DatePicker.js +32 -0
  41. package/lib/cjs/components/DatePicker/index.js +17 -0
  42. package/lib/cjs/components/Dropdown/Dropdown.js +35 -0
  43. package/lib/cjs/components/Dropdown/index.js +17 -0
  44. package/lib/cjs/components/Empty/Empty.js +19 -0
  45. package/lib/cjs/components/Empty/index.js +13 -0
  46. package/lib/cjs/components/Fieldset/Fieldset.js +24 -0
  47. package/lib/cjs/components/Fieldset/index.js +15 -0
  48. package/lib/cjs/components/FileUpload/FileUpload.js +35 -0
  49. package/lib/cjs/components/FileUpload/index.js +17 -0
  50. package/lib/cjs/components/Form/Form.js +66 -0
  51. package/lib/cjs/components/Form/index.js +31 -0
  52. package/lib/cjs/components/FormElement/FormElement.js +19 -0
  53. package/lib/cjs/components/FormElement/index.js +8 -0
  54. package/lib/cjs/components/FormGroup/FormGroup.js +58 -0
  55. package/lib/cjs/components/FormGroup/index.js +26 -0
  56. package/lib/cjs/components/GlobalProvider/GlobalProvider.js +18 -0
  57. package/lib/cjs/components/GlobalProvider/index.js +11 -0
  58. package/lib/cjs/components/Heading/Heading.js +22 -0
  59. package/lib/cjs/components/Heading/index.js +13 -0
  60. package/lib/cjs/components/Hero/Hero.js +25 -0
  61. package/lib/cjs/components/Hero/HeroCard.js +25 -0
  62. package/lib/cjs/components/Hero/index.js +17 -0
  63. package/lib/cjs/components/Icon/Icon.js +43 -0
  64. package/lib/cjs/components/Icon/index.js +13 -0
  65. package/lib/cjs/components/Image/Image.js +31 -0
  66. package/lib/cjs/components/Image/index.js +14 -0
  67. package/lib/cjs/components/Input/Input.js +32 -0
  68. package/lib/cjs/components/Input/index.js +17 -0
  69. package/lib/cjs/components/Link/Link.js +23 -0
  70. package/lib/cjs/components/Link/index.js +13 -0
  71. package/lib/cjs/components/LinkList/LinkList.js +22 -0
  72. package/lib/cjs/components/LinkList/index.js +13 -0
  73. package/lib/cjs/components/List/List.js +25 -0
  74. package/lib/cjs/components/List/ListItem.js +21 -0
  75. package/lib/cjs/components/List/index.js +16 -0
  76. package/lib/cjs/components/Loading/Loading.js +21 -0
  77. package/lib/cjs/components/Loading/index.js +13 -0
  78. package/lib/cjs/components/Notification/Notification.js +41 -0
  79. package/lib/cjs/components/Notification/index.js +17 -0
  80. package/lib/cjs/components/NumberPicker/NumberPicker.js +32 -0
  81. package/lib/cjs/components/NumberPicker/index.js +17 -0
  82. package/lib/cjs/components/Pagination/Pagination.js +49 -0
  83. package/lib/cjs/components/Pagination/index.js +13 -0
  84. package/lib/cjs/components/Profile/Profile.js +19 -0
  85. package/lib/cjs/components/Profile/index.js +13 -0
  86. package/lib/cjs/components/Radio/Radio.js +29 -0
  87. package/lib/cjs/components/Radio/index.js +14 -0
  88. package/lib/cjs/components/ReadMore/ReadMore.js +38 -0
  89. package/lib/cjs/components/ReadMore/index.js +14 -0
  90. package/lib/cjs/components/RichText/RichText.js +19 -0
  91. package/lib/cjs/components/RichText/index.js +13 -0
  92. package/lib/cjs/components/SearchField/SearchField.js +38 -0
  93. package/lib/cjs/components/SearchField/index.js +18 -0
  94. package/lib/cjs/components/TableOfContents/TableOfContents.js +22 -0
  95. package/lib/cjs/components/TableOfContents/index.js +13 -0
  96. package/lib/cjs/components/Tag/Tag.js +54 -0
  97. package/lib/cjs/components/Tag/TagSet.js +46 -0
  98. package/lib/cjs/components/Tag/index.js +20 -0
  99. package/lib/cjs/components/Textarea/Textarea.js +32 -0
  100. package/lib/cjs/components/Textarea/index.js +17 -0
  101. package/lib/cjs/components/Tooltip/Tooltip.js +103 -0
  102. package/lib/cjs/components/Tooltip/index.js +14 -0
  103. package/lib/cjs/components/Video/Video.js +29 -0
  104. package/lib/cjs/components/Video/VideoPlayer.js +1452 -0
  105. package/lib/cjs/components/Video/index.js +20 -0
  106. package/lib/cjs/components/index.js +115 -0
  107. package/lib/cjs/css-9c93400b.js +81 -0
  108. package/lib/cjs/hooks/index.js +13 -0
  109. package/lib/cjs/hooks/useGlobalSettings.js +13 -0
  110. package/lib/cjs/hooks/useVideoPlayer.js +75 -0
  111. package/lib/cjs/index-1b6434f0.js +1191 -0
  112. package/lib/cjs/index.js +115 -0
  113. package/lib/cjs/patterns-b55db71f.js +579 -0
  114. package/lib/cjs/utils/checkArrayDuplicates.js +7 -0
  115. package/lib/cjs/utils/createChainedFunction.js +30 -0
  116. package/lib/cjs/utils/getDefaultDimensionValue.js +22 -0
  117. package/lib/cjs/utils/hoursMinutesSeconds.js +12 -0
  118. package/lib/cjs/utils/index.js +18 -0
  119. package/lib/cjs/utils/transitionEndListener.js +161 -0
  120. package/lib/cjs/utils/triggerBrowserReflow.js +8 -0
  121. package/lib/esm/AccordionCtx-8c051900.js +6 -0
  122. package/lib/esm/Callout.args-3a0e0416.js +15 -0
  123. package/lib/esm/DailyMotion-b35dc8bb.js +258 -0
  124. package/lib/esm/Facebook-c3c77787.js +238 -0
  125. package/lib/esm/FilePlayer-540e4c5a.js +595 -0
  126. package/lib/esm/GlobalCtx-7fb23cfa.js +7 -0
  127. package/lib/esm/Kaltura-4ac3cda3.js +234 -0
  128. package/lib/esm/ListCtx-da435fdf.js +6 -0
  129. package/lib/esm/Mixcloud-3d4e0760.js +221 -0
  130. package/lib/esm/Preview-6d2a6792.js +225 -0
  131. package/lib/esm/SoundCloud-306d6c78.js +248 -0
  132. package/lib/esm/Streamable-aa3d544e.js +233 -0
  133. package/lib/esm/TagCtx-34c545fe.js +5 -0
  134. package/lib/esm/Twitch-4a1a1565.js +243 -0
  135. package/lib/esm/Vidyard-fe74c274.js +236 -0
  136. package/lib/esm/Vimeo-074f2c39.js +284 -0
  137. package/lib/esm/Wistia-0a2b73b0.js +287 -0
  138. package/lib/esm/YouTube-d58f130b.js +376 -0
  139. package/lib/esm/_commonjsHelpers-849bcf65.js +35 -0
  140. package/lib/esm/components/Accordion/Accordion.js +45 -0
  141. package/lib/esm/components/Accordion/AccordionButton.js +32 -0
  142. package/lib/esm/components/Accordion/AccordionItem.js +19 -0
  143. package/lib/esm/components/Accordion/AccordionPanel.js +28 -0
  144. package/lib/esm/components/Accordion/index.js +13 -0
  145. package/lib/esm/components/Button/Button.js +34 -0
  146. package/lib/esm/components/Button/index.js +36 -0
  147. package/lib/esm/components/Callout/Callout.js +45 -0
  148. package/lib/esm/components/Callout/index.js +12 -0
  149. package/lib/esm/components/Checkbox/Checkbox.js +32 -0
  150. package/lib/esm/components/Checkbox/index.js +11 -0
  151. package/lib/esm/components/ChoiceGroup/ChoiceGroup.js +32 -0
  152. package/lib/esm/components/ChoiceGroup/index.js +13 -0
  153. package/lib/esm/components/Collapse/Collapse.js +723 -0
  154. package/lib/esm/components/Collapse/index.js +12 -0
  155. package/lib/esm/components/ContextMenu/ContextMenu.js +18 -0
  156. package/lib/esm/components/ContextMenu/index.js +7 -0
  157. package/lib/esm/components/Credit/Credit.js +31 -0
  158. package/lib/esm/components/Credit/index.js +7 -0
  159. package/lib/esm/components/DatePicker/DatePicker.js +30 -0
  160. package/lib/esm/components/DatePicker/index.js +11 -0
  161. package/lib/esm/components/Dropdown/Dropdown.js +33 -0
  162. package/lib/esm/components/Dropdown/index.js +11 -0
  163. package/lib/esm/components/Empty/Empty.js +17 -0
  164. package/lib/esm/components/Empty/index.js +7 -0
  165. package/lib/esm/components/Fieldset/Fieldset.js +22 -0
  166. package/lib/esm/components/Fieldset/index.js +9 -0
  167. package/lib/esm/components/FileUpload/FileUpload.js +33 -0
  168. package/lib/esm/components/FileUpload/index.js +11 -0
  169. package/lib/esm/components/Form/Form.js +64 -0
  170. package/lib/esm/components/Form/index.js +25 -0
  171. package/lib/esm/components/FormElement/FormElement.js +17 -0
  172. package/lib/esm/components/FormElement/index.js +2 -0
  173. package/lib/esm/components/FormGroup/FormGroup.js +56 -0
  174. package/lib/esm/components/FormGroup/index.js +20 -0
  175. package/lib/esm/components/GlobalProvider/GlobalProvider.js +16 -0
  176. package/lib/esm/components/GlobalProvider/index.js +4 -0
  177. package/lib/esm/components/Heading/Heading.js +20 -0
  178. package/lib/esm/components/Heading/index.js +7 -0
  179. package/lib/esm/components/Hero/Hero.js +23 -0
  180. package/lib/esm/components/Hero/HeroCard.js +23 -0
  181. package/lib/esm/components/Hero/index.js +10 -0
  182. package/lib/esm/components/Icon/Icon.js +22 -0
  183. package/lib/esm/components/Icon/index.js +7 -0
  184. package/lib/esm/components/Image/Image.js +29 -0
  185. package/lib/esm/components/Image/index.js +8 -0
  186. package/lib/esm/components/Input/Input.js +30 -0
  187. package/lib/esm/components/Input/index.js +11 -0
  188. package/lib/esm/components/Link/Link.js +21 -0
  189. package/lib/esm/components/Link/index.js +7 -0
  190. package/lib/esm/components/LinkList/LinkList.js +20 -0
  191. package/lib/esm/components/LinkList/index.js +7 -0
  192. package/lib/esm/components/List/List.js +23 -0
  193. package/lib/esm/components/List/ListItem.js +19 -0
  194. package/lib/esm/components/List/index.js +9 -0
  195. package/lib/esm/components/Loading/Loading.js +19 -0
  196. package/lib/esm/components/Loading/index.js +7 -0
  197. package/lib/esm/components/Notification/Notification.js +39 -0
  198. package/lib/esm/components/Notification/index.js +11 -0
  199. package/lib/esm/components/NumberPicker/NumberPicker.js +30 -0
  200. package/lib/esm/components/NumberPicker/index.js +11 -0
  201. package/lib/esm/components/Pagination/Pagination.js +47 -0
  202. package/lib/esm/components/Pagination/index.js +7 -0
  203. package/lib/esm/components/Profile/Profile.js +17 -0
  204. package/lib/esm/components/Profile/index.js +7 -0
  205. package/lib/esm/components/Radio/Radio.js +27 -0
  206. package/lib/esm/components/Radio/index.js +8 -0
  207. package/lib/esm/components/ReadMore/ReadMore.js +36 -0
  208. package/lib/esm/components/ReadMore/index.js +8 -0
  209. package/lib/esm/components/RichText/RichText.js +17 -0
  210. package/lib/esm/components/RichText/index.js +7 -0
  211. package/lib/esm/components/SearchField/SearchField.js +36 -0
  212. package/lib/esm/components/SearchField/index.js +12 -0
  213. package/lib/esm/components/TableOfContents/TableOfContents.js +20 -0
  214. package/lib/esm/components/TableOfContents/index.js +7 -0
  215. package/lib/esm/components/Tag/Tag.js +52 -0
  216. package/lib/esm/components/Tag/TagSet.js +44 -0
  217. package/lib/esm/components/Tag/index.js +13 -0
  218. package/lib/esm/components/Textarea/Textarea.js +30 -0
  219. package/lib/esm/components/Textarea/index.js +11 -0
  220. package/lib/esm/components/Tooltip/Tooltip.js +101 -0
  221. package/lib/esm/components/Tooltip/index.js +8 -0
  222. package/lib/esm/components/Video/Video.js +27 -0
  223. package/lib/esm/components/Video/VideoPlayer.js +1450 -0
  224. package/lib/esm/components/Video/index.js +14 -0
  225. package/lib/esm/components/index.js +68 -0
  226. package/lib/esm/css-7414f50b.js +79 -0
  227. package/lib/esm/hooks/index.js +6 -0
  228. package/lib/esm/hooks/useGlobalSettings.js +11 -0
  229. package/lib/esm/hooks/useVideoPlayer.js +73 -0
  230. package/lib/esm/index-8ebb2cc1.js +1191 -0
  231. package/lib/esm/index.js +68 -0
  232. package/lib/esm/patterns-3a3fa9d6.js +575 -0
  233. package/lib/esm/utils/checkArrayDuplicates.js +5 -0
  234. package/lib/esm/utils/createChainedFunction.js +28 -0
  235. package/lib/esm/utils/getDefaultDimensionValue.js +20 -0
  236. package/lib/esm/utils/hoursMinutesSeconds.js +10 -0
  237. package/lib/esm/utils/index.js +7 -0
  238. package/lib/esm/utils/transitionEndListener.js +159 -0
  239. package/lib/esm/utils/triggerBrowserReflow.js +6 -0
  240. package/lib/types/react/src/components/Accordion/Accordion.d.ts +4 -0
  241. package/lib/types/react/src/components/Accordion/Accordion.props.d.ts +33 -0
  242. package/lib/types/react/src/components/Accordion/AccordionButton.d.ts +4 -0
  243. package/lib/types/react/src/components/Accordion/AccordionButton.props.d.ts +11 -0
  244. package/lib/types/react/src/components/Accordion/AccordionCtx.d.ts +4 -0
  245. package/lib/types/react/src/components/Accordion/AccordionItem.d.ts +4 -0
  246. package/lib/types/react/src/components/Accordion/AccordionItem.props.d.ts +21 -0
  247. package/lib/types/react/src/components/Accordion/AccordionPanel.d.ts +4 -0
  248. package/lib/types/react/src/components/Accordion/AccordionPanel.props.d.ts +17 -0
  249. package/lib/types/react/src/components/Accordion/index.d.ts +4 -0
  250. package/lib/types/react/src/components/Button/Button.args.d.ts +11 -0
  251. package/lib/types/react/src/components/Button/Button.d.ts +4 -0
  252. package/lib/types/react/src/components/Button/Button.props.d.ts +64 -0
  253. package/lib/types/react/src/components/Button/index.d.ts +2 -0
  254. package/lib/types/react/src/components/Callout/Callout.args.d.ts +8 -0
  255. package/lib/types/react/src/components/Callout/Callout.d.ts +4 -0
  256. package/lib/types/react/src/components/Callout/Callout.props.d.ts +50 -0
  257. package/lib/types/react/src/components/Callout/index.d.ts +2 -0
  258. package/lib/types/react/src/components/Checkbox/Checkbox.d.ts +4 -0
  259. package/lib/types/react/src/components/Checkbox/Checkbox.props.d.ts +13 -0
  260. package/lib/types/react/src/components/Checkbox/index.d.ts +1 -0
  261. package/lib/types/react/src/components/ChoiceGroup/ChoiceGroup.d.ts +4 -0
  262. package/lib/types/react/src/components/ChoiceGroup/ChoiceGroup.props.d.ts +20 -0
  263. package/lib/types/react/src/components/ChoiceGroup/index.d.ts +1 -0
  264. package/lib/types/react/src/components/Collapse/Collapse.d.ts +3 -0
  265. package/lib/types/react/src/components/Collapse/Collapse.props.d.ts +76 -0
  266. package/lib/types/react/src/components/Collapse/index.d.ts +1 -0
  267. package/lib/types/react/src/components/ContextMenu/ContextMenu.d.ts +4 -0
  268. package/lib/types/react/src/components/ContextMenu/ContextMenu.props.d.ts +25 -0
  269. package/lib/types/react/src/components/ContextMenu/index.d.ts +1 -0
  270. package/lib/types/react/src/components/Credit/Credit.d.ts +4 -0
  271. package/lib/types/react/src/components/Credit/Credit.props.d.ts +10 -0
  272. package/lib/types/react/src/components/Credit/index.d.ts +1 -0
  273. package/lib/types/react/src/components/DatePicker/DatePicker.d.ts +4 -0
  274. package/lib/types/react/src/components/DatePicker/DatePicker.props.d.ts +54 -0
  275. package/lib/types/react/src/components/DatePicker/index.d.ts +1 -0
  276. package/lib/types/react/src/components/Dropdown/Dropdown.d.ts +4 -0
  277. package/lib/types/react/src/components/Dropdown/Dropdown.props.d.ts +69 -0
  278. package/lib/types/react/src/components/Dropdown/index.d.ts +1 -0
  279. package/lib/types/react/src/components/Empty/Empty.d.ts +4 -0
  280. package/lib/types/react/src/components/Empty/Empty.props.d.ts +11 -0
  281. package/lib/types/react/src/components/Empty/index.d.ts +1 -0
  282. package/lib/types/react/src/components/Fieldset/Fieldset.d.ts +4 -0
  283. package/lib/types/react/src/components/Fieldset/Fieldset.props.d.ts +35 -0
  284. package/lib/types/react/src/components/Fieldset/index.d.ts +1 -0
  285. package/lib/types/react/src/components/FileUpload/FileUpload.d.ts +4 -0
  286. package/lib/types/react/src/components/FileUpload/FileUpload.props.d.ts +50 -0
  287. package/lib/types/react/src/components/FileUpload/index.d.ts +1 -0
  288. package/lib/types/react/src/components/Form/Form.d.ts +4 -0
  289. package/lib/types/react/src/components/Form/Form.props.d.ts +114 -0
  290. package/lib/types/react/src/components/Form/index.d.ts +1 -0
  291. package/lib/types/react/src/components/FormElement/FormElement.d.ts +4 -0
  292. package/lib/types/react/src/components/FormElement/FormElement.props.d.ts +47 -0
  293. package/lib/types/react/src/components/FormElement/index.d.ts +1 -0
  294. package/lib/types/react/src/components/FormGroup/FormGroup.d.ts +4 -0
  295. package/lib/types/react/src/components/FormGroup/FormGroup.props.d.ts +81 -0
  296. package/lib/types/react/src/components/FormGroup/index.d.ts +1 -0
  297. package/lib/types/react/src/components/GlobalProvider/GlobalCtx.d.ts +2 -0
  298. package/lib/types/react/src/components/GlobalProvider/GlobalProvider.d.ts +4 -0
  299. package/lib/types/react/src/components/GlobalProvider/GlobalProvider.props.d.ts +13 -0
  300. package/lib/types/react/src/components/GlobalProvider/index.d.ts +2 -0
  301. package/lib/types/react/src/components/Heading/Heading.d.ts +4 -0
  302. package/lib/types/react/src/components/Heading/Heading.props.d.ts +20 -0
  303. package/lib/types/react/src/components/Heading/index.d.ts +1 -0
  304. package/lib/types/react/src/components/Hero/Hero.d.ts +4 -0
  305. package/lib/types/react/src/components/Hero/Hero.props.d.ts +25 -0
  306. package/lib/types/react/src/components/Hero/HeroCard.d.ts +4 -0
  307. package/lib/types/react/src/components/Hero/HeroCard.props.d.ts +54 -0
  308. package/lib/types/react/src/components/Hero/index.d.ts +2 -0
  309. package/lib/types/react/src/components/Icon/Icon.d.ts +4 -0
  310. package/lib/types/react/src/components/Icon/Icon.props.d.ts +14 -0
  311. package/lib/types/react/src/components/Icon/index.d.ts +1 -0
  312. package/lib/types/react/src/components/Image/Image.d.ts +4 -0
  313. package/lib/types/react/src/components/Image/Image.props.d.ts +33 -0
  314. package/lib/types/react/src/components/Image/index.d.ts +1 -0
  315. package/lib/types/react/src/components/Input/Input.d.ts +4 -0
  316. package/lib/types/react/src/components/Input/Input.props.d.ts +51 -0
  317. package/lib/types/react/src/components/Input/index.d.ts +1 -0
  318. package/lib/types/react/src/components/Link/Link.d.ts +4 -0
  319. package/lib/types/react/src/components/Link/Link.props.d.ts +32 -0
  320. package/lib/types/react/src/components/Link/index.d.ts +1 -0
  321. package/lib/types/react/src/components/LinkList/LinkList.d.ts +4 -0
  322. package/lib/types/react/src/components/LinkList/LinkList.props.d.ts +44 -0
  323. package/lib/types/react/src/components/LinkList/index.d.ts +1 -0
  324. package/lib/types/react/src/components/List/List.d.ts +4 -0
  325. package/lib/types/react/src/components/List/List.props.d.ts +31 -0
  326. package/lib/types/react/src/components/List/ListCtx.d.ts +4 -0
  327. package/lib/types/react/src/components/List/ListItem.d.ts +4 -0
  328. package/lib/types/react/src/components/List/ListItem.props.d.ts +21 -0
  329. package/lib/types/react/src/components/List/index.d.ts +2 -0
  330. package/lib/types/react/src/components/Loading/Loading.d.ts +4 -0
  331. package/lib/types/react/src/components/Loading/Loading.props.d.ts +19 -0
  332. package/lib/types/react/src/components/Loading/index.d.ts +1 -0
  333. package/lib/types/react/src/components/Notification/Notification.d.ts +4 -0
  334. package/lib/types/react/src/components/Notification/Notification.props.d.ts +56 -0
  335. package/lib/types/react/src/components/Notification/index.d.ts +1 -0
  336. package/lib/types/react/src/components/NumberPicker/NumberPicker.d.ts +4 -0
  337. package/lib/types/react/src/components/NumberPicker/NumberPicker.props.d.ts +46 -0
  338. package/lib/types/react/src/components/NumberPicker/index.d.ts +1 -0
  339. package/lib/types/react/src/components/Pagination/Pagination.d.ts +4 -0
  340. package/lib/types/react/src/components/Pagination/Pagination.props.d.ts +54 -0
  341. package/lib/types/react/src/components/Pagination/index.d.ts +1 -0
  342. package/lib/types/react/src/components/Profile/Profile.d.ts +4 -0
  343. package/lib/types/react/src/components/Profile/Profile.props.d.ts +37 -0
  344. package/lib/types/react/src/components/Profile/index.d.ts +1 -0
  345. package/lib/types/react/src/components/Radio/Radio.d.ts +4 -0
  346. package/lib/types/react/src/components/Radio/Radio.props.d.ts +14 -0
  347. package/lib/types/react/src/components/Radio/index.d.ts +1 -0
  348. package/lib/types/react/src/components/ReadMore/ReadMore.d.ts +4 -0
  349. package/lib/types/react/src/components/ReadMore/ReadMore.props.d.ts +32 -0
  350. package/lib/types/react/src/components/ReadMore/index.d.ts +1 -0
  351. package/lib/types/react/src/components/RichText/RichText.d.ts +4 -0
  352. package/lib/types/react/src/components/RichText/RichText.props.d.ts +10 -0
  353. package/lib/types/react/src/components/RichText/index.d.ts +1 -0
  354. package/lib/types/react/src/components/SearchField/SearchField.d.ts +4 -0
  355. package/lib/types/react/src/components/SearchField/SearchField.props.d.ts +29 -0
  356. package/lib/types/react/src/components/SearchField/index.d.ts +1 -0
  357. package/lib/types/react/src/components/TableOfContents/TableOfContents.d.ts +4 -0
  358. package/lib/types/react/src/components/TableOfContents/TableOfContents.props.d.ts +20 -0
  359. package/lib/types/react/src/components/TableOfContents/index.d.ts +1 -0
  360. package/lib/types/react/src/components/Tag/Tag.d.ts +4 -0
  361. package/lib/types/react/src/components/Tag/Tag.props.d.ts +28 -0
  362. package/lib/types/react/src/components/Tag/TagCtx.d.ts +2 -0
  363. package/lib/types/react/src/components/Tag/TagSet.d.ts +4 -0
  364. package/lib/types/react/src/components/Tag/TagSet.props.d.ts +30 -0
  365. package/lib/types/react/src/components/Tag/index.d.ts +2 -0
  366. package/lib/types/react/src/components/Textarea/Textarea.d.ts +4 -0
  367. package/lib/types/react/src/components/Textarea/Textarea.props.d.ts +59 -0
  368. package/lib/types/react/src/components/Textarea/index.d.ts +1 -0
  369. package/lib/types/react/src/components/Tooltip/Tooltip.d.ts +4 -0
  370. package/lib/types/react/src/components/Tooltip/Tooltip.props.d.ts +35 -0
  371. package/lib/types/react/src/components/Tooltip/index.d.ts +1 -0
  372. package/lib/types/react/src/components/Video/Video.d.ts +4 -0
  373. package/lib/types/react/src/components/Video/Video.props.d.ts +66 -0
  374. package/lib/types/react/src/components/Video/VideoPlayer.d.ts +4 -0
  375. package/lib/types/react/src/components/Video/VideoPlayer.props.d.ts +67 -0
  376. package/lib/types/react/src/components/Video/index.d.ts +1 -0
  377. package/lib/types/react/src/components/index.d.ts +39 -0
  378. package/lib/types/react/src/hooks/index.d.ts +2 -0
  379. package/lib/types/react/src/hooks/useGlobalSettings.d.ts +4 -0
  380. package/lib/types/react/src/hooks/useVideoPlayer.d.ts +12 -0
  381. package/lib/types/react/src/index.d.ts +1 -0
  382. package/lib/types/react/src/types/index.d.ts +26 -0
  383. package/lib/types/react/src/utils/checkArrayDuplicates.d.ts +1 -0
  384. package/lib/types/react/src/utils/createChainedFunction.d.ts +11 -0
  385. package/lib/types/react/src/utils/getDefaultDimensionValue.d.ts +3 -0
  386. package/lib/types/react/src/utils/hoursMinutesSeconds.d.ts +1 -0
  387. package/lib/types/react/src/utils/index.d.ts +6 -0
  388. package/lib/types/react/src/utils/transitionEndListener.d.ts +1 -0
  389. package/lib/types/react/src/utils/triggerBrowserReflow.d.ts +1 -0
  390. package/package.json +115 -77
  391. package/public/hero.jpg +0 -0
  392. package/public/ilo-dg.jpg +0 -0
  393. package/public/ilo-headquarters.jpg +0 -0
  394. package/public/large.jpg +0 -0
  395. package/public/media-file-poster.jpg +0 -0
  396. package/public/medium.jpg +0 -0
  397. package/public/small.jpg +0 -0
  398. package/public/video-example.mp4 +0 -0
  399. package/public/youtube-video-poster.avif +0 -0
  400. package/rollup.config.mjs +70 -0
  401. package/src/components/Accordion/Accordion.args.ts +1 -1
  402. package/src/components/Accordion/{Accordion.props.d.ts → Accordion.props.ts} +6 -4
  403. package/src/components/Accordion/Accordion.tsx +4 -12
  404. package/src/components/Accordion/{AccordionButton.props.d.ts → AccordionButton.props.ts} +0 -0
  405. package/src/components/Accordion/AccordionButton.tsx +2 -4
  406. package/src/components/Accordion/AccordionCtx.ts +9 -0
  407. package/src/components/Accordion/{AccordionItem.props.d.ts → AccordionItem.props.ts} +0 -0
  408. package/src/components/Accordion/AccordionItem.tsx +3 -9
  409. package/src/components/Accordion/{AccordionPanel.props.d.ts → AccordionPanel.props.ts} +0 -0
  410. package/src/components/Accordion/AccordionPanel.tsx +2 -3
  411. package/src/components/Accordion/index.ts +0 -0
  412. package/src/components/Button/Button.args.ts +12 -467
  413. package/src/components/Button/{Button.props.d.ts → Button.props.ts} +17 -7
  414. package/src/components/Button/Button.tsx +9 -1
  415. package/src/components/Button/index.ts +1 -0
  416. package/src/components/Callout/Callout.args.ts +17 -43
  417. package/src/components/Callout/{Callout.props.d.ts → Callout.props.ts} +2 -3
  418. package/src/components/Callout/Callout.tsx +4 -4
  419. package/src/components/Callout/index.ts +1 -0
  420. package/src/components/Checkbox/Checkbox.args.ts +1 -3
  421. package/src/components/Checkbox/Checkbox.props.ts +13 -0
  422. package/src/components/Checkbox/Checkbox.tsx +1 -1
  423. package/src/components/ChoiceGroup/ChoiceGroup.args.ts +15 -12
  424. package/src/components/ChoiceGroup/ChoiceGroup.props.ts +25 -0
  425. package/src/components/ChoiceGroup/ChoiceGroup.tsx +1 -1
  426. package/src/components/Collapse/{Collapse.props.d.ts → Collapse.props.ts} +0 -0
  427. package/src/components/Collapse/Collapse.tsx +4 -4
  428. package/src/components/ContextMenu/ContextMenu.args.ts +10 -10
  429. package/src/components/ContextMenu/{ContextMenu.props.d.ts → ContextMenu.props.ts} +0 -0
  430. package/src/components/Credit/{Credit.props.d.ts → Credit.props.ts} +0 -0
  431. package/src/components/DatePicker/DatePicker.args.ts +6 -6
  432. package/src/components/DatePicker/{DatePicker.props.d.ts → DatePicker.props.ts} +1 -3
  433. package/src/components/DatePicker/DatePicker.tsx +4 -4
  434. package/src/components/Dropdown/Dropdown.args.ts +5 -5
  435. package/src/components/Dropdown/{Dropdown.props.d.ts → Dropdown.props.ts} +1 -1
  436. package/src/components/Dropdown/Dropdown.tsx +1 -1
  437. package/src/components/Empty/{Empty.props.d.ts → Empty.props.ts} +7 -0
  438. package/src/components/Empty/Empty.tsx +2 -2
  439. package/src/components/Fieldset/{Fieldset.props.d.ts → Fieldset.props.ts} +10 -3
  440. package/src/components/Fieldset/Fieldset.tsx +4 -4
  441. package/src/components/FileUpload/FileUpload.args.ts +4 -4
  442. package/src/components/FileUpload/{FileUpload.props.d.ts → FileUpload.props.ts} +1 -3
  443. package/src/components/FileUpload/FileUpload.tsx +1 -1
  444. package/src/components/Form/Form.args.ts +4 -82
  445. package/src/components/Form/Form.props.ts +137 -0
  446. package/src/components/FormElement/{FormElement.props.d.ts → FormElement.props.ts} +12 -5
  447. package/src/components/FormElement/FormElement.tsx +9 -16
  448. package/src/components/FormGroup/FormGroup.args.ts +2 -1
  449. package/src/components/FormGroup/FormGroup.props.ts +102 -0
  450. package/src/components/GlobalProvider/GlobalCtx.ts +6 -0
  451. package/src/components/GlobalProvider/{GlobalProvider.props.d.ts → GlobalProvider.props.ts} +1 -1
  452. package/src/components/GlobalProvider/GlobalProvider.tsx +3 -9
  453. package/src/components/GlobalProvider/index.ts +2 -0
  454. package/src/components/Heading/Heading.args.ts +9 -6
  455. package/src/components/Heading/{Heading.props.d.ts → Heading.props.ts} +3 -3
  456. package/src/components/Hero/Hero.args.ts +14 -14
  457. package/src/components/Hero/{Hero.props.d.ts → Hero.props.ts} +7 -6
  458. package/src/components/Hero/Hero.tsx +1 -1
  459. package/src/components/Hero/{HeroCard.props.d.ts → HeroCard.props.ts} +6 -6
  460. package/src/components/Icon/{Icon.props.d.ts → Icon.props.ts} +1 -1
  461. package/src/components/Image/Image.args.ts +9 -15
  462. package/src/components/Image/{Image.props.d.ts → Image.props.ts} +0 -0
  463. package/src/components/Input/Input.args.ts +10 -10
  464. package/src/components/Input/{Input.props.d.ts → Input.props.ts} +3 -3
  465. package/src/components/Input/Input.tsx +1 -1
  466. package/src/components/Link/{Link.props.d.ts → Link.props.ts} +8 -3
  467. package/src/components/Link/Link.tsx +3 -10
  468. package/src/components/LinkList/{LinkList.props.d.ts → LinkList.props.ts} +2 -2
  469. package/src/components/List/List.args.ts +0 -4
  470. package/src/components/List/{List.props.d.ts → List.props.ts} +9 -8
  471. package/src/components/List/List.tsx +3 -4
  472. package/src/components/List/ListCtx.ts +7 -0
  473. package/src/components/List/{ListItem.props.d.ts → ListItem.props.ts} +0 -0
  474. package/src/components/List/ListItem.tsx +3 -4
  475. package/src/components/Loading/{Loading.props.d.ts → Loading.props.ts} +3 -3
  476. package/src/components/Notification/{Notification.props.d.ts → Notification.props.ts} +3 -3
  477. package/src/components/Notification/Notification.tsx +1 -1
  478. package/src/components/NumberPicker/NumberPicker.args.ts +4 -4
  479. package/src/components/NumberPicker/{NumberPicker.props.d.ts → NumberPicker.props.ts} +1 -1
  480. package/src/components/NumberPicker/NumberPicker.tsx +1 -1
  481. package/src/components/Pagination/Pagination.args.ts +2 -2
  482. package/src/components/Pagination/{Pagination.props.d.ts → Pagination.props.ts} +1 -1
  483. package/src/components/Profile/Profile.args.ts +16 -16
  484. package/src/components/Profile/{Profile.props.d.ts → Profile.props.ts} +0 -0
  485. package/src/components/Radio/Radio.args.ts +3 -4
  486. package/src/components/Radio/Radio.props.ts +14 -0
  487. package/src/components/Radio/Radio.tsx +1 -1
  488. package/src/components/ReadMore/ReadMore.args.ts +23 -0
  489. package/src/components/ReadMore/{ReadMore.props.d.ts → ReadMore.props.ts} +2 -2
  490. package/src/components/RichText/{RichText.props.d.ts → RichText.props.ts} +1 -1
  491. package/src/components/RichText/richText.args.ts +25 -2
  492. package/src/components/SearchField/SearchField.args.ts +8 -8
  493. package/src/components/SearchField/{SearchField.props.d.ts → SearchField.props.ts} +3 -3
  494. package/src/components/SearchField/SearchField.tsx +26 -19
  495. package/src/components/TableOfContents/{TableOfContents.props.d.ts → TableOfContents.props.ts} +0 -0
  496. package/src/components/Tag/{Tag.props.d.ts → Tag.props.ts} +4 -4
  497. package/src/components/Tag/Tag.tsx +8 -3
  498. package/src/components/Tag/TagCtx.ts +4 -0
  499. package/src/components/Tag/TagSet.args.ts +0 -2
  500. package/src/components/Tag/{TagSet.props.d.ts → TagSet.props.ts} +5 -4
  501. package/src/components/Tag/TagSet.tsx +3 -13
  502. package/src/components/Textarea/Textarea.args.ts +0 -10
  503. package/src/components/Textarea/{Textarea.props.d.ts → Textarea.props.ts} +5 -3
  504. package/src/components/Textarea/Textarea.tsx +1 -1
  505. package/src/components/Tooltip/Tooltip.args.ts +4 -8
  506. package/src/components/Tooltip/{Tooltip.props.d.ts → Tooltip.props.ts} +4 -9
  507. package/src/components/Tooltip/Tooltip.tsx +3 -2
  508. package/src/components/Video/Video.args.ts +16 -44
  509. package/src/components/Video/{Video.props.d.ts → Video.props.ts} +8 -13
  510. package/src/components/Video/Video.tsx +2 -2
  511. package/src/components/Video/{VideoPlayer.props.d.ts → VideoPlayer.props.ts} +7 -5
  512. package/src/components/Video/VideoPlayer.tsx +2 -2
  513. package/src/components/Video/media-file-poster.jpg +0 -0
  514. package/src/components/index.ts +44 -0
  515. package/src/hooks/index.ts +2 -0
  516. package/src/index.ts +1 -19
  517. package/src/types/index.ts +27 -26
  518. package/src/utils/index.ts +6 -0
  519. package/tsconfig.build.json +7 -3
  520. package/.eslintrc.js +0 -36
  521. package/.storybook/main.js +0 -28
  522. package/.storybook/manager-head.html +0 -2
  523. package/.storybook/manager.js +0 -6
  524. package/.storybook/preview.tsx +0 -40
  525. package/.storybook/styles.scss +0 -1
  526. package/.storybook/theme.js +0 -11
  527. package/.turbo/turbo-build.log +0 -525
  528. package/.turbo/turbo-check.log +0 -4
  529. package/.turbo/turbo-test.log +0 -889
  530. package/=6.4.0 +0 -115
  531. package/=7.21.4 +0 -21
  532. package/lib/index.esm.js +0 -24
  533. package/lib/index.esm.js.map +0 -1
  534. package/lib/index.js +0 -24
  535. package/lib/index.js.map +0 -1
  536. package/rollup.config.js +0 -40
  537. package/src/__tests__/Accordion.test.tsx +0 -52
  538. package/src/__tests__/Button.test.tsx +0 -60
  539. package/src/__tests__/Callout.test.tsx +0 -41
  540. package/src/__tests__/ContextMenu.test.tsx +0 -19
  541. package/src/__tests__/Dropdown.test.tsx +0 -38
  542. package/src/__tests__/Form.test.tsx +0 -34
  543. package/src/__tests__/Heading.test.tsx +0 -51
  544. package/src/__tests__/Hero.test.tsx +0 -22
  545. package/src/__tests__/Image.test.tsx +0 -21
  546. package/src/__tests__/LinkList.test.tsx +0 -17
  547. package/src/__tests__/List.test.tsx +0 -37
  548. package/src/__tests__/Loading.text.tsx +0 -33
  549. package/src/__tests__/Notification.test.tsx +0 -39
  550. package/src/__tests__/Pagination.test.tsx +0 -58
  551. package/src/__tests__/Profile.test.tsx +0 -48
  552. package/src/__tests__/ReadMore.test.tsx +0 -42
  553. package/src/__tests__/RichText.test.tsx +0 -16
  554. package/src/__tests__/SearchField.test.tsx +0 -35
  555. package/src/__tests__/TableOfContents.test.tsx +0 -12
  556. package/src/__tests__/Tag.test.tsx +0 -10
  557. package/src/components/Checkbox/Checkbox.props.d.ts +0 -61
  558. package/src/components/ChoiceGroup/ChoiceGroup.props.d.ts +0 -57
  559. package/src/components/Empty/Empty.args.ts +0 -14
  560. package/src/components/Form/Form.props.d.ts +0 -84
  561. package/src/components/FormGroup/FormGroup.props.d.ts +0 -71
  562. package/src/components/GlobalProvider/index.js +0 -4
  563. package/src/components/Link/Link.args.ts +0 -36
  564. package/src/components/Radio/Radio.props.d.ts +0 -66
  565. package/src/components/ReadMore/readMore.args.ts +0 -35
  566. package/src/setup.ts +0 -6
  567. package/src/stories/Accordion.stories.tsx +0 -99
  568. package/src/stories/Button.stories.tsx +0 -375
  569. package/src/stories/Callout.stories.tsx +0 -195
  570. package/src/stories/ContextMenu.stories.tsx +0 -80
  571. package/src/stories/Dropdown.stories.tsx +0 -91
  572. package/src/stories/Empty.stories.tsx +0 -48
  573. package/src/stories/Form.stories.tsx +0 -67
  574. package/src/stories/Heading.stories.tsx +0 -191
  575. package/src/stories/Hero.stories.tsx +0 -194
  576. package/src/stories/Image.stories.tsx +0 -71
  577. package/src/stories/Introduction.stories.mdx +0 -258
  578. package/src/stories/Link.stories.tsx +0 -104
  579. package/src/stories/LinkList.stories.tsx +0 -74
  580. package/src/stories/List.stories.tsx +0 -255
  581. package/src/stories/Loading.stories.tsx +0 -103
  582. package/src/stories/Notification.stories.tsx +0 -176
  583. package/src/stories/Pagination.stories.tsx +0 -63
  584. package/src/stories/Profile.stories.tsx +0 -84
  585. package/src/stories/ReadMore.stories.tsx +0 -80
  586. package/src/stories/RichText.stories.tsx +0 -59
  587. package/src/stories/SearchField.stories.tsx +0 -87
  588. package/src/stories/TableOfContents.stories.tsx +0 -50
  589. package/src/stories/Tag.stories.tsx +0 -226
  590. package/src/stories/Tooltip.stories.tsx +0 -92
  591. package/src/stories/Video.stories.tsx +0 -69
  592. package/src/stories/Welcome.stories.mdx +0 -63
  593. package/src/stories/assets/code-brackets.svg +0 -1
  594. package/src/stories/assets/colors.svg +0 -1
  595. package/src/stories/assets/comments.svg +0 -1
  596. package/src/stories/assets/direction.svg +0 -1
  597. package/src/stories/assets/flow.svg +0 -1
  598. package/src/stories/assets/plugin.svg +0 -1
  599. package/src/stories/assets/repo.svg +0 -1
  600. package/src/stories/assets/stackalt.svg +0 -1
  601. package/storybook-static/01daf23af61cc99e9d75.woff2 +0 -0
  602. package/storybook-static/06a2da828c8b6497ba7a.woff +0 -0
  603. package/storybook-static/0fa24adac56865ac7e5f.ttf +0 -0
  604. package/storybook-static/160.a21381a2.iframe.bundle.js +0 -1
  605. package/storybook-static/1dbed2ef5cef8fcb4cbe.ttf +0 -0
  606. package/storybook-static/1fa1c16a4a45d13f0df8.ttf +0 -0
  607. package/storybook-static/212.faba6ad0.iframe.bundle.js +0 -7
  608. package/storybook-static/212.faba6ad0.iframe.bundle.js.LICENSE.txt +0 -108
  609. package/storybook-static/212.faba6ad0.iframe.bundle.js.map +0 -1
  610. package/storybook-static/23cdaa8575b5e003dcde.eot +0 -0
  611. package/storybook-static/247.21581a11a07ce2f03d0c.manager.bundle.js +0 -2
  612. package/storybook-static/247.21581a11a07ce2f03d0c.manager.bundle.js.LICENSE.txt +0 -8
  613. package/storybook-static/247.271b628d.iframe.bundle.js +0 -2
  614. package/storybook-static/247.271b628d.iframe.bundle.js.LICENSE.txt +0 -8
  615. package/storybook-static/259.03b8a6d8.iframe.bundle.js +0 -1
  616. package/storybook-static/27d33755a2b827666dc5.woff +0 -0
  617. package/storybook-static/294.491cce4d5ae7b9c2ffce.manager.bundle.js +0 -1
  618. package/storybook-static/294.549e3f8d.iframe.bundle.js +0 -1
  619. package/storybook-static/409a9c398a28ee4d74ff.eot +0 -0
  620. package/storybook-static/444.6156221a84c3a87f5c02.manager.bundle.js +0 -2
  621. package/storybook-static/444.6156221a84c3a87f5c02.manager.bundle.js.LICENSE.txt +0 -94
  622. package/storybook-static/4bf5fc6f93ba10519c82.eot +0 -0
  623. package/storybook-static/504.f9ef513c.iframe.bundle.js +0 -2
  624. package/storybook-static/504.f9ef513c.iframe.bundle.js.LICENSE.txt +0 -11
  625. package/storybook-static/639.044e85595b528d3f28da.manager.bundle.js +0 -2
  626. package/storybook-static/639.044e85595b528d3f28da.manager.bundle.js.LICENSE.txt +0 -31
  627. package/storybook-static/639.c568c669.iframe.bundle.js +0 -2
  628. package/storybook-static/639.c568c669.iframe.bundle.js.LICENSE.txt +0 -31
  629. package/storybook-static/642.1f308c6d963e823cc20e.manager.bundle.js +0 -2
  630. package/storybook-static/642.1f308c6d963e823cc20e.manager.bundle.js.LICENSE.txt +0 -12
  631. package/storybook-static/642.d92dc22b.iframe.bundle.js +0 -2
  632. package/storybook-static/642.d92dc22b.iframe.bundle.js.LICENSE.txt +0 -12
  633. package/storybook-static/6a159f0a2005668f1f78.woff +0 -0
  634. package/storybook-static/720.f44d4e1f5203b6083ae4.manager.bundle.js +0 -1
  635. package/storybook-static/73ba1c910e0f7bfc6b18.woff2 +0 -0
  636. package/storybook-static/837.1b65801453b1ce7ef7d1.manager.bundle.js +0 -1
  637. package/storybook-static/837.95523cc4.iframe.bundle.js +0 -1
  638. package/storybook-static/8a142c29a318c432117a.woff +0 -0
  639. package/storybook-static/914.d1f142bbe477c1136f06.manager.bundle.js +0 -1
  640. package/storybook-static/914.feb1fea5.iframe.bundle.js +0 -1
  641. package/storybook-static/9db5d05810cb98f2831f.ttf +0 -0
  642. package/storybook-static/9ff97e342523931a4992.eot +0 -0
  643. package/storybook-static/a40d436619020fb67db5.woff +0 -0
  644. package/storybook-static/a46b8d4aa3504103cdde.ttf +0 -0
  645. package/storybook-static/b53d0e74edc5a5fbef0a.ttf +0 -0
  646. package/storybook-static/c12a83f816844ff94375.ttf +0 -0
  647. package/storybook-static/c807e115c00aaffbac11.woff2 +0 -0
  648. package/storybook-static/cadb6b94d6b0ecc3a86a.woff2 +0 -0
  649. package/storybook-static/d0cff1b064bcd84324fe.eot +0 -0
  650. package/storybook-static/d3434771ad7e9030387e.ttf +0 -0
  651. package/storybook-static/d8610c2a4fe5c177f4f6.woff +0 -0
  652. package/storybook-static/d970f426740b938f39e1.woff +0 -0
  653. package/storybook-static/d9c7eba773ff1c8df5bb.eot +0 -0
  654. package/storybook-static/dd4645bdb2f1e1a47ed7.woff2 +0 -0
  655. package/storybook-static/e0a63577ac642885f067.eot +0 -0
  656. package/storybook-static/f632ebfa0d7b7085d542.woff2 +0 -0
  657. package/storybook-static/f93e2252d7112c3bcca5.woff2 +0 -0
  658. package/storybook-static/favicon.ico +0 -0
  659. package/storybook-static/iframe.html +0 -364
  660. package/storybook-static/index.html +0 -59
  661. package/storybook-static/main.28d30a3024752e90423a.manager.bundle.js +0 -1
  662. package/storybook-static/main.3ae24e12.iframe.bundle.js +0 -1
  663. package/storybook-static/project.json +0 -1
  664. package/storybook-static/reactPlayerDailyMotion.469cc00f.iframe.bundle.js +0 -1
  665. package/storybook-static/reactPlayerFacebook.1423bb15.iframe.bundle.js +0 -1
  666. package/storybook-static/reactPlayerFilePlayer.e19e24a0.iframe.bundle.js +0 -1
  667. package/storybook-static/reactPlayerKaltura.d1eb0868.iframe.bundle.js +0 -1
  668. package/storybook-static/reactPlayerMixcloud.9f1b1691.iframe.bundle.js +0 -1
  669. package/storybook-static/reactPlayerPreview.9295696b.iframe.bundle.js +0 -1
  670. package/storybook-static/reactPlayerSoundCloud.d420395c.iframe.bundle.js +0 -1
  671. package/storybook-static/reactPlayerStreamable.9b655bf3.iframe.bundle.js +0 -1
  672. package/storybook-static/reactPlayerTwitch.e90e6dea.iframe.bundle.js +0 -1
  673. package/storybook-static/reactPlayerVidyard.a37ae6b3.iframe.bundle.js +0 -1
  674. package/storybook-static/reactPlayerVimeo.a7f367ee.iframe.bundle.js +0 -1
  675. package/storybook-static/reactPlayerWistia.fb351944.iframe.bundle.js +0 -1
  676. package/storybook-static/reactPlayerYouTube.3514e11a.iframe.bundle.js +0 -1
  677. package/storybook-static/runtime~main.3bae6a4f.iframe.bundle.js +0 -1
  678. package/storybook-static/runtime~main.e45b096081911dbee3c7.manager.bundle.js +0 -1
  679. package/storybook-static/static/css/main.19ed5330.css +0 -3
  680. package/storybook-static/static/css/main.19ed5330.css.map +0 -1
package/lib/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sources":["../../../node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.es6.js","../../../node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.js","../../../node_modules/.pnpm/react@17.0.2/node_modules/react/cjs/react-jsx-runtime.production.min.js","../../../node_modules/.pnpm/react@17.0.2/node_modules/react/cjs/react-jsx-runtime.development.js","../../../node_modules/.pnpm/react@17.0.2/node_modules/react/jsx-runtime.js","../src/components/GlobalProvider/GlobalProvider.tsx","../src/hooks/useGlobalSettings.ts","../src/components/Accordion/Accordion.tsx","../src/components/Accordion/AccordionItem.tsx","../../../node_modules/.pnpm/@babel+runtime@7.20.1/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","../../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js","../../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js","../../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js","../../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.js","../../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.js","../../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.js","../../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.js","../../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.js","../../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.js","../../../node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2+react@17.0.2/node_modules/react-transition-group/esm/config.js","../../../node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2+react@17.0.2/node_modules/react-transition-group/esm/utils/PropTypes.js","../../../node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2+react@17.0.2/node_modules/react-transition-group/esm/TransitionGroupContext.js","../../../node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2+react@17.0.2/node_modules/react-transition-group/esm/Transition.js","../../../node_modules/.pnpm/@babel+runtime@7.20.1/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js","../../../node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2+react@17.0.2/node_modules/react-transition-group/esm/utils/reflow.js","../../../node_modules/.pnpm/@babel+runtime@7.20.1/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/ownerWindow.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/ownerDocument.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/hyphenate.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/hyphenateStyle.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/isTransform.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/css.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/getComputedStyle.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/canUseDOM.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/addEventListener.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/listen.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/removeEventListener.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/transitionEnd.js","../../../node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/triggerEvent.js","../src/utils/transitionEndListener.ts","../src/utils/createChainedFunction.ts","../src/utils/getDefaultDimensionValue.ts","../src/components/Collapse/Collapse.tsx","../src/utils/triggerBrowserReflow.ts","../src/utils/checkArrayDuplicates.ts","../src/components/Accordion/AccordionButton.tsx","../src/components/Accordion/AccordionPanel.tsx","../src/components/Heading/Heading.tsx"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/** @license React v17.0.2\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';require(\"object-assign\");var f=require(\"react\"),g=60103;exports.Fragment=60107;if(\"function\"===typeof Symbol&&Symbol.for){var h=Symbol.for;g=h(\"react.element\");exports.Fragment=h(\"react.fragment\")}var m=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,n=Object.prototype.hasOwnProperty,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,k){var b,d={},e=null,l=null;void 0!==k&&(e=\"\"+k);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(l=a.ref);for(b in a)n.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:g,type:c,key:e,ref:l,props:d,_owner:m.current}}exports.jsx=q;exports.jsxs=q;\n","/** @license React v17.0.2\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\nvar React = require('react');\nvar _assign = require('object-assign');\n\n// ATTENTION\n// When adding new symbols to this file,\n// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'\n// The Symbol used to tag the ReactElement-like types. If there is no native Symbol\n// nor polyfill, then a plain number is used for performance.\nvar REACT_ELEMENT_TYPE = 0xeac7;\nvar REACT_PORTAL_TYPE = 0xeaca;\nexports.Fragment = 0xeacb;\nvar REACT_STRICT_MODE_TYPE = 0xeacc;\nvar REACT_PROFILER_TYPE = 0xead2;\nvar REACT_PROVIDER_TYPE = 0xeacd;\nvar REACT_CONTEXT_TYPE = 0xeace;\nvar REACT_FORWARD_REF_TYPE = 0xead0;\nvar REACT_SUSPENSE_TYPE = 0xead1;\nvar REACT_SUSPENSE_LIST_TYPE = 0xead8;\nvar REACT_MEMO_TYPE = 0xead3;\nvar REACT_LAZY_TYPE = 0xead4;\nvar REACT_BLOCK_TYPE = 0xead9;\nvar REACT_SERVER_BLOCK_TYPE = 0xeada;\nvar REACT_FUNDAMENTAL_TYPE = 0xead5;\nvar REACT_SCOPE_TYPE = 0xead7;\nvar REACT_OPAQUE_ID_TYPE = 0xeae0;\nvar REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;\nvar REACT_OFFSCREEN_TYPE = 0xeae2;\nvar REACT_LEGACY_HIDDEN_TYPE = 0xeae3;\n\nif (typeof Symbol === 'function' && Symbol.for) {\n var symbolFor = Symbol.for;\n REACT_ELEMENT_TYPE = symbolFor('react.element');\n REACT_PORTAL_TYPE = symbolFor('react.portal');\n exports.Fragment = symbolFor('react.fragment');\n REACT_STRICT_MODE_TYPE = symbolFor('react.strict_mode');\n REACT_PROFILER_TYPE = symbolFor('react.profiler');\n REACT_PROVIDER_TYPE = symbolFor('react.provider');\n REACT_CONTEXT_TYPE = symbolFor('react.context');\n REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');\n REACT_SUSPENSE_TYPE = symbolFor('react.suspense');\n REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');\n REACT_MEMO_TYPE = symbolFor('react.memo');\n REACT_LAZY_TYPE = symbolFor('react.lazy');\n REACT_BLOCK_TYPE = symbolFor('react.block');\n REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block');\n REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');\n REACT_SCOPE_TYPE = symbolFor('react.scope');\n REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');\n REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');\n REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');\n REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');\n}\n\nvar MAYBE_ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\nvar FAUX_ITERATOR_SYMBOL = '@@iterator';\nfunction getIteratorFn(maybeIterable) {\n if (maybeIterable === null || typeof maybeIterable !== 'object') {\n return null;\n }\n\n var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];\n\n if (typeof maybeIterator === 'function') {\n return maybeIterator;\n }\n\n return null;\n}\n\nvar ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n\nfunction error(format) {\n {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n printWarning('error', format, args);\n }\n}\n\nfunction printWarning(level, format, args) {\n // When changing this logic, you might want to also\n // update consoleWithStackDev.www.js as well.\n {\n var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n var stack = ReactDebugCurrentFrame.getStackAddendum();\n\n if (stack !== '') {\n format += '%s';\n args = args.concat([stack]);\n }\n\n var argsWithFormat = args.map(function (item) {\n return '' + item;\n }); // Careful: RN currently depends on this prefix\n\n argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it\n // breaks IE9: https://github.com/facebook/react/issues/13610\n // eslint-disable-next-line react-internal/no-production-logging\n\n Function.prototype.apply.call(console[level], console, argsWithFormat);\n }\n}\n\n// Filter certain DOM attributes (e.g. src, href) if their values are empty strings.\n\nvar enableScopeAPI = false; // Experimental Create Event Handle API.\n\nfunction isValidElementType(type) {\n if (typeof type === 'string' || typeof type === 'function') {\n return true;\n } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).\n\n\n if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) {\n return true;\n }\n\n if (typeof type === 'object' && type !== null) {\n if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction getWrappedName(outerType, innerType, wrapperName) {\n var functionName = innerType.displayName || innerType.name || '';\n return outerType.displayName || (functionName !== '' ? wrapperName + \"(\" + functionName + \")\" : wrapperName);\n}\n\nfunction getContextName(type) {\n return type.displayName || 'Context';\n}\n\nfunction getComponentName(type) {\n if (type == null) {\n // Host root, text node or just invalid type.\n return null;\n }\n\n {\n if (typeof type.tag === 'number') {\n error('Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.');\n }\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || null;\n }\n\n if (typeof type === 'string') {\n return type;\n }\n\n switch (type) {\n case exports.Fragment:\n return 'Fragment';\n\n case REACT_PORTAL_TYPE:\n return 'Portal';\n\n case REACT_PROFILER_TYPE:\n return 'Profiler';\n\n case REACT_STRICT_MODE_TYPE:\n return 'StrictMode';\n\n case REACT_SUSPENSE_TYPE:\n return 'Suspense';\n\n case REACT_SUSPENSE_LIST_TYPE:\n return 'SuspenseList';\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n var context = type;\n return getContextName(context) + '.Consumer';\n\n case REACT_PROVIDER_TYPE:\n var provider = type;\n return getContextName(provider._context) + '.Provider';\n\n case REACT_FORWARD_REF_TYPE:\n return getWrappedName(type, type.render, 'ForwardRef');\n\n case REACT_MEMO_TYPE:\n return getComponentName(type.type);\n\n case REACT_BLOCK_TYPE:\n return getComponentName(type._render);\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n return getComponentName(init(payload));\n } catch (x) {\n return null;\n }\n }\n }\n }\n\n return null;\n}\n\n// Helpers to patch console.logs to avoid logging during side-effect free\n// replaying on render function. This currently only patches the object\n// lazily which won't cover if the log function was extracted eagerly.\n// We could also eagerly patch the method.\nvar disabledDepth = 0;\nvar prevLog;\nvar prevInfo;\nvar prevWarn;\nvar prevError;\nvar prevGroup;\nvar prevGroupCollapsed;\nvar prevGroupEnd;\n\nfunction disabledLog() {}\n\ndisabledLog.__reactDisabledLog = true;\nfunction disableLogs() {\n {\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n prevLog = console.log;\n prevInfo = console.info;\n prevWarn = console.warn;\n prevError = console.error;\n prevGroup = console.group;\n prevGroupCollapsed = console.groupCollapsed;\n prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099\n\n var props = {\n configurable: true,\n enumerable: true,\n value: disabledLog,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n info: props,\n log: props,\n warn: props,\n error: props,\n group: props,\n groupCollapsed: props,\n groupEnd: props\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n disabledDepth++;\n }\n}\nfunction reenableLogs() {\n {\n disabledDepth--;\n\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n var props = {\n configurable: true,\n enumerable: true,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n log: _assign({}, props, {\n value: prevLog\n }),\n info: _assign({}, props, {\n value: prevInfo\n }),\n warn: _assign({}, props, {\n value: prevWarn\n }),\n error: _assign({}, props, {\n value: prevError\n }),\n group: _assign({}, props, {\n value: prevGroup\n }),\n groupCollapsed: _assign({}, props, {\n value: prevGroupCollapsed\n }),\n groupEnd: _assign({}, props, {\n value: prevGroupEnd\n })\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n if (disabledDepth < 0) {\n error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');\n }\n }\n}\n\nvar ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;\nvar prefix;\nfunction describeBuiltInComponentFrame(name, source, ownerFn) {\n {\n if (prefix === undefined) {\n // Extract the VM specific prefix used by each line.\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = match && match[1] || '';\n }\n } // We use the prefix to ensure our stacks line up with native stack frames.\n\n\n return '\\n' + prefix + name;\n }\n}\nvar reentry = false;\nvar componentFrameCache;\n\n{\n var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;\n componentFrameCache = new PossiblyWeakMap();\n}\n\nfunction describeNativeComponentFrame(fn, construct) {\n // If something asked for a stack inside a fake render, it should get ignored.\n if (!fn || reentry) {\n return '';\n }\n\n {\n var frame = componentFrameCache.get(fn);\n\n if (frame !== undefined) {\n return frame;\n }\n }\n\n var control;\n reentry = true;\n var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.\n\n Error.prepareStackTrace = undefined;\n var previousDispatcher;\n\n {\n previousDispatcher = ReactCurrentDispatcher.current; // Set the dispatcher in DEV because this might be call in the render function\n // for warnings.\n\n ReactCurrentDispatcher.current = null;\n disableLogs();\n }\n\n try {\n // This should throw.\n if (construct) {\n // Something should be setting the props in the constructor.\n var Fake = function () {\n throw Error();\n }; // $FlowFixMe\n\n\n Object.defineProperty(Fake.prototype, 'props', {\n set: function () {\n // We use a throwing setter instead of frozen or non-writable props\n // because that won't throw in a non-strict mode function.\n throw Error();\n }\n });\n\n if (typeof Reflect === 'object' && Reflect.construct) {\n // We construct a different control for this case to include any extra\n // frames added by the construct call.\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n control = x;\n }\n\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x) {\n control = x;\n }\n\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x) {\n control = x;\n }\n\n fn();\n }\n } catch (sample) {\n // This is inlined manually because closure doesn't do it for us.\n if (sample && control && typeof sample.stack === 'string') {\n // This extracts the first frame from the sample that isn't also in the control.\n // Skipping one frame that we assume is the frame that calls the two.\n var sampleLines = sample.stack.split('\\n');\n var controlLines = control.stack.split('\\n');\n var s = sampleLines.length - 1;\n var c = controlLines.length - 1;\n\n while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {\n // We expect at least one stack frame to be shared.\n // Typically this will be the root most one. However, stack frames may be\n // cut off due to maximum stack limits. In this case, one maybe cut off\n // earlier than the other. We assume that the sample is longer or the same\n // and there for cut off earlier. So we should find the root most frame in\n // the sample somewhere in the control.\n c--;\n }\n\n for (; s >= 1 && c >= 0; s--, c--) {\n // Next we find the first one that isn't the same which should be the\n // frame that called our sample function and the control.\n if (sampleLines[s] !== controlLines[c]) {\n // In V8, the first line is describing the message but other VMs don't.\n // If we're about to return the first line, and the control is also on the same\n // line, that's a pretty good indicator that our sample threw at same line as\n // the control. I.e. before we entered the sample frame. So we ignore this result.\n // This can happen if you passed a class to function component, or non-function.\n if (s !== 1 || c !== 1) {\n do {\n s--;\n c--; // We may still have similar intermediate frames from the construct call.\n // The next one that isn't the same should be our match though.\n\n if (c < 0 || sampleLines[s] !== controlLines[c]) {\n // V8 adds a \"new\" prefix for native classes. Let's remove it to make it prettier.\n var _frame = '\\n' + sampleLines[s].replace(' at new ', ' at ');\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, _frame);\n }\n } // Return the line we found.\n\n\n return _frame;\n }\n } while (s >= 1 && c >= 0);\n }\n\n break;\n }\n }\n }\n } finally {\n reentry = false;\n\n {\n ReactCurrentDispatcher.current = previousDispatcher;\n reenableLogs();\n }\n\n Error.prepareStackTrace = previousPrepareStackTrace;\n } // Fallback to just using the name if we couldn't make it throw.\n\n\n var name = fn ? fn.displayName || fn.name : '';\n var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, syntheticFrame);\n }\n }\n\n return syntheticFrame;\n}\nfunction describeFunctionComponentFrame(fn, source, ownerFn) {\n {\n return describeNativeComponentFrame(fn, false);\n }\n}\n\nfunction shouldConstruct(Component) {\n var prototype = Component.prototype;\n return !!(prototype && prototype.isReactComponent);\n}\n\nfunction describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {\n\n if (type == null) {\n return '';\n }\n\n if (typeof type === 'function') {\n {\n return describeNativeComponentFrame(type, shouldConstruct(type));\n }\n }\n\n if (typeof type === 'string') {\n return describeBuiltInComponentFrame(type);\n }\n\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return describeBuiltInComponentFrame('Suspense');\n\n case REACT_SUSPENSE_LIST_TYPE:\n return describeBuiltInComponentFrame('SuspenseList');\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeFunctionComponentFrame(type.render);\n\n case REACT_MEMO_TYPE:\n // Memo may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);\n\n case REACT_BLOCK_TYPE:\n return describeFunctionComponentFrame(type._render);\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n // Lazy may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);\n } catch (x) {}\n }\n }\n }\n\n return '';\n}\n\nvar loggedTypeFailures = {};\nvar ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame.setExtraStackFrame(null);\n }\n }\n}\n\nfunction checkPropTypes(typeSpecs, values, location, componentName, element) {\n {\n // $FlowFixMe This is okay but Flow doesn't know it.\n var has = Function.call.bind(Object.prototype.hasOwnProperty);\n\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');\n err.name = 'Invariant Violation';\n throw err;\n }\n\n error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');\n } catch (ex) {\n error$1 = ex;\n }\n\n if (error$1 && !(error$1 instanceof Error)) {\n setCurrentlyValidatingElement(element);\n\n error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);\n\n setCurrentlyValidatingElement(null);\n }\n\n if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error$1.message] = true;\n setCurrentlyValidatingElement(element);\n\n error('Failed %s type: %s', location, error$1.message);\n\n setCurrentlyValidatingElement(null);\n }\n }\n }\n }\n}\n\nvar ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar RESERVED_PROPS = {\n key: true,\n ref: true,\n __self: true,\n __source: true\n};\nvar specialPropKeyWarningShown;\nvar specialPropRefWarningShown;\nvar didWarnAboutStringRefs;\n\n{\n didWarnAboutStringRefs = {};\n}\n\nfunction hasValidRef(config) {\n {\n if (hasOwnProperty.call(config, 'ref')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.ref !== undefined;\n}\n\nfunction hasValidKey(config) {\n {\n if (hasOwnProperty.call(config, 'key')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.key !== undefined;\n}\n\nfunction warnIfStringRefCannotBeAutoConverted(config, self) {\n {\n if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {\n var componentName = getComponentName(ReactCurrentOwner.current.type);\n\n if (!didWarnAboutStringRefs[componentName]) {\n error('Component \"%s\" contains the string ref \"%s\". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentName(ReactCurrentOwner.current.type), config.ref);\n\n didWarnAboutStringRefs[componentName] = true;\n }\n }\n }\n}\n\nfunction defineKeyPropWarningGetter(props, displayName) {\n {\n var warnAboutAccessingKey = function () {\n if (!specialPropKeyWarningShown) {\n specialPropKeyWarningShown = true;\n\n error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n };\n\n warnAboutAccessingKey.isReactWarning = true;\n Object.defineProperty(props, 'key', {\n get: warnAboutAccessingKey,\n configurable: true\n });\n }\n}\n\nfunction defineRefPropWarningGetter(props, displayName) {\n {\n var warnAboutAccessingRef = function () {\n if (!specialPropRefWarningShown) {\n specialPropRefWarningShown = true;\n\n error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n };\n\n warnAboutAccessingRef.isReactWarning = true;\n Object.defineProperty(props, 'ref', {\n get: warnAboutAccessingRef,\n configurable: true\n });\n }\n}\n/**\n * Factory method to create a new React element. This no longer adheres to\n * the class pattern, so do not use new to call it. Also, instanceof check\n * will not work. Instead test $$typeof field against Symbol.for('react.element') to check\n * if something is a React Element.\n *\n * @param {*} type\n * @param {*} props\n * @param {*} key\n * @param {string|object} ref\n * @param {*} owner\n * @param {*} self A *temporary* helper to detect places where `this` is\n * different from the `owner` when React.createElement is called, so that we\n * can warn. We want to get rid of owner and replace string `ref`s with arrow\n * functions, and as long as `this` and owner are the same, there will be no\n * change in behavior.\n * @param {*} source An annotation object (added by a transpiler or otherwise)\n * indicating filename, line number, and/or other information.\n * @internal\n */\n\n\nvar ReactElement = function (type, key, ref, self, source, owner, props) {\n var element = {\n // This tag allows us to uniquely identify this as a React Element\n $$typeof: REACT_ELEMENT_TYPE,\n // Built-in properties that belong on the element\n type: type,\n key: key,\n ref: ref,\n props: props,\n // Record the component responsible for creating this element.\n _owner: owner\n };\n\n {\n // The validation flag is currently mutative. We put it on\n // an external backing store so that we can freeze the whole object.\n // This can be replaced with a WeakMap once they are implemented in\n // commonly used development environments.\n element._store = {}; // To make comparing ReactElements easier for testing purposes, we make\n // the validation flag non-enumerable (where possible, which should\n // include every environment we run tests in), so the test framework\n // ignores it.\n\n Object.defineProperty(element._store, 'validated', {\n configurable: false,\n enumerable: false,\n writable: true,\n value: false\n }); // self and source are DEV only properties.\n\n Object.defineProperty(element, '_self', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: self\n }); // Two elements created in two different places should be considered\n // equal for testing purposes and therefore we hide it from enumeration.\n\n Object.defineProperty(element, '_source', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: source\n });\n\n if (Object.freeze) {\n Object.freeze(element.props);\n Object.freeze(element);\n }\n }\n\n return element;\n};\n/**\n * https://github.com/reactjs/rfcs/pull/107\n * @param {*} type\n * @param {object} props\n * @param {string} key\n */\n\nfunction jsxDEV(type, config, maybeKey, source, self) {\n {\n var propName; // Reserved names are extracted\n\n var props = {};\n var key = null;\n var ref = null; // Currently, key can be spread in as a prop. This causes a potential\n // issue if key is also explicitly declared (ie. <div {...props} key=\"Hi\" />\n // or <div key=\"Hi\" {...props} /> ). We want to deprecate key spread,\n // but as an intermediary step, we will use jsxDEV for everything except\n // <div {...props} key=\"Hi\" />, because we aren't currently able to tell if\n // key is explicitly declared to be undefined or not.\n\n if (maybeKey !== undefined) {\n key = '' + maybeKey;\n }\n\n if (hasValidKey(config)) {\n key = '' + config.key;\n }\n\n if (hasValidRef(config)) {\n ref = config.ref;\n warnIfStringRefCannotBeAutoConverted(config, self);\n } // Remaining properties are added to a new props object\n\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n props[propName] = config[propName];\n }\n } // Resolve default props\n\n\n if (type && type.defaultProps) {\n var defaultProps = type.defaultProps;\n\n for (propName in defaultProps) {\n if (props[propName] === undefined) {\n props[propName] = defaultProps[propName];\n }\n }\n }\n\n if (key || ref) {\n var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n\n if (key) {\n defineKeyPropWarningGetter(props, displayName);\n }\n\n if (ref) {\n defineRefPropWarningGetter(props, displayName);\n }\n }\n\n return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n }\n}\n\nvar ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;\nvar ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement$1(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame$1.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame$1.setExtraStackFrame(null);\n }\n }\n}\n\nvar propTypesMisspellWarningShown;\n\n{\n propTypesMisspellWarningShown = false;\n}\n/**\n * Verifies the object is a ReactElement.\n * See https://reactjs.org/docs/react-api.html#isvalidelement\n * @param {?object} object\n * @return {boolean} True if `object` is a ReactElement.\n * @final\n */\n\nfunction isValidElement(object) {\n {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n }\n}\n\nfunction getDeclarationErrorAddendum() {\n {\n if (ReactCurrentOwner$1.current) {\n var name = getComponentName(ReactCurrentOwner$1.current.type);\n\n if (name) {\n return '\\n\\nCheck the render method of `' + name + '`.';\n }\n }\n\n return '';\n }\n}\n\nfunction getSourceInfoErrorAddendum(source) {\n {\n if (source !== undefined) {\n var fileName = source.fileName.replace(/^.*[\\\\\\/]/, '');\n var lineNumber = source.lineNumber;\n return '\\n\\nCheck your code at ' + fileName + ':' + lineNumber + '.';\n }\n\n return '';\n }\n}\n/**\n * Warn if there's no key explicitly set on dynamic arrays of children or\n * object keys are not valid. This allows us to keep track of children between\n * updates.\n */\n\n\nvar ownerHasKeyUseWarning = {};\n\nfunction getCurrentComponentErrorInfo(parentType) {\n {\n var info = getDeclarationErrorAddendum();\n\n if (!info) {\n var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;\n\n if (parentName) {\n info = \"\\n\\nCheck the top-level render call using <\" + parentName + \">.\";\n }\n }\n\n return info;\n }\n}\n/**\n * Warn if the element doesn't have an explicit key assigned to it.\n * This element is in an array. The array could grow and shrink or be\n * reordered. All children that haven't already been validated are required to\n * have a \"key\" property assigned to it. Error statuses are cached so a warning\n * will only be shown once.\n *\n * @internal\n * @param {ReactElement} element Element that requires a key.\n * @param {*} parentType element's parent's type.\n */\n\n\nfunction validateExplicitKey(element, parentType) {\n {\n if (!element._store || element._store.validated || element.key != null) {\n return;\n }\n\n element._store.validated = true;\n var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n\n if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {\n return;\n }\n\n ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a\n // property, it may be the creator of the child that's responsible for\n // assigning it a key.\n\n var childOwner = '';\n\n if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {\n // Give the component that originally created this child.\n childOwner = \" It was passed a child from \" + getComponentName(element._owner.type) + \".\";\n }\n\n setCurrentlyValidatingElement$1(element);\n\n error('Each child in a list should have a unique \"key\" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);\n\n setCurrentlyValidatingElement$1(null);\n }\n}\n/**\n * Ensure that every element either is passed in a static location, in an\n * array with an explicit keys property defined, or in an object literal\n * with valid key property.\n *\n * @internal\n * @param {ReactNode} node Statically passed child of any type.\n * @param {*} parentType node's parent's type.\n */\n\n\nfunction validateChildKeys(node, parentType) {\n {\n if (typeof node !== 'object') {\n return;\n }\n\n if (Array.isArray(node)) {\n for (var i = 0; i < node.length; i++) {\n var child = node[i];\n\n if (isValidElement(child)) {\n validateExplicitKey(child, parentType);\n }\n }\n } else if (isValidElement(node)) {\n // This element was passed in a valid location.\n if (node._store) {\n node._store.validated = true;\n }\n } else if (node) {\n var iteratorFn = getIteratorFn(node);\n\n if (typeof iteratorFn === 'function') {\n // Entry iterators used to provide implicit keys,\n // but now we print a separate warning for them later.\n if (iteratorFn !== node.entries) {\n var iterator = iteratorFn.call(node);\n var step;\n\n while (!(step = iterator.next()).done) {\n if (isValidElement(step.value)) {\n validateExplicitKey(step.value, parentType);\n }\n }\n }\n }\n }\n }\n}\n/**\n * Given an element, validate that its props follow the propTypes definition,\n * provided by the type.\n *\n * @param {ReactElement} element\n */\n\n\nfunction validatePropTypes(element) {\n {\n var type = element.type;\n\n if (type === null || type === undefined || typeof type === 'string') {\n return;\n }\n\n var propTypes;\n\n if (typeof type === 'function') {\n propTypes = type.propTypes;\n } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.\n // Inner props are checked in the reconciler.\n type.$$typeof === REACT_MEMO_TYPE)) {\n propTypes = type.propTypes;\n } else {\n return;\n }\n\n if (propTypes) {\n // Intentionally inside to avoid triggering lazy initializers:\n var name = getComponentName(type);\n checkPropTypes(propTypes, element.props, 'prop', name, element);\n } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {\n propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:\n\n var _name = getComponentName(type);\n\n error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');\n }\n\n if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {\n error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');\n }\n }\n}\n/**\n * Given a fragment, validate that it can only be provided with fragment props\n * @param {ReactElement} fragment\n */\n\n\nfunction validateFragmentProps(fragment) {\n {\n var keys = Object.keys(fragment.props);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n\n if (key !== 'children' && key !== 'key') {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);\n\n setCurrentlyValidatingElement$1(null);\n break;\n }\n }\n\n if (fragment.ref !== null) {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid attribute `ref` supplied to `React.Fragment`.');\n\n setCurrentlyValidatingElement$1(null);\n }\n }\n}\n\nfunction jsxWithValidation(type, props, key, isStaticChildren, source, self) {\n {\n var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to\n // succeed and there will likely be errors in render.\n\n if (!validType) {\n var info = '';\n\n if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n info += ' You likely forgot to export your component from the file ' + \"it's defined in, or you might have mixed up default and named imports.\";\n }\n\n var sourceInfo = getSourceInfoErrorAddendum(source);\n\n if (sourceInfo) {\n info += sourceInfo;\n } else {\n info += getDeclarationErrorAddendum();\n }\n\n var typeString;\n\n if (type === null) {\n typeString = 'null';\n } else if (Array.isArray(type)) {\n typeString = 'array';\n } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {\n typeString = \"<\" + (getComponentName(type.type) || 'Unknown') + \" />\";\n info = ' Did you accidentally export a JSX literal instead of a component?';\n } else {\n typeString = typeof type;\n }\n\n error('React.jsx: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);\n }\n\n var element = jsxDEV(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.\n // TODO: Drop this when these are no longer allowed as the type argument.\n\n if (element == null) {\n return element;\n } // Skip key warning if the type isn't valid since our key validation logic\n // doesn't expect a non-string/function type and can throw confusing errors.\n // We don't want exception behavior to differ between dev and prod.\n // (Rendering will throw with a helpful message and as soon as the type is\n // fixed, the key warnings will appear.)\n\n\n if (validType) {\n var children = props.children;\n\n if (children !== undefined) {\n if (isStaticChildren) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n validateChildKeys(children[i], type);\n }\n\n if (Object.freeze) {\n Object.freeze(children);\n }\n } else {\n error('React.jsx: Static children should always be an array. ' + 'You are likely explicitly calling React.jsxs or React.jsxDEV. ' + 'Use the Babel transform instead.');\n }\n } else {\n validateChildKeys(children, type);\n }\n }\n }\n\n if (type === exports.Fragment) {\n validateFragmentProps(element);\n } else {\n validatePropTypes(element);\n }\n\n return element;\n }\n} // These two functions exist to still get child warnings in dev\n// even with the prod transform. This means that jsxDEV is purely\n// opt-in behavior for better messages but that we won't stop\n// giving you warnings if you use production apis.\n\nfunction jsxWithValidationStatic(type, props, key) {\n {\n return jsxWithValidation(type, props, key, true);\n }\n}\nfunction jsxWithValidationDynamic(type, props, key) {\n {\n return jsxWithValidation(type, props, key, false);\n }\n}\n\nvar jsx = jsxWithValidationDynamic ; // we may want to special case jsxs internally to take advantage of static children.\n// for now we can ship identical prod functions\n\nvar jsxs = jsxWithValidationStatic ;\n\nexports.jsx = jsx;\nexports.jsxs = jsxs;\n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { createContext, FC } from \"react\";\nimport { themeprefix } from \"@ilo-org/themes/tokens/theme/base.json\";\nimport {\n GlobalProviderProps,\n GlobalProviderContextProps,\n} from \"./GlobalProvider.props\";\n\nexport const GlobalProviderContext = createContext(\n {} as GlobalProviderContextProps\n);\n\nconst GlobalProvider: FC<GlobalProviderProps> = ({\n prefix = themeprefix.value,\n children,\n}) => {\n return (\n <GlobalProviderContext.Provider\n value={{\n prefix,\n }}\n >\n {children}\n </GlobalProviderContext.Provider>\n );\n};\n\nexport default GlobalProvider;\n","import { useContext } from \"react\";\nimport { GlobalProviderContext } from \"../components/GlobalProvider\";\n\nconst useGlobalSettings = () => {\n const { prefix, ...rest } = useContext(GlobalProviderContext);\n\n return {\n prefix,\n ...rest,\n };\n};\n\nexport default useGlobalSettings;\n","import {\n useState,\n useEffect,\n createContext,\n FC,\n ReactElement,\n Children,\n} from \"react\";\nimport classNames from \"classnames\";\nimport { getUpdatedItems } from \"@ilo-org/utils\";\nimport useGlobalSettings from \"../../hooks/useGlobalSettings\";\nimport { AccordionProps, AccordionContextProps } from \"./Accordion.props\";\nimport { checkArrayDuplicates } from \"../../utils/checkArrayDuplicates\";\n\nexport const AccordionContext = createContext({} as AccordionContextProps);\n\nconst Accordion: FC<AccordionProps> = ({\n children,\n allowMultipleExpanded = false,\n onButtonClick,\n defaultAccordionsExpanded = [],\n className,\n}) => {\n const { prefix } = useGlobalSettings();\n const baseClass = `${prefix}--accordion`;\n const [activeItems, setActiveItems] = useState<string[]>([]);\n\n const accordionClasses = classNames(className, {\n [baseClass]: true,\n });\n\n const defaultAccordionsExpandedString = JSON.stringify(\n defaultAccordionsExpanded\n );\n\n useEffect(() => {\n const expandedOnLoad = allowMultipleExpanded\n ? defaultAccordionsExpanded\n : defaultAccordionsExpanded.length > 0\n ? [defaultAccordionsExpanded[0]]\n : defaultAccordionsExpanded;\n setActiveItems(expandedOnLoad);\n }, [defaultAccordionsExpandedString, allowMultipleExpanded]); //eslint-disable-line react-hooks/exhaustive-deps\n\n if (children) {\n const ids: string[] = [];\n Children.forEach(children, (child: ReactElement) => {\n ids.push(child.props.id);\n });\n if (checkArrayDuplicates(ids)) {\n console.warn(\"Warning: Accordion items must have unique ids.\");\n }\n }\n\n return (\n <AccordionContext.Provider\n value={{\n activeItems,\n setActiveItems,\n getUpdatedItems,\n allowMultipleExpanded,\n onButtonClick,\n }}\n >\n <ul className={accordionClasses}>{children}</ul>\n </AccordionContext.Provider>\n );\n};\n\nexport default Accordion;\n","import { FC, createContext } from \"react\";\nimport classNames from \"classnames\";\nimport useGlobalSettings from \"../../hooks/useGlobalSettings\";\nimport {\n AccordionItemProps,\n AccordionItemContextProps,\n} from \"./AccordionItem.props\";\n\nexport const AccordionItemContext = createContext(\n {} as AccordionItemContextProps\n);\n\nconst AccordionItem: FC<AccordionItemProps> = ({\n children,\n id,\n className,\n ...rest\n}) => {\n const { prefix } = useGlobalSettings();\n const baseClass = `${prefix}--accordion--item`;\n const accordionItemClasses = classNames(className, {\n [baseClass]: true,\n });\n return (\n <AccordionItemContext.Provider value={{ id }}>\n <li className={accordionItemClasses} {...rest}>\n {children}\n </li>\n </AccordionItemContext.Provider>\n );\n};\n\nexport default AccordionItem;\n","export default function _setPrototypeOf(o, p) {\n _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n return _setPrototypeOf(o, p);\n}","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","/** @license React v16.13.1\n * react-is.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\n// The Symbol used to tag the ReactElement-like types. If there is no native Symbol\n// nor polyfill, then a plain number is used for performance.\nvar hasSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;\nvar REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;\nvar REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;\nvar REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;\nvar REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;\nvar REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;\nvar REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary\n// (unstable) APIs that have been removed. Can we remove the symbols?\n\nvar REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;\nvar REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;\nvar REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;\nvar REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;\nvar REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;\nvar REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;\nvar REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;\nvar REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;\nvar REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;\nvar REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;\nvar REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;\n\nfunction isValidElementType(type) {\n return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.\n type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);\n}\n\nfunction typeOf(object) {\n if (typeof object === 'object' && object !== null) {\n var $$typeof = object.$$typeof;\n\n switch ($$typeof) {\n case REACT_ELEMENT_TYPE:\n var type = object.type;\n\n switch (type) {\n case REACT_ASYNC_MODE_TYPE:\n case REACT_CONCURRENT_MODE_TYPE:\n case REACT_FRAGMENT_TYPE:\n case REACT_PROFILER_TYPE:\n case REACT_STRICT_MODE_TYPE:\n case REACT_SUSPENSE_TYPE:\n return type;\n\n default:\n var $$typeofType = type && type.$$typeof;\n\n switch ($$typeofType) {\n case REACT_CONTEXT_TYPE:\n case REACT_FORWARD_REF_TYPE:\n case REACT_LAZY_TYPE:\n case REACT_MEMO_TYPE:\n case REACT_PROVIDER_TYPE:\n return $$typeofType;\n\n default:\n return $$typeof;\n }\n\n }\n\n case REACT_PORTAL_TYPE:\n return $$typeof;\n }\n }\n\n return undefined;\n} // AsyncMode is deprecated along with isAsyncMode\n\nvar AsyncMode = REACT_ASYNC_MODE_TYPE;\nvar ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;\nvar ContextConsumer = REACT_CONTEXT_TYPE;\nvar ContextProvider = REACT_PROVIDER_TYPE;\nvar Element = REACT_ELEMENT_TYPE;\nvar ForwardRef = REACT_FORWARD_REF_TYPE;\nvar Fragment = REACT_FRAGMENT_TYPE;\nvar Lazy = REACT_LAZY_TYPE;\nvar Memo = REACT_MEMO_TYPE;\nvar Portal = REACT_PORTAL_TYPE;\nvar Profiler = REACT_PROFILER_TYPE;\nvar StrictMode = REACT_STRICT_MODE_TYPE;\nvar Suspense = REACT_SUSPENSE_TYPE;\nvar hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated\n\nfunction isAsyncMode(object) {\n {\n if (!hasWarnedAboutDeprecatedIsAsyncMode) {\n hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint\n\n console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');\n }\n }\n\n return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;\n}\nfunction isConcurrentMode(object) {\n return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;\n}\nfunction isContextConsumer(object) {\n return typeOf(object) === REACT_CONTEXT_TYPE;\n}\nfunction isContextProvider(object) {\n return typeOf(object) === REACT_PROVIDER_TYPE;\n}\nfunction isElement(object) {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n}\nfunction isForwardRef(object) {\n return typeOf(object) === REACT_FORWARD_REF_TYPE;\n}\nfunction isFragment(object) {\n return typeOf(object) === REACT_FRAGMENT_TYPE;\n}\nfunction isLazy(object) {\n return typeOf(object) === REACT_LAZY_TYPE;\n}\nfunction isMemo(object) {\n return typeOf(object) === REACT_MEMO_TYPE;\n}\nfunction isPortal(object) {\n return typeOf(object) === REACT_PORTAL_TYPE;\n}\nfunction isProfiler(object) {\n return typeOf(object) === REACT_PROFILER_TYPE;\n}\nfunction isStrictMode(object) {\n return typeOf(object) === REACT_STRICT_MODE_TYPE;\n}\nfunction isSuspense(object) {\n return typeOf(object) === REACT_SUSPENSE_TYPE;\n}\n\nexports.AsyncMode = AsyncMode;\nexports.ConcurrentMode = ConcurrentMode;\nexports.ContextConsumer = ContextConsumer;\nexports.ContextProvider = ContextProvider;\nexports.Element = Element;\nexports.ForwardRef = ForwardRef;\nexports.Fragment = Fragment;\nexports.Lazy = Lazy;\nexports.Memo = Memo;\nexports.Portal = Portal;\nexports.Profiler = Profiler;\nexports.StrictMode = StrictMode;\nexports.Suspense = Suspense;\nexports.isAsyncMode = isAsyncMode;\nexports.isConcurrentMode = isConcurrentMode;\nexports.isContextConsumer = isContextConsumer;\nexports.isContextProvider = isContextProvider;\nexports.isElement = isElement;\nexports.isForwardRef = isForwardRef;\nexports.isFragment = isFragment;\nexports.isLazy = isLazy;\nexports.isMemo = isMemo;\nexports.isPortal = isPortal;\nexports.isProfiler = isProfiler;\nexports.isStrictMode = isStrictMode;\nexports.isSuspense = isSuspense;\nexports.isValidElementType = isValidElementType;\nexports.typeOf = typeOf;\n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","module.exports = Function.call.bind(Object.prototype.hasOwnProperty);\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar printWarning = function() {};\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n var loggedTypeFailures = {};\n var has = require('./lib/has');\n\n printWarning = function(text) {\n var message = 'Warning: ' + text;\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) { /**/ }\n };\n}\n\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?Function} getStack Returns the component stack.\n * @private\n */\nfunction checkPropTypes(typeSpecs, values, location, componentName, getStack) {\n if (process.env.NODE_ENV !== 'production') {\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error;\n // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n var err = Error(\n (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +\n 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' +\n 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.'\n );\n err.name = 'Invariant Violation';\n throw err;\n }\n error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n } catch (ex) {\n error = ex;\n }\n if (error && !(error instanceof Error)) {\n printWarning(\n (componentName || 'React class') + ': type specification of ' +\n location + ' `' + typeSpecName + '` is invalid; the type checker ' +\n 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +\n 'You may have forgotten to pass an argument to the type checker ' +\n 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +\n 'shape all require an argument).'\n );\n }\n if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error.message] = true;\n\n var stack = getStack ? getStack() : '';\n\n printWarning(\n 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')\n );\n }\n }\n }\n }\n}\n\n/**\n * Resets warning cache when testing.\n *\n * @private\n */\ncheckPropTypes.resetWarningCache = function() {\n if (process.env.NODE_ENV !== 'production') {\n loggedTypeFailures = {};\n }\n}\n\nmodule.exports = checkPropTypes;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactIs = require('react-is');\nvar assign = require('object-assign');\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\nvar has = require('./lib/has');\nvar checkPropTypes = require('./checkPropTypes');\n\nvar printWarning = function() {};\n\nif (process.env.NODE_ENV !== 'production') {\n printWarning = function(text) {\n var message = 'Warning: ' + text;\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n };\n}\n\nfunction emptyFunctionThatReturnsNull() {\n return null;\n}\n\nmodule.exports = function(isValidElement, throwOnDirectAccess) {\n /* global Symbol */\n var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n /**\n * Returns the iterator method function contained on the iterable object.\n *\n * Be sure to invoke the function with the iterable as context:\n *\n * var iteratorFn = getIteratorFn(myIterable);\n * if (iteratorFn) {\n * var iterator = iteratorFn.call(myIterable);\n * ...\n * }\n *\n * @param {?object} maybeIterable\n * @return {?function}\n */\n function getIteratorFn(maybeIterable) {\n var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n if (typeof iteratorFn === 'function') {\n return iteratorFn;\n }\n }\n\n /**\n * Collection of methods that allow declaration and validation of props that are\n * supplied to React components. Example usage:\n *\n * var Props = require('ReactPropTypes');\n * var MyArticle = React.createClass({\n * propTypes: {\n * // An optional string prop named \"description\".\n * description: Props.string,\n *\n * // A required enum prop named \"category\".\n * category: Props.oneOf(['News','Photos']).isRequired,\n *\n * // A prop named \"dialog\" that requires an instance of Dialog.\n * dialog: Props.instanceOf(Dialog).isRequired\n * },\n * render: function() { ... }\n * });\n *\n * A more formal specification of how these methods are used:\n *\n * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)\n * decl := ReactPropTypes.{type}(.isRequired)?\n *\n * Each and every declaration produces a function with the same signature. This\n * allows the creation of custom validation functions. For example:\n *\n * var MyLink = React.createClass({\n * propTypes: {\n * // An optional string or URI prop named \"href\".\n * href: function(props, propName, componentName) {\n * var propValue = props[propName];\n * if (propValue != null && typeof propValue !== 'string' &&\n * !(propValue instanceof URI)) {\n * return new Error(\n * 'Expected a string or an URI for ' + propName + ' in ' +\n * componentName\n * );\n * }\n * }\n * },\n * render: function() {...}\n * });\n *\n * @internal\n */\n\n var ANONYMOUS = '<<anonymous>>';\n\n // Important!\n // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.\n var ReactPropTypes = {\n array: createPrimitiveTypeChecker('array'),\n bigint: createPrimitiveTypeChecker('bigint'),\n bool: createPrimitiveTypeChecker('boolean'),\n func: createPrimitiveTypeChecker('function'),\n number: createPrimitiveTypeChecker('number'),\n object: createPrimitiveTypeChecker('object'),\n string: createPrimitiveTypeChecker('string'),\n symbol: createPrimitiveTypeChecker('symbol'),\n\n any: createAnyTypeChecker(),\n arrayOf: createArrayOfTypeChecker,\n element: createElementTypeChecker(),\n elementType: createElementTypeTypeChecker(),\n instanceOf: createInstanceTypeChecker,\n node: createNodeChecker(),\n objectOf: createObjectOfTypeChecker,\n oneOf: createEnumTypeChecker,\n oneOfType: createUnionTypeChecker,\n shape: createShapeTypeChecker,\n exact: createStrictShapeTypeChecker,\n };\n\n /**\n * inlined Object.is polyfill to avoid requiring consumers ship their own\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n */\n /*eslint-disable no-self-compare*/\n function is(x, y) {\n // SameValue algorithm\n if (x === y) {\n // Steps 1-5, 7-10\n // Steps 6.b-6.e: +0 != -0\n return x !== 0 || 1 / x === 1 / y;\n } else {\n // Step 6.a: NaN == NaN\n return x !== x && y !== y;\n }\n }\n /*eslint-enable no-self-compare*/\n\n /**\n * We use an Error-like object for backward compatibility as people may call\n * PropTypes directly and inspect their output. However, we don't use real\n * Errors anymore. We don't inspect their stack anyway, and creating them\n * is prohibitively expensive if they are created too often, such as what\n * happens in oneOfType() for any type before the one that matched.\n */\n function PropTypeError(message, data) {\n this.message = message;\n this.data = data && typeof data === 'object' ? data: {};\n this.stack = '';\n }\n // Make `instanceof Error` still work for returned errors.\n PropTypeError.prototype = Error.prototype;\n\n function createChainableTypeChecker(validate) {\n if (process.env.NODE_ENV !== 'production') {\n var manualPropTypeCallCache = {};\n var manualPropTypeWarningCount = 0;\n }\n function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {\n componentName = componentName || ANONYMOUS;\n propFullName = propFullName || propName;\n\n if (secret !== ReactPropTypesSecret) {\n if (throwOnDirectAccess) {\n // New behavior only for users of `prop-types` package\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use `PropTypes.checkPropTypes()` to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {\n // Old behavior for people using React.PropTypes\n var cacheKey = componentName + ':' + propName;\n if (\n !manualPropTypeCallCache[cacheKey] &&\n // Avoid spamming the console because they are often not actionable except for lib authors\n manualPropTypeWarningCount < 3\n ) {\n printWarning(\n 'You are manually calling a React.PropTypes validation ' +\n 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' +\n 'and will throw in the standalone `prop-types` package. ' +\n 'You may be seeing this warning due to a third-party PropTypes ' +\n 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.'\n );\n manualPropTypeCallCache[cacheKey] = true;\n manualPropTypeWarningCount++;\n }\n }\n }\n if (props[propName] == null) {\n if (isRequired) {\n if (props[propName] === null) {\n return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));\n }\n return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));\n }\n return null;\n } else {\n return validate(props, propName, componentName, location, propFullName);\n }\n }\n\n var chainedCheckType = checkType.bind(null, false);\n chainedCheckType.isRequired = checkType.bind(null, true);\n\n return chainedCheckType;\n }\n\n function createPrimitiveTypeChecker(expectedType) {\n function validate(props, propName, componentName, location, propFullName, secret) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== expectedType) {\n // `propValue` being instance of, say, date/regexp, pass the 'object'\n // check, but we can offer a more precise error message here rather than\n // 'of type `object`'.\n var preciseType = getPreciseType(propValue);\n\n return new PropTypeError(\n 'Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'),\n {expectedType: expectedType}\n );\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createAnyTypeChecker() {\n return createChainableTypeChecker(emptyFunctionThatReturnsNull);\n }\n\n function createArrayOfTypeChecker(typeChecker) {\n function validate(props, propName, componentName, location, propFullName) {\n if (typeof typeChecker !== 'function') {\n return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');\n }\n var propValue = props[propName];\n if (!Array.isArray(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));\n }\n for (var i = 0; i < propValue.length; i++) {\n var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);\n if (error instanceof Error) {\n return error;\n }\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createElementTypeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n if (!isValidElement(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createElementTypeTypeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n if (!ReactIs.isValidElementType(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createInstanceTypeChecker(expectedClass) {\n function validate(props, propName, componentName, location, propFullName) {\n if (!(props[propName] instanceof expectedClass)) {\n var expectedClassName = expectedClass.name || ANONYMOUS;\n var actualClassName = getClassName(props[propName]);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createEnumTypeChecker(expectedValues) {\n if (!Array.isArray(expectedValues)) {\n if (process.env.NODE_ENV !== 'production') {\n if (arguments.length > 1) {\n printWarning(\n 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' +\n 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).'\n );\n } else {\n printWarning('Invalid argument supplied to oneOf, expected an array.');\n }\n }\n return emptyFunctionThatReturnsNull;\n }\n\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n for (var i = 0; i < expectedValues.length; i++) {\n if (is(propValue, expectedValues[i])) {\n return null;\n }\n }\n\n var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {\n var type = getPreciseType(value);\n if (type === 'symbol') {\n return String(value);\n }\n return value;\n });\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));\n }\n return createChainableTypeChecker(validate);\n }\n\n function createObjectOfTypeChecker(typeChecker) {\n function validate(props, propName, componentName, location, propFullName) {\n if (typeof typeChecker !== 'function') {\n return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');\n }\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));\n }\n for (var key in propValue) {\n if (has(propValue, key)) {\n var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n if (error instanceof Error) {\n return error;\n }\n }\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createUnionTypeChecker(arrayOfTypeCheckers) {\n if (!Array.isArray(arrayOfTypeCheckers)) {\n process.env.NODE_ENV !== 'production' ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;\n return emptyFunctionThatReturnsNull;\n }\n\n for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n var checker = arrayOfTypeCheckers[i];\n if (typeof checker !== 'function') {\n printWarning(\n 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +\n 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.'\n );\n return emptyFunctionThatReturnsNull;\n }\n }\n\n function validate(props, propName, componentName, location, propFullName) {\n var expectedTypes = [];\n for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n var checker = arrayOfTypeCheckers[i];\n var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret);\n if (checkerResult == null) {\n return null;\n }\n if (checkerResult.data && has(checkerResult.data, 'expectedType')) {\n expectedTypes.push(checkerResult.data.expectedType);\n }\n }\n var expectedTypesMessage = (expectedTypes.length > 0) ? ', expected one of type [' + expectedTypes.join(', ') + ']': '';\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.'));\n }\n return createChainableTypeChecker(validate);\n }\n\n function createNodeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n if (!isNode(props[propName])) {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function invalidValidatorError(componentName, location, propFullName, key, type) {\n return new PropTypeError(\n (componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' +\n 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.'\n );\n }\n\n function createShapeTypeChecker(shapeTypes) {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n }\n for (var key in shapeTypes) {\n var checker = shapeTypes[key];\n if (typeof checker !== 'function') {\n return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));\n }\n var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n if (error) {\n return error;\n }\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createStrictShapeTypeChecker(shapeTypes) {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n }\n // We need to check all keys in case some are required but missing from props.\n var allKeys = assign({}, props[propName], shapeTypes);\n for (var key in allKeys) {\n var checker = shapeTypes[key];\n if (has(shapeTypes, key) && typeof checker !== 'function') {\n return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));\n }\n if (!checker) {\n return new PropTypeError(\n 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +\n '\\nBad object: ' + JSON.stringify(props[propName], null, ' ') +\n '\\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')\n );\n }\n var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n if (error) {\n return error;\n }\n }\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function isNode(propValue) {\n switch (typeof propValue) {\n case 'number':\n case 'string':\n case 'undefined':\n return true;\n case 'boolean':\n return !propValue;\n case 'object':\n if (Array.isArray(propValue)) {\n return propValue.every(isNode);\n }\n if (propValue === null || isValidElement(propValue)) {\n return true;\n }\n\n var iteratorFn = getIteratorFn(propValue);\n if (iteratorFn) {\n var iterator = iteratorFn.call(propValue);\n var step;\n if (iteratorFn !== propValue.entries) {\n while (!(step = iterator.next()).done) {\n if (!isNode(step.value)) {\n return false;\n }\n }\n } else {\n // Iterator will provide entry [k,v] tuples rather than values.\n while (!(step = iterator.next()).done) {\n var entry = step.value;\n if (entry) {\n if (!isNode(entry[1])) {\n return false;\n }\n }\n }\n }\n } else {\n return false;\n }\n\n return true;\n default:\n return false;\n }\n }\n\n function isSymbol(propType, propValue) {\n // Native Symbol.\n if (propType === 'symbol') {\n return true;\n }\n\n // falsy value can't be a Symbol\n if (!propValue) {\n return false;\n }\n\n // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'\n if (propValue['@@toStringTag'] === 'Symbol') {\n return true;\n }\n\n // Fallback for non-spec compliant Symbols which are polyfilled.\n if (typeof Symbol === 'function' && propValue instanceof Symbol) {\n return true;\n }\n\n return false;\n }\n\n // Equivalent of `typeof` but with special handling for array and regexp.\n function getPropType(propValue) {\n var propType = typeof propValue;\n if (Array.isArray(propValue)) {\n return 'array';\n }\n if (propValue instanceof RegExp) {\n // Old webkits (at least until Android 4.0) return 'function' rather than\n // 'object' for typeof a RegExp. We'll normalize this here so that /bla/\n // passes PropTypes.object.\n return 'object';\n }\n if (isSymbol(propType, propValue)) {\n return 'symbol';\n }\n return propType;\n }\n\n // This handles more types than `getPropType`. Only used for error messages.\n // See `createPrimitiveTypeChecker`.\n function getPreciseType(propValue) {\n if (typeof propValue === 'undefined' || propValue === null) {\n return '' + propValue;\n }\n var propType = getPropType(propValue);\n if (propType === 'object') {\n if (propValue instanceof Date) {\n return 'date';\n } else if (propValue instanceof RegExp) {\n return 'regexp';\n }\n }\n return propType;\n }\n\n // Returns a string that is postfixed to a warning about an invalid type.\n // For example, \"undefined\" or \"of type array\"\n function getPostfixForTypeWarning(value) {\n var type = getPreciseType(value);\n switch (type) {\n case 'array':\n case 'object':\n return 'an ' + type;\n case 'boolean':\n case 'date':\n case 'regexp':\n return 'a ' + type;\n default:\n return type;\n }\n }\n\n // Returns class name of the object, if any.\n function getClassName(propValue) {\n if (!propValue.constructor || !propValue.constructor.name) {\n return ANONYMOUS;\n }\n return propValue.constructor.name;\n }\n\n ReactPropTypes.checkPropTypes = checkPropTypes;\n ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","export default {\n disabled: false\n};","import PropTypes from 'prop-types';\nexport var timeoutsShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.number, PropTypes.shape({\n enter: PropTypes.number,\n exit: PropTypes.number,\n appear: PropTypes.number\n}).isRequired]) : null;\nexport var classNamesShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.string, PropTypes.shape({\n enter: PropTypes.string,\n exit: PropTypes.string,\n active: PropTypes.string\n}), PropTypes.shape({\n enter: PropTypes.string,\n enterDone: PropTypes.string,\n enterActive: PropTypes.string,\n exit: PropTypes.string,\n exitDone: PropTypes.string,\n exitActive: PropTypes.string\n})]) : null;","import React from 'react';\nexport default React.createContext(null);","import _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport PropTypes from 'prop-types';\nimport React from 'react';\nimport ReactDOM from 'react-dom';\nimport config from './config';\nimport { timeoutsShape } from './utils/PropTypes';\nimport TransitionGroupContext from './TransitionGroupContext';\nimport { forceReflow } from './utils/reflow';\nexport var UNMOUNTED = 'unmounted';\nexport var EXITED = 'exited';\nexport var ENTERING = 'entering';\nexport var ENTERED = 'entered';\nexport var EXITING = 'exiting';\n/**\n * The Transition component lets you describe a transition from one component\n * state to another _over time_ with a simple declarative API. Most commonly\n * it's used to animate the mounting and unmounting of a component, but can also\n * be used to describe in-place transition states as well.\n *\n * ---\n *\n * **Note**: `Transition` is a platform-agnostic base component. If you're using\n * transitions in CSS, you'll probably want to use\n * [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)\n * instead. It inherits all the features of `Transition`, but contains\n * additional features necessary to play nice with CSS transitions (hence the\n * name of the component).\n *\n * ---\n *\n * By default the `Transition` component does not alter the behavior of the\n * component it renders, it only tracks \"enter\" and \"exit\" states for the\n * components. It's up to you to give meaning and effect to those states. For\n * example we can add styles to a component when it enters or exits:\n *\n * ```jsx\n * import { Transition } from 'react-transition-group';\n *\n * const duration = 300;\n *\n * const defaultStyle = {\n * transition: `opacity ${duration}ms ease-in-out`,\n * opacity: 0,\n * }\n *\n * const transitionStyles = {\n * entering: { opacity: 1 },\n * entered: { opacity: 1 },\n * exiting: { opacity: 0 },\n * exited: { opacity: 0 },\n * };\n *\n * const Fade = ({ in: inProp }) => (\n * <Transition in={inProp} timeout={duration}>\n * {state => (\n * <div style={{\n * ...defaultStyle,\n * ...transitionStyles[state]\n * }}>\n * I'm a fade Transition!\n * </div>\n * )}\n * </Transition>\n * );\n * ```\n *\n * There are 4 main states a Transition can be in:\n * - `'entering'`\n * - `'entered'`\n * - `'exiting'`\n * - `'exited'`\n *\n * Transition state is toggled via the `in` prop. When `true` the component\n * begins the \"Enter\" stage. During this stage, the component will shift from\n * its current transition state, to `'entering'` for the duration of the\n * transition and then to the `'entered'` stage once it's complete. Let's take\n * the following example (we'll use the\n * [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):\n *\n * ```jsx\n * function App() {\n * const [inProp, setInProp] = useState(false);\n * return (\n * <div>\n * <Transition in={inProp} timeout={500}>\n * {state => (\n * // ...\n * )}\n * </Transition>\n * <button onClick={() => setInProp(true)}>\n * Click to Enter\n * </button>\n * </div>\n * );\n * }\n * ```\n *\n * When the button is clicked the component will shift to the `'entering'` state\n * and stay there for 500ms (the value of `timeout`) before it finally switches\n * to `'entered'`.\n *\n * When `in` is `false` the same thing happens except the state moves from\n * `'exiting'` to `'exited'`.\n */\n\nvar Transition = /*#__PURE__*/function (_React$Component) {\n _inheritsLoose(Transition, _React$Component);\n\n function Transition(props, context) {\n var _this;\n\n _this = _React$Component.call(this, props, context) || this;\n var parentGroup = context; // In the context of a TransitionGroup all enters are really appears\n\n var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;\n var initialStatus;\n _this.appearStatus = null;\n\n if (props.in) {\n if (appear) {\n initialStatus = EXITED;\n _this.appearStatus = ENTERING;\n } else {\n initialStatus = ENTERED;\n }\n } else {\n if (props.unmountOnExit || props.mountOnEnter) {\n initialStatus = UNMOUNTED;\n } else {\n initialStatus = EXITED;\n }\n }\n\n _this.state = {\n status: initialStatus\n };\n _this.nextCallback = null;\n return _this;\n }\n\n Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {\n var nextIn = _ref.in;\n\n if (nextIn && prevState.status === UNMOUNTED) {\n return {\n status: EXITED\n };\n }\n\n return null;\n } // getSnapshotBeforeUpdate(prevProps) {\n // let nextStatus = null\n // if (prevProps !== this.props) {\n // const { status } = this.state\n // if (this.props.in) {\n // if (status !== ENTERING && status !== ENTERED) {\n // nextStatus = ENTERING\n // }\n // } else {\n // if (status === ENTERING || status === ENTERED) {\n // nextStatus = EXITING\n // }\n // }\n // }\n // return { nextStatus }\n // }\n ;\n\n var _proto = Transition.prototype;\n\n _proto.componentDidMount = function componentDidMount() {\n this.updateStatus(true, this.appearStatus);\n };\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n var nextStatus = null;\n\n if (prevProps !== this.props) {\n var status = this.state.status;\n\n if (this.props.in) {\n if (status !== ENTERING && status !== ENTERED) {\n nextStatus = ENTERING;\n }\n } else {\n if (status === ENTERING || status === ENTERED) {\n nextStatus = EXITING;\n }\n }\n }\n\n this.updateStatus(false, nextStatus);\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.cancelNextCallback();\n };\n\n _proto.getTimeouts = function getTimeouts() {\n var timeout = this.props.timeout;\n var exit, enter, appear;\n exit = enter = appear = timeout;\n\n if (timeout != null && typeof timeout !== 'number') {\n exit = timeout.exit;\n enter = timeout.enter; // TODO: remove fallback for next major\n\n appear = timeout.appear !== undefined ? timeout.appear : enter;\n }\n\n return {\n exit: exit,\n enter: enter,\n appear: appear\n };\n };\n\n _proto.updateStatus = function updateStatus(mounting, nextStatus) {\n if (mounting === void 0) {\n mounting = false;\n }\n\n if (nextStatus !== null) {\n // nextStatus will always be ENTERING or EXITING.\n this.cancelNextCallback();\n\n if (nextStatus === ENTERING) {\n if (this.props.unmountOnExit || this.props.mountOnEnter) {\n var node = this.props.nodeRef ? this.props.nodeRef.current : ReactDOM.findDOMNode(this); // https://github.com/reactjs/react-transition-group/pull/749\n // With unmountOnExit or mountOnEnter, the enter animation should happen at the transition between `exited` and `entering`.\n // To make the animation happen, we have to separate each rendering and avoid being processed as batched.\n\n if (node) forceReflow(node);\n }\n\n this.performEnter(mounting);\n } else {\n this.performExit();\n }\n } else if (this.props.unmountOnExit && this.state.status === EXITED) {\n this.setState({\n status: UNMOUNTED\n });\n }\n };\n\n _proto.performEnter = function performEnter(mounting) {\n var _this2 = this;\n\n var enter = this.props.enter;\n var appearing = this.context ? this.context.isMounting : mounting;\n\n var _ref2 = this.props.nodeRef ? [appearing] : [ReactDOM.findDOMNode(this), appearing],\n maybeNode = _ref2[0],\n maybeAppearing = _ref2[1];\n\n var timeouts = this.getTimeouts();\n var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED\n // if we are mounting and running this it means appear _must_ be set\n\n if (!mounting && !enter || config.disabled) {\n this.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(maybeNode);\n });\n return;\n }\n\n this.props.onEnter(maybeNode, maybeAppearing);\n this.safeSetState({\n status: ENTERING\n }, function () {\n _this2.props.onEntering(maybeNode, maybeAppearing);\n\n _this2.onTransitionEnd(enterTimeout, function () {\n _this2.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(maybeNode, maybeAppearing);\n });\n });\n });\n };\n\n _proto.performExit = function performExit() {\n var _this3 = this;\n\n var exit = this.props.exit;\n var timeouts = this.getTimeouts();\n var maybeNode = this.props.nodeRef ? undefined : ReactDOM.findDOMNode(this); // no exit animation skip right to EXITED\n\n if (!exit || config.disabled) {\n this.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(maybeNode);\n });\n return;\n }\n\n this.props.onExit(maybeNode);\n this.safeSetState({\n status: EXITING\n }, function () {\n _this3.props.onExiting(maybeNode);\n\n _this3.onTransitionEnd(timeouts.exit, function () {\n _this3.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(maybeNode);\n });\n });\n });\n };\n\n _proto.cancelNextCallback = function cancelNextCallback() {\n if (this.nextCallback !== null) {\n this.nextCallback.cancel();\n this.nextCallback = null;\n }\n };\n\n _proto.safeSetState = function safeSetState(nextState, callback) {\n // This shouldn't be necessary, but there are weird race conditions with\n // setState callbacks and unmounting in testing, so always make sure that\n // we can cancel any pending setState callbacks after we unmount.\n callback = this.setNextCallback(callback);\n this.setState(nextState, callback);\n };\n\n _proto.setNextCallback = function setNextCallback(callback) {\n var _this4 = this;\n\n var active = true;\n\n this.nextCallback = function (event) {\n if (active) {\n active = false;\n _this4.nextCallback = null;\n callback(event);\n }\n };\n\n this.nextCallback.cancel = function () {\n active = false;\n };\n\n return this.nextCallback;\n };\n\n _proto.onTransitionEnd = function onTransitionEnd(timeout, handler) {\n this.setNextCallback(handler);\n var node = this.props.nodeRef ? this.props.nodeRef.current : ReactDOM.findDOMNode(this);\n var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;\n\n if (!node || doesNotHaveTimeoutOrListener) {\n setTimeout(this.nextCallback, 0);\n return;\n }\n\n if (this.props.addEndListener) {\n var _ref3 = this.props.nodeRef ? [this.nextCallback] : [node, this.nextCallback],\n maybeNode = _ref3[0],\n maybeNextCallback = _ref3[1];\n\n this.props.addEndListener(maybeNode, maybeNextCallback);\n }\n\n if (timeout != null) {\n setTimeout(this.nextCallback, timeout);\n }\n };\n\n _proto.render = function render() {\n var status = this.state.status;\n\n if (status === UNMOUNTED) {\n return null;\n }\n\n var _this$props = this.props,\n children = _this$props.children,\n _in = _this$props.in,\n _mountOnEnter = _this$props.mountOnEnter,\n _unmountOnExit = _this$props.unmountOnExit,\n _appear = _this$props.appear,\n _enter = _this$props.enter,\n _exit = _this$props.exit,\n _timeout = _this$props.timeout,\n _addEndListener = _this$props.addEndListener,\n _onEnter = _this$props.onEnter,\n _onEntering = _this$props.onEntering,\n _onEntered = _this$props.onEntered,\n _onExit = _this$props.onExit,\n _onExiting = _this$props.onExiting,\n _onExited = _this$props.onExited,\n _nodeRef = _this$props.nodeRef,\n childProps = _objectWithoutPropertiesLoose(_this$props, [\"children\", \"in\", \"mountOnEnter\", \"unmountOnExit\", \"appear\", \"enter\", \"exit\", \"timeout\", \"addEndListener\", \"onEnter\", \"onEntering\", \"onEntered\", \"onExit\", \"onExiting\", \"onExited\", \"nodeRef\"]);\n\n return (\n /*#__PURE__*/\n // allows for nested Transitions\n React.createElement(TransitionGroupContext.Provider, {\n value: null\n }, typeof children === 'function' ? children(status, childProps) : React.cloneElement(React.Children.only(children), childProps))\n );\n };\n\n return Transition;\n}(React.Component);\n\nTransition.contextType = TransitionGroupContext;\nTransition.propTypes = process.env.NODE_ENV !== \"production\" ? {\n /**\n * A React reference to DOM element that need to transition:\n * https://stackoverflow.com/a/51127130/4671932\n *\n * - When `nodeRef` prop is used, `node` is not passed to callback functions\n * (e.g. `onEnter`) because user already has direct access to the node.\n * - When changing `key` prop of `Transition` in a `TransitionGroup` a new\n * `nodeRef` need to be provided to `Transition` with changed `key` prop\n * (see\n * [test/CSSTransition-test.js](https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e19d724f145596f5910581c/test/CSSTransition-test.js#L362-L437)).\n */\n nodeRef: PropTypes.shape({\n current: typeof Element === 'undefined' ? PropTypes.any : function (propValue, key, componentName, location, propFullName, secret) {\n var value = propValue[key];\n return PropTypes.instanceOf(value && 'ownerDocument' in value ? value.ownerDocument.defaultView.Element : Element)(propValue, key, componentName, location, propFullName, secret);\n }\n }),\n\n /**\n * A `function` child can be used instead of a React element. This function is\n * called with the current transition status (`'entering'`, `'entered'`,\n * `'exiting'`, `'exited'`), which can be used to apply context\n * specific props to a component.\n *\n * ```jsx\n * <Transition in={this.state.in} timeout={150}>\n * {state => (\n * <MyComponent className={`fade fade-${state}`} />\n * )}\n * </Transition>\n * ```\n */\n children: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,\n\n /**\n * Show the component; triggers the enter or exit states\n */\n in: PropTypes.bool,\n\n /**\n * By default the child component is mounted immediately along with\n * the parent `Transition` component. If you want to \"lazy mount\" the component on the\n * first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay\n * mounted, even on \"exited\", unless you also specify `unmountOnExit`.\n */\n mountOnEnter: PropTypes.bool,\n\n /**\n * By default the child component stays mounted after it reaches the `'exited'` state.\n * Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.\n */\n unmountOnExit: PropTypes.bool,\n\n /**\n * By default the child component does not perform the enter transition when\n * it first mounts, regardless of the value of `in`. If you want this\n * behavior, set both `appear` and `in` to `true`.\n *\n * > **Note**: there are no special appear states like `appearing`/`appeared`, this prop\n * > only adds an additional enter transition. However, in the\n * > `<CSSTransition>` component that first enter transition does result in\n * > additional `.appear-*` classes, that way you can choose to style it\n * > differently.\n */\n appear: PropTypes.bool,\n\n /**\n * Enable or disable enter transitions.\n */\n enter: PropTypes.bool,\n\n /**\n * Enable or disable exit transitions.\n */\n exit: PropTypes.bool,\n\n /**\n * The duration of the transition, in milliseconds.\n * Required unless `addEndListener` is provided.\n *\n * You may specify a single timeout for all transitions:\n *\n * ```jsx\n * timeout={500}\n * ```\n *\n * or individually:\n *\n * ```jsx\n * timeout={{\n * appear: 500,\n * enter: 300,\n * exit: 500,\n * }}\n * ```\n *\n * - `appear` defaults to the value of `enter`\n * - `enter` defaults to `0`\n * - `exit` defaults to `0`\n *\n * @type {number | { enter?: number, exit?: number, appear?: number }}\n */\n timeout: function timeout(props) {\n var pt = timeoutsShape;\n if (!props.addEndListener) pt = pt.isRequired;\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n return pt.apply(void 0, [props].concat(args));\n },\n\n /**\n * Add a custom transition end trigger. Called with the transitioning\n * DOM node and a `done` callback. Allows for more fine grained transition end\n * logic. Timeouts are still used as a fallback if provided.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * ```jsx\n * addEndListener={(node, done) => {\n * // use the css transitionend event to mark the finish of a transition\n * node.addEventListener('transitionend', done, false);\n * }}\n * ```\n */\n addEndListener: PropTypes.func,\n\n /**\n * Callback fired before the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEnter: PropTypes.func,\n\n /**\n * Callback fired after the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEntering: PropTypes.func,\n\n /**\n * Callback fired after the \"entered\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEntered: PropTypes.func,\n\n /**\n * Callback fired before the \"exiting\" status is applied.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExit: PropTypes.func,\n\n /**\n * Callback fired after the \"exiting\" status is applied.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExiting: PropTypes.func,\n\n /**\n * Callback fired after the \"exited\" status is applied.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExited: PropTypes.func\n} : {}; // Name the function so it is clearer in the documentation\n\nfunction noop() {}\n\nTransition.defaultProps = {\n in: false,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n enter: true,\n exit: true,\n onEnter: noop,\n onEntering: noop,\n onEntered: noop,\n onExit: noop,\n onExiting: noop,\n onExited: noop\n};\nTransition.UNMOUNTED = UNMOUNTED;\nTransition.EXITED = EXITED;\nTransition.ENTERING = ENTERING;\nTransition.ENTERED = ENTERED;\nTransition.EXITING = EXITING;\nexport default Transition;","import setPrototypeOf from \"./setPrototypeOf.js\";\nexport default function _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n setPrototypeOf(subClass, superClass);\n}","export var forceReflow = function forceReflow(node) {\n return node.scrollTop;\n};","export default function _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n return target;\n}","import ownerDocument from './ownerDocument';\n/**\n * Returns the owner window of a given element.\n * \n * @param node the element\n */\n\nexport default function ownerWindow(node) {\n var doc = ownerDocument(node);\n return doc && doc.defaultView || window;\n}","/**\n * Returns the owner document of a given element.\n * \n * @param node the element\n */\nexport default function ownerDocument(node) {\n return node && node.ownerDocument || document;\n}","var rUpper = /([A-Z])/g;\nexport default function hyphenate(string) {\n return string.replace(rUpper, '-$1').toLowerCase();\n}","/**\n * Copyright 2013-2014, Facebook, Inc.\n * All rights reserved.\n * https://github.com/facebook/react/blob/2aeb8a2a6beb00617a4217f7f8284924fa2ad819/src/vendor/core/hyphenateStyleName.js\n */\nimport hyphenate from './hyphenate';\nvar msPattern = /^ms-/;\nexport default function hyphenateStyleName(string) {\n return hyphenate(string).replace(msPattern, '-ms-');\n}","var supportedTransforms = /^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i;\nexport default function isTransform(value) {\n return !!(value && supportedTransforms.test(value));\n}","import getComputedStyle from './getComputedStyle';\nimport hyphenate from './hyphenateStyle';\nimport isTransform from './isTransform';\n\nfunction style(node, property) {\n var css = '';\n var transforms = '';\n\n if (typeof property === 'string') {\n return node.style.getPropertyValue(hyphenate(property)) || getComputedStyle(node).getPropertyValue(hyphenate(property));\n }\n\n Object.keys(property).forEach(function (key) {\n var value = property[key];\n\n if (!value && value !== 0) {\n node.style.removeProperty(hyphenate(key));\n } else if (isTransform(key)) {\n transforms += key + \"(\" + value + \") \";\n } else {\n css += hyphenate(key) + \": \" + value + \";\";\n }\n });\n\n if (transforms) {\n css += \"transform: \" + transforms + \";\";\n }\n\n node.style.cssText += \";\" + css;\n}\n\nexport default style;","import ownerWindow from './ownerWindow';\n/**\n * Returns one or all computed style properties of an element.\n * \n * @param node the element\n * @param psuedoElement the style property\n */\n\nexport default function getComputedStyle(node, psuedoElement) {\n return ownerWindow(node).getComputedStyle(node, psuedoElement);\n}","export default !!(typeof window !== 'undefined' && window.document && window.document.createElement);","/* eslint-disable no-return-assign */\nimport canUseDOM from './canUseDOM';\nexport var optionsSupported = false;\nexport var onceSupported = false;\n\ntry {\n var options = {\n get passive() {\n return optionsSupported = true;\n },\n\n get once() {\n // eslint-disable-next-line no-multi-assign\n return onceSupported = optionsSupported = true;\n }\n\n };\n\n if (canUseDOM) {\n window.addEventListener('test', options, options);\n window.removeEventListener('test', options, true);\n }\n} catch (e) {\n /* */\n}\n\n/**\n * An `addEventListener` ponyfill, supports the `once` option\n * \n * @param node the element\n * @param eventName the event name\n * @param handle the handler\n * @param options event options\n */\nfunction addEventListener(node, eventName, handler, options) {\n if (options && typeof options !== 'boolean' && !onceSupported) {\n var once = options.once,\n capture = options.capture;\n var wrappedHandler = handler;\n\n if (!onceSupported && once) {\n wrappedHandler = handler.__once || function onceHandler(event) {\n this.removeEventListener(eventName, onceHandler, capture);\n handler.call(this, event);\n };\n\n handler.__once = wrappedHandler;\n }\n\n node.addEventListener(eventName, wrappedHandler, optionsSupported ? options : capture);\n }\n\n node.addEventListener(eventName, handler, options);\n}\n\nexport default addEventListener;","import addEventListener from './addEventListener';\nimport removeEventListener from './removeEventListener';\n\nfunction listen(node, eventName, handler, options) {\n addEventListener(node, eventName, handler, options);\n return function () {\n removeEventListener(node, eventName, handler, options);\n };\n}\n\nexport default listen;","/**\n * A `removeEventListener` ponyfill\n * \n * @param node the element\n * @param eventName the event name\n * @param handle the handler\n * @param options event options\n */\nfunction removeEventListener(node, eventName, handler, options) {\n var capture = options && typeof options !== 'boolean' ? options.capture : options;\n node.removeEventListener(eventName, handler, capture);\n\n if (handler.__once) {\n node.removeEventListener(eventName, handler.__once, capture);\n }\n}\n\nexport default removeEventListener;","import css from './css';\nimport listen from './listen';\nimport triggerEvent from './triggerEvent';\n\nfunction parseDuration(node) {\n var str = css(node, 'transitionDuration') || '';\n var mult = str.indexOf('ms') === -1 ? 1000 : 1;\n return parseFloat(str) * mult;\n}\n\nfunction emulateTransitionEnd(element, duration, padding) {\n if (padding === void 0) {\n padding = 5;\n }\n\n var called = false;\n var handle = setTimeout(function () {\n if (!called) triggerEvent(element, 'transitionend', true);\n }, duration + padding);\n var remove = listen(element, 'transitionend', function () {\n called = true;\n }, {\n once: true\n });\n return function () {\n clearTimeout(handle);\n remove();\n };\n}\n\nexport default function transitionEnd(element, handler, duration, padding) {\n if (duration == null) duration = parseDuration(element) || 0;\n var removeEmulate = emulateTransitionEnd(element, duration, padding);\n var remove = listen(element, 'transitionend', handler);\n return function () {\n removeEmulate();\n remove();\n };\n}","/**\n * Triggers an event on a given element.\n * \n * @param node the element\n * @param eventName the event name to trigger\n * @param bubbles whether the event should bubble up\n * @param cancelable whether the event should be cancelable\n */\nexport default function triggerEvent(node, eventName, bubbles, cancelable) {\n if (bubbles === void 0) {\n bubbles = false;\n }\n\n if (cancelable === void 0) {\n cancelable = true;\n }\n\n if (node) {\n var event = document.createEvent('HTMLEvents');\n event.initEvent(eventName, bubbles, cancelable);\n node.dispatchEvent(event);\n }\n}","import css from \"dom-helpers/css\";\nimport transitionEnd from \"dom-helpers/transitionEnd\";\n\nfunction parseDuration(\n node: HTMLElement,\n property: \"transitionDuration\" | \"transitionDelay\"\n) {\n const str = css(node, property) || \"\";\n const mult = str.indexOf(\"ms\") === -1 ? 1000 : 1;\n return parseFloat(str) * mult;\n}\n\nexport default function transitionEndListener(\n element: HTMLElement,\n handler: (e: TransitionEvent) => void\n) {\n const duration = parseDuration(element, \"transitionDuration\");\n const delay = parseDuration(element, \"transitionDelay\");\n const remove = transitionEnd(\n element,\n (e) => {\n if (e.target === element) {\n remove();\n handler(e);\n }\n },\n duration + delay\n );\n}\n","/**\n * Safe chained function\n *\n * Will only create a new function if needed,\n * otherwise will pass back existing functions or null.\n *\n * @param {function} functions to chain\n * @returns {function|null}\n */\nfunction createChainedFunction(...funcs: any[]) {\n return funcs\n .filter((f) => f != null)\n .reduce((acc, f) => {\n if (typeof f !== \"function\") {\n throw new Error(\n \"Invalid Argument Type, must only provide functions, undefined, or null.\"\n );\n }\n\n if (acc === null) return f;\n\n return function chainedFunction(...args: any[]) {\n // @ts-ignore\n acc.apply(this, args);\n // @ts-ignore\n f.apply(this, args);\n };\n }, null);\n}\n\nexport default createChainedFunction;\n","import css from \"dom-helpers/css\";\n\ntype Dimension = \"height\" | \"width\";\n\nconst MARGINS: { [d in Dimension]: string[] } = {\n height: [\"marginTop\", \"marginBottom\"],\n width: [\"marginLeft\", \"marginRight\"],\n};\n\nexport default function getDefaultDimensionValue(\n dimension: Dimension,\n elem: HTMLElement\n): number {\n const offset = `offset${dimension[0].toUpperCase()}${dimension.slice(\n 1\n )}` as keyof HTMLElement;\n const value = elem[offset];\n const margins = MARGINS[dimension];\n\n return (\n // @ts-ignore\n value +\n // @ts-ignore\n parseInt(css(elem, margins[0]), 10) +\n // @ts-ignore\n parseInt(css(elem, margins[1]), 10)\n );\n}\n","import { useMemo, forwardRef, cloneElement } from \"react\";\nimport classNames from \"classnames\";\nimport Transition, {\n TransitionStatus,\n ENTERED,\n ENTERING,\n EXITED,\n EXITING,\n} from \"react-transition-group/Transition\";\nimport transitionEndListener from \"../../utils/transitionEndListener\";\nimport createChainedFunction from \"../../utils/createChainedFunction\";\nimport triggerBrowserReflow from \"../../utils/triggerBrowserReflow\";\nimport getDefaultDimensionValue from \"../../utils/getDefaultDimensionValue\";\nimport { CollapseProps } from \"./Collapse.props\";\n\nconst collapseStyles = {\n [EXITED]: \"collapse\",\n [EXITING]: \"collapsing\",\n [ENTERING]: \"expanding\",\n [ENTERED]: \"collapse show\",\n};\n\nconst Collapse = forwardRef<Transition<any>, CollapseProps>(\n (\n {\n dimension = \"height\",\n panelIn = false,\n getDimensionValue = getDefaultDimensionValue,\n timeout = 300,\n onEnter,\n onEntering,\n onEntered,\n onExit,\n onExiting,\n className,\n children,\n role,\n ...rest\n },\n ref\n ) => {\n /* Compute dimension */\n const computedDimension =\n typeof dimension === \"function\" ? dimension() : dimension;\n\n /* -- Expanding -- */\n const handleEnter = useMemo(\n () =>\n createChainedFunction((elem: HTMLElement) => {\n elem.style[computedDimension] = \"0\";\n elem.style.transitionDuration = `${timeout + 50}ms`;\n }, onEnter),\n [computedDimension, onEnter, timeout]\n );\n\n const handleEntering = useMemo(\n () =>\n createChainedFunction((elem: HTMLElement) => {\n const scroll =\n `scroll${computedDimension[0].toUpperCase()}${computedDimension.slice(\n 1\n )}` as keyof HTMLElement;\n elem.style[computedDimension] = `${elem[scroll]}px`;\n elem.style.transitionDuration = `${timeout + 50}ms`;\n }, onEntering),\n [computedDimension, onEntering, timeout]\n );\n\n const handleEntered = useMemo(\n () =>\n createChainedFunction((elem: HTMLElement) => {\n elem.style[computedDimension] = \"none\";\n elem.style.transitionDuration = `${timeout + 50}ms`;\n }, onEntered),\n [computedDimension, onEntered, timeout]\n );\n\n /* -- Collapsing -- */\n const handleExit = useMemo(\n () =>\n createChainedFunction((elem: HTMLElement) => {\n elem.style[computedDimension] = `${getDimensionValue(\n computedDimension,\n elem\n )}px`;\n triggerBrowserReflow(elem);\n elem.style.transitionDuration = `${timeout + 50}ms`;\n }, onExit),\n [onExit, getDimensionValue, computedDimension, timeout]\n );\n\n const handleExiting = useMemo(\n () =>\n createChainedFunction((elem: HTMLElement) => {\n elem.style[computedDimension] = \"0px\";\n elem.style.transitionDuration = `${timeout + 50}ms`;\n }, onExiting),\n [computedDimension, onExiting, timeout]\n );\n\n return (\n <Transition\n nodeRef={ref}\n addEndListener={transitionEndListener}\n {...rest}\n aria-expanded={role ? panelIn : null}\n onEnter={handleEnter}\n onEntering={handleEntering}\n onEntered={handleEntered}\n onExit={handleExit}\n onExiting={handleExiting}\n in={panelIn}\n >\n {(state: TransitionStatus, innerProps: Record<string, unknown>) => {\n return cloneElement(children, {\n ...innerProps,\n className: classNames(\n className,\n children.props.className,\n collapseStyles[state],\n computedDimension === \"width\" && \"collapse-horizontal\"\n ),\n });\n }}\n </Transition>\n );\n }\n);\n\nexport default Collapse;\n","export default function triggerBrowserReflow(node: HTMLElement): void {\n // eslint-disable-next-line @typescript-eslint/no-unused-expressions\n node.offsetHeight;\n}\n","export function checkArrayDuplicates(array: string[]) {\n return array.some((val, i) => array.indexOf(val) !== i);\n}\n","// prettier-ignore\nimport { FC, useContext, MouseEvent } from \"react\";\nimport classNames from \"classnames\";\nimport useGlobalSettings from \"../../hooks/useGlobalSettings\";\nimport { default as AccordionButtonProps } from \"./AccordionButton.props\";\nimport { AccordionContext } from \"./Accordion\";\nimport { AccordionItemContext } from \"./AccordionItem\";\n\nconst AccordionButton: FC<AccordionButtonProps> = ({\n children,\n className,\n ...rest\n}) => {\n const { prefix } = useGlobalSettings();\n const baseClass = `${prefix}--accordion--button`;\n\n const {\n activeItems,\n setActiveItems,\n getUpdatedItems,\n allowMultipleExpanded,\n onButtonClick,\n } = useContext(AccordionContext);\n const { id } = useContext(AccordionItemContext);\n const open = activeItems.indexOf(id) > -1;\n\n const accordionButtonClasses = classNames(className, {\n [baseClass]: true,\n });\n\n /**\n * On click, get id of clicked item, and set that item in state to 'open', all others to 'closed'\n */\n const handleClick = (e: MouseEvent<HTMLButtonElement>, id: string) => {\n setActiveItems(\n getUpdatedItems({ id, itemStatuses: activeItems, allowMultipleExpanded })\n );\n if (onButtonClick) {\n onButtonClick(e, id);\n }\n e.currentTarget.blur();\n };\n\n return (\n <div className={`${prefix}--h3`}>\n <button\n className={accordionButtonClasses}\n aria-expanded={open}\n onClick={(e) => handleClick(e, id)}\n aria-controls={`panel-${id}`}\n id={`button-${id}`}\n {...rest}\n >\n {children}\n </button>\n </div>\n );\n};\n\nexport default AccordionButton;\n","import { FC, useContext, useLayoutEffect, useRef, useState } from \"react\";\nimport classNames from \"classnames\";\nimport useGlobalSettings from \"../../hooks/useGlobalSettings\";\nimport { default as AccordionPanelProps } from \"./AccordionPanel.props\";\nimport { AccordionContext } from \"./Accordion\";\nimport { AccordionItemContext } from \"./AccordionItem\";\n\nconst AccordionPanel: FC<AccordionPanelProps> = ({\n children,\n className,\n timeout = 600,\n ...rest\n}) => {\n const { activeItems } = useContext(AccordionContext);\n const { id } = useContext(AccordionItemContext);\n const [panelHeight, setPanelHeight] = useState(0);\n const open = activeItems.indexOf(id) > -1;\n const { prefix } = useGlobalSettings();\n const baseClass = `${prefix}--accordion--panel`;\n\n const accordionaPanelClasses = classNames(className, {\n [baseClass]: true,\n [`${baseClass}--open`]: open,\n });\n\n const ref = useRef<HTMLInputElement>();\n\n useLayoutEffect(() => {\n ref.current && setPanelHeight(ref.current.scrollHeight);\n });\n\n return (\n <div\n className={accordionaPanelClasses}\n id={`panel-${id}`}\n aria-labelledby={`button-${id}`}\n role=\"region\"\n ref={ref as any}\n style={{ [\"--height\" as any]: `${panelHeight}px` }}\n {...rest}\n >\n <div className={`${prefix}--accordion--innerpanel`}>{children}</div>\n </div>\n );\n};\n\nexport default AccordionPanel;\n","import { FC } from \"react\";\nimport classNames from \"classnames\";\nimport useGlobalSettings from \"../../hooks/useGlobalSettings\";\nimport { HeadingProps } from \"./Heading.props\";\n\nconst Heading: FC<HeadingProps> = ({\n level = \"h3\",\n children,\n className,\n type,\n ...rest\n}) => {\n const { prefix } = useGlobalSettings();\n const UseHeading = level;\n const baseClass = `${prefix}--${level}`;\n const headingClasses = classNames(className, {\n [baseClass]: true,\n [`${baseClass}--${type}`]: type,\n });\n\n return (\n <UseHeading className={headingClasses} {...rest}>\n {children}\n </UseHeading>\n );\n};\n\nexport default Heading;\n"],"names":["__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","propIsEnumerable","toObject","val","TypeError","objectAssign","assign","test1","String","getOwnPropertyNames","test2","fromCharCode","order2","map","n","join","test3","split","forEach","letter","keys","err","shouldUseNative","target","source","from","symbols","to","arguments","key","g","exports","Fragment","Symbol","for","h","m","f","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","ReactCurrentOwner","ref","__self","__source","q","c","a","k","b","d","l","defaultProps","$$typeof","type","props","_owner","current","process","env","NODE_ENV","React","require$$0","_assign","require$$1","REACT_ELEMENT_TYPE","REACT_PORTAL_TYPE","REACT_STRICT_MODE_TYPE","REACT_PROFILER_TYPE","REACT_PROVIDER_TYPE","REACT_CONTEXT_TYPE","REACT_FORWARD_REF_TYPE","REACT_SUSPENSE_TYPE","REACT_SUSPENSE_LIST_TYPE","REACT_MEMO_TYPE","REACT_LAZY_TYPE","REACT_BLOCK_TYPE","REACT_SERVER_BLOCK_TYPE","REACT_FUNDAMENTAL_TYPE","REACT_DEBUG_TRACING_MODE_TYPE","REACT_LEGACY_HIDDEN_TYPE","symbolFor","MAYBE_ITERATOR_SYMBOL","iterator","ReactSharedInternals","error","format","_len2","args","Array","_key2","printWarning","level","stack","ReactDebugCurrentFrame","getStackAddendum","concat","argsWithFormat","item","unshift","Function","apply","console","getContextName","displayName","getComponentName","tag","name","_context","outerType","innerType","render","wrapperName","functionName","_render","lazyComponent","payload","_payload","init","_init","x","prevLog","prevInfo","prevWarn","prevError","prevGroup","prevGroupCollapsed","prevGroupEnd","disabledDepth","disabledLog","__reactDisabledLog","prefix","ReactCurrentDispatcher","describeBuiltInComponentFrame","ownerFn","undefined","Error","match","trim","componentFrameCache","reentry","PossiblyWeakMap","WeakMap","Map","describeNativeComponentFrame","fn","construct","control","frame","get","previousDispatcher","previousPrepareStackTrace","prepareStackTrace","log","info","warn","group","groupCollapsed","groupEnd","configurable","enumerable","value","writable","defineProperties","disableLogs","Fake","defineProperty","set","Reflect","sample","sampleLines","controlLines","_frame","replace","reenableLogs","syntheticFrame","describeFunctionComponentFrame","describeUnknownElementTypeFrameInDEV","isReactComponent","loggedTypeFailures","setCurrentlyValidatingElement","element","owner","_source","setExtraStackFrame","specialPropKeyWarningShown","specialPropRefWarningShown","didWarnAboutStringRefs","RESERVED_PROPS","jsxDEV","config","maybeKey","self","propName","getter","getOwnPropertyDescriptor","isReactWarning","hasValidKey","hasValidRef","stateNode","componentName","warnIfStringRefCannotBeAutoConverted","warnAboutAccessingKey","defineKeyPropWarningGetter","warnAboutAccessingRef","defineRefPropWarningGetter","_store","freeze","ReactElement","propTypesMisspellWarningShown","ReactCurrentOwner$1","ReactDebugCurrentFrame$1","setCurrentlyValidatingElement$1","isValidElement","object","getDeclarationErrorAddendum","ownerHasKeyUseWarning","validateExplicitKey","parentType","validated","currentComponentErrorInfo","parentName","getCurrentComponentErrorInfo","childOwner","validateChildKeys","node","isArray","child","iteratorFn","maybeIterable","maybeIterator","getIteratorFn","entries","step","next","done","validatePropTypes","propTypes","typeSpecs","values","location","has","bind","typeSpecName","error$1","ex","message","checkPropTypes","PropTypes","getDefaultProps","isReactClassApproved","jsxWithValidation","isStaticChildren","validType","isValidElementType","typeString","sourceInfo","fileName","lineNumber","getSourceInfoErrorAddendum","children","fragment","validateFragmentProps","jsx","jsxs","module","GlobalProviderContext","createContext","useGlobalSettings","_a","useContext","rest","AccordionContext","AccordionItemContext","_setPrototypeOf","o","setPrototypeOf","__proto__","r","v","w","y","z","u","A","hasSymbol","REACT_FRAGMENT_TYPE","REACT_ASYNC_MODE_TYPE","REACT_CONCURRENT_MODE_TYPE","REACT_RESPONDER_TYPE","REACT_SCOPE_TYPE","typeOf","$$typeofType","AsyncMode","ConcurrentMode","ContextConsumer","ContextProvider","Element","ForwardRef","Lazy","Memo","Portal","Profiler","StrictMode","Suspense","hasWarnedAboutDeprecatedIsAsyncMode","isConcurrentMode","isAsyncMode","isContextConsumer","isContextProvider","isElement","isForwardRef","isFragment","isLazy","isMemo","isPortal","isProfiler","isStrictMode","isSuspense","ReactPropTypesSecret","text","getStack","resetWarningCache","emptyFunctionThatReturnsNull","emptyFunction","emptyFunctionWithReset","throwOnDirectAccess","ITERATOR_SYMBOL","ANONYMOUS","ReactPropTypes","array","createPrimitiveTypeChecker","bigint","bool","func","number","string","symbol","any","createChainableTypeChecker","arrayOf","typeChecker","propFullName","PropTypeError","propValue","getPropType","elementType","ReactIs","instanceOf","expectedClass","expectedClassName","constructor","isNode","objectOf","propType","oneOf","expectedValues","validate","is","valuesString","JSON","stringify","getPreciseType","oneOfType","arrayOfTypeCheckers","checker","getPostfixForTypeWarning","expectedTypes","checkerResult","data","push","expectedType","shape","shapeTypes","invalidValidatorError","exact","allKeys","this","manualPropTypeCallCache","manualPropTypeWarningCount","checkType","isRequired","secret","cacheKey","chainedCheckType","every","entry","RegExp","isSymbol","Date","shim","getShim","require$$2","timeoutsShape","enter","exit","appear","active","enterDone","enterActive","exitDone","exitActive","TransitionGroupContext","Transition","_React$Component","subClass","superClass","context","_this","initialStatus","isMounting","appearStatus","in","unmountOnExit","mountOnEnter","state","status","nextCallback","create","getDerivedStateFromProps","_ref","prevState","_proto","componentDidMount","updateStatus","componentDidUpdate","prevProps","nextStatus","componentWillUnmount","cancelNextCallback","getTimeouts","timeout","mounting","nodeRef","ReactDOM","findDOMNode","scrollTop","forceReflow","performEnter","performExit","setState","_this2","appearing","_ref2","maybeNode","maybeAppearing","timeouts","enterTimeout","safeSetState","onEntered","onEnter","onEntering","onTransitionEnd","_this3","onExit","onExiting","onExited","cancel","nextState","callback","setNextCallback","_this4","event","handler","doesNotHaveTimeoutOrListener","addEndListener","_ref3","maybeNextCallback","setTimeout","_this$props","childProps","excluded","sourceKeys","_objectWithoutPropertiesLoose","createElement","Provider","cloneElement","Children","only","Component","noop","ownerWindow","doc","ownerDocument","document","defaultView","window","contextType","pt","_len","_key","UNMOUNTED","EXITED","ENTERING","ENTERED","EXITING","rUpper","msPattern","hyphenateStyleName","toLowerCase","hyphenate","supportedTransforms","style","property","css","transforms","getPropertyValue","psuedoElement","getComputedStyle","test","isTransform","removeProperty","cssText","canUseDOM","optionsSupported","onceSupported","options","passive","once","addEventListener","removeEventListener","listen","eventName","capture","wrappedHandler","__once","onceHandler","emulateTransitionEnd","duration","padding","called","handle","bubbles","cancelable","createEvent","initEvent","dispatchEvent","triggerEvent","remove","clearTimeout","transitionEnd","str","mult","parseFloat","removeEmulate","parseDuration","transitionEndListener","delay","createChainedFunction","funcs","filter","reduce","acc","MARGINS","height","width","getDefaultDimensionValue","dimension","elem","toUpperCase","slice","margins","parseInt","collapseStyles","exited","exiting","entering","entered","Collapse","forwardRef","panelIn","getDimensionValue","className","role","computedDimension","handleEnter","useMemo","transitionDuration","handleEntering","scroll","handleEntered","handleExit","offsetHeight","handleExiting","_jsx","innerProps","classNames","allowMultipleExpanded","onButtonClick","defaultAccordionsExpanded","baseClass","activeItems","setActiveItems","useState","accordionClasses","defaultAccordionsExpandedString","useEffect","expandedOnLoad","ids","id","some","getUpdatedItems","open","accordionButtonClasses","onClick","itemStatuses","currentTarget","blur","handleClick","accordionItemClasses","panelHeight","setPanelHeight","accordionaPanelClasses","useRef","useLayoutEffect","scrollHeight","themeprefix","UseHeading","headingClasses"],"mappings":"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"}
package/rollup.config.js DELETED
@@ -1,40 +0,0 @@
1
- import peerDepsExternal from "rollup-plugin-peer-deps-external";
2
- import resolve from "@rollup/plugin-node-resolve";
3
- import commonjs from "@rollup/plugin-commonjs";
4
- import typescript from "rollup-plugin-typescript2";
5
- import postcss from "rollup-plugin-postcss";
6
- import json from "@rollup/plugin-json";
7
- import { terser } from "rollup-plugin-terser";
8
-
9
- const packageJson = require("./package.json");
10
-
11
- export default {
12
- input: "src/index.ts",
13
- external: [...Object.keys(packageJson.dependencies)],
14
- output: [
15
- {
16
- file: packageJson.main,
17
- format: "cjs",
18
- sourcemap: true,
19
- },
20
- {
21
- file: packageJson.module,
22
- format: "esm",
23
- sourcemap: true,
24
- },
25
- ],
26
- plugins: [
27
- peerDepsExternal(),
28
- resolve(),
29
- commonjs(),
30
- typescript({
31
- useTsconfigDeclarationDir: true,
32
- tsconfig: "./tsconfig.build.json",
33
- }),
34
- postcss({
35
- extensions: [".css"],
36
- }),
37
- json(),
38
- terser(),
39
- ],
40
- };
@@ -1,52 +0,0 @@
1
- import { render, screen, fireEvent } from "@testing-library/react";
2
- import { composeStories } from "@storybook/testing-react";
3
- import * as stories from "../stories/Accordion.stories";
4
- import { Accordion, AccordionItem } from "../components/Accordion";
5
- import accordionArgs from "../components/Accordion/Accordion.args";
6
-
7
- const { AccordionLarge } = composeStories(stories);
8
-
9
- // Need to finish writting accordion tests
10
-
11
- describe("<Accordion>", () => {
12
- it("Expect button to exist and aria expanded value to change on accordion button click.", () => {
13
- render(<AccordionLarge />);
14
- const buttonElement = screen.getAllByRole("button");
15
- const ariaExpanded = buttonElement[0].getAttribute("aria-expanded");
16
- expect(buttonElement).not.toBeNull();
17
- fireEvent.click(buttonElement[0]);
18
- expect(buttonElement[0]).toHaveAttribute(
19
- "aria-expanded",
20
- `${!ariaExpanded}`
21
- );
22
- });
23
-
24
- it("Should render `h1` with story text.", () => {
25
- render(<AccordionLarge />);
26
- const buttonElement = screen.getAllByRole("button");
27
- expect(buttonElement).not.toBeNull();
28
- fireEvent.click(buttonElement[0]);
29
- expect(buttonElement[0]).toHaveAttribute("aria-expanded", "false");
30
- });
31
-
32
- it("Should render `h2` with story text.", () => {
33
- render(<AccordionLarge />);
34
- const buttonElement = screen.getAllByRole("button");
35
- expect(buttonElement).not.toBeNull();
36
- fireEvent.click(buttonElement[0]);
37
- expect(buttonElement[0]).toHaveAttribute("aria-expanded", "false");
38
- });
39
-
40
- it("Should print a warning if two <AccordionItem /> have same id", async () => {
41
- const consoleWarn = jest.spyOn(console, "warn").mockImplementation(() => {
42
- // do nothing
43
- });
44
- render(
45
- <Accordion {...accordionArgs.large}>
46
- <AccordionItem id="test-1">Item/</AccordionItem>
47
- <AccordionItem id="test-1">Item/</AccordionItem>
48
- </Accordion>
49
- );
50
- expect(consoleWarn).toHaveBeenCalled();
51
- });
52
- });