@dotss/ui 1.0.2 → 1.0.3

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 (2073) hide show
  1. package/.scripts/deploy/deploy.env +1 -0
  2. package/.scripts/deploy/deploy.sh +102 -0
  3. package/.scripts/deploy/release_body.md +5 -0
  4. package/.storybook/main.ts +22 -0
  5. package/.storybook/manager-head.html +6 -0
  6. package/.storybook/manager.ts +11 -0
  7. package/.storybook/preview-head.html +16 -0
  8. package/.storybook/preview.tsx +56 -0
  9. package/.turbo/turbo-build.log +666 -0
  10. package/.turbo/turbo-deploy.log +45531 -0
  11. package/CHANGELOG.md +27 -0
  12. package/build-storybook.log +129 -0
  13. package/components/Accordion/Accordion.stories.tsx +138 -0
  14. package/components/Accordion/Accordion.styles.ts +76 -0
  15. package/components/Accordion/Accordion.tsx +148 -0
  16. package/components/Accordion/index.ts +3 -0
  17. package/components/Autocomplete/Autocomplete.stories.tsx +317 -0
  18. package/components/Autocomplete/Autocomplete.styles.ts +5 -0
  19. package/components/Autocomplete/Autocomplete.tsx +478 -0
  20. package/components/Autocomplete/index.ts +3 -0
  21. package/components/Backdrop/Backdrop.stories.tsx +84 -0
  22. package/components/Backdrop/Backdrop.styles.ts +69 -0
  23. package/components/Backdrop/Backdrop.tsx +140 -0
  24. package/components/Backdrop/index.ts +3 -0
  25. package/components/Badge/Badge.stories.tsx +66 -0
  26. package/components/Badge/Badge.styles.ts +75 -0
  27. package/components/Badge/Badge.tsx +67 -0
  28. package/components/Badge/index.ts +3 -0
  29. package/components/BottomSheet/BottomSheet.stories.tsx +498 -0
  30. package/components/BottomSheet/BottomSheet.styles.ts +58 -0
  31. package/components/BottomSheet/BottomSheet.tsx +213 -0
  32. package/components/BottomSheet/BottomSheetAction/BottomSheetAction.styles.ts +21 -0
  33. package/components/BottomSheet/BottomSheetAction/BottomSheetAction.tsx +28 -0
  34. package/components/BottomSheet/BottomSheetAction/index.ts +3 -0
  35. package/components/BottomSheet/BottomSheetContent/BottomSheetContent.styles.ts +17 -0
  36. package/components/BottomSheet/BottomSheetContent/BottomSheetContent.tsx +28 -0
  37. package/components/BottomSheet/BottomSheetContent/index.ts +3 -0
  38. package/components/BottomSheet/BottomSheetText/BottomSheetText.styles.ts +33 -0
  39. package/components/BottomSheet/BottomSheetText/BottomSheetText.tsx +36 -0
  40. package/components/BottomSheet/BottomSheetText/index.ts +3 -0
  41. package/components/BottomSheet/BottomSheetTitle/BottomSheetTitle.styles.ts +53 -0
  42. package/components/BottomSheet/BottomSheetTitle/BottomSheetTitle.tsx +45 -0
  43. package/components/BottomSheet/BottomSheetTitle/index.ts +3 -0
  44. package/components/BottomSheet/index.ts +8 -0
  45. package/components/Box/Box.stories.tsx +39 -0
  46. package/components/Box/Box.styles.ts +59 -0
  47. package/components/Box/Box.tsx +35 -0
  48. package/components/Box/index.ts +3 -0
  49. package/components/Button/Button.stories.tsx +136 -0
  50. package/components/Button/Button.styles.ts +420 -0
  51. package/components/Button/Button.test.tsx +68 -0
  52. package/components/Button/Button.tsx +96 -0
  53. package/components/Button/index.ts +4 -0
  54. package/components/Card/Card.stories.tsx +87 -0
  55. package/components/Card/Card.styles.ts +146 -0
  56. package/components/Card/Card.tsx +54 -0
  57. package/components/Card/index.ts +3 -0
  58. package/components/ChainPicker/ChainPicker.stories.tsx +127 -0
  59. package/components/ChainPicker/ChainPicker.styles.ts +105 -0
  60. package/components/ChainPicker/ChainPicker.tsx +283 -0
  61. package/components/ChainPicker/index.ts +5 -0
  62. package/components/Checkbox/Checkbox.stories.tsx +52 -0
  63. package/components/Checkbox/Checkbox.styles.tsx +85 -0
  64. package/components/Checkbox/Checkbox.tsx +27 -0
  65. package/components/Checkbox/index.ts +3 -0
  66. package/components/Chip/Chip.stories.tsx +88 -0
  67. package/components/Chip/Chip.styles.ts +101 -0
  68. package/components/Chip/Chip.tsx +58 -0
  69. package/components/Chip/index.ts +3 -0
  70. package/components/CircularProgressIndicator/CircularProgressIndicator.stories.tsx +61 -0
  71. package/components/CircularProgressIndicator/CircularProgressIndicator.styles.ts +78 -0
  72. package/components/CircularProgressIndicator/CircularProgressIndicator.tsx +56 -0
  73. package/components/CircularProgressIndicator/index.tsx +3 -0
  74. package/components/ClickAwayListener/ClickAwayListener.tsx +35 -0
  75. package/components/ClickAwayListener/index.ts +3 -0
  76. package/components/DatePicker/DatePicker.stories.tsx +542 -0
  77. package/components/DatePicker/DatePicker.styles.ts +336 -0
  78. package/components/DatePicker/DatePicker.tsx +1020 -0
  79. package/components/DatePicker/EventDot/EventDot.styles.ts +17 -0
  80. package/components/DatePicker/EventDot/EventDot.tsx +16 -0
  81. package/components/DatePicker/EventDot/index.ts +3 -0
  82. package/components/DatePicker/EventDotGroup/EventDotGroup.styles.ts +28 -0
  83. package/components/DatePicker/EventDotGroup/EventDotGroup.tsx +28 -0
  84. package/components/DatePicker/EventDotGroup/index.ts +3 -0
  85. package/components/DatePicker/index.ts +9 -0
  86. package/components/Dialog/Dialog.stories.tsx +595 -0
  87. package/components/Dialog/Dialog.styles.ts +50 -0
  88. package/components/Dialog/Dialog.tsx +161 -0
  89. package/components/Dialog/DialogAction/DialogAction.styles.ts +14 -0
  90. package/components/Dialog/DialogAction/DialogAction.tsx +19 -0
  91. package/components/Dialog/DialogAction/index.ts +3 -0
  92. package/components/Dialog/DialogContent/DialogContent.styles.ts +10 -0
  93. package/components/Dialog/DialogContent/DialogContent.tsx +19 -0
  94. package/components/Dialog/DialogContent/index.ts +3 -0
  95. package/components/Dialog/DialogText/DialogText.styles.ts +33 -0
  96. package/components/Dialog/DialogText/DialogText.tsx +33 -0
  97. package/components/Dialog/DialogText/index.ts +3 -0
  98. package/components/Dialog/DialogTitle/DialogTitle.styles.ts +65 -0
  99. package/components/Dialog/DialogTitle/DialogTitle.tsx +36 -0
  100. package/components/Dialog/DialogTitle/index.ts +3 -0
  101. package/components/Dialog/index.ts +8 -0
  102. package/components/Flexbox/Flexbox.stories.tsx +117 -0
  103. package/components/Flexbox/Flexbox.styles.ts +80 -0
  104. package/components/Flexbox/Flexbox.tsx +47 -0
  105. package/components/Flexbox/index.ts +3 -0
  106. package/components/FocusBoundary/FocusBoundary.tsx +130 -0
  107. package/components/FocusBoundary/index.ts +3 -0
  108. package/components/FormControlText/FormControlText.stories.tsx +90 -0
  109. package/components/FormControlText/FormControlText.styles.ts +55 -0
  110. package/components/FormControlText/FormControlText.tsx +82 -0
  111. package/components/FormControlText/index.tsx +3 -0
  112. package/components/Icon/Icon.stories.tsx +51 -0
  113. package/components/Icon/Icon.styles.ts +51 -0
  114. package/components/Icon/Icon.tsx +81 -0
  115. package/components/Icon/index.ts +3 -0
  116. package/components/IconButton/IconButton.stories.tsx +45 -0
  117. package/components/IconButton/IconButton.styles.ts +354 -0
  118. package/components/IconButton/IconButton.tsx +68 -0
  119. package/components/IconButton/index.ts +3 -0
  120. package/components/Label/Label.stories.tsx +87 -0
  121. package/components/Label/Label.styles.ts +339 -0
  122. package/components/Label/Label.tsx +64 -0
  123. package/components/Label/index.ts +3 -0
  124. package/components/LineProgressIndicator/LineProgressIndicator.stories.tsx +80 -0
  125. package/components/LineProgressIndicator/LineProgressIndicator.styles.ts +62 -0
  126. package/components/LineProgressIndicator/LineProgressIndicator.tsx +48 -0
  127. package/components/LineProgressIndicator/index.ts +3 -0
  128. package/components/Menu/Menu.stories.tsx +824 -0
  129. package/components/Menu/Menu.styles.ts +67 -0
  130. package/components/Menu/Menu.tsx +331 -0
  131. package/components/Menu/MenuBlock/MenuBlock.styles.ts +121 -0
  132. package/components/Menu/MenuBlock/MenuBlock.tsx +74 -0
  133. package/components/Menu/MenuBlock/index.ts +3 -0
  134. package/components/Menu/MenuButton/MenuButton.tsx +95 -0
  135. package/components/Menu/MenuButton/index.ts +3 -0
  136. package/components/Menu/index.ts +6 -0
  137. package/components/NumberKeypad/NumberKeypad.stories.tsx +113 -0
  138. package/components/NumberKeypad/NumberKeypad.styles.ts +14 -0
  139. package/components/NumberKeypad/NumberKeypad.tsx +59 -0
  140. package/components/NumberKeypad/NumberKeypadBlock/NumberKeypadBlock.styles.ts +114 -0
  141. package/components/NumberKeypad/NumberKeypadBlock/NumberKeypadBlock.tsx +35 -0
  142. package/components/NumberKeypad/NumberKeypadBlock/index.ts +3 -0
  143. package/components/NumberKeypad/index.ts +5 -0
  144. package/components/PageControl/PageControl.stories.tsx +79 -0
  145. package/components/PageControl/PageControl.styles.ts +60 -0
  146. package/components/PageControl/PageControl.tsx +118 -0
  147. package/components/PageControl/index.ts +3 -0
  148. package/components/Radio/Radio.stories.tsx +52 -0
  149. package/components/Radio/Radio.styles.tsx +80 -0
  150. package/components/Radio/Radio.tsx +27 -0
  151. package/components/Radio/index.ts +3 -0
  152. package/components/RadioGroup/RadioGroup.stories.tsx +71 -0
  153. package/components/RadioGroup/RadioGroup.tsx +49 -0
  154. package/components/RadioGroup/index.ts +3 -0
  155. package/components/SegmentedButton/SegmentedButton.stories.tsx +221 -0
  156. package/components/SegmentedButton/SegmentedButton.styles.ts +42 -0
  157. package/components/SegmentedButton/SegmentedButton.tsx +173 -0
  158. package/components/SegmentedButton/SegmentedButtonBlock/SegmentedButtonBlock.styles.ts +179 -0
  159. package/components/SegmentedButton/SegmentedButtonBlock/SegmentedButtonBlock.tsx +71 -0
  160. package/components/SegmentedButton/SegmentedButtonBlock/index.ts +3 -0
  161. package/components/SegmentedButton/index.ts +5 -0
  162. package/components/Select/Option/Option.styles.ts +115 -0
  163. package/components/Select/Option/Option.tsx +66 -0
  164. package/components/Select/Option/index.ts +3 -0
  165. package/components/Select/Select.stories.tsx +273 -0
  166. package/components/Select/Select.styles.ts +159 -0
  167. package/components/Select/Select.tsx +323 -0
  168. package/components/Select/index.ts +5 -0
  169. package/components/Skeleton/Skeleton.stories.tsx +54 -0
  170. package/components/Skeleton/Skeleton.styles.ts +100 -0
  171. package/components/Skeleton/Skeleton.tsx +41 -0
  172. package/components/Skeleton/index.ts +3 -0
  173. package/components/Slider/Slider.stories.tsx +121 -0
  174. package/components/Slider/Slider.styles.ts +89 -0
  175. package/components/Slider/Slider.tsx +261 -0
  176. package/components/Slider/index.ts +3 -0
  177. package/components/Snackbar/Snackbar.stories.tsx +374 -0
  178. package/components/Snackbar/Snackbar.styles.ts +138 -0
  179. package/components/Snackbar/Snackbar.tsx +248 -0
  180. package/components/Snackbar/index.ts +3 -0
  181. package/components/Switch/Switch.stories.tsx +97 -0
  182. package/components/Switch/Switch.styles.ts +210 -0
  183. package/components/Switch/Switch.tsx +125 -0
  184. package/components/Switch/index.ts +3 -0
  185. package/components/Tab/Tab.stories.tsx +240 -0
  186. package/components/Tab/Tab.styles.ts +48 -0
  187. package/components/Tab/Tab.tsx +343 -0
  188. package/components/Tab/TabBlock/TabBlock.styles.ts +53 -0
  189. package/components/Tab/TabBlock/TabBlock.tsx +67 -0
  190. package/components/Tab/TabBlock/index.ts +3 -0
  191. package/components/Tab/index.ts +4 -0
  192. package/components/TextArea/TextArea.stories.tsx +174 -0
  193. package/components/TextArea/TextArea.styles.ts +198 -0
  194. package/components/TextArea/TextArea.tsx +151 -0
  195. package/components/TextArea/index.ts +3 -0
  196. package/components/TextField/TextField.stories.tsx +177 -0
  197. package/components/TextField/TextField.styles.ts +278 -0
  198. package/components/TextField/TextField.test.tsx +43 -0
  199. package/components/TextField/TextField.tsx +167 -0
  200. package/components/TextField/index.ts +3 -0
  201. package/components/Tooltip/Tooltip.stories.tsx +205 -0
  202. package/components/Tooltip/Tooltip.styles.ts +288 -0
  203. package/components/Tooltip/Tooltip.tsx +276 -0
  204. package/components/Tooltip/index.ts +3 -0
  205. package/components/Typography/Typography.stories.tsx +161 -0
  206. package/components/Typography/Typography.styles.ts +63 -0
  207. package/components/Typography/Typography.tsx +66 -0
  208. package/components/Typography/index.ts +3 -0
  209. package/components/index.ts +45 -0
  210. package/core/GlobalStyle.tsx +72 -0
  211. package/core/ThemeContext.ts +10 -0
  212. package/core/ThemeProvider.tsx +34 -0
  213. package/core/useTheme.ts +11 -0
  214. package/dist/DatePicker/DatePicker.cjs +100 -0
  215. package/dist/DatePicker/DatePicker.es.js +818 -0
  216. package/dist/Icon/Icon.cjs +5 -0
  217. package/dist/Icon/Icon.es.js +82 -0
  218. package/dist/Tab/Tab.cjs +18 -0
  219. package/dist/Tab/Tab.es.js +188 -0
  220. package/dist/resources/tictoccroc/icons/index.ts-DQT-xh5P.cjs +1 -0
  221. package/dist/resources/tictoccroc/icons/index.ts-DrS5ov5F.js +240 -0
  222. package/dist/resources/tictoccroc/icons/line/index.d.ts +78 -0
  223. package/dist/resources/tictoccroc/icons/line/money-line.svg-BlHnCVds.cjs +1 -0
  224. package/dist/resources/tictoccroc/icons/line/money-line.svg-CmMXUYQs.js +5 -0
  225. package/dist/utils/getIconLabel/getIconLabel.cjs +1 -0
  226. package/dist/utils/getIconLabel/getIconLabel.es.js +125 -0
  227. package/eslint.config.mjs +10 -0
  228. package/global.d.ts +1 -0
  229. package/hooks/index.ts +4 -0
  230. package/hooks/useCheckHasFocus/useCheckHasFocus.ts +38 -0
  231. package/hooks/useCheckHoverPossible/useCheckHoverPossible.ts +20 -0
  232. package/hooks/useCheckKeyboardMode/useCheckKeyboardMode.ts +43 -0
  233. package/hooks/useFocusBoundary/useFocusBoundary.ts +126 -0
  234. package/index.ts +1 -0
  235. package/node_modules/@chromatic-com/storybook/LICENSE +21 -0
  236. package/node_modules/@chromatic-com/storybook/README.md +61 -0
  237. package/node_modules/@chromatic-com/storybook/dist/index.js +5 -0
  238. package/node_modules/@chromatic-com/storybook/dist/index.mjs +3 -0
  239. package/node_modules/@chromatic-com/storybook/dist/manager.mjs +369 -0
  240. package/node_modules/@chromatic-com/storybook/dist/preset.js +679 -0
  241. package/node_modules/@chromatic-com/storybook/package.json +170 -0
  242. package/node_modules/@chromatic-com/storybook/preset.js +1 -0
  243. package/node_modules/@chromatic-com/storybook/types.d.ts +4 -0
  244. package/node_modules/@emotion/react/LICENSE +21 -0
  245. package/node_modules/@emotion/react/README.md +48 -0
  246. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.cjs.default.js +1 -0
  247. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.cjs.js +19 -0
  248. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.cjs.mjs +2 -0
  249. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.cjs.default.js +1 -0
  250. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.cjs.js +19 -0
  251. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.cjs.mjs +2 -0
  252. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.esm.js +11 -0
  253. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.esm.js +11 -0
  254. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.d.mts +3 -0
  255. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.d.ts +3 -0
  256. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.default.d.ts +1 -0
  257. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.default.js +1 -0
  258. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.js +19 -0
  259. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.mjs +2 -0
  260. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.cjs.default.js +1 -0
  261. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.cjs.js +19 -0
  262. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.cjs.mjs +2 -0
  263. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.cjs.default.js +1 -0
  264. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.cjs.js +19 -0
  265. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.cjs.mjs +2 -0
  266. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.esm.js +11 -0
  267. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.esm.js +11 -0
  268. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.cjs.default.js +1 -0
  269. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.cjs.js +19 -0
  270. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.cjs.mjs +2 -0
  271. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.esm.js +11 -0
  272. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.esm.js +11 -0
  273. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.umd.min.js +2 -0
  274. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.umd.min.js.map +1 -0
  275. package/node_modules/@emotion/react/_isolated-hnrs/package.json +10 -0
  276. package/node_modules/@emotion/react/dist/declarations/src/_isolated-hnrs.d.ts +3 -0
  277. package/node_modules/@emotion/react/dist/declarations/src/class-names.d.ts +18 -0
  278. package/node_modules/@emotion/react/dist/declarations/src/context.d.ts +6 -0
  279. package/node_modules/@emotion/react/dist/declarations/src/css.d.ts +5 -0
  280. package/node_modules/@emotion/react/dist/declarations/src/global.d.ts +7 -0
  281. package/node_modules/@emotion/react/dist/declarations/src/index.d.ts +14 -0
  282. package/node_modules/@emotion/react/dist/declarations/src/jsx-dev-runtime.d.ts +6 -0
  283. package/node_modules/@emotion/react/dist/declarations/src/jsx-namespace.d.ts +64 -0
  284. package/node_modules/@emotion/react/dist/declarations/src/jsx-runtime.d.ts +7 -0
  285. package/node_modules/@emotion/react/dist/declarations/src/jsx.d.ts +22 -0
  286. package/node_modules/@emotion/react/dist/declarations/src/keyframes.d.ts +10 -0
  287. package/node_modules/@emotion/react/dist/declarations/src/theming.d.ts +28 -0
  288. package/node_modules/@emotion/react/dist/declarations/src/types.d.ts +7 -0
  289. package/node_modules/@emotion/react/dist/emotion-element-010f37fa.development.edge-light.cjs.js +313 -0
  290. package/node_modules/@emotion/react/dist/emotion-element-25f9958c.browser.cjs.js +191 -0
  291. package/node_modules/@emotion/react/dist/emotion-element-4787f564.browser.development.cjs.js +274 -0
  292. package/node_modules/@emotion/react/dist/emotion-element-489459f2.browser.development.esm.js +240 -0
  293. package/node_modules/@emotion/react/dist/emotion-element-516430c7.development.edge-light.esm.js +280 -0
  294. package/node_modules/@emotion/react/dist/emotion-element-782f682d.development.esm.js +282 -0
  295. package/node_modules/@emotion/react/dist/emotion-element-8113875a.edge-light.esm.js +196 -0
  296. package/node_modules/@emotion/react/dist/emotion-element-a1829a1e.cjs.js +233 -0
  297. package/node_modules/@emotion/react/dist/emotion-element-af3dc15b.edge-light.cjs.js +230 -0
  298. package/node_modules/@emotion/react/dist/emotion-element-d59e098f.esm.js +198 -0
  299. package/node_modules/@emotion/react/dist/emotion-element-e8f4cc37.development.cjs.js +316 -0
  300. package/node_modules/@emotion/react/dist/emotion-element-f0de968e.browser.esm.js +156 -0
  301. package/node_modules/@emotion/react/dist/emotion-react.browser.cjs.js +279 -0
  302. package/node_modules/@emotion/react/dist/emotion-react.browser.cjs.mjs +15 -0
  303. package/node_modules/@emotion/react/dist/emotion-react.browser.development.cjs.js +639 -0
  304. package/node_modules/@emotion/react/dist/emotion-react.browser.development.cjs.mjs +15 -0
  305. package/node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js +605 -0
  306. package/node_modules/@emotion/react/dist/emotion-react.browser.esm.js +245 -0
  307. package/node_modules/@emotion/react/dist/emotion-react.cjs.d.mts +2 -0
  308. package/node_modules/@emotion/react/dist/emotion-react.cjs.d.ts +2 -0
  309. package/node_modules/@emotion/react/dist/emotion-react.cjs.js +329 -0
  310. package/node_modules/@emotion/react/dist/emotion-react.cjs.mjs +15 -0
  311. package/node_modules/@emotion/react/dist/emotion-react.development.cjs.js +689 -0
  312. package/node_modules/@emotion/react/dist/emotion-react.development.cjs.mjs +15 -0
  313. package/node_modules/@emotion/react/dist/emotion-react.development.edge-light.cjs.js +630 -0
  314. package/node_modules/@emotion/react/dist/emotion-react.development.edge-light.cjs.mjs +15 -0
  315. package/node_modules/@emotion/react/dist/emotion-react.development.edge-light.esm.js +593 -0
  316. package/node_modules/@emotion/react/dist/emotion-react.development.esm.js +652 -0
  317. package/node_modules/@emotion/react/dist/emotion-react.edge-light.cjs.js +270 -0
  318. package/node_modules/@emotion/react/dist/emotion-react.edge-light.cjs.mjs +15 -0
  319. package/node_modules/@emotion/react/dist/emotion-react.edge-light.esm.js +233 -0
  320. package/node_modules/@emotion/react/dist/emotion-react.esm.js +292 -0
  321. package/node_modules/@emotion/react/dist/emotion-react.umd.min.js +2 -0
  322. package/node_modules/@emotion/react/dist/emotion-react.umd.min.js.map +1 -0
  323. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.cjs.js +47 -0
  324. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.cjs.mjs +4 -0
  325. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.development.cjs.js +47 -0
  326. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.development.cjs.mjs +4 -0
  327. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.development.esm.js +22 -0
  328. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.esm.js +22 -0
  329. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.d.mts +2 -0
  330. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.d.ts +2 -0
  331. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.js +47 -0
  332. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.mjs +4 -0
  333. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.cjs.js +47 -0
  334. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.cjs.mjs +4 -0
  335. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.edge-light.cjs.js +47 -0
  336. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.edge-light.cjs.mjs +4 -0
  337. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.edge-light.esm.js +22 -0
  338. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.esm.js +22 -0
  339. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.edge-light.cjs.js +47 -0
  340. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.edge-light.cjs.mjs +4 -0
  341. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.edge-light.esm.js +22 -0
  342. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.esm.js +22 -0
  343. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.umd.min.js +2 -0
  344. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.umd.min.js.map +1 -0
  345. package/node_modules/@emotion/react/jsx-dev-runtime/package.json +10 -0
  346. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.cjs.js +55 -0
  347. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.cjs.mjs +5 -0
  348. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.development.cjs.js +55 -0
  349. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.development.cjs.mjs +5 -0
  350. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.development.esm.js +29 -0
  351. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js +29 -0
  352. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.d.mts +2 -0
  353. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.d.ts +2 -0
  354. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.js +55 -0
  355. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.mjs +5 -0
  356. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.cjs.js +55 -0
  357. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.cjs.mjs +5 -0
  358. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.edge-light.cjs.js +55 -0
  359. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.edge-light.cjs.mjs +5 -0
  360. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.edge-light.esm.js +29 -0
  361. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.esm.js +29 -0
  362. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.edge-light.cjs.js +55 -0
  363. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.edge-light.cjs.mjs +5 -0
  364. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.edge-light.esm.js +29 -0
  365. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.esm.js +29 -0
  366. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.umd.min.js +2 -0
  367. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.umd.min.js.map +1 -0
  368. package/node_modules/@emotion/react/jsx-runtime/package.json +10 -0
  369. package/node_modules/@emotion/react/macro.d.mts +1 -0
  370. package/node_modules/@emotion/react/macro.d.ts +1 -0
  371. package/node_modules/@emotion/react/macro.js +1 -0
  372. package/node_modules/@emotion/react/package.json +318 -0
  373. package/node_modules/@emotion/react/src/_isolated-hnrs.ts +15 -0
  374. package/node_modules/@emotion/react/src/class-names.tsx +180 -0
  375. package/node_modules/@emotion/react/src/conditions/false.ts +1 -0
  376. package/node_modules/@emotion/react/src/conditions/is-browser.ts +1 -0
  377. package/node_modules/@emotion/react/src/conditions/true.ts +1 -0
  378. package/node_modules/@emotion/react/src/context.tsx +72 -0
  379. package/node_modules/@emotion/react/src/css.ts +14 -0
  380. package/node_modules/@emotion/react/src/emotion-element.tsx +193 -0
  381. package/node_modules/@emotion/react/src/get-label-from-stack-trace.ts +55 -0
  382. package/node_modules/@emotion/react/src/global.tsx +147 -0
  383. package/node_modules/@emotion/react/src/index.ts +63 -0
  384. package/node_modules/@emotion/react/src/jsx-dev-runtime.ts +37 -0
  385. package/node_modules/@emotion/react/src/jsx-namespace.ts +107 -0
  386. package/node_modules/@emotion/react/src/jsx-runtime.ts +32 -0
  387. package/node_modules/@emotion/react/src/jsx.ts +45 -0
  388. package/node_modules/@emotion/react/src/keyframes.ts +27 -0
  389. package/node_modules/@emotion/react/src/theming.tsx +105 -0
  390. package/node_modules/@emotion/react/src/types.ts +14 -0
  391. package/node_modules/@emotion/react/src/utils.ts +1 -0
  392. package/node_modules/@emotion/react/types/css-prop.d.ts +9 -0
  393. package/node_modules/@emotion/serialize/LICENSE +21 -0
  394. package/node_modules/@emotion/serialize/dist/declarations/src/index.d.ts +35 -0
  395. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.mts +2 -0
  396. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.ts +2 -0
  397. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.js +246 -0
  398. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.mjs +3 -0
  399. package/node_modules/@emotion/serialize/dist/emotion-serialize.development.cjs.js +314 -0
  400. package/node_modules/@emotion/serialize/dist/emotion-serialize.development.cjs.mjs +3 -0
  401. package/node_modules/@emotion/serialize/dist/emotion-serialize.development.esm.js +304 -0
  402. package/node_modules/@emotion/serialize/dist/emotion-serialize.esm.js +236 -0
  403. package/node_modules/@emotion/serialize/package.json +54 -0
  404. package/node_modules/@emotion/serialize/src/conditions/false.ts +1 -0
  405. package/node_modules/@emotion/serialize/src/conditions/true.ts +1 -0
  406. package/node_modules/@emotion/serialize/src/index.ts +451 -0
  407. package/node_modules/@emotion/styled/LICENSE +21 -0
  408. package/node_modules/@emotion/styled/README.md +31 -0
  409. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.default.js +1 -0
  410. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.js +198 -0
  411. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.mjs +2 -0
  412. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.default.js +1 -0
  413. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.js +212 -0
  414. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.mjs +2 -0
  415. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.esm.js +185 -0
  416. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.esm.js +171 -0
  417. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.mts +3 -0
  418. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.ts +3 -0
  419. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.d.ts +1 -0
  420. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.js +1 -0
  421. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.js +216 -0
  422. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.mjs +2 -0
  423. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.default.js +1 -0
  424. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.js +230 -0
  425. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.mjs +2 -0
  426. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.default.js +1 -0
  427. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.js +228 -0
  428. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.mjs +2 -0
  429. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.esm.js +201 -0
  430. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.esm.js +203 -0
  431. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.default.js +1 -0
  432. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.js +214 -0
  433. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.mjs +2 -0
  434. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.esm.js +187 -0
  435. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.esm.js +189 -0
  436. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js +2 -0
  437. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js.map +1 -0
  438. package/node_modules/@emotion/styled/base/package.json +9 -0
  439. package/node_modules/@emotion/styled/dist/declarations/src/base.d.ts +4 -0
  440. package/node_modules/@emotion/styled/dist/declarations/src/index.d.ts +15 -0
  441. package/node_modules/@emotion/styled/dist/declarations/src/jsx-namespace.d.ts +5 -0
  442. package/node_modules/@emotion/styled/dist/declarations/src/types.d.ts +88 -0
  443. package/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.default.js +1 -0
  444. package/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.js +23 -0
  445. package/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.mjs +2 -0
  446. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.default.js +1 -0
  447. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.js +23 -0
  448. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.mjs +2 -0
  449. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js +19 -0
  450. package/node_modules/@emotion/styled/dist/emotion-styled.browser.esm.js +19 -0
  451. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.mts +3 -0
  452. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.ts +3 -0
  453. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.d.ts +1 -0
  454. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.js +1 -0
  455. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.js +23 -0
  456. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.mjs +2 -0
  457. package/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.default.js +1 -0
  458. package/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.js +23 -0
  459. package/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.mjs +2 -0
  460. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.default.js +1 -0
  461. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.js +23 -0
  462. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.mjs +2 -0
  463. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.esm.js +19 -0
  464. package/node_modules/@emotion/styled/dist/emotion-styled.development.esm.js +19 -0
  465. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.default.js +1 -0
  466. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.js +23 -0
  467. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.mjs +2 -0
  468. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.esm.js +19 -0
  469. package/node_modules/@emotion/styled/dist/emotion-styled.esm.js +19 -0
  470. package/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js +2 -0
  471. package/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js.map +1 -0
  472. package/node_modules/@emotion/styled/macro.d.mts +3 -0
  473. package/node_modules/@emotion/styled/macro.d.ts +3 -0
  474. package/node_modules/@emotion/styled/macro.js +1 -0
  475. package/node_modules/@emotion/styled/package.json +195 -0
  476. package/node_modules/@emotion/styled/src/base.tsx +229 -0
  477. package/node_modules/@emotion/styled/src/conditions/false.ts +1 -0
  478. package/node_modules/@emotion/styled/src/conditions/is-browser.ts +1 -0
  479. package/node_modules/@emotion/styled/src/conditions/true.ts +1 -0
  480. package/node_modules/@emotion/styled/src/index.ts +42 -0
  481. package/node_modules/@emotion/styled/src/jsx-namespace.ts +12 -0
  482. package/node_modules/@emotion/styled/src/tags.ts +138 -0
  483. package/node_modules/@emotion/styled/src/types.ts +190 -0
  484. package/node_modules/@emotion/styled/src/utils.ts +38 -0
  485. package/node_modules/@storybook/addon-a11y/README.md +13 -0
  486. package/node_modules/@storybook/addon-a11y/dist/chunk-CEH6MNVV.mjs +3 -0
  487. package/node_modules/@storybook/addon-a11y/dist/index.d.ts +40 -0
  488. package/node_modules/@storybook/addon-a11y/dist/index.js +25 -0
  489. package/node_modules/@storybook/addon-a11y/dist/index.mjs +8 -0
  490. package/node_modules/@storybook/addon-a11y/dist/manager.js +11 -0
  491. package/node_modules/@storybook/addon-a11y/dist/matchers-7Z3WT2CE.mjs +16 -0
  492. package/node_modules/@storybook/addon-a11y/dist/matchers-TIWVOQAP.mjs +18 -0
  493. package/node_modules/@storybook/addon-a11y/dist/postinstall.js +69 -0
  494. package/node_modules/@storybook/addon-a11y/dist/preview.d.ts +25 -0
  495. package/node_modules/@storybook/addon-a11y/dist/preview.js +24 -0
  496. package/node_modules/@storybook/addon-a11y/dist/preview.mjs +7 -0
  497. package/node_modules/@storybook/addon-a11y/manager.js +1 -0
  498. package/node_modules/@storybook/addon-a11y/package.json +115 -0
  499. package/node_modules/@storybook/addon-a11y/preview.js +1 -0
  500. package/node_modules/@storybook/addon-docs/README.md +154 -0
  501. package/node_modules/@storybook/addon-docs/angular/README.md +256 -0
  502. package/node_modules/@storybook/addon-docs/angular/index.d.ts +1 -0
  503. package/node_modules/@storybook/addon-docs/angular/index.js +6 -0
  504. package/node_modules/@storybook/addon-docs/common/README.md +98 -0
  505. package/node_modules/@storybook/addon-docs/dist/DocsRenderer-CFRXHY34.mjs +2 -0
  506. package/node_modules/@storybook/addon-docs/dist/blocks.d.ts +2 -0
  507. package/node_modules/@storybook/addon-docs/dist/blocks.js +1 -0
  508. package/node_modules/@storybook/addon-docs/dist/blocks.mjs +4 -0
  509. package/node_modules/@storybook/addon-docs/dist/chunk-H6MOWX77.mjs +3 -0
  510. package/node_modules/@storybook/addon-docs/dist/chunk-NUUEMKO5.mjs +7 -0
  511. package/node_modules/@storybook/addon-docs/dist/chunk-PRSJUHPQ.mjs +5 -0
  512. package/node_modules/@storybook/addon-docs/dist/index.d.ts +198 -0
  513. package/node_modules/@storybook/addon-docs/dist/index.js +1 -0
  514. package/node_modules/@storybook/addon-docs/dist/index.mjs +9 -0
  515. package/node_modules/@storybook/addon-docs/dist/manager.d.ts +2 -0
  516. package/node_modules/@storybook/addon-docs/dist/manager.js +1 -0
  517. package/node_modules/@storybook/addon-docs/dist/manager.mjs +8 -0
  518. package/node_modules/@storybook/addon-docs/dist/mdx-loader.d.ts +5940 -0
  519. package/node_modules/@storybook/addon-docs/dist/mdx-loader.js +56 -0
  520. package/node_modules/@storybook/addon-docs/dist/mdx-loader.mjs +59 -0
  521. package/node_modules/@storybook/addon-docs/dist/preset.d.ts +20 -0
  522. package/node_modules/@storybook/addon-docs/dist/preset.js +53 -0
  523. package/node_modules/@storybook/addon-docs/dist/preview.d.ts +3 -0
  524. package/node_modules/@storybook/addon-docs/dist/preview.js +1 -0
  525. package/node_modules/@storybook/addon-docs/dist/preview.mjs +2 -0
  526. package/node_modules/@storybook/addon-docs/dist/shims/mdx-react-shim.d.ts +1 -0
  527. package/node_modules/@storybook/addon-docs/dist/shims/mdx-react-shim.js +1 -0
  528. package/node_modules/@storybook/addon-docs/dist/shims/mdx-react-shim.mjs +1 -0
  529. package/node_modules/@storybook/addon-docs/ember/README.md +153 -0
  530. package/node_modules/@storybook/addon-docs/ember/index.d.ts +1 -0
  531. package/node_modules/@storybook/addon-docs/ember/index.js +5 -0
  532. package/node_modules/@storybook/addon-docs/package.json +171 -0
  533. package/node_modules/@storybook/addon-docs/preset.js +1 -0
  534. package/node_modules/@storybook/addon-docs/preview.js +1 -0
  535. package/node_modules/@storybook/addon-docs/react/README.md +149 -0
  536. package/node_modules/@storybook/addon-docs/svelte/HOC.svelte +7 -0
  537. package/node_modules/@storybook/addon-docs/vue/README.md +152 -0
  538. package/node_modules/@storybook/addon-docs/web-components/README.md +131 -0
  539. package/node_modules/@storybook/addon-docs/web-components/index.js +1 -0
  540. package/node_modules/@storybook/addon-essentials/README.md +57 -0
  541. package/node_modules/@storybook/addon-essentials/dist/actions/manager.js +1 -0
  542. package/node_modules/@storybook/addon-essentials/dist/actions/preview.d.ts +7 -0
  543. package/node_modules/@storybook/addon-essentials/dist/actions/preview.js +12 -0
  544. package/node_modules/@storybook/addon-essentials/dist/actions/preview.mjs +1 -0
  545. package/node_modules/@storybook/addon-essentials/dist/backgrounds/manager.js +1 -0
  546. package/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.d.ts +1 -0
  547. package/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.js +12 -0
  548. package/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.mjs +1 -0
  549. package/node_modules/@storybook/addon-essentials/dist/controls/manager.js +1 -0
  550. package/node_modules/@storybook/addon-essentials/dist/docs/manager.js +1 -0
  551. package/node_modules/@storybook/addon-essentials/dist/docs/mdx-react-shim.js +12 -0
  552. package/node_modules/@storybook/addon-essentials/dist/docs/preset.js +14 -0
  553. package/node_modules/@storybook/addon-essentials/dist/docs/preview.d.ts +1 -0
  554. package/node_modules/@storybook/addon-essentials/dist/docs/preview.js +12 -0
  555. package/node_modules/@storybook/addon-essentials/dist/docs/preview.mjs +1 -0
  556. package/node_modules/@storybook/addon-essentials/dist/highlight/preview.d.ts +1 -0
  557. package/node_modules/@storybook/addon-essentials/dist/highlight/preview.js +12 -0
  558. package/node_modules/@storybook/addon-essentials/dist/highlight/preview.mjs +1 -0
  559. package/node_modules/@storybook/addon-essentials/dist/index.d.ts +5 -0
  560. package/node_modules/@storybook/addon-essentials/dist/index.js +42 -0
  561. package/node_modules/@storybook/addon-essentials/dist/index.mjs +12 -0
  562. package/node_modules/@storybook/addon-essentials/dist/measure/manager.js +1 -0
  563. package/node_modules/@storybook/addon-essentials/dist/measure/preview.d.ts +1 -0
  564. package/node_modules/@storybook/addon-essentials/dist/measure/preview.js +12 -0
  565. package/node_modules/@storybook/addon-essentials/dist/measure/preview.mjs +1 -0
  566. package/node_modules/@storybook/addon-essentials/dist/outline/manager.js +1 -0
  567. package/node_modules/@storybook/addon-essentials/dist/outline/preview.d.ts +1 -0
  568. package/node_modules/@storybook/addon-essentials/dist/outline/preview.js +12 -0
  569. package/node_modules/@storybook/addon-essentials/dist/outline/preview.mjs +1 -0
  570. package/node_modules/@storybook/addon-essentials/dist/preset.js +9 -0
  571. package/node_modules/@storybook/addon-essentials/dist/preview.d.ts +5 -0
  572. package/node_modules/@storybook/addon-essentials/dist/preview.js +42 -0
  573. package/node_modules/@storybook/addon-essentials/dist/preview.mjs +12 -0
  574. package/node_modules/@storybook/addon-essentials/dist/toolbars/manager.js +1 -0
  575. package/node_modules/@storybook/addon-essentials/dist/viewport/manager.js +1 -0
  576. package/node_modules/@storybook/addon-essentials/dist/viewport/preview.d.ts +1 -0
  577. package/node_modules/@storybook/addon-essentials/dist/viewport/preview.js +12 -0
  578. package/node_modules/@storybook/addon-essentials/dist/viewport/preview.mjs +1 -0
  579. package/node_modules/@storybook/addon-essentials/package.json +162 -0
  580. package/node_modules/@storybook/addon-essentials/preset.js +1 -0
  581. package/node_modules/@storybook/addon-interactions/README.md +57 -0
  582. package/node_modules/@storybook/addon-interactions/dist/index.d.ts +5 -0
  583. package/node_modules/@storybook/addon-interactions/dist/index.js +9 -0
  584. package/node_modules/@storybook/addon-interactions/dist/index.mjs +7 -0
  585. package/node_modules/@storybook/addon-interactions/dist/manager.css +1 -0
  586. package/node_modules/@storybook/addon-interactions/dist/manager.js +19 -0
  587. package/node_modules/@storybook/addon-interactions/dist/preset.js +9 -0
  588. package/node_modules/@storybook/addon-interactions/dist/preview.d.ts +20 -0
  589. package/node_modules/@storybook/addon-interactions/dist/preview.js +9 -0
  590. package/node_modules/@storybook/addon-interactions/dist/preview.mjs +6 -0
  591. package/node_modules/@storybook/addon-interactions/manager.js +1 -0
  592. package/node_modules/@storybook/addon-interactions/package.json +109 -0
  593. package/node_modules/@storybook/addon-interactions/preset.js +1 -0
  594. package/node_modules/@storybook/addon-interactions/preview.js +1 -0
  595. package/node_modules/@storybook/addon-links/README.md +147 -0
  596. package/node_modules/@storybook/addon-links/dist/chunk-DQW2J2JG.mjs +8 -0
  597. package/node_modules/@storybook/addon-links/dist/index.d.ts +20 -0
  598. package/node_modules/@storybook/addon-links/dist/index.js +16 -0
  599. package/node_modules/@storybook/addon-links/dist/index.mjs +7 -0
  600. package/node_modules/@storybook/addon-links/dist/manager.js +3 -0
  601. package/node_modules/@storybook/addon-links/dist/preview.d.ts +3 -0
  602. package/node_modules/@storybook/addon-links/dist/preview.js +10 -0
  603. package/node_modules/@storybook/addon-links/dist/preview.mjs +8 -0
  604. package/node_modules/@storybook/addon-links/dist/react/index.d.ts +24 -0
  605. package/node_modules/@storybook/addon-links/dist/react/index.js +15 -0
  606. package/node_modules/@storybook/addon-links/dist/react/index.mjs +6 -0
  607. package/node_modules/@storybook/addon-links/manager.js +1 -0
  608. package/node_modules/@storybook/addon-links/package.json +110 -0
  609. package/node_modules/@storybook/addon-links/preview.js +1 -0
  610. package/node_modules/@storybook/addon-links/react.d.ts +1 -0
  611. package/node_modules/@storybook/addon-links/react.js +3 -0
  612. package/node_modules/@storybook/addon-viewport/README.md +29 -0
  613. package/node_modules/@storybook/addon-viewport/dist/index.d.ts +311 -0
  614. package/node_modules/@storybook/addon-viewport/dist/index.js +12 -0
  615. package/node_modules/@storybook/addon-viewport/dist/index.mjs +5 -0
  616. package/node_modules/@storybook/addon-viewport/dist/manager.js +9 -0
  617. package/node_modules/@storybook/addon-viewport/dist/preview.d.ts +19 -0
  618. package/node_modules/@storybook/addon-viewport/dist/preview.js +5 -0
  619. package/node_modules/@storybook/addon-viewport/dist/preview.mjs +3 -0
  620. package/node_modules/@storybook/addon-viewport/manager.js +1 -0
  621. package/node_modules/@storybook/addon-viewport/package.json +98 -0
  622. package/node_modules/@storybook/addon-viewport/preview.js +1 -0
  623. package/node_modules/@storybook/blocks/README.md +23 -0
  624. package/node_modules/@storybook/blocks/dist/Color-YHDXOIA2.mjs +9 -0
  625. package/node_modules/@storybook/blocks/dist/chunk-2PTXLE6R.mjs +3 -0
  626. package/node_modules/@storybook/blocks/dist/index.d.ts +1032 -0
  627. package/node_modules/@storybook/blocks/dist/index.js +198 -0
  628. package/node_modules/@storybook/blocks/dist/index.mjs +214 -0
  629. package/node_modules/@storybook/blocks/package.json +86 -0
  630. package/node_modules/@storybook/manager-api/package.json +46 -0
  631. package/node_modules/@storybook/manager-api/shim.d.ts +2 -0
  632. package/node_modules/@storybook/manager-api/shim.js +1 -0
  633. package/node_modules/@storybook/manager-api/shim.mjs +1 -0
  634. package/node_modules/@storybook/react/README.md +1 -0
  635. package/node_modules/@storybook/react/dist/chunk-EWIU6LHT.mjs +56 -0
  636. package/node_modules/@storybook/react/dist/chunk-TENYCC3B.mjs +8 -0
  637. package/node_modules/@storybook/react/dist/chunk-XP5HYGXS.mjs +3 -0
  638. package/node_modules/@storybook/react/dist/chunk-ZGTCCPPZ.mjs +7 -0
  639. package/node_modules/@storybook/react/dist/entry-preview-docs.d.ts +20 -0
  640. package/node_modules/@storybook/react/dist/entry-preview-docs.js +47 -0
  641. package/node_modules/@storybook/react/dist/entry-preview-docs.mjs +2 -0
  642. package/node_modules/@storybook/react/dist/entry-preview-rsc.d.ts +7 -0
  643. package/node_modules/@storybook/react/dist/entry-preview-rsc.js +1 -0
  644. package/node_modules/@storybook/react/dist/entry-preview-rsc.mjs +5 -0
  645. package/node_modules/@storybook/react/dist/entry-preview.d.ts +19 -0
  646. package/node_modules/@storybook/react/dist/entry-preview.js +1 -0
  647. package/node_modules/@storybook/react/dist/entry-preview.mjs +2 -0
  648. package/node_modules/@storybook/react/dist/index.d.ts +91 -0
  649. package/node_modules/@storybook/react/dist/index.js +47 -0
  650. package/node_modules/@storybook/react/dist/index.mjs +11 -0
  651. package/node_modules/@storybook/react/dist/playwright.d.ts +1 -0
  652. package/node_modules/@storybook/react/dist/playwright.js +1 -0
  653. package/node_modules/@storybook/react/dist/playwright.mjs +2 -0
  654. package/node_modules/@storybook/react/dist/preset.d.ts +18 -0
  655. package/node_modules/@storybook/react/dist/preset.js +1 -0
  656. package/node_modules/@storybook/react/dist/preview.d.ts +199 -0
  657. package/node_modules/@storybook/react/dist/preview.js +47 -0
  658. package/node_modules/@storybook/react/dist/preview.mjs +4 -0
  659. package/node_modules/@storybook/react/dist/public-types-f2c70f25.d.ts +230 -0
  660. package/node_modules/@storybook/react/dist/types-5617c98e.d.ts +27 -0
  661. package/node_modules/@storybook/react/package.json +136 -0
  662. package/node_modules/@storybook/react/preset.js +1 -0
  663. package/node_modules/@storybook/react/template/cli/.eslintrc.json +5 -0
  664. package/node_modules/@storybook/react/template/cli/js/Button.jsx +39 -0
  665. package/node_modules/@storybook/react/template/cli/js/Button.stories.js +49 -0
  666. package/node_modules/@storybook/react/template/cli/js/Header.jsx +56 -0
  667. package/node_modules/@storybook/react/template/cli/js/Header.stories.js +29 -0
  668. package/node_modules/@storybook/react/template/cli/js/Page.jsx +69 -0
  669. package/node_modules/@storybook/react/template/cli/js/Page.stories.js +28 -0
  670. package/node_modules/@storybook/react/template/cli/ts-3-8/Button.stories.ts +53 -0
  671. package/node_modules/@storybook/react/template/cli/ts-3-8/Button.tsx +37 -0
  672. package/node_modules/@storybook/react/template/cli/ts-3-8/Header.stories.ts +33 -0
  673. package/node_modules/@storybook/react/template/cli/ts-3-8/Header.tsx +56 -0
  674. package/node_modules/@storybook/react/template/cli/ts-3-8/Page.stories.ts +32 -0
  675. package/node_modules/@storybook/react/template/cli/ts-3-8/Page.tsx +73 -0
  676. package/node_modules/@storybook/react/template/cli/ts-4-9/Button.stories.ts +53 -0
  677. package/node_modules/@storybook/react/template/cli/ts-4-9/Button.tsx +37 -0
  678. package/node_modules/@storybook/react/template/cli/ts-4-9/Header.stories.ts +33 -0
  679. package/node_modules/@storybook/react/template/cli/ts-4-9/Header.tsx +56 -0
  680. package/node_modules/@storybook/react/template/cli/ts-4-9/Page.stories.ts +32 -0
  681. package/node_modules/@storybook/react/template/cli/ts-4-9/Page.tsx +73 -0
  682. package/node_modules/@storybook/react-vite/README.md +3 -0
  683. package/node_modules/@storybook/react-vite/dist/index.d.ts +49 -0
  684. package/node_modules/@storybook/react-vite/dist/index.js +1 -0
  685. package/node_modules/@storybook/react-vite/dist/index.mjs +1 -0
  686. package/node_modules/@storybook/react-vite/dist/node/index.d.ts +9 -0
  687. package/node_modules/@storybook/react-vite/dist/node/index.js +1 -0
  688. package/node_modules/@storybook/react-vite/dist/node/index.mjs +3 -0
  689. package/node_modules/@storybook/react-vite/dist/preset.d.ts +10 -0
  690. package/node_modules/@storybook/react-vite/dist/preset.js +1 -0
  691. package/node_modules/@storybook/react-vite/package.json +111 -0
  692. package/node_modules/@storybook/react-vite/preset.js +1 -0
  693. package/node_modules/@storybook/test/README.md +41 -0
  694. package/node_modules/@storybook/test/dist/index.d.ts +186 -0
  695. package/node_modules/@storybook/test/dist/index.js +193 -0
  696. package/node_modules/@storybook/test/dist/index.mjs +199 -0
  697. package/node_modules/@storybook/test/package.json +85 -0
  698. package/node_modules/@storybook/theming/create.d.ts +2 -0
  699. package/node_modules/@storybook/theming/create.js +1 -0
  700. package/node_modules/@storybook/theming/create.mjs +1 -0
  701. package/node_modules/@storybook/theming/package.json +52 -0
  702. package/node_modules/@storybook/theming/shim.d.ts +2 -0
  703. package/node_modules/@storybook/theming/shim.js +1 -0
  704. package/node_modules/@storybook/theming/shim.mjs +1 -0
  705. package/node_modules/@testing-library/jest-dom/LICENSE +20 -0
  706. package/node_modules/@testing-library/jest-dom/README.md +1706 -0
  707. package/node_modules/@testing-library/jest-dom/dist/index.js +12 -0
  708. package/node_modules/@testing-library/jest-dom/dist/index.mjs +10 -0
  709. package/node_modules/@testing-library/jest-dom/dist/jest-globals.js +16 -0
  710. package/node_modules/@testing-library/jest-dom/dist/jest-globals.mjs +14 -0
  711. package/node_modules/@testing-library/jest-dom/dist/matchers-7fb38cd4.js +1945 -0
  712. package/node_modules/@testing-library/jest-dom/dist/matchers-c85aadf8.mjs +1914 -0
  713. package/node_modules/@testing-library/jest-dom/dist/matchers.js +42 -0
  714. package/node_modules/@testing-library/jest-dom/dist/matchers.mjs +8 -0
  715. package/node_modules/@testing-library/jest-dom/dist/vitest.js +16 -0
  716. package/node_modules/@testing-library/jest-dom/dist/vitest.mjs +14 -0
  717. package/node_modules/@testing-library/jest-dom/jest-globals.d.ts +1 -0
  718. package/node_modules/@testing-library/jest-dom/jest-globals.js +4 -0
  719. package/node_modules/@testing-library/jest-dom/matchers.d.ts +3 -0
  720. package/node_modules/@testing-library/jest-dom/matchers.js +2 -0
  721. package/node_modules/@testing-library/jest-dom/package.json +153 -0
  722. package/node_modules/@testing-library/jest-dom/types/__tests__/bun/bun-custom-expect-types.test.ts +100 -0
  723. package/node_modules/@testing-library/jest-dom/types/__tests__/bun/bun-types.test.ts +120 -0
  724. package/node_modules/@testing-library/jest-dom/types/__tests__/bun/tsconfig.json +9 -0
  725. package/node_modules/@testing-library/jest-dom/types/__tests__/jest/jest-custom-expect-types.test.ts +100 -0
  726. package/node_modules/@testing-library/jest-dom/types/__tests__/jest/jest-types.test.ts +119 -0
  727. package/node_modules/@testing-library/jest-dom/types/__tests__/jest/tsconfig.json +9 -0
  728. package/node_modules/@testing-library/jest-dom/types/__tests__/jest-globals/jest-globals-custom-expect-types.test.ts +97 -0
  729. package/node_modules/@testing-library/jest-dom/types/__tests__/jest-globals/jest-globals-types.test.ts +120 -0
  730. package/node_modules/@testing-library/jest-dom/types/__tests__/jest-globals/tsconfig.json +9 -0
  731. package/node_modules/@testing-library/jest-dom/types/__tests__/vitest/tsconfig.json +9 -0
  732. package/node_modules/@testing-library/jest-dom/types/__tests__/vitest/vitest-custom-expect-types.test.ts +97 -0
  733. package/node_modules/@testing-library/jest-dom/types/__tests__/vitest/vitest-types.test.ts +120 -0
  734. package/node_modules/@testing-library/jest-dom/types/bun.d.ts +11 -0
  735. package/node_modules/@testing-library/jest-dom/types/index.d.ts +1 -0
  736. package/node_modules/@testing-library/jest-dom/types/jest-globals.d.ts +11 -0
  737. package/node_modules/@testing-library/jest-dom/types/jest.d.ts +13 -0
  738. package/node_modules/@testing-library/jest-dom/types/matchers-standalone.d.ts +30 -0
  739. package/node_modules/@testing-library/jest-dom/types/matchers.d.ts +771 -0
  740. package/node_modules/@testing-library/jest-dom/types/vitest.d.ts +15 -0
  741. package/node_modules/@testing-library/jest-dom/vitest.d.ts +1 -0
  742. package/node_modules/@testing-library/jest-dom/vitest.js +4 -0
  743. package/node_modules/@testing-library/react/LICENSE +20 -0
  744. package/node_modules/@testing-library/react/README.md +688 -0
  745. package/node_modules/@testing-library/react/dist/@testing-library/react.cjs.js +532 -0
  746. package/node_modules/@testing-library/react/dist/@testing-library/react.esm.js +492 -0
  747. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.cjs.js +496 -0
  748. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.esm.js +456 -0
  749. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.js +13017 -0
  750. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.js.map +1 -0
  751. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.min.js +2 -0
  752. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.min.js.map +1 -0
  753. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.js +13053 -0
  754. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.js.map +1 -0
  755. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.min.js +2 -0
  756. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.min.js.map +1 -0
  757. package/node_modules/@testing-library/react/dist/act-compat.js +81 -0
  758. package/node_modules/@testing-library/react/dist/config.js +33 -0
  759. package/node_modules/@testing-library/react/dist/fire-event.js +70 -0
  760. package/node_modules/@testing-library/react/dist/index.js +52 -0
  761. package/node_modules/@testing-library/react/dist/pure.js +335 -0
  762. package/node_modules/@testing-library/react/dont-cleanup-after-each.js +1 -0
  763. package/node_modules/@testing-library/react/package.json +111 -0
  764. package/node_modules/@testing-library/react/pure.d.ts +1 -0
  765. package/node_modules/@testing-library/react/pure.js +2 -0
  766. package/node_modules/@testing-library/react/types/index.d.ts +257 -0
  767. package/node_modules/@testing-library/react/types/pure.d.ts +1 -0
  768. package/node_modules/@testing-library/user-event/LICENSE +20 -0
  769. package/node_modules/@testing-library/user-event/README.md +124 -0
  770. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/copy.js +22 -0
  771. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/cut.js +22 -0
  772. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/index.js +11 -0
  773. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/paste.js +25 -0
  774. package/node_modules/@testing-library/user-event/dist/cjs/convenience/click.js +35 -0
  775. package/node_modules/@testing-library/user-event/dist/cjs/convenience/hover.js +19 -0
  776. package/node_modules/@testing-library/user-event/dist/cjs/convenience/index.js +14 -0
  777. package/node_modules/@testing-library/user-event/dist/cjs/convenience/tab.js +7 -0
  778. package/node_modules/@testing-library/user-event/dist/cjs/document/UI.js +92 -0
  779. package/node_modules/@testing-library/user-event/dist/cjs/document/copySelection.js +29 -0
  780. package/node_modules/@testing-library/user-event/dist/cjs/document/getValueOrTextContent.js +18 -0
  781. package/node_modules/@testing-library/user-event/dist/cjs/document/index.js +17 -0
  782. package/node_modules/@testing-library/user-event/dist/cjs/document/interceptor.js +104 -0
  783. package/node_modules/@testing-library/user-event/dist/cjs/document/patchFocus.js +104 -0
  784. package/node_modules/@testing-library/user-event/dist/cjs/document/prepareDocument.js +58 -0
  785. package/node_modules/@testing-library/user-event/dist/cjs/document/trackValue.js +57 -0
  786. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/click.js +32 -0
  787. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/cut.js +14 -0
  788. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/index.js +13 -0
  789. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/keydown.js +128 -0
  790. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/keypress.js +51 -0
  791. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/keyup.js +17 -0
  792. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/paste.js +18 -0
  793. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/registry.js +5 -0
  794. package/node_modules/@testing-library/user-event/dist/cjs/event/createEvent.js +207 -0
  795. package/node_modules/@testing-library/user-event/dist/cjs/event/dispatchEvent.js +54 -0
  796. package/node_modules/@testing-library/user-event/dist/cjs/event/eventMap.js +281 -0
  797. package/node_modules/@testing-library/user-event/dist/cjs/event/focus.js +34 -0
  798. package/node_modules/@testing-library/user-event/dist/cjs/event/index.js +22 -0
  799. package/node_modules/@testing-library/user-event/dist/cjs/event/input.js +157 -0
  800. package/node_modules/@testing-library/user-event/dist/cjs/event/radio.js +27 -0
  801. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/getInputRange.js +18 -0
  802. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/getTargetTypeAndSelection.js +31 -0
  803. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/index.js +24 -0
  804. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/modifySelection.js +21 -0
  805. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/modifySelectionPerMouse.js +40 -0
  806. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/moveSelection.js +38 -0
  807. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/resolveCaretPosition.js +61 -0
  808. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/selectAll.js +38 -0
  809. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/setSelection.js +21 -0
  810. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/setSelectionPerMouse.js +81 -0
  811. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/setSelectionRange.js +31 -0
  812. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/updateSelectionOnFocus.js +40 -0
  813. package/node_modules/@testing-library/user-event/dist/cjs/event/types.js +2 -0
  814. package/node_modules/@testing-library/user-event/dist/cjs/event/wrapEvent.js +9 -0
  815. package/node_modules/@testing-library/user-event/dist/cjs/index.js +12 -0
  816. package/node_modules/@testing-library/user-event/dist/cjs/keyboard/index.js +40 -0
  817. package/node_modules/@testing-library/user-event/dist/cjs/keyboard/keyMap.js +178 -0
  818. package/node_modules/@testing-library/user-event/dist/cjs/keyboard/parseKeyDef.js +45 -0
  819. package/node_modules/@testing-library/user-event/dist/cjs/options.js +14 -0
  820. package/node_modules/@testing-library/user-event/dist/cjs/package.json +3 -0
  821. package/node_modules/@testing-library/user-event/dist/cjs/pointer/index.js +74 -0
  822. package/node_modules/@testing-library/user-event/dist/cjs/pointer/keyMap.js +33 -0
  823. package/node_modules/@testing-library/user-event/dist/cjs/pointer/parseKeyDef.js +23 -0
  824. package/node_modules/@testing-library/user-event/dist/cjs/setup/api.js +35 -0
  825. package/node_modules/@testing-library/user-event/dist/cjs/setup/directApi.js +75 -0
  826. package/node_modules/@testing-library/user-event/dist/cjs/setup/index.js +11 -0
  827. package/node_modules/@testing-library/user-event/dist/cjs/setup/setup.js +125 -0
  828. package/node_modules/@testing-library/user-event/dist/cjs/setup/wrapAsync.js +11 -0
  829. package/node_modules/@testing-library/user-event/dist/cjs/system/index.js +44 -0
  830. package/node_modules/@testing-library/user-event/dist/cjs/system/keyboard.js +169 -0
  831. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/buttons.js +84 -0
  832. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/device.js +34 -0
  833. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/index.js +159 -0
  834. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/mouse.js +207 -0
  835. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/pointer.js +131 -0
  836. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/shared.js +8 -0
  837. package/node_modules/@testing-library/user-event/dist/cjs/utility/clear.js +32 -0
  838. package/node_modules/@testing-library/user-event/dist/cjs/utility/index.js +14 -0
  839. package/node_modules/@testing-library/user-event/dist/cjs/utility/selectOptions.js +114 -0
  840. package/node_modules/@testing-library/user-event/dist/cjs/utility/type.js +23 -0
  841. package/node_modules/@testing-library/user-event/dist/cjs/utility/upload.js +62 -0
  842. package/node_modules/@testing-library/user-event/dist/cjs/utils/click/isClickableInput.js +20 -0
  843. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/Blob.js +16 -0
  844. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/Clipboard.js +169 -0
  845. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/DataTransfer.js +136 -0
  846. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/FileList.js +24 -0
  847. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/isContentEditable.js +18 -0
  848. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/isEditable.js +29 -0
  849. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/maxLength.js +26 -0
  850. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/setFiles.js +59 -0
  851. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/timeValue.js +40 -0
  852. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/cursor.js +126 -0
  853. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/getActiveElement.js +23 -0
  854. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/getTabDestination.js +80 -0
  855. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/isFocusable.js +9 -0
  856. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/selection.js +20 -0
  857. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/selector.js +14 -0
  858. package/node_modules/@testing-library/user-event/dist/cjs/utils/index.js +78 -0
  859. package/node_modules/@testing-library/user-event/dist/cjs/utils/keyDef/readNextDescriptor.js +92 -0
  860. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/cloneEvent.js +7 -0
  861. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/findClosest.js +14 -0
  862. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/getDocumentFromNode.js +10 -0
  863. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/getTreeDiff.js +25 -0
  864. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/getWindow.js +19 -0
  865. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isDescendantOrSelf.js +14 -0
  866. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isDisabled.js +33 -0
  867. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isElementType.js +20 -0
  868. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isVisible.js +19 -0
  869. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/level.js +17 -0
  870. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/wait.js +14 -0
  871. package/node_modules/@testing-library/user-event/dist/cjs/utils/pointer/cssPointerEvents.js +103 -0
  872. package/node_modules/@testing-library/user-event/dist/esm/clipboard/copy.js +20 -0
  873. package/node_modules/@testing-library/user-event/dist/esm/clipboard/cut.js +20 -0
  874. package/node_modules/@testing-library/user-event/dist/esm/clipboard/index.js +3 -0
  875. package/node_modules/@testing-library/user-event/dist/esm/clipboard/paste.js +23 -0
  876. package/node_modules/@testing-library/user-event/dist/esm/convenience/click.js +31 -0
  877. package/node_modules/@testing-library/user-event/dist/esm/convenience/hover.js +16 -0
  878. package/node_modules/@testing-library/user-event/dist/esm/convenience/index.js +3 -0
  879. package/node_modules/@testing-library/user-event/dist/esm/convenience/tab.js +5 -0
  880. package/node_modules/@testing-library/user-event/dist/esm/document/UI.js +79 -0
  881. package/node_modules/@testing-library/user-event/dist/esm/document/copySelection.js +27 -0
  882. package/node_modules/@testing-library/user-event/dist/esm/document/getValueOrTextContent.js +16 -0
  883. package/node_modules/@testing-library/user-event/dist/esm/document/index.js +4 -0
  884. package/node_modules/@testing-library/user-event/dist/esm/document/interceptor.js +99 -0
  885. package/node_modules/@testing-library/user-event/dist/esm/document/patchFocus.js +101 -0
  886. package/node_modules/@testing-library/user-event/dist/esm/document/prepareDocument.js +56 -0
  887. package/node_modules/@testing-library/user-event/dist/esm/document/trackValue.js +53 -0
  888. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/click.js +30 -0
  889. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/cut.js +12 -0
  890. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/index.js +7 -0
  891. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/keydown.js +126 -0
  892. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/keypress.js +49 -0
  893. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/keyup.js +15 -0
  894. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/paste.js +16 -0
  895. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/registry.js +3 -0
  896. package/node_modules/@testing-library/user-event/dist/esm/event/createEvent.js +205 -0
  897. package/node_modules/@testing-library/user-event/dist/esm/event/dispatchEvent.js +50 -0
  898. package/node_modules/@testing-library/user-event/dist/esm/event/eventMap.js +277 -0
  899. package/node_modules/@testing-library/user-event/dist/esm/event/focus.js +31 -0
  900. package/node_modules/@testing-library/user-event/dist/esm/event/index.js +7 -0
  901. package/node_modules/@testing-library/user-event/dist/esm/event/input.js +155 -0
  902. package/node_modules/@testing-library/user-event/dist/esm/event/radio.js +25 -0
  903. package/node_modules/@testing-library/user-event/dist/esm/event/selection/getInputRange.js +16 -0
  904. package/node_modules/@testing-library/user-event/dist/esm/event/selection/getTargetTypeAndSelection.js +29 -0
  905. package/node_modules/@testing-library/user-event/dist/esm/event/selection/index.js +9 -0
  906. package/node_modules/@testing-library/user-event/dist/esm/event/selection/modifySelection.js +19 -0
  907. package/node_modules/@testing-library/user-event/dist/esm/event/selection/modifySelectionPerMouse.js +38 -0
  908. package/node_modules/@testing-library/user-event/dist/esm/event/selection/moveSelection.js +36 -0
  909. package/node_modules/@testing-library/user-event/dist/esm/event/selection/resolveCaretPosition.js +59 -0
  910. package/node_modules/@testing-library/user-event/dist/esm/event/selection/selectAll.js +35 -0
  911. package/node_modules/@testing-library/user-event/dist/esm/event/selection/setSelection.js +19 -0
  912. package/node_modules/@testing-library/user-event/dist/esm/event/selection/setSelectionPerMouse.js +79 -0
  913. package/node_modules/@testing-library/user-event/dist/esm/event/selection/setSelectionRange.js +29 -0
  914. package/node_modules/@testing-library/user-event/dist/esm/event/selection/updateSelectionOnFocus.js +38 -0
  915. package/node_modules/@testing-library/user-event/dist/esm/event/types.js +1 -0
  916. package/node_modules/@testing-library/user-event/dist/esm/event/wrapEvent.js +7 -0
  917. package/node_modules/@testing-library/user-event/dist/esm/index.js +2 -0
  918. package/node_modules/@testing-library/user-event/dist/esm/keyboard/index.js +37 -0
  919. package/node_modules/@testing-library/user-event/dist/esm/keyboard/keyMap.js +176 -0
  920. package/node_modules/@testing-library/user-event/dist/esm/keyboard/parseKeyDef.js +43 -0
  921. package/node_modules/@testing-library/user-event/dist/esm/options.js +12 -0
  922. package/node_modules/@testing-library/user-event/dist/esm/package.json +3 -0
  923. package/node_modules/@testing-library/user-event/dist/esm/pointer/index.js +72 -0
  924. package/node_modules/@testing-library/user-event/dist/esm/pointer/keyMap.js +31 -0
  925. package/node_modules/@testing-library/user-event/dist/esm/pointer/parseKeyDef.js +21 -0
  926. package/node_modules/@testing-library/user-event/dist/esm/setup/api.js +33 -0
  927. package/node_modules/@testing-library/user-event/dist/esm/setup/directApi.js +58 -0
  928. package/node_modules/@testing-library/user-event/dist/esm/setup/index.js +9 -0
  929. package/node_modules/@testing-library/user-event/dist/esm/setup/setup.js +119 -0
  930. package/node_modules/@testing-library/user-event/dist/esm/setup/wrapAsync.js +9 -0
  931. package/node_modules/@testing-library/user-event/dist/esm/system/index.js +42 -0
  932. package/node_modules/@testing-library/user-event/dist/esm/system/keyboard.js +166 -0
  933. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/buttons.js +78 -0
  934. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/device.js +32 -0
  935. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/index.js +157 -0
  936. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/mouse.js +205 -0
  937. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/pointer.js +129 -0
  938. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/shared.js +6 -0
  939. package/node_modules/@testing-library/user-event/dist/esm/utility/clear.js +30 -0
  940. package/node_modules/@testing-library/user-event/dist/esm/utility/index.js +4 -0
  941. package/node_modules/@testing-library/user-event/dist/esm/utility/selectOptions.js +111 -0
  942. package/node_modules/@testing-library/user-event/dist/esm/utility/type.js +21 -0
  943. package/node_modules/@testing-library/user-event/dist/esm/utility/upload.js +60 -0
  944. package/node_modules/@testing-library/user-event/dist/esm/utils/click/isClickableInput.js +18 -0
  945. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/Blob.js +14 -0
  946. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/Clipboard.js +162 -0
  947. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/DataTransfer.js +133 -0
  948. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/FileList.js +22 -0
  949. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/isContentEditable.js +15 -0
  950. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/isEditable.js +26 -0
  951. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/maxLength.js +23 -0
  952. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/setFiles.js +57 -0
  953. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/timeValue.js +37 -0
  954. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/cursor.js +124 -0
  955. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/getActiveElement.js +20 -0
  956. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/getTabDestination.js +78 -0
  957. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/isFocusable.js +7 -0
  958. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/selection.js +17 -0
  959. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/selector.js +12 -0
  960. package/node_modules/@testing-library/user-event/dist/esm/utils/index.js +29 -0
  961. package/node_modules/@testing-library/user-event/dist/esm/utils/keyDef/readNextDescriptor.js +90 -0
  962. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/cloneEvent.js +5 -0
  963. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/findClosest.js +12 -0
  964. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/getDocumentFromNode.js +8 -0
  965. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/getTreeDiff.js +23 -0
  966. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/getWindow.js +17 -0
  967. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isDescendantOrSelf.js +12 -0
  968. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isDisabled.js +31 -0
  969. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isElementType.js +18 -0
  970. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isVisible.js +17 -0
  971. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/level.js +13 -0
  972. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/wait.js +12 -0
  973. package/node_modules/@testing-library/user-event/dist/esm/utils/pointer/cssPointerEvents.js +100 -0
  974. package/node_modules/@testing-library/user-event/dist/types/clipboard/copy.d.ts +2 -0
  975. package/node_modules/@testing-library/user-event/dist/types/clipboard/cut.d.ts +2 -0
  976. package/node_modules/@testing-library/user-event/dist/types/clipboard/index.d.ts +3 -0
  977. package/node_modules/@testing-library/user-event/dist/types/clipboard/paste.d.ts +2 -0
  978. package/node_modules/@testing-library/user-event/dist/types/convenience/click.d.ts +4 -0
  979. package/node_modules/@testing-library/user-event/dist/types/convenience/hover.d.ts +3 -0
  980. package/node_modules/@testing-library/user-event/dist/types/convenience/index.d.ts +3 -0
  981. package/node_modules/@testing-library/user-event/dist/types/convenience/tab.d.ts +4 -0
  982. package/node_modules/@testing-library/user-event/dist/types/document/UI.d.ts +42 -0
  983. package/node_modules/@testing-library/user-event/dist/types/document/copySelection.d.ts +1 -0
  984. package/node_modules/@testing-library/user-event/dist/types/document/getValueOrTextContent.d.ts +1 -0
  985. package/node_modules/@testing-library/user-event/dist/types/document/index.d.ts +5 -0
  986. package/node_modules/@testing-library/user-event/dist/types/document/interceptor.d.ts +19 -0
  987. package/node_modules/@testing-library/user-event/dist/types/document/patchFocus.d.ts +9 -0
  988. package/node_modules/@testing-library/user-event/dist/types/document/prepareDocument.d.ts +8 -0
  989. package/node_modules/@testing-library/user-event/dist/types/document/trackValue.d.ts +17 -0
  990. package/node_modules/@testing-library/user-event/dist/types/event/behavior/click.d.ts +1 -0
  991. package/node_modules/@testing-library/user-event/dist/types/event/behavior/cut.d.ts +1 -0
  992. package/node_modules/@testing-library/user-event/dist/types/event/behavior/index.d.ts +8 -0
  993. package/node_modules/@testing-library/user-event/dist/types/event/behavior/keydown.d.ts +1 -0
  994. package/node_modules/@testing-library/user-event/dist/types/event/behavior/keypress.d.ts +1 -0
  995. package/node_modules/@testing-library/user-event/dist/types/event/behavior/keyup.d.ts +1 -0
  996. package/node_modules/@testing-library/user-event/dist/types/event/behavior/paste.d.ts +1 -0
  997. package/node_modules/@testing-library/user-event/dist/types/event/behavior/registry.d.ts +9 -0
  998. package/node_modules/@testing-library/user-event/dist/types/event/createEvent.d.ts +2 -0
  999. package/node_modules/@testing-library/user-event/dist/types/event/dispatchEvent.d.ts +5 -0
  1000. package/node_modules/@testing-library/user-event/dist/types/event/eventMap.d.ts +265 -0
  1001. package/node_modules/@testing-library/user-event/dist/types/event/focus.d.ts +5 -0
  1002. package/node_modules/@testing-library/user-event/dist/types/event/index.d.ts +7 -0
  1003. package/node_modules/@testing-library/user-event/dist/types/event/input.d.ts +2 -0
  1004. package/node_modules/@testing-library/user-event/dist/types/event/radio.d.ts +4 -0
  1005. package/node_modules/@testing-library/user-event/dist/types/event/selection/getInputRange.d.ts +5 -0
  1006. package/node_modules/@testing-library/user-event/dist/types/event/selection/getTargetTypeAndSelection.d.ts +10 -0
  1007. package/node_modules/@testing-library/user-event/dist/types/event/selection/index.d.ts +15 -0
  1008. package/node_modules/@testing-library/user-event/dist/types/event/selection/modifySelection.d.ts +8 -0
  1009. package/node_modules/@testing-library/user-event/dist/types/event/selection/modifySelectionPerMouse.d.ts +7 -0
  1010. package/node_modules/@testing-library/user-event/dist/types/event/selection/moveSelection.d.ts +4 -0
  1011. package/node_modules/@testing-library/user-event/dist/types/event/selection/resolveCaretPosition.d.ts +8 -0
  1012. package/node_modules/@testing-library/user-event/dist/types/event/selection/selectAll.d.ts +5 -0
  1013. package/node_modules/@testing-library/user-event/dist/types/event/selection/setSelection.d.ts +10 -0
  1014. package/node_modules/@testing-library/user-event/dist/types/event/selection/setSelectionPerMouse.d.ts +8 -0
  1015. package/node_modules/@testing-library/user-event/dist/types/event/selection/setSelectionRange.d.ts +6 -0
  1016. package/node_modules/@testing-library/user-event/dist/types/event/selection/updateSelectionOnFocus.d.ts +5 -0
  1017. package/node_modules/@testing-library/user-event/dist/types/event/types.d.ts +20 -0
  1018. package/node_modules/@testing-library/user-event/dist/types/event/wrapEvent.d.ts +1 -0
  1019. package/node_modules/@testing-library/user-event/dist/types/index.d.ts +6 -0
  1020. package/node_modules/@testing-library/user-event/dist/types/keyboard/index.d.ts +3 -0
  1021. package/node_modules/@testing-library/user-event/dist/types/keyboard/keyMap.d.ts +5 -0
  1022. package/node_modules/@testing-library/user-event/dist/types/keyboard/parseKeyDef.d.ts +17 -0
  1023. package/node_modules/@testing-library/user-event/dist/types/options.d.ts +115 -0
  1024. package/node_modules/@testing-library/user-event/dist/types/pointer/index.d.ts +28 -0
  1025. package/node_modules/@testing-library/user-event/dist/types/pointer/keyMap.d.ts +2 -0
  1026. package/node_modules/@testing-library/user-event/dist/types/pointer/parseKeyDef.d.ts +6 -0
  1027. package/node_modules/@testing-library/user-event/dist/types/setup/api.d.ts +23 -0
  1028. package/node_modules/@testing-library/user-event/dist/types/setup/directApi.d.ts +24 -0
  1029. package/node_modules/@testing-library/user-event/dist/types/setup/index.d.ts +22 -0
  1030. package/node_modules/@testing-library/user-event/dist/types/setup/setup.d.ts +44 -0
  1031. package/node_modules/@testing-library/user-event/dist/types/setup/wrapAsync.d.ts +4 -0
  1032. package/node_modules/@testing-library/user-event/dist/types/system/index.d.ts +10 -0
  1033. package/node_modules/@testing-library/user-event/dist/types/system/keyboard.d.ts +50 -0
  1034. package/node_modules/@testing-library/user-event/dist/types/system/pointer/buttons.d.ts +23 -0
  1035. package/node_modules/@testing-library/user-event/dist/types/system/pointer/device.d.ts +8 -0
  1036. package/node_modules/@testing-library/user-event/dist/types/system/pointer/index.d.ts +21 -0
  1037. package/node_modules/@testing-library/user-event/dist/types/system/pointer/mouse.d.ts +31 -0
  1038. package/node_modules/@testing-library/user-event/dist/types/system/pointer/pointer.d.ts +32 -0
  1039. package/node_modules/@testing-library/user-event/dist/types/system/pointer/shared.d.ts +20 -0
  1040. package/node_modules/@testing-library/user-event/dist/types/utility/clear.d.ts +2 -0
  1041. package/node_modules/@testing-library/user-event/dist/types/utility/index.d.ts +4 -0
  1042. package/node_modules/@testing-library/user-event/dist/types/utility/selectOptions.d.ts +3 -0
  1043. package/node_modules/@testing-library/user-event/dist/types/utility/type.d.ts +9 -0
  1044. package/node_modules/@testing-library/user-event/dist/types/utility/upload.d.ts +5 -0
  1045. package/node_modules/@testing-library/user-event/dist/types/utils/click/isClickableInput.d.ts +15 -0
  1046. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/Blob.d.ts +3 -0
  1047. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/Clipboard.d.ts +11 -0
  1048. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/DataTransfer.d.ts +2 -0
  1049. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/FileList.d.ts +1 -0
  1050. package/node_modules/@testing-library/user-event/dist/types/utils/edit/isContentEditable.d.ts +7 -0
  1051. package/node_modules/@testing-library/user-event/dist/types/utils/edit/isEditable.d.ts +24 -0
  1052. package/node_modules/@testing-library/user-event/dist/types/utils/edit/maxLength.d.ts +14 -0
  1053. package/node_modules/@testing-library/user-event/dist/types/utils/edit/setFiles.d.ts +12 -0
  1054. package/node_modules/@testing-library/user-event/dist/types/utils/edit/timeValue.d.ts +4 -0
  1055. package/node_modules/@testing-library/user-event/dist/types/utils/focus/cursor.d.ts +9 -0
  1056. package/node_modules/@testing-library/user-event/dist/types/utils/focus/getActiveElement.d.ts +2 -0
  1057. package/node_modules/@testing-library/user-event/dist/types/utils/focus/getTabDestination.d.ts +1 -0
  1058. package/node_modules/@testing-library/user-event/dist/types/utils/focus/isFocusable.d.ts +1 -0
  1059. package/node_modules/@testing-library/user-event/dist/types/utils/focus/selection.d.ts +8 -0
  1060. package/node_modules/@testing-library/user-event/dist/types/utils/focus/selector.d.ts +1 -0
  1061. package/node_modules/@testing-library/user-event/dist/types/utils/index.d.ts +29 -0
  1062. package/node_modules/@testing-library/user-event/dist/types/utils/keyDef/readNextDescriptor.d.ts +21 -0
  1063. package/node_modules/@testing-library/user-event/dist/types/utils/misc/cloneEvent.d.ts +1 -0
  1064. package/node_modules/@testing-library/user-event/dist/types/utils/misc/findClosest.d.ts +1 -0
  1065. package/node_modules/@testing-library/user-event/dist/types/utils/misc/getDocumentFromNode.d.ts +1 -0
  1066. package/node_modules/@testing-library/user-event/dist/types/utils/misc/getTreeDiff.d.ts +1 -0
  1067. package/node_modules/@testing-library/user-event/dist/types/utils/misc/getWindow.d.ts +1 -0
  1068. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isDescendantOrSelf.d.ts +1 -0
  1069. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isDisabled.d.ts +1 -0
  1070. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isElementType.d.ts +5 -0
  1071. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isVisible.d.ts +1 -0
  1072. package/node_modules/@testing-library/user-event/dist/types/utils/misc/level.d.ts +8 -0
  1073. package/node_modules/@testing-library/user-event/dist/types/utils/misc/wait.d.ts +2 -0
  1074. package/node_modules/@testing-library/user-event/dist/types/utils/pointer/cssPointerEvents.d.ts +19 -0
  1075. package/node_modules/@testing-library/user-event/package.json +112 -0
  1076. package/node_modules/@types/node/LICENSE +21 -0
  1077. package/node_modules/@types/node/README.md +15 -0
  1078. package/node_modules/@types/node/assert/strict.d.ts +8 -0
  1079. package/node_modules/@types/node/assert.d.ts +1040 -0
  1080. package/node_modules/@types/node/async_hooks.d.ts +541 -0
  1081. package/node_modules/@types/node/buffer.d.ts +2363 -0
  1082. package/node_modules/@types/node/child_process.d.ts +1542 -0
  1083. package/node_modules/@types/node/cluster.d.ts +578 -0
  1084. package/node_modules/@types/node/console.d.ts +452 -0
  1085. package/node_modules/@types/node/constants.d.ts +19 -0
  1086. package/node_modules/@types/node/crypto.d.ts +4522 -0
  1087. package/node_modules/@types/node/dgram.d.ts +596 -0
  1088. package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
  1089. package/node_modules/@types/node/dns/promises.d.ts +473 -0
  1090. package/node_modules/@types/node/dns.d.ts +853 -0
  1091. package/node_modules/@types/node/dom-events.d.ts +124 -0
  1092. package/node_modules/@types/node/domain.d.ts +170 -0
  1093. package/node_modules/@types/node/events.d.ts +884 -0
  1094. package/node_modules/@types/node/fs/promises.d.ts +1245 -0
  1095. package/node_modules/@types/node/fs.d.ts +4317 -0
  1096. package/node_modules/@types/node/globals.d.ts +411 -0
  1097. package/node_modules/@types/node/globals.global.d.ts +1 -0
  1098. package/node_modules/@types/node/http.d.ts +1889 -0
  1099. package/node_modules/@types/node/http2.d.ts +2418 -0
  1100. package/node_modules/@types/node/https.d.ts +550 -0
  1101. package/node_modules/@types/node/index.d.ts +89 -0
  1102. package/node_modules/@types/node/inspector.d.ts +2746 -0
  1103. package/node_modules/@types/node/module.d.ts +315 -0
  1104. package/node_modules/@types/node/net.d.ts +996 -0
  1105. package/node_modules/@types/node/os.d.ts +495 -0
  1106. package/node_modules/@types/node/package.json +217 -0
  1107. package/node_modules/@types/node/path.d.ts +191 -0
  1108. package/node_modules/@types/node/perf_hooks.d.ts +645 -0
  1109. package/node_modules/@types/node/process.d.ts +1747 -0
  1110. package/node_modules/@types/node/punycode.d.ts +117 -0
  1111. package/node_modules/@types/node/querystring.d.ts +153 -0
  1112. package/node_modules/@types/node/readline/promises.d.ts +150 -0
  1113. package/node_modules/@types/node/readline.d.ts +540 -0
  1114. package/node_modules/@types/node/repl.d.ts +430 -0
  1115. package/node_modules/@types/node/sea.d.ts +153 -0
  1116. package/node_modules/@types/node/stream/consumers.d.ts +12 -0
  1117. package/node_modules/@types/node/stream/promises.d.ts +83 -0
  1118. package/node_modules/@types/node/stream/web.d.ts +367 -0
  1119. package/node_modules/@types/node/stream.d.ts +1707 -0
  1120. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  1121. package/node_modules/@types/node/test.d.ts +1470 -0
  1122. package/node_modules/@types/node/timers/promises.d.ts +97 -0
  1123. package/node_modules/@types/node/timers.d.ts +240 -0
  1124. package/node_modules/@types/node/tls.d.ts +1217 -0
  1125. package/node_modules/@types/node/trace_events.d.ts +197 -0
  1126. package/node_modules/@types/node/tty.d.ts +208 -0
  1127. package/node_modules/@types/node/url.d.ts +944 -0
  1128. package/node_modules/@types/node/util.d.ts +2276 -0
  1129. package/node_modules/@types/node/v8.d.ts +764 -0
  1130. package/node_modules/@types/node/vm.d.ts +921 -0
  1131. package/node_modules/@types/node/wasi.d.ts +181 -0
  1132. package/node_modules/@types/node/worker_threads.d.ts +691 -0
  1133. package/node_modules/@types/node/zlib.d.ts +530 -0
  1134. package/node_modules/@types/react/LICENSE +21 -0
  1135. package/node_modules/@types/react/README.md +15 -0
  1136. package/node_modules/@types/react/canary.d.ts +157 -0
  1137. package/node_modules/@types/react/experimental.d.ts +127 -0
  1138. package/node_modules/@types/react/global.d.ts +160 -0
  1139. package/node_modules/@types/react/index.d.ts +4537 -0
  1140. package/node_modules/@types/react/jsx-dev-runtime.d.ts +45 -0
  1141. package/node_modules/@types/react/jsx-runtime.d.ts +36 -0
  1142. package/node_modules/@types/react/package.json +210 -0
  1143. package/node_modules/@types/react/ts5.0/canary.d.ts +157 -0
  1144. package/node_modules/@types/react/ts5.0/experimental.d.ts +127 -0
  1145. package/node_modules/@types/react/ts5.0/global.d.ts +160 -0
  1146. package/node_modules/@types/react/ts5.0/index.d.ts +4524 -0
  1147. package/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +44 -0
  1148. package/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +35 -0
  1149. package/node_modules/@types/react-dom/LICENSE +21 -0
  1150. package/node_modules/@types/react-dom/README.md +16 -0
  1151. package/node_modules/@types/react-dom/canary.d.ts +185 -0
  1152. package/node_modules/@types/react-dom/client.d.ts +72 -0
  1153. package/node_modules/@types/react-dom/experimental.d.ts +36 -0
  1154. package/node_modules/@types/react-dom/index.d.ts +150 -0
  1155. package/node_modules/@types/react-dom/package.json +88 -0
  1156. package/node_modules/@types/react-dom/server.d.ts +131 -0
  1157. package/node_modules/@types/react-dom/test-utils/index.d.ts +402 -0
  1158. package/node_modules/@vitest/ui/LICENSE +21 -0
  1159. package/node_modules/@vitest/ui/README.md +21 -0
  1160. package/node_modules/@vitest/ui/dist/client/assets/index-9agQl9q3.js +35 -0
  1161. package/node_modules/@vitest/ui/dist/client/assets/index-fUmMsp0O.css +1 -0
  1162. package/node_modules/@vitest/ui/dist/client/bg.png +0 -0
  1163. package/node_modules/@vitest/ui/dist/client/favicon.svg +5 -0
  1164. package/node_modules/@vitest/ui/dist/client/index.html +26 -0
  1165. package/node_modules/@vitest/ui/dist/index.d.ts +6 -0
  1166. package/node_modules/@vitest/ui/dist/index.js +70 -0
  1167. package/node_modules/@vitest/ui/dist/reporter.js +109 -0
  1168. package/node_modules/@vitest/ui/package.json +89 -0
  1169. package/node_modules/@vitest/ui/reporter.d.ts +4 -0
  1170. package/node_modules/@vitest/ui/shim.d.ts +3 -0
  1171. package/package.json +13 -2
  1172. package/pnpm-lock.yaml +6986 -0
  1173. package/resources/tictoccroc/icons/colorLine/calendar-color-line.svg +4 -0
  1174. package/resources/tictoccroc/icons/colorLine/capacity-color-line.svg +6 -0
  1175. package/resources/tictoccroc/icons/colorLine/goods-color-line.svg +4 -0
  1176. package/resources/tictoccroc/icons/colorLine/index.ts +5 -0
  1177. package/resources/tictoccroc/icons/colorLine/kids-color-line.svg +5 -0
  1178. package/resources/tictoccroc/icons/colorLine/time-color-line.svg +4 -0
  1179. package/resources/tictoccroc/icons/emoji/average-plane-emoji.svg +13 -0
  1180. package/resources/tictoccroc/icons/emoji/excellent-plane-emoji.svg +13 -0
  1181. package/resources/tictoccroc/icons/emoji/good-plane-emoji.svg +13 -0
  1182. package/resources/tictoccroc/icons/emoji/index.ts +3 -0
  1183. package/resources/tictoccroc/icons/etc/cash-etc.svg +5 -0
  1184. package/resources/tictoccroc/icons/etc/check-etc.svg +4 -0
  1185. package/resources/tictoccroc/icons/etc/coupon-etc.svg +16 -0
  1186. package/resources/tictoccroc/icons/etc/index.ts +5 -0
  1187. package/resources/tictoccroc/icons/etc/point-etc.svg +5 -0
  1188. package/resources/tictoccroc/icons/etc/unscheduled-etc.svg +19 -0
  1189. package/resources/tictoccroc/icons/fill/alert-fill.svg +3 -0
  1190. package/resources/tictoccroc/icons/fill/alphabet-fill.svg +4 -0
  1191. package/resources/tictoccroc/icons/fill/apply-fill.svg +3 -0
  1192. package/resources/tictoccroc/icons/fill/arrow-down-fill.svg +3 -0
  1193. package/resources/tictoccroc/icons/fill/arrow-left-fill.svg +3 -0
  1194. package/resources/tictoccroc/icons/fill/arrow-right-fill.svg +3 -0
  1195. package/resources/tictoccroc/icons/fill/arrow-up-fill.svg +3 -0
  1196. package/resources/tictoccroc/icons/fill/certified-fill.svg +3 -0
  1197. package/resources/tictoccroc/icons/fill/chatting-fill.svg +3 -0
  1198. package/resources/tictoccroc/icons/fill/check-fill.svg +3 -0
  1199. package/resources/tictoccroc/icons/fill/clr-fill.svg +3 -0
  1200. package/resources/tictoccroc/icons/fill/complete-fill.svg +3 -0
  1201. package/resources/tictoccroc/icons/fill/home-fill.svg +3 -0
  1202. package/resources/tictoccroc/icons/fill/index.ts +26 -0
  1203. package/resources/tictoccroc/icons/fill/info-fill.svg +3 -0
  1204. package/resources/tictoccroc/icons/fill/invalid-fill.svg +3 -0
  1205. package/resources/tictoccroc/icons/fill/like-fill.svg +4 -0
  1206. package/resources/tictoccroc/icons/fill/location-fill.svg +3 -0
  1207. package/resources/tictoccroc/icons/fill/met-fill.svg +3 -0
  1208. package/resources/tictoccroc/icons/fill/ongoing-fill.svg +3 -0
  1209. package/resources/tictoccroc/icons/fill/review-fill.svg +3 -0
  1210. package/resources/tictoccroc/icons/fill/schedule-fill.svg +3 -0
  1211. package/resources/tictoccroc/icons/fill/search-fill.svg +3 -0
  1212. package/resources/tictoccroc/icons/fill/send-fill.svg +3 -0
  1213. package/resources/tictoccroc/icons/fill/time-fill.svg +3 -0
  1214. package/resources/tictoccroc/icons/fill/tooltip-fill.svg +3 -0
  1215. package/resources/tictoccroc/icons/fill/user-fill.svg +4 -0
  1216. package/resources/tictoccroc/icons/index.ts +5 -0
  1217. package/resources/tictoccroc/icons/line/alarm-line.svg +4 -0
  1218. package/resources/tictoccroc/icons/line/align-edit.svg +5 -0
  1219. package/resources/tictoccroc/icons/line/align-line.svg +4 -0
  1220. package/resources/tictoccroc/icons/line/apply-line.svg +7 -0
  1221. package/resources/tictoccroc/icons/line/archive-line.svg +3 -0
  1222. package/resources/tictoccroc/icons/line/arrow-back-line.svg +3 -0
  1223. package/resources/tictoccroc/icons/line/arrow-downward-line.svg +3 -0
  1224. package/resources/tictoccroc/icons/line/arrow-forward-line.svg +3 -0
  1225. package/resources/tictoccroc/icons/line/arrow-upward-line.svg +3 -0
  1226. package/resources/tictoccroc/icons/line/attach-line.svg +3 -0
  1227. package/resources/tictoccroc/icons/line/ban-line.svg +3 -0
  1228. package/resources/tictoccroc/icons/line/browser-line.svg +6 -0
  1229. package/resources/tictoccroc/icons/line/calendar-line.svg +3 -0
  1230. package/resources/tictoccroc/icons/line/call-line.svg +3 -0
  1231. package/resources/tictoccroc/icons/line/camera-line.svg +5 -0
  1232. package/resources/tictoccroc/icons/line/card-line.svg +3 -0
  1233. package/resources/tictoccroc/icons/line/cash-line.svg +4 -0
  1234. package/resources/tictoccroc/icons/line/certificate-line.svg +3 -0
  1235. package/resources/tictoccroc/icons/line/chat-line.svg +3 -0
  1236. package/resources/tictoccroc/icons/line/chatting-line.svg +7 -0
  1237. package/resources/tictoccroc/icons/line/check-line.svg +3 -0
  1238. package/resources/tictoccroc/icons/line/chevron-down-line.svg +3 -0
  1239. package/resources/tictoccroc/icons/line/chevron-left-line.svg +3 -0
  1240. package/resources/tictoccroc/icons/line/chevron-right-line.svg +3 -0
  1241. package/resources/tictoccroc/icons/line/chevron-up-line.svg +3 -0
  1242. package/resources/tictoccroc/icons/line/close-line.svg +3 -0
  1243. package/resources/tictoccroc/icons/line/copy-line.svg +3 -0
  1244. package/resources/tictoccroc/icons/line/delete-line.svg +6 -0
  1245. package/resources/tictoccroc/icons/line/download-line.svg +4 -0
  1246. package/resources/tictoccroc/icons/line/eye-invisible-line.svg +7 -0
  1247. package/resources/tictoccroc/icons/line/eye-visible-line.svg +3 -0
  1248. package/resources/tictoccroc/icons/line/filter-line.svg +5 -0
  1249. package/resources/tictoccroc/icons/line/fullview-line.svg +6 -0
  1250. package/resources/tictoccroc/icons/line/goods-line.svg +3 -0
  1251. package/resources/tictoccroc/icons/line/hamburger-line.svg +3 -0
  1252. package/resources/tictoccroc/icons/line/headphone-line.svg +3 -0
  1253. package/resources/tictoccroc/icons/line/home-line.svg +4 -0
  1254. package/resources/tictoccroc/icons/line/img-disable-line.svg +3 -0
  1255. package/resources/tictoccroc/icons/line/img-line.svg +4 -0
  1256. package/resources/tictoccroc/icons/line/index.ts +78 -0
  1257. package/resources/tictoccroc/icons/line/information-line.svg +4 -0
  1258. package/resources/tictoccroc/icons/line/instagram-line.svg +5 -0
  1259. package/resources/tictoccroc/icons/line/insurance-line.svg +4 -0
  1260. package/resources/tictoccroc/icons/line/kids-line.svg +6 -0
  1261. package/resources/tictoccroc/icons/line/like-line.svg +4 -0
  1262. package/resources/tictoccroc/icons/line/link-line.svg +5 -0
  1263. package/resources/tictoccroc/icons/line/list-line.svg +8 -0
  1264. package/resources/tictoccroc/icons/line/location-line.svg +4 -0
  1265. package/resources/tictoccroc/icons/line/match-type-line.svg +4 -0
  1266. package/resources/tictoccroc/icons/line/met-line.svg +4 -0
  1267. package/resources/tictoccroc/icons/line/minus-line.svg +3 -0
  1268. package/resources/tictoccroc/icons/line/mobile-line.svg +4 -0
  1269. package/resources/tictoccroc/icons/line/modify-line.svg +4 -0
  1270. package/resources/tictoccroc/icons/line/money-line.svg +4 -0
  1271. package/resources/tictoccroc/icons/line/monthly-line.svg +14 -0
  1272. package/resources/tictoccroc/icons/line/more-line.svg +6 -0
  1273. package/resources/tictoccroc/icons/line/parking-line.svg +5 -0
  1274. package/resources/tictoccroc/icons/line/plus-line.svg +3 -0
  1275. package/resources/tictoccroc/icons/line/receipt-line.svg +5 -0
  1276. package/resources/tictoccroc/icons/line/reset-line.svg +3 -0
  1277. package/resources/tictoccroc/icons/line/review-line.svg +3 -0
  1278. package/resources/tictoccroc/icons/line/schedule-line.svg +13 -0
  1279. package/resources/tictoccroc/icons/line/search-line.svg +3 -0
  1280. package/resources/tictoccroc/icons/line/setting-line.svg +4 -0
  1281. package/resources/tictoccroc/icons/line/share-line.svg +5 -0
  1282. package/resources/tictoccroc/icons/line/sms-line.svg +4 -0
  1283. package/resources/tictoccroc/icons/line/sound-line.svg +5 -0
  1284. package/resources/tictoccroc/icons/line/sound-off-line.svg +4 -0
  1285. package/resources/tictoccroc/icons/line/special-line.svg +4 -0
  1286. package/resources/tictoccroc/icons/line/time-line.svg +4 -0
  1287. package/resources/tictoccroc/icons/line/toy-line.svg +3 -0
  1288. package/resources/tictoccroc/icons/line/university-line.svg +3 -0
  1289. package/resources/tictoccroc/icons/line/upload-line.svg +4 -0
  1290. package/resources/tictoccroc/icons/line/user-line.svg +6 -0
  1291. package/resources/tictoccroc/icons/line/video-camera-line.svg +4 -0
  1292. package/resources/tictoccroc/icons/line/warning1-line.svg +5 -0
  1293. package/resources/tictoccroc/icons/line/warning2-line.svg +4 -0
  1294. package/resources/tictoccroc/icons/line/weekly-line.svg +7 -0
  1295. package/resources/tictoccroc/icons/line/wifi-line.svg +6 -0
  1296. package/stories/Introduction.mdx +113 -0
  1297. package/stories/foundations/tictoccroc-parent.mdx +189 -0
  1298. package/stories/foundations/tictoccroc-teacher.mdx +189 -0
  1299. package/themes/tictoccroc/colors/background.ts +9 -0
  1300. package/themes/tictoccroc/colors/blue.ts +16 -0
  1301. package/themes/tictoccroc/colors/classType.ts +12 -0
  1302. package/themes/tictoccroc/colors/etc.ts +12 -0
  1303. package/themes/tictoccroc/colors/green.ts +16 -0
  1304. package/themes/tictoccroc/colors/grey.ts +18 -0
  1305. package/themes/tictoccroc/colors/index.ts +8 -0
  1306. package/themes/tictoccroc/colors/pink.ts +16 -0
  1307. package/themes/tictoccroc/colors/yellow.ts +16 -0
  1308. package/themes/tictoccroc/index.ts +5 -0
  1309. package/themes/tictoccroc/parentLight.ts +65 -0
  1310. package/themes/tictoccroc/teacherLight.ts +65 -0
  1311. package/themes/tictoccroc/typography/body.ts +76 -0
  1312. package/themes/tictoccroc/typography/caption.ts +111 -0
  1313. package/themes/tictoccroc/typography/display.ts +90 -0
  1314. package/themes/tictoccroc/typography/headline.ts +132 -0
  1315. package/themes/tictoccroc/typography/index.ts +4 -0
  1316. package/tsconfig.json +32 -0
  1317. package/typings/color.ts +37 -0
  1318. package/typings/component.ts +59 -0
  1319. package/typings/index.ts +7 -0
  1320. package/typings/theme/core.ts +72 -0
  1321. package/typings/theme/tictoccroc.ts +29 -0
  1322. package/typings/typography.ts +30 -0
  1323. package/typings/utility.ts +20 -0
  1324. package/utils/convertNumberToCSSValue.ts +12 -0
  1325. package/utils/debounce/debounce.ts +17 -0
  1326. package/utils/getContrastRatio/getContrastRatio.test.ts +19 -0
  1327. package/utils/getContrastRatio/getContrastRatio.ts +12 -0
  1328. package/utils/getContrastingTextColor/getContrastingTextColor.test.ts +27 -0
  1329. package/utils/getContrastingTextColor/getContrastingTextColor.ts +33 -0
  1330. package/utils/getIconLabel/getIconLabel.ts +128 -0
  1331. package/utils/getInterpolation/getInterpolation.ts +16 -0
  1332. package/utils/getPaletteColor/getPaletteColor.test.ts +26 -0
  1333. package/utils/getPaletteColor/getPaletteColor.ts +71 -0
  1334. package/utils/getRelativeLuminance/getRelativeLuminance.test.ts +23 -0
  1335. package/utils/getRelativeLuminance/getRelativeLuminance.ts +7 -0
  1336. package/utils/getSibling/getSibling.ts +27 -0
  1337. package/utils/hexToRgb/hexToRgb.test.ts +28 -0
  1338. package/utils/hexToRgb/hexToRgb.ts +15 -0
  1339. package/vite.config.mts +196 -0
  1340. package/vitest.setup.ts +7 -0
  1341. package/DatePicker/DatePicker.cjs +0 -100
  1342. package/DatePicker/DatePicker.es.js +0 -810
  1343. package/Icon/Icon.cjs +0 -5
  1344. package/Icon/Icon.es.js +0 -82
  1345. package/Tab/Tab.cjs +0 -18
  1346. package/Tab/Tab.es.js +0 -183
  1347. package/resources/tictoccroc/icons/index.ts-BPirIj0F.js +0 -238
  1348. package/resources/tictoccroc/icons/index.ts-DGZWXCgv.cjs +0 -1
  1349. package/resources/tictoccroc/icons/line/index.d.ts +0 -77
  1350. package/utils/getIconLabel/getIconLabel.cjs +0 -1
  1351. package/utils/getIconLabel/getIconLabel.es.js +0 -124
  1352. /package/{Accordion → dist/Accordion}/Accordion.cjs +0 -0
  1353. /package/{Accordion → dist/Accordion}/Accordion.d.ts +0 -0
  1354. /package/{Accordion → dist/Accordion}/Accordion.es.js +0 -0
  1355. /package/{Accordion → dist/Accordion}/Accordion.stories.d.ts +0 -0
  1356. /package/{Accordion → dist/Accordion}/index.cjs +0 -0
  1357. /package/{Accordion → dist/Accordion}/index.d.ts +0 -0
  1358. /package/{Accordion → dist/Accordion}/index.es.js +0 -0
  1359. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.cjs +0 -0
  1360. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.d.ts +0 -0
  1361. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.es.js +0 -0
  1362. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.stories.d.ts +0 -0
  1363. /package/{Autocomplete → dist/Autocomplete}/index.cjs +0 -0
  1364. /package/{Autocomplete → dist/Autocomplete}/index.d.ts +0 -0
  1365. /package/{Autocomplete → dist/Autocomplete}/index.es.js +0 -0
  1366. /package/{Backdrop → dist/Backdrop}/Backdrop.cjs +0 -0
  1367. /package/{Backdrop → dist/Backdrop}/Backdrop.d.ts +0 -0
  1368. /package/{Backdrop → dist/Backdrop}/Backdrop.es.js +0 -0
  1369. /package/{Backdrop → dist/Backdrop}/Backdrop.stories.d.ts +0 -0
  1370. /package/{Backdrop → dist/Backdrop}/index.cjs +0 -0
  1371. /package/{Backdrop → dist/Backdrop}/index.d.ts +0 -0
  1372. /package/{Backdrop → dist/Backdrop}/index.es.js +0 -0
  1373. /package/{Badge → dist/Badge}/Badge.cjs +0 -0
  1374. /package/{Badge → dist/Badge}/Badge.d.ts +0 -0
  1375. /package/{Badge → dist/Badge}/Badge.es.js +0 -0
  1376. /package/{Badge → dist/Badge}/Badge.stories.d.ts +0 -0
  1377. /package/{Badge → dist/Badge}/index.cjs +0 -0
  1378. /package/{Badge → dist/Badge}/index.d.ts +0 -0
  1379. /package/{Badge → dist/Badge}/index.es.js +0 -0
  1380. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.cjs +0 -0
  1381. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.d.ts +0 -0
  1382. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.es.js +0 -0
  1383. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.stories.d.ts +0 -0
  1384. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/BottomSheetAction.cjs +0 -0
  1385. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/BottomSheetAction.d.ts +0 -0
  1386. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/BottomSheetAction.es.js +0 -0
  1387. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/index.cjs +0 -0
  1388. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/index.d.ts +0 -0
  1389. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/index.es.js +0 -0
  1390. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/BottomSheetContent.cjs +0 -0
  1391. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/BottomSheetContent.d.ts +0 -0
  1392. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/BottomSheetContent.es.js +0 -0
  1393. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/index.cjs +0 -0
  1394. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/index.d.ts +0 -0
  1395. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/index.es.js +0 -0
  1396. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/BottomSheetText.cjs +0 -0
  1397. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/BottomSheetText.d.ts +0 -0
  1398. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/BottomSheetText.es.js +0 -0
  1399. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/index.cjs +0 -0
  1400. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/index.d.ts +0 -0
  1401. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/index.es.js +0 -0
  1402. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/BottomSheetTitle.cjs +0 -0
  1403. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/BottomSheetTitle.d.ts +0 -0
  1404. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/BottomSheetTitle.es.js +0 -0
  1405. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/index.cjs +0 -0
  1406. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/index.d.ts +0 -0
  1407. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/index.es.js +0 -0
  1408. /package/{BottomSheet → dist/BottomSheet}/index.cjs +0 -0
  1409. /package/{BottomSheet → dist/BottomSheet}/index.d.ts +0 -0
  1410. /package/{BottomSheet → dist/BottomSheet}/index.es.js +0 -0
  1411. /package/{Box → dist/Box}/Box.cjs +0 -0
  1412. /package/{Box → dist/Box}/Box.d.ts +0 -0
  1413. /package/{Box → dist/Box}/Box.es.js +0 -0
  1414. /package/{Box → dist/Box}/Box.stories.d.ts +0 -0
  1415. /package/{Box → dist/Box}/index.cjs +0 -0
  1416. /package/{Box → dist/Box}/index.d.ts +0 -0
  1417. /package/{Box → dist/Box}/index.es.js +0 -0
  1418. /package/{Button → dist/Button}/Button.cjs +0 -0
  1419. /package/{Button → dist/Button}/Button.d.ts +0 -0
  1420. /package/{Button → dist/Button}/Button.es.js +0 -0
  1421. /package/{Button → dist/Button}/Button.stories.d.ts +0 -0
  1422. /package/{Button → dist/Button}/index.cjs +0 -0
  1423. /package/{Button → dist/Button}/index.d.ts +0 -0
  1424. /package/{Button → dist/Button}/index.es.js +0 -0
  1425. /package/{Card → dist/Card}/Card.cjs +0 -0
  1426. /package/{Card → dist/Card}/Card.d.ts +0 -0
  1427. /package/{Card → dist/Card}/Card.es.js +0 -0
  1428. /package/{Card → dist/Card}/Card.stories.d.ts +0 -0
  1429. /package/{Card → dist/Card}/index.cjs +0 -0
  1430. /package/{Card → dist/Card}/index.d.ts +0 -0
  1431. /package/{Card → dist/Card}/index.es.js +0 -0
  1432. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.cjs +0 -0
  1433. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.d.ts +0 -0
  1434. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.es.js +0 -0
  1435. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.stories.d.ts +0 -0
  1436. /package/{ChainPicker → dist/ChainPicker}/index.cjs +0 -0
  1437. /package/{ChainPicker → dist/ChainPicker}/index.d.ts +0 -0
  1438. /package/{ChainPicker → dist/ChainPicker}/index.es.js +0 -0
  1439. /package/{Checkbox → dist/Checkbox}/Checkbox.cjs +0 -0
  1440. /package/{Checkbox → dist/Checkbox}/Checkbox.d.ts +0 -0
  1441. /package/{Checkbox → dist/Checkbox}/Checkbox.es.js +0 -0
  1442. /package/{Checkbox → dist/Checkbox}/Checkbox.stories.d.ts +0 -0
  1443. /package/{Checkbox → dist/Checkbox}/index.cjs +0 -0
  1444. /package/{Checkbox → dist/Checkbox}/index.d.ts +0 -0
  1445. /package/{Checkbox → dist/Checkbox}/index.es.js +0 -0
  1446. /package/{Chip → dist/Chip}/Chip.cjs +0 -0
  1447. /package/{Chip → dist/Chip}/Chip.d.ts +0 -0
  1448. /package/{Chip → dist/Chip}/Chip.es.js +0 -0
  1449. /package/{Chip → dist/Chip}/Chip.stories.d.ts +0 -0
  1450. /package/{Chip → dist/Chip}/index.cjs +0 -0
  1451. /package/{Chip → dist/Chip}/index.d.ts +0 -0
  1452. /package/{Chip → dist/Chip}/index.es.js +0 -0
  1453. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.cjs +0 -0
  1454. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.d.ts +0 -0
  1455. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.es.js +0 -0
  1456. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.stories.d.ts +0 -0
  1457. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/index.cjs +0 -0
  1458. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/index.d.ts +0 -0
  1459. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/index.es.js +0 -0
  1460. /package/{ClickAwayListener → dist/ClickAwayListener}/ClickAwayListener.cjs +0 -0
  1461. /package/{ClickAwayListener → dist/ClickAwayListener}/ClickAwayListener.d.ts +0 -0
  1462. /package/{ClickAwayListener → dist/ClickAwayListener}/ClickAwayListener.es.js +0 -0
  1463. /package/{ClickAwayListener → dist/ClickAwayListener}/index.cjs +0 -0
  1464. /package/{ClickAwayListener → dist/ClickAwayListener}/index.d.ts +0 -0
  1465. /package/{ClickAwayListener → dist/ClickAwayListener}/index.es.js +0 -0
  1466. /package/{DatePicker → dist/DatePicker}/DatePicker.d.ts +0 -0
  1467. /package/{DatePicker → dist/DatePicker}/DatePicker.stories.d.ts +0 -0
  1468. /package/{DatePicker → dist/DatePicker}/EventDot/EventDot.cjs +0 -0
  1469. /package/{DatePicker → dist/DatePicker}/EventDot/EventDot.d.ts +0 -0
  1470. /package/{DatePicker → dist/DatePicker}/EventDot/EventDot.es.js +0 -0
  1471. /package/{DatePicker → dist/DatePicker}/EventDot/index.cjs +0 -0
  1472. /package/{DatePicker → dist/DatePicker}/EventDot/index.d.ts +0 -0
  1473. /package/{DatePicker → dist/DatePicker}/EventDot/index.es.js +0 -0
  1474. /package/{DatePicker → dist/DatePicker}/EventDotGroup/EventDotGroup.cjs +0 -0
  1475. /package/{DatePicker → dist/DatePicker}/EventDotGroup/EventDotGroup.d.ts +0 -0
  1476. /package/{DatePicker → dist/DatePicker}/EventDotGroup/EventDotGroup.es.js +0 -0
  1477. /package/{DatePicker → dist/DatePicker}/EventDotGroup/index.cjs +0 -0
  1478. /package/{DatePicker → dist/DatePicker}/EventDotGroup/index.d.ts +0 -0
  1479. /package/{DatePicker → dist/DatePicker}/EventDotGroup/index.es.js +0 -0
  1480. /package/{DatePicker → dist/DatePicker}/index.cjs +0 -0
  1481. /package/{DatePicker → dist/DatePicker}/index.d.ts +0 -0
  1482. /package/{DatePicker → dist/DatePicker}/index.es.js +0 -0
  1483. /package/{Dialog → dist/Dialog}/Dialog.cjs +0 -0
  1484. /package/{Dialog → dist/Dialog}/Dialog.d.ts +0 -0
  1485. /package/{Dialog → dist/Dialog}/Dialog.es.js +0 -0
  1486. /package/{Dialog → dist/Dialog}/Dialog.stories.d.ts +0 -0
  1487. /package/{Dialog → dist/Dialog}/DialogAction/DialogAction.cjs +0 -0
  1488. /package/{Dialog → dist/Dialog}/DialogAction/DialogAction.d.ts +0 -0
  1489. /package/{Dialog → dist/Dialog}/DialogAction/DialogAction.es.js +0 -0
  1490. /package/{Dialog → dist/Dialog}/DialogAction/index.cjs +0 -0
  1491. /package/{Dialog → dist/Dialog}/DialogAction/index.d.ts +0 -0
  1492. /package/{Dialog → dist/Dialog}/DialogAction/index.es.js +0 -0
  1493. /package/{Dialog → dist/Dialog}/DialogContent/DialogContent.cjs +0 -0
  1494. /package/{Dialog → dist/Dialog}/DialogContent/DialogContent.d.ts +0 -0
  1495. /package/{Dialog → dist/Dialog}/DialogContent/DialogContent.es.js +0 -0
  1496. /package/{Dialog → dist/Dialog}/DialogContent/index.cjs +0 -0
  1497. /package/{Dialog → dist/Dialog}/DialogContent/index.d.ts +0 -0
  1498. /package/{Dialog → dist/Dialog}/DialogContent/index.es.js +0 -0
  1499. /package/{Dialog → dist/Dialog}/DialogText/DialogText.cjs +0 -0
  1500. /package/{Dialog → dist/Dialog}/DialogText/DialogText.d.ts +0 -0
  1501. /package/{Dialog → dist/Dialog}/DialogText/DialogText.es.js +0 -0
  1502. /package/{Dialog → dist/Dialog}/DialogText/index.cjs +0 -0
  1503. /package/{Dialog → dist/Dialog}/DialogText/index.d.ts +0 -0
  1504. /package/{Dialog → dist/Dialog}/DialogText/index.es.js +0 -0
  1505. /package/{Dialog → dist/Dialog}/DialogTitle/DialogTitle.cjs +0 -0
  1506. /package/{Dialog → dist/Dialog}/DialogTitle/DialogTitle.d.ts +0 -0
  1507. /package/{Dialog → dist/Dialog}/DialogTitle/DialogTitle.es.js +0 -0
  1508. /package/{Dialog → dist/Dialog}/DialogTitle/index.cjs +0 -0
  1509. /package/{Dialog → dist/Dialog}/DialogTitle/index.d.ts +0 -0
  1510. /package/{Dialog → dist/Dialog}/DialogTitle/index.es.js +0 -0
  1511. /package/{Dialog → dist/Dialog}/index.cjs +0 -0
  1512. /package/{Dialog → dist/Dialog}/index.d.ts +0 -0
  1513. /package/{Dialog → dist/Dialog}/index.es.js +0 -0
  1514. /package/{Flexbox → dist/Flexbox}/Flexbox.cjs +0 -0
  1515. /package/{Flexbox → dist/Flexbox}/Flexbox.d.ts +0 -0
  1516. /package/{Flexbox → dist/Flexbox}/Flexbox.es.js +0 -0
  1517. /package/{Flexbox → dist/Flexbox}/Flexbox.stories.d.ts +0 -0
  1518. /package/{Flexbox → dist/Flexbox}/index.cjs +0 -0
  1519. /package/{Flexbox → dist/Flexbox}/index.d.ts +0 -0
  1520. /package/{Flexbox → dist/Flexbox}/index.es.js +0 -0
  1521. /package/{FocusBoundary → dist/FocusBoundary}/FocusBoundary.cjs +0 -0
  1522. /package/{FocusBoundary → dist/FocusBoundary}/FocusBoundary.d.ts +0 -0
  1523. /package/{FocusBoundary → dist/FocusBoundary}/FocusBoundary.es.js +0 -0
  1524. /package/{FocusBoundary → dist/FocusBoundary}/index.cjs +0 -0
  1525. /package/{FocusBoundary → dist/FocusBoundary}/index.d.ts +0 -0
  1526. /package/{FocusBoundary → dist/FocusBoundary}/index.es.js +0 -0
  1527. /package/{FormControlText → dist/FormControlText}/FormControlText.cjs +0 -0
  1528. /package/{FormControlText → dist/FormControlText}/FormControlText.d.ts +0 -0
  1529. /package/{FormControlText → dist/FormControlText}/FormControlText.es.js +0 -0
  1530. /package/{FormControlText → dist/FormControlText}/FormControlText.stories.d.ts +0 -0
  1531. /package/{FormControlText → dist/FormControlText}/index.cjs +0 -0
  1532. /package/{FormControlText → dist/FormControlText}/index.d.ts +0 -0
  1533. /package/{FormControlText → dist/FormControlText}/index.es.js +0 -0
  1534. /package/{Icon → dist/Icon}/Icon.d.ts +0 -0
  1535. /package/{Icon → dist/Icon}/Icon.stories.d.ts +0 -0
  1536. /package/{Icon → dist/Icon}/index.cjs +0 -0
  1537. /package/{Icon → dist/Icon}/index.d.ts +0 -0
  1538. /package/{Icon → dist/Icon}/index.es.js +0 -0
  1539. /package/{IconButton → dist/IconButton}/IconButton.cjs +0 -0
  1540. /package/{IconButton → dist/IconButton}/IconButton.d.ts +0 -0
  1541. /package/{IconButton → dist/IconButton}/IconButton.es.js +0 -0
  1542. /package/{IconButton → dist/IconButton}/IconButton.stories.d.ts +0 -0
  1543. /package/{IconButton → dist/IconButton}/index.cjs +0 -0
  1544. /package/{IconButton → dist/IconButton}/index.d.ts +0 -0
  1545. /package/{IconButton → dist/IconButton}/index.es.js +0 -0
  1546. /package/{Label → dist/Label}/Label.cjs +0 -0
  1547. /package/{Label → dist/Label}/Label.d.ts +0 -0
  1548. /package/{Label → dist/Label}/Label.es.js +0 -0
  1549. /package/{Label → dist/Label}/Label.stories.d.ts +0 -0
  1550. /package/{Label → dist/Label}/index.cjs +0 -0
  1551. /package/{Label → dist/Label}/index.d.ts +0 -0
  1552. /package/{Label → dist/Label}/index.es.js +0 -0
  1553. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.cjs +0 -0
  1554. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.d.ts +0 -0
  1555. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.es.js +0 -0
  1556. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.stories.d.ts +0 -0
  1557. /package/{LineProgressIndicator → dist/LineProgressIndicator}/index.cjs +0 -0
  1558. /package/{LineProgressIndicator → dist/LineProgressIndicator}/index.d.ts +0 -0
  1559. /package/{LineProgressIndicator → dist/LineProgressIndicator}/index.es.js +0 -0
  1560. /package/{Menu → dist/Menu}/Menu.cjs +0 -0
  1561. /package/{Menu → dist/Menu}/Menu.d.ts +0 -0
  1562. /package/{Menu → dist/Menu}/Menu.es.js +0 -0
  1563. /package/{Menu → dist/Menu}/Menu.stories.d.ts +0 -0
  1564. /package/{Menu → dist/Menu}/MenuBlock/MenuBlock.cjs +0 -0
  1565. /package/{Menu → dist/Menu}/MenuBlock/MenuBlock.d.ts +0 -0
  1566. /package/{Menu → dist/Menu}/MenuBlock/MenuBlock.es.js +0 -0
  1567. /package/{Menu → dist/Menu}/MenuBlock/index.cjs +0 -0
  1568. /package/{Menu → dist/Menu}/MenuBlock/index.d.ts +0 -0
  1569. /package/{Menu → dist/Menu}/MenuBlock/index.es.js +0 -0
  1570. /package/{Menu → dist/Menu}/MenuButton/MenuButton.cjs +0 -0
  1571. /package/{Menu → dist/Menu}/MenuButton/MenuButton.d.ts +0 -0
  1572. /package/{Menu → dist/Menu}/MenuButton/MenuButton.es.js +0 -0
  1573. /package/{Menu → dist/Menu}/MenuButton/index.cjs +0 -0
  1574. /package/{Menu → dist/Menu}/MenuButton/index.d.ts +0 -0
  1575. /package/{Menu → dist/Menu}/MenuButton/index.es.js +0 -0
  1576. /package/{Menu → dist/Menu}/index.cjs +0 -0
  1577. /package/{Menu → dist/Menu}/index.d.ts +0 -0
  1578. /package/{Menu → dist/Menu}/index.es.js +0 -0
  1579. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.cjs +0 -0
  1580. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.d.ts +0 -0
  1581. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.es.js +0 -0
  1582. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.stories.d.ts +0 -0
  1583. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/NumberKeypadBlock.cjs +0 -0
  1584. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/NumberKeypadBlock.d.ts +0 -0
  1585. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/NumberKeypadBlock.es.js +0 -0
  1586. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/index.cjs +0 -0
  1587. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/index.d.ts +0 -0
  1588. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/index.es.js +0 -0
  1589. /package/{NumberKeypad → dist/NumberKeypad}/index.cjs +0 -0
  1590. /package/{NumberKeypad → dist/NumberKeypad}/index.d.ts +0 -0
  1591. /package/{NumberKeypad → dist/NumberKeypad}/index.es.js +0 -0
  1592. /package/{PageControl → dist/PageControl}/PageControl.cjs +0 -0
  1593. /package/{PageControl → dist/PageControl}/PageControl.d.ts +0 -0
  1594. /package/{PageControl → dist/PageControl}/PageControl.es.js +0 -0
  1595. /package/{PageControl → dist/PageControl}/PageControl.stories.d.ts +0 -0
  1596. /package/{PageControl → dist/PageControl}/index.cjs +0 -0
  1597. /package/{PageControl → dist/PageControl}/index.d.ts +0 -0
  1598. /package/{PageControl → dist/PageControl}/index.es.js +0 -0
  1599. /package/{Radio → dist/Radio}/Radio.cjs +0 -0
  1600. /package/{Radio → dist/Radio}/Radio.d.ts +0 -0
  1601. /package/{Radio → dist/Radio}/Radio.es.js +0 -0
  1602. /package/{Radio → dist/Radio}/Radio.stories.d.ts +0 -0
  1603. /package/{Radio → dist/Radio}/index.cjs +0 -0
  1604. /package/{Radio → dist/Radio}/index.d.ts +0 -0
  1605. /package/{Radio → dist/Radio}/index.es.js +0 -0
  1606. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.cjs +0 -0
  1607. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.d.ts +0 -0
  1608. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.es.js +0 -0
  1609. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.stories.d.ts +0 -0
  1610. /package/{RadioGroup → dist/RadioGroup}/index.cjs +0 -0
  1611. /package/{RadioGroup → dist/RadioGroup}/index.d.ts +0 -0
  1612. /package/{RadioGroup → dist/RadioGroup}/index.es.js +0 -0
  1613. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.cjs +0 -0
  1614. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.d.ts +0 -0
  1615. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.es.js +0 -0
  1616. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.stories.d.ts +0 -0
  1617. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/SegmentedButtonBlock.cjs +0 -0
  1618. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/SegmentedButtonBlock.d.ts +0 -0
  1619. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/SegmentedButtonBlock.es.js +0 -0
  1620. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/index.cjs +0 -0
  1621. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/index.d.ts +0 -0
  1622. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/index.es.js +0 -0
  1623. /package/{SegmentedButton → dist/SegmentedButton}/index.cjs +0 -0
  1624. /package/{SegmentedButton → dist/SegmentedButton}/index.d.ts +0 -0
  1625. /package/{SegmentedButton → dist/SegmentedButton}/index.es.js +0 -0
  1626. /package/{Select → dist/Select}/Option/Option.cjs +0 -0
  1627. /package/{Select → dist/Select}/Option/Option.d.ts +0 -0
  1628. /package/{Select → dist/Select}/Option/Option.es.js +0 -0
  1629. /package/{Select → dist/Select}/Option/index.cjs +0 -0
  1630. /package/{Select → dist/Select}/Option/index.d.ts +0 -0
  1631. /package/{Select → dist/Select}/Option/index.es.js +0 -0
  1632. /package/{Select → dist/Select}/Select.cjs +0 -0
  1633. /package/{Select → dist/Select}/Select.d.ts +0 -0
  1634. /package/{Select → dist/Select}/Select.es.js +0 -0
  1635. /package/{Select → dist/Select}/Select.stories.d.ts +0 -0
  1636. /package/{Select → dist/Select}/index.cjs +0 -0
  1637. /package/{Select → dist/Select}/index.d.ts +0 -0
  1638. /package/{Select → dist/Select}/index.es.js +0 -0
  1639. /package/{Skeleton → dist/Skeleton}/Skeleton.cjs +0 -0
  1640. /package/{Skeleton → dist/Skeleton}/Skeleton.d.ts +0 -0
  1641. /package/{Skeleton → dist/Skeleton}/Skeleton.es.js +0 -0
  1642. /package/{Skeleton → dist/Skeleton}/Skeleton.stories.d.ts +0 -0
  1643. /package/{Skeleton → dist/Skeleton}/index.cjs +0 -0
  1644. /package/{Skeleton → dist/Skeleton}/index.d.ts +0 -0
  1645. /package/{Skeleton → dist/Skeleton}/index.es.js +0 -0
  1646. /package/{Slider → dist/Slider}/Slider.cjs +0 -0
  1647. /package/{Slider → dist/Slider}/Slider.d.ts +0 -0
  1648. /package/{Slider → dist/Slider}/Slider.es.js +0 -0
  1649. /package/{Slider → dist/Slider}/Slider.stories.d.ts +0 -0
  1650. /package/{Slider → dist/Slider}/index.cjs +0 -0
  1651. /package/{Slider → dist/Slider}/index.d.ts +0 -0
  1652. /package/{Slider → dist/Slider}/index.es.js +0 -0
  1653. /package/{Snackbar → dist/Snackbar}/Snackbar.cjs +0 -0
  1654. /package/{Snackbar → dist/Snackbar}/Snackbar.d.ts +0 -0
  1655. /package/{Snackbar → dist/Snackbar}/Snackbar.es.js +0 -0
  1656. /package/{Snackbar → dist/Snackbar}/Snackbar.stories.d.ts +0 -0
  1657. /package/{Snackbar → dist/Snackbar}/index.cjs +0 -0
  1658. /package/{Snackbar → dist/Snackbar}/index.d.ts +0 -0
  1659. /package/{Snackbar → dist/Snackbar}/index.es.js +0 -0
  1660. /package/{Switch → dist/Switch}/Switch.cjs +0 -0
  1661. /package/{Switch → dist/Switch}/Switch.d.ts +0 -0
  1662. /package/{Switch → dist/Switch}/Switch.es.js +0 -0
  1663. /package/{Switch → dist/Switch}/Switch.stories.d.ts +0 -0
  1664. /package/{Switch → dist/Switch}/index.cjs +0 -0
  1665. /package/{Switch → dist/Switch}/index.d.ts +0 -0
  1666. /package/{Switch → dist/Switch}/index.es.js +0 -0
  1667. /package/{Tab → dist/Tab}/Tab.d.ts +0 -0
  1668. /package/{Tab → dist/Tab}/Tab.stories.d.ts +0 -0
  1669. /package/{Tab → dist/Tab}/TabBlock/TabBlock.cjs +0 -0
  1670. /package/{Tab → dist/Tab}/TabBlock/TabBlock.d.ts +0 -0
  1671. /package/{Tab → dist/Tab}/TabBlock/TabBlock.es.js +0 -0
  1672. /package/{Tab → dist/Tab}/TabBlock/index.cjs +0 -0
  1673. /package/{Tab → dist/Tab}/TabBlock/index.d.ts +0 -0
  1674. /package/{Tab → dist/Tab}/TabBlock/index.es.js +0 -0
  1675. /package/{Tab → dist/Tab}/index.cjs +0 -0
  1676. /package/{Tab → dist/Tab}/index.d.ts +0 -0
  1677. /package/{Tab → dist/Tab}/index.es.js +0 -0
  1678. /package/{TextArea → dist/TextArea}/TextArea.cjs +0 -0
  1679. /package/{TextArea → dist/TextArea}/TextArea.d.ts +0 -0
  1680. /package/{TextArea → dist/TextArea}/TextArea.es.js +0 -0
  1681. /package/{TextArea → dist/TextArea}/TextArea.stories.d.ts +0 -0
  1682. /package/{TextArea → dist/TextArea}/index.cjs +0 -0
  1683. /package/{TextArea → dist/TextArea}/index.d.ts +0 -0
  1684. /package/{TextArea → dist/TextArea}/index.es.js +0 -0
  1685. /package/{TextField → dist/TextField}/TextField.cjs +0 -0
  1686. /package/{TextField → dist/TextField}/TextField.d.ts +0 -0
  1687. /package/{TextField → dist/TextField}/TextField.es.js +0 -0
  1688. /package/{TextField → dist/TextField}/TextField.stories.d.ts +0 -0
  1689. /package/{TextField → dist/TextField}/index.cjs +0 -0
  1690. /package/{TextField → dist/TextField}/index.d.ts +0 -0
  1691. /package/{TextField → dist/TextField}/index.es.js +0 -0
  1692. /package/{Tooltip → dist/Tooltip}/Tooltip.cjs +0 -0
  1693. /package/{Tooltip → dist/Tooltip}/Tooltip.d.ts +0 -0
  1694. /package/{Tooltip → dist/Tooltip}/Tooltip.es.js +0 -0
  1695. /package/{Tooltip → dist/Tooltip}/Tooltip.stories.d.ts +0 -0
  1696. /package/{Tooltip → dist/Tooltip}/index.cjs +0 -0
  1697. /package/{Tooltip → dist/Tooltip}/index.d.ts +0 -0
  1698. /package/{Tooltip → dist/Tooltip}/index.es.js +0 -0
  1699. /package/{Typography → dist/Typography}/Typography.cjs +0 -0
  1700. /package/{Typography → dist/Typography}/Typography.d.ts +0 -0
  1701. /package/{Typography → dist/Typography}/Typography.es.js +0 -0
  1702. /package/{Typography → dist/Typography}/Typography.stories.d.ts +0 -0
  1703. /package/{Typography → dist/Typography}/index.cjs +0 -0
  1704. /package/{Typography → dist/Typography}/index.d.ts +0 -0
  1705. /package/{Typography → dist/Typography}/index.es.js +0 -0
  1706. /package/{core → dist/core}/GlobalStyle.cjs +0 -0
  1707. /package/{core → dist/core}/GlobalStyle.d.ts +0 -0
  1708. /package/{core → dist/core}/GlobalStyle.es.js +0 -0
  1709. /package/{core → dist/core}/ThemeContext.cjs +0 -0
  1710. /package/{core → dist/core}/ThemeContext.d.ts +0 -0
  1711. /package/{core → dist/core}/ThemeContext.es.js +0 -0
  1712. /package/{core → dist/core}/ThemeProvider.cjs +0 -0
  1713. /package/{core → dist/core}/ThemeProvider.d.ts +0 -0
  1714. /package/{core → dist/core}/ThemeProvider.es.js +0 -0
  1715. /package/{core → dist/core}/useTheme.cjs +0 -0
  1716. /package/{core → dist/core}/useTheme.d.ts +0 -0
  1717. /package/{core → dist/core}/useTheme.es.js +0 -0
  1718. /package/{hooks → dist/hooks}/index.cjs +0 -0
  1719. /package/{hooks → dist/hooks}/index.d.ts +0 -0
  1720. /package/{hooks → dist/hooks}/index.es.js +0 -0
  1721. /package/{hooks → dist/hooks}/useCheckHasFocus/useCheckHasFocus.cjs +0 -0
  1722. /package/{hooks → dist/hooks}/useCheckHasFocus/useCheckHasFocus.d.ts +0 -0
  1723. /package/{hooks → dist/hooks}/useCheckHasFocus/useCheckHasFocus.es.js +0 -0
  1724. /package/{hooks → dist/hooks}/useCheckHoverPossible/useCheckHoverPossible.cjs +0 -0
  1725. /package/{hooks → dist/hooks}/useCheckHoverPossible/useCheckHoverPossible.d.ts +0 -0
  1726. /package/{hooks → dist/hooks}/useCheckHoverPossible/useCheckHoverPossible.es.js +0 -0
  1727. /package/{hooks → dist/hooks}/useCheckKeyboardMode/useCheckKeyboardMode.cjs +0 -0
  1728. /package/{hooks → dist/hooks}/useCheckKeyboardMode/useCheckKeyboardMode.d.ts +0 -0
  1729. /package/{hooks → dist/hooks}/useCheckKeyboardMode/useCheckKeyboardMode.es.js +0 -0
  1730. /package/{hooks → dist/hooks}/useFocusBoundary/useFocusBoundary.cjs +0 -0
  1731. /package/{hooks → dist/hooks}/useFocusBoundary/useFocusBoundary.d.ts +0 -0
  1732. /package/{hooks → dist/hooks}/useFocusBoundary/useFocusBoundary.es.js +0 -0
  1733. /package/{index.cjs → dist/index.cjs} +0 -0
  1734. /package/{index.d.ts → dist/index.d.ts} +0 -0
  1735. /package/{index.es.js → dist/index.es.js} +0 -0
  1736. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/calendar-color-line.svg-B_vYjqIZ.js +0 -0
  1737. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/calendar-color-line.svg-BtUQ4TKP.cjs +0 -0
  1738. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/capacity-color-line.svg-BQo3SZhS.cjs +0 -0
  1739. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/capacity-color-line.svg-oT5B8THh.js +0 -0
  1740. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/goods-color-line.svg-CT8jVC5v.js +0 -0
  1741. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/goods-color-line.svg-Dz9RB5RV.cjs +0 -0
  1742. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/index.d.ts +0 -0
  1743. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/index.ts-Dyvby5gX.cjs +0 -0
  1744. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/index.ts-l0sNRNKZ.js +0 -0
  1745. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/kids-color-line.svg-BF7M2ymg.cjs +0 -0
  1746. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/kids-color-line.svg-CZDUwvTf.js +0 -0
  1747. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/time-color-line.svg-K7igWiF7.js +0 -0
  1748. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/time-color-line.svg-lvcsdtRd.cjs +0 -0
  1749. /package/{resources → dist/resources}/tictoccroc/icons/emoji/average-plane-emoji.svg-1B3oSCfr.js +0 -0
  1750. /package/{resources → dist/resources}/tictoccroc/icons/emoji/average-plane-emoji.svg-Ddpo9mEE.cjs +0 -0
  1751. /package/{resources → dist/resources}/tictoccroc/icons/emoji/excellent-plane-emoji.svg-Bq_nM8Tm.js +0 -0
  1752. /package/{resources → dist/resources}/tictoccroc/icons/emoji/excellent-plane-emoji.svg-CSFc2vsd.cjs +0 -0
  1753. /package/{resources → dist/resources}/tictoccroc/icons/emoji/good-plane-emoji.svg-BShQn-co.cjs +0 -0
  1754. /package/{resources → dist/resources}/tictoccroc/icons/emoji/good-plane-emoji.svg-Bve6hTZH.js +0 -0
  1755. /package/{resources → dist/resources}/tictoccroc/icons/emoji/index.d.ts +0 -0
  1756. /package/{resources → dist/resources}/tictoccroc/icons/emoji/index.ts-Dyvby5gX.cjs +0 -0
  1757. /package/{resources → dist/resources}/tictoccroc/icons/emoji/index.ts-l0sNRNKZ.js +0 -0
  1758. /package/{resources → dist/resources}/tictoccroc/icons/etc/cash-etc.svg-BE9-4t5W.cjs +0 -0
  1759. /package/{resources → dist/resources}/tictoccroc/icons/etc/cash-etc.svg-CvAOzEdq.js +0 -0
  1760. /package/{resources → dist/resources}/tictoccroc/icons/etc/check-etc.svg-6o7_QHlK.cjs +0 -0
  1761. /package/{resources → dist/resources}/tictoccroc/icons/etc/check-etc.svg-CeWjWVqv.js +0 -0
  1762. /package/{resources → dist/resources}/tictoccroc/icons/etc/coupon-etc.svg-BYpSMvLr.js +0 -0
  1763. /package/{resources → dist/resources}/tictoccroc/icons/etc/coupon-etc.svg-DB4JIfi8.cjs +0 -0
  1764. /package/{resources → dist/resources}/tictoccroc/icons/etc/index.d.ts +0 -0
  1765. /package/{resources → dist/resources}/tictoccroc/icons/etc/index.ts-Dyvby5gX.cjs +0 -0
  1766. /package/{resources → dist/resources}/tictoccroc/icons/etc/index.ts-l0sNRNKZ.js +0 -0
  1767. /package/{resources → dist/resources}/tictoccroc/icons/etc/point-etc.svg-CAEUCvfM.cjs +0 -0
  1768. /package/{resources → dist/resources}/tictoccroc/icons/etc/point-etc.svg-DZ31KNBj.js +0 -0
  1769. /package/{resources → dist/resources}/tictoccroc/icons/etc/unscheduled-etc.svg-C9TZ0hvI.js +0 -0
  1770. /package/{resources → dist/resources}/tictoccroc/icons/etc/unscheduled-etc.svg-D-47KeXg.cjs +0 -0
  1771. /package/{resources → dist/resources}/tictoccroc/icons/fill/alert-fill.svg-BJrM_goo.js +0 -0
  1772. /package/{resources → dist/resources}/tictoccroc/icons/fill/alert-fill.svg-C8QjfUUX.cjs +0 -0
  1773. /package/{resources → dist/resources}/tictoccroc/icons/fill/alphabet-fill.svg-CvfRsdBW.js +0 -0
  1774. /package/{resources → dist/resources}/tictoccroc/icons/fill/alphabet-fill.svg-HBXWjzrC.cjs +0 -0
  1775. /package/{resources → dist/resources}/tictoccroc/icons/fill/apply-fill.svg-CmRhMN1w.js +0 -0
  1776. /package/{resources → dist/resources}/tictoccroc/icons/fill/apply-fill.svg-DRpGrJGw.cjs +0 -0
  1777. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-down-fill.svg-C30f0N0F.js +0 -0
  1778. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-down-fill.svg-VKh4yV7q.cjs +0 -0
  1779. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-left-fill.svg-CdGognG9.js +0 -0
  1780. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-left-fill.svg-DVd7uVkk.cjs +0 -0
  1781. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-right-fill.svg-C3fI1iEy.js +0 -0
  1782. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-right-fill.svg-CkH6pq8F.cjs +0 -0
  1783. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-up-fill.svg-CEHHUpG_.js +0 -0
  1784. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-up-fill.svg-DWbcv7JX.cjs +0 -0
  1785. /package/{resources → dist/resources}/tictoccroc/icons/fill/certified-fill.svg-DA375i9-.cjs +0 -0
  1786. /package/{resources → dist/resources}/tictoccroc/icons/fill/certified-fill.svg-DBC-EEKD.js +0 -0
  1787. /package/{resources → dist/resources}/tictoccroc/icons/fill/chatting-fill.svg-CVjv4Kr7.js +0 -0
  1788. /package/{resources → dist/resources}/tictoccroc/icons/fill/chatting-fill.svg-HaX5-_VL.cjs +0 -0
  1789. /package/{resources → dist/resources}/tictoccroc/icons/fill/check-fill.svg-0_5PrDLC.js +0 -0
  1790. /package/{resources → dist/resources}/tictoccroc/icons/fill/check-fill.svg-BKKTgIa3.cjs +0 -0
  1791. /package/{resources → dist/resources}/tictoccroc/icons/fill/clr-fill.svg-Cn-I8j7d.js +0 -0
  1792. /package/{resources → dist/resources}/tictoccroc/icons/fill/clr-fill.svg-DuLFHwKc.cjs +0 -0
  1793. /package/{resources → dist/resources}/tictoccroc/icons/fill/complete-fill.svg-DhQki4Tw.cjs +0 -0
  1794. /package/{resources → dist/resources}/tictoccroc/icons/fill/complete-fill.svg-cERkJmCb.js +0 -0
  1795. /package/{resources → dist/resources}/tictoccroc/icons/fill/home-fill.svg-CxFGWK0L.cjs +0 -0
  1796. /package/{resources → dist/resources}/tictoccroc/icons/fill/home-fill.svg-D3lzGMV2.js +0 -0
  1797. /package/{resources → dist/resources}/tictoccroc/icons/fill/index.d.ts +0 -0
  1798. /package/{resources → dist/resources}/tictoccroc/icons/fill/index.ts-Dyvby5gX.cjs +0 -0
  1799. /package/{resources → dist/resources}/tictoccroc/icons/fill/index.ts-l0sNRNKZ.js +0 -0
  1800. /package/{resources → dist/resources}/tictoccroc/icons/fill/info-fill.svg-CwgxQGwL.js +0 -0
  1801. /package/{resources → dist/resources}/tictoccroc/icons/fill/info-fill.svg-DkEX99Sy.cjs +0 -0
  1802. /package/{resources → dist/resources}/tictoccroc/icons/fill/invalid-fill.svg-CJJ-xmGJ.cjs +0 -0
  1803. /package/{resources → dist/resources}/tictoccroc/icons/fill/invalid-fill.svg-D-87fL2g.js +0 -0
  1804. /package/{resources → dist/resources}/tictoccroc/icons/fill/like-fill.svg-Cx1cz0ZV.js +0 -0
  1805. /package/{resources → dist/resources}/tictoccroc/icons/fill/like-fill.svg-DnL66ApL.cjs +0 -0
  1806. /package/{resources → dist/resources}/tictoccroc/icons/fill/location-fill.svg-DfSHAnsd.js +0 -0
  1807. /package/{resources → dist/resources}/tictoccroc/icons/fill/location-fill.svg-Die9mxQH.cjs +0 -0
  1808. /package/{resources → dist/resources}/tictoccroc/icons/fill/met-fill.svg-B09QdWd-.cjs +0 -0
  1809. /package/{resources → dist/resources}/tictoccroc/icons/fill/met-fill.svg-BYSmsKBw.js +0 -0
  1810. /package/{resources → dist/resources}/tictoccroc/icons/fill/ongoing-fill.svg-BWY0Pepo.js +0 -0
  1811. /package/{resources → dist/resources}/tictoccroc/icons/fill/ongoing-fill.svg-D9OuoEPD.cjs +0 -0
  1812. /package/{resources → dist/resources}/tictoccroc/icons/fill/review-fill.svg-C356jYYw.js +0 -0
  1813. /package/{resources → dist/resources}/tictoccroc/icons/fill/review-fill.svg-Ci8MN4eI.cjs +0 -0
  1814. /package/{resources → dist/resources}/tictoccroc/icons/fill/schedule-fill.svg-7tGjhrTb.cjs +0 -0
  1815. /package/{resources → dist/resources}/tictoccroc/icons/fill/schedule-fill.svg-BrKSb-wR.js +0 -0
  1816. /package/{resources → dist/resources}/tictoccroc/icons/fill/search-fill.svg-BvLNCg-N.cjs +0 -0
  1817. /package/{resources → dist/resources}/tictoccroc/icons/fill/search-fill.svg-DnxhncI6.js +0 -0
  1818. /package/{resources → dist/resources}/tictoccroc/icons/fill/send-fill.svg-CItD_2L1.js +0 -0
  1819. /package/{resources → dist/resources}/tictoccroc/icons/fill/send-fill.svg-D197Lwl0.cjs +0 -0
  1820. /package/{resources → dist/resources}/tictoccroc/icons/fill/time-fill.svg-CbMJxmhK.js +0 -0
  1821. /package/{resources → dist/resources}/tictoccroc/icons/fill/time-fill.svg-DcMfM75a.cjs +0 -0
  1822. /package/{resources → dist/resources}/tictoccroc/icons/fill/tooltip-fill.svg-Csn01XEU.js +0 -0
  1823. /package/{resources → dist/resources}/tictoccroc/icons/fill/tooltip-fill.svg-taAPxbyB.cjs +0 -0
  1824. /package/{resources → dist/resources}/tictoccroc/icons/fill/user-fill.svg-1AdHldZ7.js +0 -0
  1825. /package/{resources → dist/resources}/tictoccroc/icons/fill/user-fill.svg-C5DT_82L.cjs +0 -0
  1826. /package/{resources → dist/resources}/tictoccroc/icons/index.d.ts +0 -0
  1827. /package/{resources → dist/resources}/tictoccroc/icons/line/alarm-line.svg-BRunNxMG.cjs +0 -0
  1828. /package/{resources → dist/resources}/tictoccroc/icons/line/alarm-line.svg-B_fgmSUh.js +0 -0
  1829. /package/{resources → dist/resources}/tictoccroc/icons/line/align-edit.svg-BpBWlArj.js +0 -0
  1830. /package/{resources → dist/resources}/tictoccroc/icons/line/align-edit.svg-CheFH-PQ.cjs +0 -0
  1831. /package/{resources → dist/resources}/tictoccroc/icons/line/align-line.svg-CZVeKsXI.js +0 -0
  1832. /package/{resources → dist/resources}/tictoccroc/icons/line/align-line.svg-DEHi23C3.cjs +0 -0
  1833. /package/{resources → dist/resources}/tictoccroc/icons/line/apply-line.svg-CPVSeeXQ.js +0 -0
  1834. /package/{resources → dist/resources}/tictoccroc/icons/line/apply-line.svg-OFt_RKTM.cjs +0 -0
  1835. /package/{resources → dist/resources}/tictoccroc/icons/line/archive-line.svg-DCCCNm0K.cjs +0 -0
  1836. /package/{resources → dist/resources}/tictoccroc/icons/line/archive-line.svg-DRsXXtcA.js +0 -0
  1837. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-back-line.svg-6pAPPZFb.js +0 -0
  1838. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-back-line.svg-CohS2cJ8.cjs +0 -0
  1839. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-downward-line.svg-BGmQO-HH.js +0 -0
  1840. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-downward-line.svg-U4yGkiO6.cjs +0 -0
  1841. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-forward-line.svg-CXsiELrZ.cjs +0 -0
  1842. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-forward-line.svg-i2PyDbcS.js +0 -0
  1843. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-upward-line.svg-D38aA0Uw.cjs +0 -0
  1844. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-upward-line.svg-UfpZFid8.js +0 -0
  1845. /package/{resources → dist/resources}/tictoccroc/icons/line/attach-line.svg-BhuonxHd.cjs +0 -0
  1846. /package/{resources → dist/resources}/tictoccroc/icons/line/attach-line.svg-SIRIt0qo.js +0 -0
  1847. /package/{resources → dist/resources}/tictoccroc/icons/line/ban-line.svg-D9JlR8gb.cjs +0 -0
  1848. /package/{resources → dist/resources}/tictoccroc/icons/line/ban-line.svg-oA3yLqdR.js +0 -0
  1849. /package/{resources → dist/resources}/tictoccroc/icons/line/browser-line.svg-B7UMwER5.cjs +0 -0
  1850. /package/{resources → dist/resources}/tictoccroc/icons/line/browser-line.svg-hDn02ywo.js +0 -0
  1851. /package/{resources → dist/resources}/tictoccroc/icons/line/calendar-line.svg-BsHcmpqT.cjs +0 -0
  1852. /package/{resources → dist/resources}/tictoccroc/icons/line/calendar-line.svg-CwmRMqQV.js +0 -0
  1853. /package/{resources → dist/resources}/tictoccroc/icons/line/call-line.svg-B2jT8BCB.js +0 -0
  1854. /package/{resources → dist/resources}/tictoccroc/icons/line/call-line.svg-CVbza-nx.cjs +0 -0
  1855. /package/{resources → dist/resources}/tictoccroc/icons/line/camera-line.svg-BuDRmRYc.cjs +0 -0
  1856. /package/{resources → dist/resources}/tictoccroc/icons/line/camera-line.svg-BvUSwmSN.js +0 -0
  1857. /package/{resources → dist/resources}/tictoccroc/icons/line/card-line.svg-BwluOZMy.js +0 -0
  1858. /package/{resources → dist/resources}/tictoccroc/icons/line/card-line.svg-Dh3x2e7j.cjs +0 -0
  1859. /package/{resources → dist/resources}/tictoccroc/icons/line/cash-line.svg-DMDHHJrt.js +0 -0
  1860. /package/{resources → dist/resources}/tictoccroc/icons/line/cash-line.svg-_QlaTlXM.cjs +0 -0
  1861. /package/{resources → dist/resources}/tictoccroc/icons/line/certificate-line.svg-BjOsTl11.js +0 -0
  1862. /package/{resources → dist/resources}/tictoccroc/icons/line/certificate-line.svg-BoPUjufG.cjs +0 -0
  1863. /package/{resources → dist/resources}/tictoccroc/icons/line/chat-line.svg-CmY7En0-.js +0 -0
  1864. /package/{resources → dist/resources}/tictoccroc/icons/line/chat-line.svg-Dhe-5vHA.cjs +0 -0
  1865. /package/{resources → dist/resources}/tictoccroc/icons/line/chatting-line.svg-CdN684WI.js +0 -0
  1866. /package/{resources → dist/resources}/tictoccroc/icons/line/chatting-line.svg-DFq1Xeov.cjs +0 -0
  1867. /package/{resources → dist/resources}/tictoccroc/icons/line/check-line.svg-BmxqZytH.js +0 -0
  1868. /package/{resources → dist/resources}/tictoccroc/icons/line/check-line.svg-CKsagFl6.cjs +0 -0
  1869. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-down-line.svg-BTq4vzeg.js +0 -0
  1870. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-down-line.svg-BYCd5Luv.cjs +0 -0
  1871. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-left-line.svg-DSET8qrk.cjs +0 -0
  1872. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-left-line.svg-aZUXpJ9q.js +0 -0
  1873. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-right-line.svg-C6wr7pgK.js +0 -0
  1874. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-right-line.svg-Dm2YWA1K.cjs +0 -0
  1875. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-up-line.svg-C8Sj7hTQ.js +0 -0
  1876. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-up-line.svg-D9ekQ02i.cjs +0 -0
  1877. /package/{resources → dist/resources}/tictoccroc/icons/line/close-line.svg-BzpCbaoG.js +0 -0
  1878. /package/{resources → dist/resources}/tictoccroc/icons/line/close-line.svg-CSVwgqiB.cjs +0 -0
  1879. /package/{resources → dist/resources}/tictoccroc/icons/line/copy-line.svg-CLdLNk9r.js +0 -0
  1880. /package/{resources → dist/resources}/tictoccroc/icons/line/copy-line.svg-DA-07Z90.cjs +0 -0
  1881. /package/{resources → dist/resources}/tictoccroc/icons/line/delete-line.svg-DQg7TEYw.js +0 -0
  1882. /package/{resources → dist/resources}/tictoccroc/icons/line/delete-line.svg-DyddYBjS.cjs +0 -0
  1883. /package/{resources → dist/resources}/tictoccroc/icons/line/download-line.svg-BKfz-6Mz.js +0 -0
  1884. /package/{resources → dist/resources}/tictoccroc/icons/line/download-line.svg-DvinNPah.cjs +0 -0
  1885. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-invisible-line.svg-BuZicmwG.js +0 -0
  1886. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-invisible-line.svg-C_XjeDHE.cjs +0 -0
  1887. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-visible-line.svg-D3netPU8.cjs +0 -0
  1888. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-visible-line.svg-XpDOJPr0.js +0 -0
  1889. /package/{resources → dist/resources}/tictoccroc/icons/line/filter-line.svg-Dbe7jw9Q.js +0 -0
  1890. /package/{resources → dist/resources}/tictoccroc/icons/line/filter-line.svg-J5XFEh1F.cjs +0 -0
  1891. /package/{resources → dist/resources}/tictoccroc/icons/line/fullview-line.svg-3aeWiJNf.cjs +0 -0
  1892. /package/{resources → dist/resources}/tictoccroc/icons/line/fullview-line.svg-n_xxoG0C.js +0 -0
  1893. /package/{resources → dist/resources}/tictoccroc/icons/line/goods-line.svg-BDAb5Snx.js +0 -0
  1894. /package/{resources → dist/resources}/tictoccroc/icons/line/goods-line.svg-BYSmk4Lo.cjs +0 -0
  1895. /package/{resources → dist/resources}/tictoccroc/icons/line/hamburger-line.svg-CMG7FGB3.cjs +0 -0
  1896. /package/{resources → dist/resources}/tictoccroc/icons/line/hamburger-line.svg-CZAv5Wt4.js +0 -0
  1897. /package/{resources → dist/resources}/tictoccroc/icons/line/headphone-line.svg-Buq82k6m.cjs +0 -0
  1898. /package/{resources → dist/resources}/tictoccroc/icons/line/headphone-line.svg-Cy-z1uje.js +0 -0
  1899. /package/{resources → dist/resources}/tictoccroc/icons/line/home-line.svg-BqHMy_15.cjs +0 -0
  1900. /package/{resources → dist/resources}/tictoccroc/icons/line/home-line.svg-DO90M2q7.js +0 -0
  1901. /package/{resources → dist/resources}/tictoccroc/icons/line/img-disable-line.svg-Bzvgi8Uu.cjs +0 -0
  1902. /package/{resources → dist/resources}/tictoccroc/icons/line/img-disable-line.svg-DtD7dgZQ.js +0 -0
  1903. /package/{resources → dist/resources}/tictoccroc/icons/line/img-line.svg-CPHQ1Cur.js +0 -0
  1904. /package/{resources → dist/resources}/tictoccroc/icons/line/img-line.svg-runB4pj4.cjs +0 -0
  1905. /package/{resources → dist/resources}/tictoccroc/icons/line/index.ts-Dyvby5gX.cjs +0 -0
  1906. /package/{resources → dist/resources}/tictoccroc/icons/line/index.ts-l0sNRNKZ.js +0 -0
  1907. /package/{resources → dist/resources}/tictoccroc/icons/line/information-line.svg-C1HeihVj.js +0 -0
  1908. /package/{resources → dist/resources}/tictoccroc/icons/line/information-line.svg-fQYLBjcn.cjs +0 -0
  1909. /package/{resources → dist/resources}/tictoccroc/icons/line/instagram-line.svg-9QADilvw.js +0 -0
  1910. /package/{resources → dist/resources}/tictoccroc/icons/line/instagram-line.svg-BiBj4li4.cjs +0 -0
  1911. /package/{resources → dist/resources}/tictoccroc/icons/line/insurance-line.svg-C-jGCuZ0.js +0 -0
  1912. /package/{resources → dist/resources}/tictoccroc/icons/line/insurance-line.svg-XgpoFsM2.cjs +0 -0
  1913. /package/{resources → dist/resources}/tictoccroc/icons/line/kids-line.svg-BZjs2lbf.js +0 -0
  1914. /package/{resources → dist/resources}/tictoccroc/icons/line/kids-line.svg-Hhqmv7us.cjs +0 -0
  1915. /package/{resources → dist/resources}/tictoccroc/icons/line/like-line.svg-B09ewWGN.cjs +0 -0
  1916. /package/{resources → dist/resources}/tictoccroc/icons/line/like-line.svg-WcxnZwNP.js +0 -0
  1917. /package/{resources → dist/resources}/tictoccroc/icons/line/link-line.svg-BQlngNks.cjs +0 -0
  1918. /package/{resources → dist/resources}/tictoccroc/icons/line/link-line.svg-DyTzcfH-.js +0 -0
  1919. /package/{resources → dist/resources}/tictoccroc/icons/line/list-line.svg-r5d5htjN.cjs +0 -0
  1920. /package/{resources → dist/resources}/tictoccroc/icons/line/list-line.svg-yFfhZxUp.js +0 -0
  1921. /package/{resources → dist/resources}/tictoccroc/icons/line/location-line.svg-BYTa6SR_.cjs +0 -0
  1922. /package/{resources → dist/resources}/tictoccroc/icons/line/location-line.svg-EQvkDzcG.js +0 -0
  1923. /package/{resources → dist/resources}/tictoccroc/icons/line/match-type-line.svg-CGS2gQZB.js +0 -0
  1924. /package/{resources → dist/resources}/tictoccroc/icons/line/match-type-line.svg-DGpCvcRV.cjs +0 -0
  1925. /package/{resources → dist/resources}/tictoccroc/icons/line/met-line.svg-CiYvySY5.cjs +0 -0
  1926. /package/{resources → dist/resources}/tictoccroc/icons/line/met-line.svg-CuTfmBGY.js +0 -0
  1927. /package/{resources → dist/resources}/tictoccroc/icons/line/minus-line.svg-BFTYxAEx.cjs +0 -0
  1928. /package/{resources → dist/resources}/tictoccroc/icons/line/minus-line.svg-Cd4pUSxn.js +0 -0
  1929. /package/{resources → dist/resources}/tictoccroc/icons/line/mobile-line.svg-B3REkeOs.js +0 -0
  1930. /package/{resources → dist/resources}/tictoccroc/icons/line/mobile-line.svg-CcR_mhy0.cjs +0 -0
  1931. /package/{resources → dist/resources}/tictoccroc/icons/line/modify-line.svg-Dtw-aJJL.js +0 -0
  1932. /package/{resources → dist/resources}/tictoccroc/icons/line/modify-line.svg-y24Tpez8.cjs +0 -0
  1933. /package/{resources → dist/resources}/tictoccroc/icons/line/monthly-line.svg-BdyaJ1t_.cjs +0 -0
  1934. /package/{resources → dist/resources}/tictoccroc/icons/line/monthly-line.svg-DY5-Xv34.js +0 -0
  1935. /package/{resources → dist/resources}/tictoccroc/icons/line/more-line.svg-DkHQ1aCu.js +0 -0
  1936. /package/{resources → dist/resources}/tictoccroc/icons/line/more-line.svg-fOrqycnA.cjs +0 -0
  1937. /package/{resources → dist/resources}/tictoccroc/icons/line/parking-line.svg-BYdvScSf.cjs +0 -0
  1938. /package/{resources → dist/resources}/tictoccroc/icons/line/parking-line.svg-C69hhyJp.js +0 -0
  1939. /package/{resources → dist/resources}/tictoccroc/icons/line/plus-line.svg-CGLFrOvH.cjs +0 -0
  1940. /package/{resources → dist/resources}/tictoccroc/icons/line/plus-line.svg-DYFu3bQb.js +0 -0
  1941. /package/{resources → dist/resources}/tictoccroc/icons/line/receipt-line.svg-BpDVEXs_.js +0 -0
  1942. /package/{resources → dist/resources}/tictoccroc/icons/line/receipt-line.svg-Db2ey7Vk.cjs +0 -0
  1943. /package/{resources → dist/resources}/tictoccroc/icons/line/reset-line.svg-CYyXv2Ii.js +0 -0
  1944. /package/{resources → dist/resources}/tictoccroc/icons/line/reset-line.svg-VXhJXGw4.cjs +0 -0
  1945. /package/{resources → dist/resources}/tictoccroc/icons/line/review-line.svg-B4rfJrsO.js +0 -0
  1946. /package/{resources → dist/resources}/tictoccroc/icons/line/review-line.svg-DYUuUybx.cjs +0 -0
  1947. /package/{resources → dist/resources}/tictoccroc/icons/line/schedule-line.svg-C4rlD6fX.js +0 -0
  1948. /package/{resources → dist/resources}/tictoccroc/icons/line/schedule-line.svg-CBOfzdyP.cjs +0 -0
  1949. /package/{resources → dist/resources}/tictoccroc/icons/line/search-line.svg-ChK1nMkg.js +0 -0
  1950. /package/{resources → dist/resources}/tictoccroc/icons/line/search-line.svg-CyECq3s4.cjs +0 -0
  1951. /package/{resources → dist/resources}/tictoccroc/icons/line/setting-line.svg-B5KTXMkf.js +0 -0
  1952. /package/{resources → dist/resources}/tictoccroc/icons/line/setting-line.svg-KZcCRQnu.cjs +0 -0
  1953. /package/{resources → dist/resources}/tictoccroc/icons/line/share-line.svg-BuvAb_mR.cjs +0 -0
  1954. /package/{resources → dist/resources}/tictoccroc/icons/line/share-line.svg-YIeAM7qG.js +0 -0
  1955. /package/{resources → dist/resources}/tictoccroc/icons/line/sms-line.svg-CfS4BH8b.cjs +0 -0
  1956. /package/{resources → dist/resources}/tictoccroc/icons/line/sms-line.svg-mkRJRb3t.js +0 -0
  1957. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-line.svg-CmfcTDgu.cjs +0 -0
  1958. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-line.svg-DDrcGkDm.js +0 -0
  1959. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-off-line.svg-BpovzQS7.cjs +0 -0
  1960. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-off-line.svg-CyLPPUCN.js +0 -0
  1961. /package/{resources → dist/resources}/tictoccroc/icons/line/special-line.svg-BIbaMWsd.cjs +0 -0
  1962. /package/{resources → dist/resources}/tictoccroc/icons/line/special-line.svg-DmNM79L9.js +0 -0
  1963. /package/{resources → dist/resources}/tictoccroc/icons/line/time-line.svg-BuB2NlRB.js +0 -0
  1964. /package/{resources → dist/resources}/tictoccroc/icons/line/time-line.svg-DXBDjsih.cjs +0 -0
  1965. /package/{resources → dist/resources}/tictoccroc/icons/line/toy-line.svg-DyArYgu3.js +0 -0
  1966. /package/{resources → dist/resources}/tictoccroc/icons/line/toy-line.svg-vUxUn7S0.cjs +0 -0
  1967. /package/{resources → dist/resources}/tictoccroc/icons/line/university-line.svg-BEdQwFB6.js +0 -0
  1968. /package/{resources → dist/resources}/tictoccroc/icons/line/university-line.svg-D2T-TUW5.cjs +0 -0
  1969. /package/{resources → dist/resources}/tictoccroc/icons/line/upload-line.svg-CDbJ-I5E.cjs +0 -0
  1970. /package/{resources → dist/resources}/tictoccroc/icons/line/upload-line.svg-CKFtr3Jx.js +0 -0
  1971. /package/{resources → dist/resources}/tictoccroc/icons/line/user-line.svg-CNcTTUmF.js +0 -0
  1972. /package/{resources → dist/resources}/tictoccroc/icons/line/user-line.svg-Du2rRzus.cjs +0 -0
  1973. /package/{resources → dist/resources}/tictoccroc/icons/line/video-camera-line.svg-C2Y4ssOf.js +0 -0
  1974. /package/{resources → dist/resources}/tictoccroc/icons/line/video-camera-line.svg-iZ3dICcd.cjs +0 -0
  1975. /package/{resources → dist/resources}/tictoccroc/icons/line/warning1-line.svg-Bhi7ngGw.cjs +0 -0
  1976. /package/{resources → dist/resources}/tictoccroc/icons/line/warning1-line.svg-DsmZxbsf.js +0 -0
  1977. /package/{resources → dist/resources}/tictoccroc/icons/line/warning2-line.svg-DTvtKOYN.js +0 -0
  1978. /package/{resources → dist/resources}/tictoccroc/icons/line/warning2-line.svg-Kf0io8lf.cjs +0 -0
  1979. /package/{resources → dist/resources}/tictoccroc/icons/line/weekly-line.svg-BCO-LS_a.cjs +0 -0
  1980. /package/{resources → dist/resources}/tictoccroc/icons/line/weekly-line.svg-BUPmmgeE.js +0 -0
  1981. /package/{resources → dist/resources}/tictoccroc/icons/line/wifi-line.svg-BtsQLwZl.js +0 -0
  1982. /package/{resources → dist/resources}/tictoccroc/icons/line/wifi-line.svg-DGCMJ5Oi.cjs +0 -0
  1983. /package/{themes → dist/themes}/tictoccroc/colors/background.cjs +0 -0
  1984. /package/{themes → dist/themes}/tictoccroc/colors/background.d.ts +0 -0
  1985. /package/{themes → dist/themes}/tictoccroc/colors/background.es.js +0 -0
  1986. /package/{themes → dist/themes}/tictoccroc/colors/blue.cjs +0 -0
  1987. /package/{themes → dist/themes}/tictoccroc/colors/blue.d.ts +0 -0
  1988. /package/{themes → dist/themes}/tictoccroc/colors/blue.es.js +0 -0
  1989. /package/{themes → dist/themes}/tictoccroc/colors/classType.cjs +0 -0
  1990. /package/{themes → dist/themes}/tictoccroc/colors/classType.d.ts +0 -0
  1991. /package/{themes → dist/themes}/tictoccroc/colors/classType.es.js +0 -0
  1992. /package/{themes → dist/themes}/tictoccroc/colors/etc.cjs +0 -0
  1993. /package/{themes → dist/themes}/tictoccroc/colors/etc.d.ts +0 -0
  1994. /package/{themes → dist/themes}/tictoccroc/colors/etc.es.js +0 -0
  1995. /package/{themes → dist/themes}/tictoccroc/colors/green.cjs +0 -0
  1996. /package/{themes → dist/themes}/tictoccroc/colors/green.d.ts +0 -0
  1997. /package/{themes → dist/themes}/tictoccroc/colors/green.es.js +0 -0
  1998. /package/{themes → dist/themes}/tictoccroc/colors/grey.cjs +0 -0
  1999. /package/{themes → dist/themes}/tictoccroc/colors/grey.d.ts +0 -0
  2000. /package/{themes → dist/themes}/tictoccroc/colors/grey.es.js +0 -0
  2001. /package/{themes → dist/themes}/tictoccroc/colors/index.cjs +0 -0
  2002. /package/{themes → dist/themes}/tictoccroc/colors/index.d.ts +0 -0
  2003. /package/{themes → dist/themes}/tictoccroc/colors/index.es.js +0 -0
  2004. /package/{themes → dist/themes}/tictoccroc/colors/pink.cjs +0 -0
  2005. /package/{themes → dist/themes}/tictoccroc/colors/pink.d.ts +0 -0
  2006. /package/{themes → dist/themes}/tictoccroc/colors/pink.es.js +0 -0
  2007. /package/{themes → dist/themes}/tictoccroc/colors/yellow.cjs +0 -0
  2008. /package/{themes → dist/themes}/tictoccroc/colors/yellow.d.ts +0 -0
  2009. /package/{themes → dist/themes}/tictoccroc/colors/yellow.es.js +0 -0
  2010. /package/{themes → dist/themes}/tictoccroc/index.cjs +0 -0
  2011. /package/{themes → dist/themes}/tictoccroc/index.d.ts +0 -0
  2012. /package/{themes → dist/themes}/tictoccroc/index.es.js +0 -0
  2013. /package/{themes → dist/themes}/tictoccroc/parentLight.cjs +0 -0
  2014. /package/{themes → dist/themes}/tictoccroc/parentLight.d.ts +0 -0
  2015. /package/{themes → dist/themes}/tictoccroc/parentLight.es.js +0 -0
  2016. /package/{themes → dist/themes}/tictoccroc/teacherLight.cjs +0 -0
  2017. /package/{themes → dist/themes}/tictoccroc/teacherLight.d.ts +0 -0
  2018. /package/{themes → dist/themes}/tictoccroc/teacherLight.es.js +0 -0
  2019. /package/{themes → dist/themes}/tictoccroc/typography/body.cjs +0 -0
  2020. /package/{themes → dist/themes}/tictoccroc/typography/body.d.ts +0 -0
  2021. /package/{themes → dist/themes}/tictoccroc/typography/body.es.js +0 -0
  2022. /package/{themes → dist/themes}/tictoccroc/typography/caption.cjs +0 -0
  2023. /package/{themes → dist/themes}/tictoccroc/typography/caption.d.ts +0 -0
  2024. /package/{themes → dist/themes}/tictoccroc/typography/caption.es.js +0 -0
  2025. /package/{themes → dist/themes}/tictoccroc/typography/display.cjs +0 -0
  2026. /package/{themes → dist/themes}/tictoccroc/typography/display.d.ts +0 -0
  2027. /package/{themes → dist/themes}/tictoccroc/typography/display.es.js +0 -0
  2028. /package/{themes → dist/themes}/tictoccroc/typography/headline.cjs +0 -0
  2029. /package/{themes → dist/themes}/tictoccroc/typography/headline.d.ts +0 -0
  2030. /package/{themes → dist/themes}/tictoccroc/typography/headline.es.js +0 -0
  2031. /package/{themes → dist/themes}/tictoccroc/typography/index.cjs +0 -0
  2032. /package/{themes → dist/themes}/tictoccroc/typography/index.d.ts +0 -0
  2033. /package/{themes → dist/themes}/tictoccroc/typography/index.es.js +0 -0
  2034. /package/{typings → dist/typings}/color.d.ts +0 -0
  2035. /package/{typings → dist/typings}/component.d.ts +0 -0
  2036. /package/{typings → dist/typings}/index.d.ts +0 -0
  2037. /package/{typings → dist/typings}/theme/core.d.ts +0 -0
  2038. /package/{typings → dist/typings}/theme/tictoccroc.d.ts +0 -0
  2039. /package/{typings → dist/typings}/typography.d.ts +0 -0
  2040. /package/{typings → dist/typings}/utility.d.ts +0 -0
  2041. /package/{utils → dist/utils}/convertNumberToCSSValue.cjs +0 -0
  2042. /package/{utils → dist/utils}/convertNumberToCSSValue.d.ts +0 -0
  2043. /package/{utils → dist/utils}/convertNumberToCSSValue.es.js +0 -0
  2044. /package/{utils → dist/utils}/debounce/debounce.cjs +0 -0
  2045. /package/{utils → dist/utils}/debounce/debounce.d.ts +0 -0
  2046. /package/{utils → dist/utils}/debounce/debounce.es.js +0 -0
  2047. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.cjs +0 -0
  2048. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.d.ts +0 -0
  2049. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.es.js +0 -0
  2050. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.test.d.ts +0 -0
  2051. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.cjs +0 -0
  2052. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.d.ts +0 -0
  2053. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.es.js +0 -0
  2054. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.test.d.ts +0 -0
  2055. /package/{utils → dist/utils}/getIconLabel/getIconLabel.d.ts +0 -0
  2056. /package/{utils → dist/utils}/getInterpolation/getInterpolation.cjs +0 -0
  2057. /package/{utils → dist/utils}/getInterpolation/getInterpolation.d.ts +0 -0
  2058. /package/{utils → dist/utils}/getInterpolation/getInterpolation.es.js +0 -0
  2059. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.cjs +0 -0
  2060. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.d.ts +0 -0
  2061. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.es.js +0 -0
  2062. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.test.d.ts +0 -0
  2063. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.cjs +0 -0
  2064. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.d.ts +0 -0
  2065. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.es.js +0 -0
  2066. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.test.d.ts +0 -0
  2067. /package/{utils → dist/utils}/getSibling/getSibling.cjs +0 -0
  2068. /package/{utils → dist/utils}/getSibling/getSibling.d.ts +0 -0
  2069. /package/{utils → dist/utils}/getSibling/getSibling.es.js +0 -0
  2070. /package/{utils → dist/utils}/hexToRgb/hexToRgb.cjs +0 -0
  2071. /package/{utils → dist/utils}/hexToRgb/hexToRgb.d.ts +0 -0
  2072. /package/{utils → dist/utils}/hexToRgb/hexToRgb.es.js +0 -0
  2073. /package/{utils → dist/utils}/hexToRgb/hexToRgb.test.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.umd.min.js","sources":["../../src/act-compat.js","../../node_modules/pretty-format/node_modules/ansi-styles/index.js","../../node_modules/pretty-format/build/collections.js","../../node_modules/pretty-format/build/plugins/AsymmetricMatcher.js","../../node_modules/pretty-format/build/plugins/ConvertAnsi.js","../../node_modules/ansi-regex/index.js","../../node_modules/pretty-format/build/plugins/DOMCollection.js","../../node_modules/pretty-format/build/plugins/lib/escapeHTML.js","../../node_modules/pretty-format/build/plugins/lib/markup.js","../../node_modules/pretty-format/build/plugins/DOMElement.js","../../node_modules/pretty-format/build/plugins/Immutable.js","../../node_modules/react-is/index.js","../../node_modules/react-is/cjs/react-is.production.min.js","../../node_modules/pretty-format/build/plugins/ReactElement.js","../../node_modules/pretty-format/build/plugins/ReactTestComponent.js","../../node_modules/pretty-format/build/index.js","../../node_modules/dom-accessibility-api/dist/polyfills/array.from.mjs","../../node_modules/dom-accessibility-api/dist/polyfills/SetLike.mjs","../../node_modules/dom-accessibility-api/dist/getRole.mjs","../../node_modules/dom-accessibility-api/dist/util.mjs","../../node_modules/dom-accessibility-api/dist/accessible-name-and-description.mjs","../../node_modules/dom-accessibility-api/dist/accessible-description.mjs","../../node_modules/dom-accessibility-api/dist/accessible-name.mjs","../../node_modules/aria-query/lib/util/iteratorProxy.js","../../node_modules/aria-query/lib/util/iterationDecorator.js","../../node_modules/aria-query/lib/ariaPropsMap.js","../../node_modules/aria-query/lib/domMap.js","../../node_modules/aria-query/lib/etc/roles/abstract/commandRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/compositeRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/inputRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/landmarkRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/rangeRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/roletypeRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/sectionRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/sectionheadRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/selectRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/structureRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/widgetRole.js","../../node_modules/aria-query/lib/etc/roles/abstract/windowRole.js","../../node_modules/aria-query/lib/etc/roles/ariaAbstractRoles.js","../../node_modules/aria-query/lib/etc/roles/literal/alertRole.js","../../node_modules/aria-query/lib/etc/roles/literal/alertdialogRole.js","../../node_modules/aria-query/lib/etc/roles/literal/applicationRole.js","../../node_modules/aria-query/lib/etc/roles/literal/articleRole.js","../../node_modules/aria-query/lib/etc/roles/literal/bannerRole.js","../../node_modules/aria-query/lib/etc/roles/literal/blockquoteRole.js","../../node_modules/aria-query/lib/etc/roles/literal/buttonRole.js","../../node_modules/aria-query/lib/etc/roles/literal/captionRole.js","../../node_modules/aria-query/lib/etc/roles/literal/cellRole.js","../../node_modules/aria-query/lib/etc/roles/literal/checkboxRole.js","../../node_modules/aria-query/lib/etc/roles/literal/codeRole.js","../../node_modules/aria-query/lib/etc/roles/literal/columnheaderRole.js","../../node_modules/aria-query/lib/etc/roles/literal/comboboxRole.js","../../node_modules/aria-query/lib/etc/roles/literal/complementaryRole.js","../../node_modules/aria-query/lib/etc/roles/literal/contentinfoRole.js","../../node_modules/aria-query/lib/etc/roles/literal/definitionRole.js","../../node_modules/aria-query/lib/etc/roles/literal/deletionRole.js","../../node_modules/aria-query/lib/etc/roles/literal/dialogRole.js","../../node_modules/aria-query/lib/etc/roles/literal/directoryRole.js","../../node_modules/aria-query/lib/etc/roles/literal/documentRole.js","../../node_modules/aria-query/lib/etc/roles/literal/emphasisRole.js","../../node_modules/aria-query/lib/etc/roles/literal/feedRole.js","../../node_modules/aria-query/lib/etc/roles/literal/figureRole.js","../../node_modules/aria-query/lib/etc/roles/literal/formRole.js","../../node_modules/aria-query/lib/etc/roles/literal/genericRole.js","../../node_modules/aria-query/lib/etc/roles/literal/gridRole.js","../../node_modules/aria-query/lib/etc/roles/literal/gridcellRole.js","../../node_modules/aria-query/lib/etc/roles/literal/groupRole.js","../../node_modules/aria-query/lib/etc/roles/literal/headingRole.js","../../node_modules/aria-query/lib/etc/roles/literal/imgRole.js","../../node_modules/aria-query/lib/etc/roles/literal/insertionRole.js","../../node_modules/aria-query/lib/etc/roles/literal/linkRole.js","../../node_modules/aria-query/lib/etc/roles/literal/listRole.js","../../node_modules/aria-query/lib/etc/roles/literal/listboxRole.js","../../node_modules/aria-query/lib/etc/roles/literal/listitemRole.js","../../node_modules/aria-query/lib/etc/roles/literal/logRole.js","../../node_modules/aria-query/lib/etc/roles/literal/mainRole.js","../../node_modules/aria-query/lib/etc/roles/literal/markRole.js","../../node_modules/aria-query/lib/etc/roles/literal/marqueeRole.js","../../node_modules/aria-query/lib/etc/roles/literal/mathRole.js","../../node_modules/aria-query/lib/etc/roles/literal/menuRole.js","../../node_modules/aria-query/lib/etc/roles/literal/menubarRole.js","../../node_modules/aria-query/lib/etc/roles/literal/menuitemRole.js","../../node_modules/aria-query/lib/etc/roles/literal/menuitemcheckboxRole.js","../../node_modules/aria-query/lib/etc/roles/literal/menuitemradioRole.js","../../node_modules/aria-query/lib/etc/roles/literal/meterRole.js","../../node_modules/aria-query/lib/etc/roles/literal/navigationRole.js","../../node_modules/aria-query/lib/etc/roles/literal/noneRole.js","../../node_modules/aria-query/lib/etc/roles/literal/noteRole.js","../../node_modules/aria-query/lib/etc/roles/literal/optionRole.js","../../node_modules/aria-query/lib/etc/roles/literal/paragraphRole.js","../../node_modules/aria-query/lib/etc/roles/literal/presentationRole.js","../../node_modules/aria-query/lib/etc/roles/literal/progressbarRole.js","../../node_modules/aria-query/lib/etc/roles/literal/radioRole.js","../../node_modules/aria-query/lib/etc/roles/literal/radiogroupRole.js","../../node_modules/aria-query/lib/etc/roles/literal/regionRole.js","../../node_modules/aria-query/lib/etc/roles/literal/rowRole.js","../../node_modules/aria-query/lib/etc/roles/literal/rowgroupRole.js","../../node_modules/aria-query/lib/etc/roles/literal/rowheaderRole.js","../../node_modules/aria-query/lib/etc/roles/literal/scrollbarRole.js","../../node_modules/aria-query/lib/etc/roles/literal/searchRole.js","../../node_modules/aria-query/lib/etc/roles/literal/searchboxRole.js","../../node_modules/aria-query/lib/etc/roles/literal/separatorRole.js","../../node_modules/aria-query/lib/etc/roles/literal/sliderRole.js","../../node_modules/aria-query/lib/etc/roles/literal/spinbuttonRole.js","../../node_modules/aria-query/lib/etc/roles/literal/statusRole.js","../../node_modules/aria-query/lib/etc/roles/literal/strongRole.js","../../node_modules/aria-query/lib/etc/roles/literal/subscriptRole.js","../../node_modules/aria-query/lib/etc/roles/literal/superscriptRole.js","../../node_modules/aria-query/lib/etc/roles/literal/switchRole.js","../../node_modules/aria-query/lib/etc/roles/literal/tabRole.js","../../node_modules/aria-query/lib/etc/roles/literal/tableRole.js","../../node_modules/aria-query/lib/etc/roles/literal/tablistRole.js","../../node_modules/aria-query/lib/etc/roles/literal/tabpanelRole.js","../../node_modules/aria-query/lib/etc/roles/literal/termRole.js","../../node_modules/aria-query/lib/etc/roles/literal/textboxRole.js","../../node_modules/aria-query/lib/etc/roles/literal/timeRole.js","../../node_modules/aria-query/lib/etc/roles/literal/timerRole.js","../../node_modules/aria-query/lib/etc/roles/literal/toolbarRole.js","../../node_modules/aria-query/lib/etc/roles/literal/tooltipRole.js","../../node_modules/aria-query/lib/etc/roles/literal/treeRole.js","../../node_modules/aria-query/lib/etc/roles/literal/treegridRole.js","../../node_modules/aria-query/lib/etc/roles/literal/treeitemRole.js","../../node_modules/aria-query/lib/etc/roles/ariaLiteralRoles.js","../../node_modules/aria-query/lib/etc/roles/dpub/docAbstractRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docAcknowledgmentsRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docAfterwordRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docAppendixRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docBacklinkRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docBiblioentryRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docBibliographyRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docBibliorefRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docChapterRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docColophonRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docConclusionRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docCoverRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docCreditRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docCreditsRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docDedicationRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docEndnoteRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docEndnotesRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docEpigraphRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docEpilogueRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docErrataRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docExampleRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docFootnoteRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docForewordRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docGlossaryRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docGlossrefRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docIndexRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docIntroductionRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docNoterefRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docNoticeRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docPagebreakRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docPagelistRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docPartRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docPrefaceRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docPrologueRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docPullquoteRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docQnaRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docSubtitleRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docTipRole.js","../../node_modules/aria-query/lib/etc/roles/dpub/docTocRole.js","../../node_modules/aria-query/lib/etc/roles/ariaDpubRoles.js","../../node_modules/aria-query/lib/etc/roles/graphics/graphicsDocumentRole.js","../../node_modules/aria-query/lib/etc/roles/graphics/graphicsObjectRole.js","../../node_modules/aria-query/lib/etc/roles/graphics/graphicsSymbolRole.js","../../node_modules/aria-query/lib/etc/roles/ariaGraphicsRoles.js","../../node_modules/aria-query/lib/rolesMap.js","../../node_modules/dequal/lite/index.js","../../node_modules/aria-query/lib/elementRoleMap.js","../../node_modules/aria-query/lib/roleElementMap.js","../../node_modules/aria-query/lib/index.js","../../node_modules/lz-string/libs/lz-string.js","../../node_modules/@testing-library/dom/dist/@testing-library/dom.esm.js","../../src/fire-event.js","../../src/config.js","../../src/pure.js","../../src/index.js"],"sourcesContent":["import * as React from 'react'\nimport * as DeprecatedReactTestUtils from 'react-dom/test-utils'\n\nconst reactAct =\n typeof React.act === 'function' ? React.act : DeprecatedReactTestUtils.act\n\nfunction getGlobalThis() {\n /* istanbul ignore else */\n if (typeof globalThis !== 'undefined') {\n return globalThis\n }\n /* istanbul ignore next */\n if (typeof self !== 'undefined') {\n return self\n }\n /* istanbul ignore next */\n if (typeof window !== 'undefined') {\n return window\n }\n /* istanbul ignore next */\n if (typeof global !== 'undefined') {\n return global\n }\n /* istanbul ignore next */\n throw new Error('unable to locate global object')\n}\n\nfunction setIsReactActEnvironment(isReactActEnvironment) {\n getGlobalThis().IS_REACT_ACT_ENVIRONMENT = isReactActEnvironment\n}\n\nfunction getIsReactActEnvironment() {\n return getGlobalThis().IS_REACT_ACT_ENVIRONMENT\n}\n\nfunction withGlobalActEnvironment(actImplementation) {\n return callback => {\n const previousActEnvironment = getIsReactActEnvironment()\n setIsReactActEnvironment(true)\n try {\n // The return value of `act` is always a thenable.\n let callbackNeedsToBeAwaited = false\n const actResult = actImplementation(() => {\n const result = callback()\n if (\n result !== null &&\n typeof result === 'object' &&\n typeof result.then === 'function'\n ) {\n callbackNeedsToBeAwaited = true\n }\n return result\n })\n if (callbackNeedsToBeAwaited) {\n const thenable = actResult\n return {\n then: (resolve, reject) => {\n thenable.then(\n returnValue => {\n setIsReactActEnvironment(previousActEnvironment)\n resolve(returnValue)\n },\n error => {\n setIsReactActEnvironment(previousActEnvironment)\n reject(error)\n },\n )\n },\n }\n } else {\n setIsReactActEnvironment(previousActEnvironment)\n return actResult\n }\n } catch (error) {\n // Can't be a `finally {}` block since we don't know if we have to immediately restore IS_REACT_ACT_ENVIRONMENT\n // or if we have to await the callback first.\n setIsReactActEnvironment(previousActEnvironment)\n throw error\n }\n }\n}\n\nconst act = withGlobalActEnvironment(reactAct)\n\nexport default act\nexport {\n setIsReactActEnvironment as setReactActEnvironment,\n getIsReactActEnvironment,\n}\n\n/* eslint no-console:0 */\n","'use strict';\n\nconst ANSI_BACKGROUND_OFFSET = 10;\n\nconst wrapAnsi256 = (offset = 0) => code => `\\u001B[${38 + offset};5;${code}m`;\n\nconst wrapAnsi16m = (offset = 0) => (red, green, blue) => `\\u001B[${38 + offset};2;${red};${green};${blue}m`;\n\nfunction assembleStyles() {\n\tconst codes = new Map();\n\tconst styles = {\n\t\tmodifier: {\n\t\t\treset: [0, 0],\n\t\t\t// 21 isn't widely supported and 22 does the same thing\n\t\t\tbold: [1, 22],\n\t\t\tdim: [2, 22],\n\t\t\titalic: [3, 23],\n\t\t\tunderline: [4, 24],\n\t\t\toverline: [53, 55],\n\t\t\tinverse: [7, 27],\n\t\t\thidden: [8, 28],\n\t\t\tstrikethrough: [9, 29]\n\t\t},\n\t\tcolor: {\n\t\t\tblack: [30, 39],\n\t\t\tred: [31, 39],\n\t\t\tgreen: [32, 39],\n\t\t\tyellow: [33, 39],\n\t\t\tblue: [34, 39],\n\t\t\tmagenta: [35, 39],\n\t\t\tcyan: [36, 39],\n\t\t\twhite: [37, 39],\n\n\t\t\t// Bright color\n\t\t\tblackBright: [90, 39],\n\t\t\tredBright: [91, 39],\n\t\t\tgreenBright: [92, 39],\n\t\t\tyellowBright: [93, 39],\n\t\t\tblueBright: [94, 39],\n\t\t\tmagentaBright: [95, 39],\n\t\t\tcyanBright: [96, 39],\n\t\t\twhiteBright: [97, 39]\n\t\t},\n\t\tbgColor: {\n\t\t\tbgBlack: [40, 49],\n\t\t\tbgRed: [41, 49],\n\t\t\tbgGreen: [42, 49],\n\t\t\tbgYellow: [43, 49],\n\t\t\tbgBlue: [44, 49],\n\t\t\tbgMagenta: [45, 49],\n\t\t\tbgCyan: [46, 49],\n\t\t\tbgWhite: [47, 49],\n\n\t\t\t// Bright color\n\t\t\tbgBlackBright: [100, 49],\n\t\t\tbgRedBright: [101, 49],\n\t\t\tbgGreenBright: [102, 49],\n\t\t\tbgYellowBright: [103, 49],\n\t\t\tbgBlueBright: [104, 49],\n\t\t\tbgMagentaBright: [105, 49],\n\t\t\tbgCyanBright: [106, 49],\n\t\t\tbgWhiteBright: [107, 49]\n\t\t}\n\t};\n\n\t// Alias bright black as gray (and grey)\n\tstyles.color.gray = styles.color.blackBright;\n\tstyles.bgColor.bgGray = styles.bgColor.bgBlackBright;\n\tstyles.color.grey = styles.color.blackBright;\n\tstyles.bgColor.bgGrey = styles.bgColor.bgBlackBright;\n\n\tfor (const [groupName, group] of Object.entries(styles)) {\n\t\tfor (const [styleName, style] of Object.entries(group)) {\n\t\t\tstyles[styleName] = {\n\t\t\t\topen: `\\u001B[${style[0]}m`,\n\t\t\t\tclose: `\\u001B[${style[1]}m`\n\t\t\t};\n\n\t\t\tgroup[styleName] = styles[styleName];\n\n\t\t\tcodes.set(style[0], style[1]);\n\t\t}\n\n\t\tObject.defineProperty(styles, groupName, {\n\t\t\tvalue: group,\n\t\t\tenumerable: false\n\t\t});\n\t}\n\n\tObject.defineProperty(styles, 'codes', {\n\t\tvalue: codes,\n\t\tenumerable: false\n\t});\n\n\tstyles.color.close = '\\u001B[39m';\n\tstyles.bgColor.close = '\\u001B[49m';\n\n\tstyles.color.ansi256 = wrapAnsi256();\n\tstyles.color.ansi16m = wrapAnsi16m();\n\tstyles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET);\n\tstyles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET);\n\n\t// From https://github.com/Qix-/color-convert/blob/3f0e0d4e92e235796ccb17f6e85c72094a651f49/conversions.js\n\tObject.defineProperties(styles, {\n\t\trgbToAnsi256: {\n\t\t\tvalue: (red, green, blue) => {\n\t\t\t\t// We use the extended greyscale palette here, with the exception of\n\t\t\t\t// black and white. normal palette only has 4 greyscale shades.\n\t\t\t\tif (red === green && green === blue) {\n\t\t\t\t\tif (red < 8) {\n\t\t\t\t\t\treturn 16;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (red > 248) {\n\t\t\t\t\t\treturn 231;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn Math.round(((red - 8) / 247) * 24) + 232;\n\t\t\t\t}\n\n\t\t\t\treturn 16 +\n\t\t\t\t\t(36 * Math.round(red / 255 * 5)) +\n\t\t\t\t\t(6 * Math.round(green / 255 * 5)) +\n\t\t\t\t\tMath.round(blue / 255 * 5);\n\t\t\t},\n\t\t\tenumerable: false\n\t\t},\n\t\thexToRgb: {\n\t\t\tvalue: hex => {\n\t\t\t\tconst matches = /(?<colorString>[a-f\\d]{6}|[a-f\\d]{3})/i.exec(hex.toString(16));\n\t\t\t\tif (!matches) {\n\t\t\t\t\treturn [0, 0, 0];\n\t\t\t\t}\n\n\t\t\t\tlet {colorString} = matches.groups;\n\n\t\t\t\tif (colorString.length === 3) {\n\t\t\t\t\tcolorString = colorString.split('').map(character => character + character).join('');\n\t\t\t\t}\n\n\t\t\t\tconst integer = Number.parseInt(colorString, 16);\n\n\t\t\t\treturn [\n\t\t\t\t\t(integer >> 16) & 0xFF,\n\t\t\t\t\t(integer >> 8) & 0xFF,\n\t\t\t\t\tinteger & 0xFF\n\t\t\t\t];\n\t\t\t},\n\t\t\tenumerable: false\n\t\t},\n\t\thexToAnsi256: {\n\t\t\tvalue: hex => styles.rgbToAnsi256(...styles.hexToRgb(hex)),\n\t\t\tenumerable: false\n\t\t}\n\t});\n\n\treturn styles;\n}\n\n// Make the export immutable\nObject.defineProperty(module, 'exports', {\n\tenumerable: true,\n\tget: assembleStyles\n});\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.printIteratorEntries = printIteratorEntries;\nexports.printIteratorValues = printIteratorValues;\nexports.printListItems = printListItems;\nexports.printObjectProperties = printObjectProperties;\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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 */\nconst getKeysOfEnumerableProperties = (object, compareKeys) => {\n const keys = Object.keys(object).sort(compareKeys);\n\n if (Object.getOwnPropertySymbols) {\n Object.getOwnPropertySymbols(object).forEach(symbol => {\n if (Object.getOwnPropertyDescriptor(object, symbol).enumerable) {\n keys.push(symbol);\n }\n });\n }\n\n return keys;\n};\n/**\n * Return entries (for example, of a map)\n * with spacing, indentation, and comma\n * without surrounding punctuation (for example, braces)\n */\n\nfunction printIteratorEntries(\n iterator,\n config,\n indentation,\n depth,\n refs,\n printer, // Too bad, so sad that separator for ECMAScript Map has been ' => '\n // What a distracting diff if you change a data structure to/from\n // ECMAScript Object or Immutable.Map/OrderedMap which use the default.\n separator = ': '\n) {\n let result = '';\n let current = iterator.next();\n\n if (!current.done) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n while (!current.done) {\n const name = printer(\n current.value[0],\n config,\n indentationNext,\n depth,\n refs\n );\n const value = printer(\n current.value[1],\n config,\n indentationNext,\n depth,\n refs\n );\n result += indentationNext + name + separator + value;\n current = iterator.next();\n\n if (!current.done) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n/**\n * Return values (for example, of a set)\n * with spacing, indentation, and comma\n * without surrounding punctuation (braces or brackets)\n */\n\nfunction printIteratorValues(\n iterator,\n config,\n indentation,\n depth,\n refs,\n printer\n) {\n let result = '';\n let current = iterator.next();\n\n if (!current.done) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n while (!current.done) {\n result +=\n indentationNext +\n printer(current.value, config, indentationNext, depth, refs);\n current = iterator.next();\n\n if (!current.done) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n/**\n * Return items (for example, of an array)\n * with spacing, indentation, and comma\n * without surrounding punctuation (for example, brackets)\n **/\n\nfunction printListItems(list, config, indentation, depth, refs, printer) {\n let result = '';\n\n if (list.length) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n for (let i = 0; i < list.length; i++) {\n result += indentationNext;\n\n if (i in list) {\n result += printer(list[i], config, indentationNext, depth, refs);\n }\n\n if (i < list.length - 1) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n/**\n * Return properties of an object\n * with spacing, indentation, and comma\n * without surrounding punctuation (for example, braces)\n */\n\nfunction printObjectProperties(val, config, indentation, depth, refs, printer) {\n let result = '';\n const keys = getKeysOfEnumerableProperties(val, config.compareKeys);\n\n if (keys.length) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n const name = printer(key, config, indentationNext, depth, refs);\n const value = printer(val[key], config, indentationNext, depth, refs);\n result += indentationNext + name + ': ' + value;\n\n if (i < keys.length - 1) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _collections = require('../collections');\n\nvar global = (function () {\n if (typeof globalThis !== 'undefined') {\n return globalThis;\n } else if (typeof global !== 'undefined') {\n return global;\n } else if (typeof self !== 'undefined') {\n return self;\n } else if (typeof window !== 'undefined') {\n return window;\n } else {\n return Function('return this')();\n }\n})();\n\nvar Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;\nconst asymmetricMatcher =\n typeof Symbol === 'function' && Symbol.for\n ? Symbol.for('jest.asymmetricMatcher')\n : 0x1357a5;\nconst SPACE = ' ';\n\nconst serialize = (val, config, indentation, depth, refs, printer) => {\n const stringedValue = val.toString();\n\n if (\n stringedValue === 'ArrayContaining' ||\n stringedValue === 'ArrayNotContaining'\n ) {\n if (++depth > config.maxDepth) {\n return '[' + stringedValue + ']';\n }\n\n return (\n stringedValue +\n SPACE +\n '[' +\n (0, _collections.printListItems)(\n val.sample,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']'\n );\n }\n\n if (\n stringedValue === 'ObjectContaining' ||\n stringedValue === 'ObjectNotContaining'\n ) {\n if (++depth > config.maxDepth) {\n return '[' + stringedValue + ']';\n }\n\n return (\n stringedValue +\n SPACE +\n '{' +\n (0, _collections.printObjectProperties)(\n val.sample,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}'\n );\n }\n\n if (\n stringedValue === 'StringMatching' ||\n stringedValue === 'StringNotMatching'\n ) {\n return (\n stringedValue +\n SPACE +\n printer(val.sample, config, indentation, depth, refs)\n );\n }\n\n if (\n stringedValue === 'StringContaining' ||\n stringedValue === 'StringNotContaining'\n ) {\n return (\n stringedValue +\n SPACE +\n printer(val.sample, config, indentation, depth, refs)\n );\n }\n\n return val.toAsymmetricMatcher();\n};\n\nexports.serialize = serialize;\n\nconst test = val => val && val.$$typeof === asymmetricMatcher;\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _ansiRegex = _interopRequireDefault(require('ansi-regex'));\n\nvar _ansiStyles = _interopRequireDefault(require('ansi-styles'));\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {default: obj};\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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 */\nconst toHumanReadableAnsi = text =>\n text.replace((0, _ansiRegex.default)(), match => {\n switch (match) {\n case _ansiStyles.default.red.close:\n case _ansiStyles.default.green.close:\n case _ansiStyles.default.cyan.close:\n case _ansiStyles.default.gray.close:\n case _ansiStyles.default.white.close:\n case _ansiStyles.default.yellow.close:\n case _ansiStyles.default.bgRed.close:\n case _ansiStyles.default.bgGreen.close:\n case _ansiStyles.default.bgYellow.close:\n case _ansiStyles.default.inverse.close:\n case _ansiStyles.default.dim.close:\n case _ansiStyles.default.bold.close:\n case _ansiStyles.default.reset.open:\n case _ansiStyles.default.reset.close:\n return '</>';\n\n case _ansiStyles.default.red.open:\n return '<red>';\n\n case _ansiStyles.default.green.open:\n return '<green>';\n\n case _ansiStyles.default.cyan.open:\n return '<cyan>';\n\n case _ansiStyles.default.gray.open:\n return '<gray>';\n\n case _ansiStyles.default.white.open:\n return '<white>';\n\n case _ansiStyles.default.yellow.open:\n return '<yellow>';\n\n case _ansiStyles.default.bgRed.open:\n return '<bgRed>';\n\n case _ansiStyles.default.bgGreen.open:\n return '<bgGreen>';\n\n case _ansiStyles.default.bgYellow.open:\n return '<bgYellow>';\n\n case _ansiStyles.default.inverse.open:\n return '<inverse>';\n\n case _ansiStyles.default.dim.open:\n return '<dim>';\n\n case _ansiStyles.default.bold.open:\n return '<bold>';\n\n default:\n return '';\n }\n });\n\nconst test = val =>\n typeof val === 'string' && !!val.match((0, _ansiRegex.default)());\n\nexports.test = test;\n\nconst serialize = (val, config, indentation, depth, refs, printer) =>\n printer(toHumanReadableAnsi(val), config, indentation, depth, refs);\n\nexports.serialize = serialize;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nmodule.exports = ({onlyFirst = false} = {}) => {\n\tconst pattern = [\n\t\t'[\\\\u001B\\\\u009B][[\\\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]+)*|[a-zA-Z\\\\d]+(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]*)*)?\\\\u0007)',\n\t\t'(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))'\n\t].join('|');\n\n\treturn new RegExp(pattern, onlyFirst ? undefined : 'g');\n};\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _collections = require('../collections');\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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/* eslint-disable local/ban-types-eventually */\nconst SPACE = ' ';\nconst OBJECT_NAMES = ['DOMStringMap', 'NamedNodeMap'];\nconst ARRAY_REGEXP = /^(HTML\\w*Collection|NodeList)$/;\n\nconst testName = name =>\n OBJECT_NAMES.indexOf(name) !== -1 || ARRAY_REGEXP.test(name);\n\nconst test = val =>\n val &&\n val.constructor &&\n !!val.constructor.name &&\n testName(val.constructor.name);\n\nexports.test = test;\n\nconst isNamedNodeMap = collection =>\n collection.constructor.name === 'NamedNodeMap';\n\nconst serialize = (collection, config, indentation, depth, refs, printer) => {\n const name = collection.constructor.name;\n\n if (++depth > config.maxDepth) {\n return '[' + name + ']';\n }\n\n return (\n (config.min ? '' : name + SPACE) +\n (OBJECT_NAMES.indexOf(name) !== -1\n ? '{' +\n (0, _collections.printObjectProperties)(\n isNamedNodeMap(collection)\n ? Array.from(collection).reduce((props, attribute) => {\n props[attribute.name] = attribute.value;\n return props;\n }, {})\n : {...collection},\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}'\n : '[' +\n (0, _collections.printListItems)(\n Array.from(collection),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']')\n );\n};\n\nexports.serialize = serialize;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.default = escapeHTML;\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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 */\nfunction escapeHTML(str) {\n return str.replace(/</g, '&lt;').replace(/>/g, '&gt;');\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.printText =\n exports.printProps =\n exports.printElementAsLeaf =\n exports.printElement =\n exports.printComment =\n exports.printChildren =\n void 0;\n\nvar _escapeHTML = _interopRequireDefault(require('./escapeHTML'));\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {default: obj};\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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// Return empty string if keys is empty.\nconst printProps = (keys, props, config, indentation, depth, refs, printer) => {\n const indentationNext = indentation + config.indent;\n const colors = config.colors;\n return keys\n .map(key => {\n const value = props[key];\n let printed = printer(value, config, indentationNext, depth, refs);\n\n if (typeof value !== 'string') {\n if (printed.indexOf('\\n') !== -1) {\n printed =\n config.spacingOuter +\n indentationNext +\n printed +\n config.spacingOuter +\n indentation;\n }\n\n printed = '{' + printed + '}';\n }\n\n return (\n config.spacingInner +\n indentation +\n colors.prop.open +\n key +\n colors.prop.close +\n '=' +\n colors.value.open +\n printed +\n colors.value.close\n );\n })\n .join('');\n}; // Return empty string if children is empty.\n\nexports.printProps = printProps;\n\nconst printChildren = (children, config, indentation, depth, refs, printer) =>\n children\n .map(\n child =>\n config.spacingOuter +\n indentation +\n (typeof child === 'string'\n ? printText(child, config)\n : printer(child, config, indentation, depth, refs))\n )\n .join('');\n\nexports.printChildren = printChildren;\n\nconst printText = (text, config) => {\n const contentColor = config.colors.content;\n return (\n contentColor.open + (0, _escapeHTML.default)(text) + contentColor.close\n );\n};\n\nexports.printText = printText;\n\nconst printComment = (comment, config) => {\n const commentColor = config.colors.comment;\n return (\n commentColor.open +\n '<!--' +\n (0, _escapeHTML.default)(comment) +\n '-->' +\n commentColor.close\n );\n}; // Separate the functions to format props, children, and element,\n// so a plugin could override a particular function, if needed.\n// Too bad, so sad: the traditional (but unnecessary) space\n// in a self-closing tagColor requires a second test of printedProps.\n\nexports.printComment = printComment;\n\nconst printElement = (\n type,\n printedProps,\n printedChildren,\n config,\n indentation\n) => {\n const tagColor = config.colors.tag;\n return (\n tagColor.open +\n '<' +\n type +\n (printedProps &&\n tagColor.close +\n printedProps +\n config.spacingOuter +\n indentation +\n tagColor.open) +\n (printedChildren\n ? '>' +\n tagColor.close +\n printedChildren +\n config.spacingOuter +\n indentation +\n tagColor.open +\n '</' +\n type\n : (printedProps && !config.min ? '' : ' ') + '/') +\n '>' +\n tagColor.close\n );\n};\n\nexports.printElement = printElement;\n\nconst printElementAsLeaf = (type, config) => {\n const tagColor = config.colors.tag;\n return (\n tagColor.open +\n '<' +\n type +\n tagColor.close +\n ' …' +\n tagColor.open +\n ' />' +\n tagColor.close\n );\n};\n\nexports.printElementAsLeaf = printElementAsLeaf;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _markup = require('./lib/markup');\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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 */\nconst ELEMENT_NODE = 1;\nconst TEXT_NODE = 3;\nconst COMMENT_NODE = 8;\nconst FRAGMENT_NODE = 11;\nconst ELEMENT_REGEXP = /^((HTML|SVG)\\w*)?Element$/;\n\nconst testHasAttribute = val => {\n try {\n return typeof val.hasAttribute === 'function' && val.hasAttribute('is');\n } catch {\n return false;\n }\n};\n\nconst testNode = val => {\n const constructorName = val.constructor.name;\n const {nodeType, tagName} = val;\n const isCustomElement =\n (typeof tagName === 'string' && tagName.includes('-')) ||\n testHasAttribute(val);\n return (\n (nodeType === ELEMENT_NODE &&\n (ELEMENT_REGEXP.test(constructorName) || isCustomElement)) ||\n (nodeType === TEXT_NODE && constructorName === 'Text') ||\n (nodeType === COMMENT_NODE && constructorName === 'Comment') ||\n (nodeType === FRAGMENT_NODE && constructorName === 'DocumentFragment')\n );\n};\n\nconst test = val => {\n var _val$constructor;\n\n return (\n (val === null || val === void 0\n ? void 0\n : (_val$constructor = val.constructor) === null ||\n _val$constructor === void 0\n ? void 0\n : _val$constructor.name) && testNode(val)\n );\n};\n\nexports.test = test;\n\nfunction nodeIsText(node) {\n return node.nodeType === TEXT_NODE;\n}\n\nfunction nodeIsComment(node) {\n return node.nodeType === COMMENT_NODE;\n}\n\nfunction nodeIsFragment(node) {\n return node.nodeType === FRAGMENT_NODE;\n}\n\nconst serialize = (node, config, indentation, depth, refs, printer) => {\n if (nodeIsText(node)) {\n return (0, _markup.printText)(node.data, config);\n }\n\n if (nodeIsComment(node)) {\n return (0, _markup.printComment)(node.data, config);\n }\n\n const type = nodeIsFragment(node)\n ? 'DocumentFragment'\n : node.tagName.toLowerCase();\n\n if (++depth > config.maxDepth) {\n return (0, _markup.printElementAsLeaf)(type, config);\n }\n\n return (0, _markup.printElement)(\n type,\n (0, _markup.printProps)(\n nodeIsFragment(node)\n ? []\n : Array.from(node.attributes)\n .map(attr => attr.name)\n .sort(),\n nodeIsFragment(node)\n ? {}\n : Array.from(node.attributes).reduce((props, attribute) => {\n props[attribute.name] = attribute.value;\n return props;\n }, {}),\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n (0, _markup.printChildren)(\n Array.prototype.slice.call(node.childNodes || node.children),\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n config,\n indentation\n );\n};\n\nexports.serialize = serialize;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _collections = require('../collections');\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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// SENTINEL constants are from https://github.com/facebook/immutable-js\nconst IS_ITERABLE_SENTINEL = '@@__IMMUTABLE_ITERABLE__@@';\nconst IS_LIST_SENTINEL = '@@__IMMUTABLE_LIST__@@';\nconst IS_KEYED_SENTINEL = '@@__IMMUTABLE_KEYED__@@';\nconst IS_MAP_SENTINEL = '@@__IMMUTABLE_MAP__@@';\nconst IS_ORDERED_SENTINEL = '@@__IMMUTABLE_ORDERED__@@';\nconst IS_RECORD_SENTINEL = '@@__IMMUTABLE_RECORD__@@'; // immutable v4\n\nconst IS_SEQ_SENTINEL = '@@__IMMUTABLE_SEQ__@@';\nconst IS_SET_SENTINEL = '@@__IMMUTABLE_SET__@@';\nconst IS_STACK_SENTINEL = '@@__IMMUTABLE_STACK__@@';\n\nconst getImmutableName = name => 'Immutable.' + name;\n\nconst printAsLeaf = name => '[' + name + ']';\n\nconst SPACE = ' ';\nconst LAZY = '…'; // Seq is lazy if it calls a method like filter\n\nconst printImmutableEntries = (\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n type\n) =>\n ++depth > config.maxDepth\n ? printAsLeaf(getImmutableName(type))\n : getImmutableName(type) +\n SPACE +\n '{' +\n (0, _collections.printIteratorEntries)(\n val.entries(),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}'; // Record has an entries method because it is a collection in immutable v3.\n// Return an iterator for Immutable Record from version v3 or v4.\n\nfunction getRecordEntries(val) {\n let i = 0;\n return {\n next() {\n if (i < val._keys.length) {\n const key = val._keys[i++];\n return {\n done: false,\n value: [key, val.get(key)]\n };\n }\n\n return {\n done: true,\n value: undefined\n };\n }\n };\n}\n\nconst printImmutableRecord = (\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n) => {\n // _name property is defined only for an Immutable Record instance\n // which was constructed with a second optional descriptive name arg\n const name = getImmutableName(val._name || 'Record');\n return ++depth > config.maxDepth\n ? printAsLeaf(name)\n : name +\n SPACE +\n '{' +\n (0, _collections.printIteratorEntries)(\n getRecordEntries(val),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}';\n};\n\nconst printImmutableSeq = (val, config, indentation, depth, refs, printer) => {\n const name = getImmutableName('Seq');\n\n if (++depth > config.maxDepth) {\n return printAsLeaf(name);\n }\n\n if (val[IS_KEYED_SENTINEL]) {\n return (\n name +\n SPACE +\n '{' + // from Immutable collection of entries or from ECMAScript object\n (val._iter || val._object\n ? (0, _collections.printIteratorEntries)(\n val.entries(),\n config,\n indentation,\n depth,\n refs,\n printer\n )\n : LAZY) +\n '}'\n );\n }\n\n return (\n name +\n SPACE +\n '[' +\n (val._iter || // from Immutable collection of values\n val._array || // from ECMAScript array\n val._collection || // from ECMAScript collection in immutable v4\n val._iterable // from ECMAScript collection in immutable v3\n ? (0, _collections.printIteratorValues)(\n val.values(),\n config,\n indentation,\n depth,\n refs,\n printer\n )\n : LAZY) +\n ']'\n );\n};\n\nconst printImmutableValues = (\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n type\n) =>\n ++depth > config.maxDepth\n ? printAsLeaf(getImmutableName(type))\n : getImmutableName(type) +\n SPACE +\n '[' +\n (0, _collections.printIteratorValues)(\n val.values(),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']';\n\nconst serialize = (val, config, indentation, depth, refs, printer) => {\n if (val[IS_MAP_SENTINEL]) {\n return printImmutableEntries(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n val[IS_ORDERED_SENTINEL] ? 'OrderedMap' : 'Map'\n );\n }\n\n if (val[IS_LIST_SENTINEL]) {\n return printImmutableValues(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n 'List'\n );\n }\n\n if (val[IS_SET_SENTINEL]) {\n return printImmutableValues(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n val[IS_ORDERED_SENTINEL] ? 'OrderedSet' : 'Set'\n );\n }\n\n if (val[IS_STACK_SENTINEL]) {\n return printImmutableValues(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n 'Stack'\n );\n }\n\n if (val[IS_SEQ_SENTINEL]) {\n return printImmutableSeq(val, config, indentation, depth, refs, printer);\n } // For compatibility with immutable v3 and v4, let record be the default.\n\n return printImmutableRecord(val, config, indentation, depth, refs, printer);\n}; // Explicitly comparing sentinel properties to true avoids false positive\n// when mock identity-obj-proxy returns the key as the value for any key.\n\nexports.serialize = serialize;\n\nconst test = val =>\n val &&\n (val[IS_ITERABLE_SENTINEL] === true || val[IS_RECORD_SENTINEL] === true);\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\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","/** @license React v17.0.2\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'use strict';var b=60103,c=60106,d=60107,e=60108,f=60114,g=60109,h=60110,k=60112,l=60113,m=60120,n=60115,p=60116,q=60121,r=60122,u=60117,v=60129,w=60131;\nif(\"function\"===typeof Symbol&&Symbol.for){var x=Symbol.for;b=x(\"react.element\");c=x(\"react.portal\");d=x(\"react.fragment\");e=x(\"react.strict_mode\");f=x(\"react.profiler\");g=x(\"react.provider\");h=x(\"react.context\");k=x(\"react.forward_ref\");l=x(\"react.suspense\");m=x(\"react.suspense_list\");n=x(\"react.memo\");p=x(\"react.lazy\");q=x(\"react.block\");r=x(\"react.server.block\");u=x(\"react.fundamental\");v=x(\"react.debug_trace_mode\");w=x(\"react.legacy_hidden\")}\nfunction y(a){if(\"object\"===typeof a&&null!==a){var t=a.$$typeof;switch(t){case b:switch(a=a.type,a){case d:case f:case e:case l:case m:return a;default:switch(a=a&&a.$$typeof,a){case h:case k:case p:case n:case g:return a;default:return t}}case c:return t}}}var z=g,A=b,B=k,C=d,D=p,E=n,F=c,G=f,H=e,I=l;exports.ContextConsumer=h;exports.ContextProvider=z;exports.Element=A;exports.ForwardRef=B;exports.Fragment=C;exports.Lazy=D;exports.Memo=E;exports.Portal=F;exports.Profiler=G;exports.StrictMode=H;\nexports.Suspense=I;exports.isAsyncMode=function(){return!1};exports.isConcurrentMode=function(){return!1};exports.isContextConsumer=function(a){return y(a)===h};exports.isContextProvider=function(a){return y(a)===g};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===b};exports.isForwardRef=function(a){return y(a)===k};exports.isFragment=function(a){return y(a)===d};exports.isLazy=function(a){return y(a)===p};exports.isMemo=function(a){return y(a)===n};\nexports.isPortal=function(a){return y(a)===c};exports.isProfiler=function(a){return y(a)===f};exports.isStrictMode=function(a){return y(a)===e};exports.isSuspense=function(a){return y(a)===l};exports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===d||a===f||a===v||a===e||a===l||a===m||a===w||\"object\"===typeof a&&null!==a&&(a.$$typeof===p||a.$$typeof===n||a.$$typeof===g||a.$$typeof===h||a.$$typeof===k||a.$$typeof===u||a.$$typeof===q||a[0]===r)?!0:!1};\nexports.typeOf=y;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar ReactIs = _interopRequireWildcard(require('react-is'));\n\nvar _markup = require('./lib/markup');\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== 'function') return null;\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n return (_getRequireWildcardCache = function (nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\n\nfunction _interopRequireWildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) {\n return obj;\n }\n if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) {\n return {default: obj};\n }\n var cache = _getRequireWildcardCache(nodeInterop);\n if (cache && cache.has(obj)) {\n return cache.get(obj);\n }\n var newObj = {};\n var hasPropertyDescriptor =\n Object.defineProperty && Object.getOwnPropertyDescriptor;\n for (var key in obj) {\n if (key !== 'default' && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor\n ? Object.getOwnPropertyDescriptor(obj, key)\n : null;\n if (desc && (desc.get || desc.set)) {\n Object.defineProperty(newObj, key, desc);\n } else {\n newObj[key] = obj[key];\n }\n }\n }\n newObj.default = obj;\n if (cache) {\n cache.set(obj, newObj);\n }\n return newObj;\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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// Given element.props.children, or subtree during recursive traversal,\n// return flattened array of children.\nconst getChildren = (arg, children = []) => {\n if (Array.isArray(arg)) {\n arg.forEach(item => {\n getChildren(item, children);\n });\n } else if (arg != null && arg !== false) {\n children.push(arg);\n }\n\n return children;\n};\n\nconst getType = element => {\n const type = element.type;\n\n if (typeof type === 'string') {\n return type;\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || 'Unknown';\n }\n\n if (ReactIs.isFragment(element)) {\n return 'React.Fragment';\n }\n\n if (ReactIs.isSuspense(element)) {\n return 'React.Suspense';\n }\n\n if (typeof type === 'object' && type !== null) {\n if (ReactIs.isContextProvider(element)) {\n return 'Context.Provider';\n }\n\n if (ReactIs.isContextConsumer(element)) {\n return 'Context.Consumer';\n }\n\n if (ReactIs.isForwardRef(element)) {\n if (type.displayName) {\n return type.displayName;\n }\n\n const functionName = type.render.displayName || type.render.name || '';\n return functionName !== ''\n ? 'ForwardRef(' + functionName + ')'\n : 'ForwardRef';\n }\n\n if (ReactIs.isMemo(element)) {\n const functionName =\n type.displayName || type.type.displayName || type.type.name || '';\n return functionName !== '' ? 'Memo(' + functionName + ')' : 'Memo';\n }\n }\n\n return 'UNDEFINED';\n};\n\nconst getPropKeys = element => {\n const {props} = element;\n return Object.keys(props)\n .filter(key => key !== 'children' && props[key] !== undefined)\n .sort();\n};\n\nconst serialize = (element, config, indentation, depth, refs, printer) =>\n ++depth > config.maxDepth\n ? (0, _markup.printElementAsLeaf)(getType(element), config)\n : (0, _markup.printElement)(\n getType(element),\n (0, _markup.printProps)(\n getPropKeys(element),\n element.props,\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n (0, _markup.printChildren)(\n getChildren(element.props.children),\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n config,\n indentation\n );\n\nexports.serialize = serialize;\n\nconst test = val => val != null && ReactIs.isElement(val);\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _markup = require('./lib/markup');\n\nvar global = (function () {\n if (typeof globalThis !== 'undefined') {\n return globalThis;\n } else if (typeof global !== 'undefined') {\n return global;\n } else if (typeof self !== 'undefined') {\n return self;\n } else if (typeof window !== 'undefined') {\n return window;\n } else {\n return Function('return this')();\n }\n})();\n\nvar Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;\nconst testSymbol =\n typeof Symbol === 'function' && Symbol.for\n ? Symbol.for('react.test.json')\n : 0xea71357;\n\nconst getPropKeys = object => {\n const {props} = object;\n return props\n ? Object.keys(props)\n .filter(key => props[key] !== undefined)\n .sort()\n : [];\n};\n\nconst serialize = (object, config, indentation, depth, refs, printer) =>\n ++depth > config.maxDepth\n ? (0, _markup.printElementAsLeaf)(object.type, config)\n : (0, _markup.printElement)(\n object.type,\n object.props\n ? (0, _markup.printProps)(\n getPropKeys(object),\n object.props,\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n )\n : '',\n object.children\n ? (0, _markup.printChildren)(\n object.children,\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n )\n : '',\n config,\n indentation\n );\n\nexports.serialize = serialize;\n\nconst test = val => val && val.$$typeof === testSymbol;\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.default = exports.DEFAULT_OPTIONS = void 0;\nexports.format = format;\nexports.plugins = void 0;\n\nvar _ansiStyles = _interopRequireDefault(require('ansi-styles'));\n\nvar _collections = require('./collections');\n\nvar _AsymmetricMatcher = _interopRequireDefault(\n require('./plugins/AsymmetricMatcher')\n);\n\nvar _ConvertAnsi = _interopRequireDefault(require('./plugins/ConvertAnsi'));\n\nvar _DOMCollection = _interopRequireDefault(require('./plugins/DOMCollection'));\n\nvar _DOMElement = _interopRequireDefault(require('./plugins/DOMElement'));\n\nvar _Immutable = _interopRequireDefault(require('./plugins/Immutable'));\n\nvar _ReactElement = _interopRequireDefault(require('./plugins/ReactElement'));\n\nvar _ReactTestComponent = _interopRequireDefault(\n require('./plugins/ReactTestComponent')\n);\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {default: obj};\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\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/* eslint-disable local/ban-types-eventually */\nconst toString = Object.prototype.toString;\nconst toISOString = Date.prototype.toISOString;\nconst errorToString = Error.prototype.toString;\nconst regExpToString = RegExp.prototype.toString;\n/**\n * Explicitly comparing typeof constructor to function avoids undefined as name\n * when mock identity-obj-proxy returns the key as the value for any key.\n */\n\nconst getConstructorName = val =>\n (typeof val.constructor === 'function' && val.constructor.name) || 'Object';\n/* global window */\n\n/** Is val is equal to global window object? Works even if it does not exist :) */\n\nconst isWindow = val => typeof window !== 'undefined' && val === window;\n\nconst SYMBOL_REGEXP = /^Symbol\\((.*)\\)(.*)$/;\nconst NEWLINE_REGEXP = /\\n/gi;\n\nclass PrettyFormatPluginError extends Error {\n constructor(message, stack) {\n super(message);\n this.stack = stack;\n this.name = this.constructor.name;\n }\n}\n\nfunction isToStringedArrayType(toStringed) {\n return (\n toStringed === '[object Array]' ||\n toStringed === '[object ArrayBuffer]' ||\n toStringed === '[object DataView]' ||\n toStringed === '[object Float32Array]' ||\n toStringed === '[object Float64Array]' ||\n toStringed === '[object Int8Array]' ||\n toStringed === '[object Int16Array]' ||\n toStringed === '[object Int32Array]' ||\n toStringed === '[object Uint8Array]' ||\n toStringed === '[object Uint8ClampedArray]' ||\n toStringed === '[object Uint16Array]' ||\n toStringed === '[object Uint32Array]'\n );\n}\n\nfunction printNumber(val) {\n return Object.is(val, -0) ? '-0' : String(val);\n}\n\nfunction printBigInt(val) {\n return String(`${val}n`);\n}\n\nfunction printFunction(val, printFunctionName) {\n if (!printFunctionName) {\n return '[Function]';\n }\n\n return '[Function ' + (val.name || 'anonymous') + ']';\n}\n\nfunction printSymbol(val) {\n return String(val).replace(SYMBOL_REGEXP, 'Symbol($1)');\n}\n\nfunction printError(val) {\n return '[' + errorToString.call(val) + ']';\n}\n/**\n * The first port of call for printing an object, handles most of the\n * data-types in JS.\n */\n\nfunction printBasicValue(val, printFunctionName, escapeRegex, escapeString) {\n if (val === true || val === false) {\n return '' + val;\n }\n\n if (val === undefined) {\n return 'undefined';\n }\n\n if (val === null) {\n return 'null';\n }\n\n const typeOf = typeof val;\n\n if (typeOf === 'number') {\n return printNumber(val);\n }\n\n if (typeOf === 'bigint') {\n return printBigInt(val);\n }\n\n if (typeOf === 'string') {\n if (escapeString) {\n return '\"' + val.replace(/\"|\\\\/g, '\\\\$&') + '\"';\n }\n\n return '\"' + val + '\"';\n }\n\n if (typeOf === 'function') {\n return printFunction(val, printFunctionName);\n }\n\n if (typeOf === 'symbol') {\n return printSymbol(val);\n }\n\n const toStringed = toString.call(val);\n\n if (toStringed === '[object WeakMap]') {\n return 'WeakMap {}';\n }\n\n if (toStringed === '[object WeakSet]') {\n return 'WeakSet {}';\n }\n\n if (\n toStringed === '[object Function]' ||\n toStringed === '[object GeneratorFunction]'\n ) {\n return printFunction(val, printFunctionName);\n }\n\n if (toStringed === '[object Symbol]') {\n return printSymbol(val);\n }\n\n if (toStringed === '[object Date]') {\n return isNaN(+val) ? 'Date { NaN }' : toISOString.call(val);\n }\n\n if (toStringed === '[object Error]') {\n return printError(val);\n }\n\n if (toStringed === '[object RegExp]') {\n if (escapeRegex) {\n // https://github.com/benjamingr/RegExp.escape/blob/main/polyfill.js\n return regExpToString.call(val).replace(/[\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n }\n\n return regExpToString.call(val);\n }\n\n if (val instanceof Error) {\n return printError(val);\n }\n\n return null;\n}\n/**\n * Handles more complex objects ( such as objects with circular references.\n * maps and sets etc )\n */\n\nfunction printComplexValue(\n val,\n config,\n indentation,\n depth,\n refs,\n hasCalledToJSON\n) {\n if (refs.indexOf(val) !== -1) {\n return '[Circular]';\n }\n\n refs = refs.slice();\n refs.push(val);\n const hitMaxDepth = ++depth > config.maxDepth;\n const min = config.min;\n\n if (\n config.callToJSON &&\n !hitMaxDepth &&\n val.toJSON &&\n typeof val.toJSON === 'function' &&\n !hasCalledToJSON\n ) {\n return printer(val.toJSON(), config, indentation, depth, refs, true);\n }\n\n const toStringed = toString.call(val);\n\n if (toStringed === '[object Arguments]') {\n return hitMaxDepth\n ? '[Arguments]'\n : (min ? '' : 'Arguments ') +\n '[' +\n (0, _collections.printListItems)(\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']';\n }\n\n if (isToStringedArrayType(toStringed)) {\n return hitMaxDepth\n ? '[' + val.constructor.name + ']'\n : (min\n ? ''\n : !config.printBasicPrototype && val.constructor.name === 'Array'\n ? ''\n : val.constructor.name + ' ') +\n '[' +\n (0, _collections.printListItems)(\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']';\n }\n\n if (toStringed === '[object Map]') {\n return hitMaxDepth\n ? '[Map]'\n : 'Map {' +\n (0, _collections.printIteratorEntries)(\n val.entries(),\n config,\n indentation,\n depth,\n refs,\n printer,\n ' => '\n ) +\n '}';\n }\n\n if (toStringed === '[object Set]') {\n return hitMaxDepth\n ? '[Set]'\n : 'Set {' +\n (0, _collections.printIteratorValues)(\n val.values(),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}';\n } // Avoid failure to serialize global window object in jsdom test environment.\n // For example, not even relevant if window is prop of React element.\n\n return hitMaxDepth || isWindow(val)\n ? '[' + getConstructorName(val) + ']'\n : (min\n ? ''\n : !config.printBasicPrototype && getConstructorName(val) === 'Object'\n ? ''\n : getConstructorName(val) + ' ') +\n '{' +\n (0, _collections.printObjectProperties)(\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}';\n}\n\nfunction isNewPlugin(plugin) {\n return plugin.serialize != null;\n}\n\nfunction printPlugin(plugin, val, config, indentation, depth, refs) {\n let printed;\n\n try {\n printed = isNewPlugin(plugin)\n ? plugin.serialize(val, config, indentation, depth, refs, printer)\n : plugin.print(\n val,\n valChild => printer(valChild, config, indentation, depth, refs),\n str => {\n const indentationNext = indentation + config.indent;\n return (\n indentationNext +\n str.replace(NEWLINE_REGEXP, '\\n' + indentationNext)\n );\n },\n {\n edgeSpacing: config.spacingOuter,\n min: config.min,\n spacing: config.spacingInner\n },\n config.colors\n );\n } catch (error) {\n throw new PrettyFormatPluginError(error.message, error.stack);\n }\n\n if (typeof printed !== 'string') {\n throw new Error(\n `pretty-format: Plugin must return type \"string\" but instead returned \"${typeof printed}\".`\n );\n }\n\n return printed;\n}\n\nfunction findPlugin(plugins, val) {\n for (let p = 0; p < plugins.length; p++) {\n try {\n if (plugins[p].test(val)) {\n return plugins[p];\n }\n } catch (error) {\n throw new PrettyFormatPluginError(error.message, error.stack);\n }\n }\n\n return null;\n}\n\nfunction printer(val, config, indentation, depth, refs, hasCalledToJSON) {\n const plugin = findPlugin(config.plugins, val);\n\n if (plugin !== null) {\n return printPlugin(plugin, val, config, indentation, depth, refs);\n }\n\n const basicResult = printBasicValue(\n val,\n config.printFunctionName,\n config.escapeRegex,\n config.escapeString\n );\n\n if (basicResult !== null) {\n return basicResult;\n }\n\n return printComplexValue(\n val,\n config,\n indentation,\n depth,\n refs,\n hasCalledToJSON\n );\n}\n\nconst DEFAULT_THEME = {\n comment: 'gray',\n content: 'reset',\n prop: 'yellow',\n tag: 'cyan',\n value: 'green'\n};\nconst DEFAULT_THEME_KEYS = Object.keys(DEFAULT_THEME);\nconst DEFAULT_OPTIONS = {\n callToJSON: true,\n compareKeys: undefined,\n escapeRegex: false,\n escapeString: true,\n highlight: false,\n indent: 2,\n maxDepth: Infinity,\n min: false,\n plugins: [],\n printBasicPrototype: true,\n printFunctionName: true,\n theme: DEFAULT_THEME\n};\nexports.DEFAULT_OPTIONS = DEFAULT_OPTIONS;\n\nfunction validateOptions(options) {\n Object.keys(options).forEach(key => {\n if (!DEFAULT_OPTIONS.hasOwnProperty(key)) {\n throw new Error(`pretty-format: Unknown option \"${key}\".`);\n }\n });\n\n if (options.min && options.indent !== undefined && options.indent !== 0) {\n throw new Error(\n 'pretty-format: Options \"min\" and \"indent\" cannot be used together.'\n );\n }\n\n if (options.theme !== undefined) {\n if (options.theme === null) {\n throw new Error('pretty-format: Option \"theme\" must not be null.');\n }\n\n if (typeof options.theme !== 'object') {\n throw new Error(\n `pretty-format: Option \"theme\" must be of type \"object\" but instead received \"${typeof options.theme}\".`\n );\n }\n }\n}\n\nconst getColorsHighlight = options =>\n DEFAULT_THEME_KEYS.reduce((colors, key) => {\n const value =\n options.theme && options.theme[key] !== undefined\n ? options.theme[key]\n : DEFAULT_THEME[key];\n const color = value && _ansiStyles.default[value];\n\n if (\n color &&\n typeof color.close === 'string' &&\n typeof color.open === 'string'\n ) {\n colors[key] = color;\n } else {\n throw new Error(\n `pretty-format: Option \"theme\" has a key \"${key}\" whose value \"${value}\" is undefined in ansi-styles.`\n );\n }\n\n return colors;\n }, Object.create(null));\n\nconst getColorsEmpty = () =>\n DEFAULT_THEME_KEYS.reduce((colors, key) => {\n colors[key] = {\n close: '',\n open: ''\n };\n return colors;\n }, Object.create(null));\n\nconst getPrintFunctionName = options =>\n options && options.printFunctionName !== undefined\n ? options.printFunctionName\n : DEFAULT_OPTIONS.printFunctionName;\n\nconst getEscapeRegex = options =>\n options && options.escapeRegex !== undefined\n ? options.escapeRegex\n : DEFAULT_OPTIONS.escapeRegex;\n\nconst getEscapeString = options =>\n options && options.escapeString !== undefined\n ? options.escapeString\n : DEFAULT_OPTIONS.escapeString;\n\nconst getConfig = options => {\n var _options$printBasicPr;\n\n return {\n callToJSON:\n options && options.callToJSON !== undefined\n ? options.callToJSON\n : DEFAULT_OPTIONS.callToJSON,\n colors:\n options && options.highlight\n ? getColorsHighlight(options)\n : getColorsEmpty(),\n compareKeys:\n options && typeof options.compareKeys === 'function'\n ? options.compareKeys\n : DEFAULT_OPTIONS.compareKeys,\n escapeRegex: getEscapeRegex(options),\n escapeString: getEscapeString(options),\n indent:\n options && options.min\n ? ''\n : createIndent(\n options && options.indent !== undefined\n ? options.indent\n : DEFAULT_OPTIONS.indent\n ),\n maxDepth:\n options && options.maxDepth !== undefined\n ? options.maxDepth\n : DEFAULT_OPTIONS.maxDepth,\n min:\n options && options.min !== undefined ? options.min : DEFAULT_OPTIONS.min,\n plugins:\n options && options.plugins !== undefined\n ? options.plugins\n : DEFAULT_OPTIONS.plugins,\n printBasicPrototype:\n (_options$printBasicPr =\n options === null || options === void 0\n ? void 0\n : options.printBasicPrototype) !== null &&\n _options$printBasicPr !== void 0\n ? _options$printBasicPr\n : true,\n printFunctionName: getPrintFunctionName(options),\n spacingInner: options && options.min ? ' ' : '\\n',\n spacingOuter: options && options.min ? '' : '\\n'\n };\n};\n\nfunction createIndent(indent) {\n return new Array(indent + 1).join(' ');\n}\n/**\n * Returns a presentation string of your `val` object\n * @param val any potential JavaScript object\n * @param options Custom settings\n */\n\nfunction format(val, options) {\n if (options) {\n validateOptions(options);\n\n if (options.plugins) {\n const plugin = findPlugin(options.plugins, val);\n\n if (plugin !== null) {\n return printPlugin(plugin, val, getConfig(options), '', 0, []);\n }\n }\n }\n\n const basicResult = printBasicValue(\n val,\n getPrintFunctionName(options),\n getEscapeRegex(options),\n getEscapeString(options)\n );\n\n if (basicResult !== null) {\n return basicResult;\n }\n\n return printComplexValue(val, getConfig(options), '', 0, []);\n}\n\nconst plugins = {\n AsymmetricMatcher: _AsymmetricMatcher.default,\n ConvertAnsi: _ConvertAnsi.default,\n DOMCollection: _DOMCollection.default,\n DOMElement: _DOMElement.default,\n Immutable: _Immutable.default,\n ReactElement: _ReactElement.default,\n ReactTestComponent: _ReactTestComponent.default\n};\nexports.plugins = plugins;\nvar _default = format;\nexports.default = _default;\n","/**\n * @source {https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from#Polyfill}\n * but without thisArg (too hard to type, no need to `this`)\n */\nvar toStr = Object.prototype.toString;\nfunction isCallable(fn) {\n return typeof fn === \"function\" || toStr.call(fn) === \"[object Function]\";\n}\nfunction toInteger(value) {\n var number = Number(value);\n if (isNaN(number)) {\n return 0;\n }\n if (number === 0 || !isFinite(number)) {\n return number;\n }\n return (number > 0 ? 1 : -1) * Math.floor(Math.abs(number));\n}\nvar maxSafeInteger = Math.pow(2, 53) - 1;\nfunction toLength(value) {\n var len = toInteger(value);\n return Math.min(Math.max(len, 0), maxSafeInteger);\n}\n/**\n * Creates an array from an iterable object.\n * @param iterable An iterable object to convert to an array.\n */\n\n/**\n * Creates an array from an iterable object.\n * @param iterable An iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of 'this' used to invoke the mapfn.\n */\nexport default function arrayFrom(arrayLike, mapFn) {\n // 1. Let C be the this value.\n // edit(@eps1lon): we're not calling it as Array.from\n var C = Array;\n\n // 2. Let items be ToObject(arrayLike).\n var items = Object(arrayLike);\n\n // 3. ReturnIfAbrupt(items).\n if (arrayLike == null) {\n throw new TypeError(\"Array.from requires an array-like object - not null or undefined\");\n }\n\n // 4. If mapfn is undefined, then let mapping be false.\n // const mapFn = arguments.length > 1 ? arguments[1] : void undefined;\n\n if (typeof mapFn !== \"undefined\") {\n // 5. else\n // 5. a If IsCallable(mapfn) is false, throw a TypeError exception.\n if (!isCallable(mapFn)) {\n throw new TypeError(\"Array.from: when provided, the second argument must be a function\");\n }\n }\n\n // 10. Let lenValue be Get(items, \"length\").\n // 11. Let len be ToLength(lenValue).\n var len = toLength(items.length);\n\n // 13. If IsConstructor(C) is true, then\n // 13. a. Let A be the result of calling the [[Construct]] internal method\n // of C with an argument list containing the single item len.\n // 14. a. Else, Let A be ArrayCreate(len).\n var A = isCallable(C) ? Object(new C(len)) : new Array(len);\n\n // 16. Let k be 0.\n var k = 0;\n // 17. Repeat, while k < len… (also steps a - h)\n var kValue;\n while (k < len) {\n kValue = items[k];\n if (mapFn) {\n A[k] = mapFn(kValue, k);\n } else {\n A[k] = kValue;\n }\n k += 1;\n }\n // 18. Let putStatus be Put(A, \"length\", len, true).\n A.length = len;\n // 20. Return A.\n return A;\n}\n//# sourceMappingURL=array.from.mjs.map","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return _typeof(key) === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (_typeof(input) !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (_typeof(res) !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\n// for environments without Set we fallback to arrays with unique members\nvar SetLike = /*#__PURE__*/function () {\n function SetLike() {\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n _classCallCheck(this, SetLike);\n _defineProperty(this, \"items\", void 0);\n this.items = items;\n }\n _createClass(SetLike, [{\n key: \"add\",\n value: function add(value) {\n if (this.has(value) === false) {\n this.items.push(value);\n }\n return this;\n }\n }, {\n key: \"clear\",\n value: function clear() {\n this.items = [];\n }\n }, {\n key: \"delete\",\n value: function _delete(value) {\n var previousLength = this.items.length;\n this.items = this.items.filter(function (item) {\n return item !== value;\n });\n return previousLength !== this.items.length;\n }\n }, {\n key: \"forEach\",\n value: function forEach(callbackfn) {\n var _this = this;\n this.items.forEach(function (item) {\n callbackfn(item, item, _this);\n });\n }\n }, {\n key: \"has\",\n value: function has(value) {\n return this.items.indexOf(value) !== -1;\n }\n }, {\n key: \"size\",\n get: function get() {\n return this.items.length;\n }\n }]);\n return SetLike;\n}();\nexport default typeof Set === \"undefined\" ? Set : SetLike;\n//# sourceMappingURL=SetLike.mjs.map","// https://w3c.github.io/html-aria/#document-conformance-requirements-for-use-of-aria-attributes-in-html\n\n/**\n * Safe Element.localName for all supported environments\n * @param element\n */\nexport function getLocalName(element) {\n var _element$localName;\n return (// eslint-disable-next-line no-restricted-properties -- actual guard for environments without localName\n (_element$localName = element.localName) !== null && _element$localName !== void 0 ? _element$localName :\n // eslint-disable-next-line no-restricted-properties -- required for the fallback\n element.tagName.toLowerCase()\n );\n}\nvar localNameToRoleMappings = {\n article: \"article\",\n aside: \"complementary\",\n button: \"button\",\n datalist: \"listbox\",\n dd: \"definition\",\n details: \"group\",\n dialog: \"dialog\",\n dt: \"term\",\n fieldset: \"group\",\n figure: \"figure\",\n // WARNING: Only with an accessible name\n form: \"form\",\n footer: \"contentinfo\",\n h1: \"heading\",\n h2: \"heading\",\n h3: \"heading\",\n h4: \"heading\",\n h5: \"heading\",\n h6: \"heading\",\n header: \"banner\",\n hr: \"separator\",\n html: \"document\",\n legend: \"legend\",\n li: \"listitem\",\n math: \"math\",\n main: \"main\",\n menu: \"list\",\n nav: \"navigation\",\n ol: \"list\",\n optgroup: \"group\",\n // WARNING: Only in certain context\n option: \"option\",\n output: \"status\",\n progress: \"progressbar\",\n // WARNING: Only with an accessible name\n section: \"region\",\n summary: \"button\",\n table: \"table\",\n tbody: \"rowgroup\",\n textarea: \"textbox\",\n tfoot: \"rowgroup\",\n // WARNING: Only in certain context\n td: \"cell\",\n th: \"columnheader\",\n thead: \"rowgroup\",\n tr: \"row\",\n ul: \"list\"\n};\nvar prohibitedAttributes = {\n caption: new Set([\"aria-label\", \"aria-labelledby\"]),\n code: new Set([\"aria-label\", \"aria-labelledby\"]),\n deletion: new Set([\"aria-label\", \"aria-labelledby\"]),\n emphasis: new Set([\"aria-label\", \"aria-labelledby\"]),\n generic: new Set([\"aria-label\", \"aria-labelledby\", \"aria-roledescription\"]),\n insertion: new Set([\"aria-label\", \"aria-labelledby\"]),\n paragraph: new Set([\"aria-label\", \"aria-labelledby\"]),\n presentation: new Set([\"aria-label\", \"aria-labelledby\"]),\n strong: new Set([\"aria-label\", \"aria-labelledby\"]),\n subscript: new Set([\"aria-label\", \"aria-labelledby\"]),\n superscript: new Set([\"aria-label\", \"aria-labelledby\"])\n};\n\n/**\n *\n * @param element\n * @param role The role used for this element. This is specified to control whether you want to use the implicit or explicit role.\n */\nfunction hasGlobalAriaAttributes(element, role) {\n // https://rawgit.com/w3c/aria/stable/#global_states\n // commented attributes are deprecated\n return [\"aria-atomic\", \"aria-busy\", \"aria-controls\", \"aria-current\", \"aria-describedby\", \"aria-details\",\n // \"disabled\",\n \"aria-dropeffect\",\n // \"errormessage\",\n \"aria-flowto\", \"aria-grabbed\",\n // \"haspopup\",\n \"aria-hidden\",\n // \"invalid\",\n \"aria-keyshortcuts\", \"aria-label\", \"aria-labelledby\", \"aria-live\", \"aria-owns\", \"aria-relevant\", \"aria-roledescription\"].some(function (attributeName) {\n var _prohibitedAttributes;\n return element.hasAttribute(attributeName) && !((_prohibitedAttributes = prohibitedAttributes[role]) !== null && _prohibitedAttributes !== void 0 && _prohibitedAttributes.has(attributeName));\n });\n}\nfunction ignorePresentationalRole(element, implicitRole) {\n // https://rawgit.com/w3c/aria/stable/#conflict_resolution_presentation_none\n return hasGlobalAriaAttributes(element, implicitRole);\n}\nexport default function getRole(element) {\n var explicitRole = getExplicitRole(element);\n if (explicitRole === null || explicitRole === \"presentation\") {\n var implicitRole = getImplicitRole(element);\n if (explicitRole !== \"presentation\" || ignorePresentationalRole(element, implicitRole || \"\")) {\n return implicitRole;\n }\n }\n return explicitRole;\n}\nfunction getImplicitRole(element) {\n var mappedByTag = localNameToRoleMappings[getLocalName(element)];\n if (mappedByTag !== undefined) {\n return mappedByTag;\n }\n switch (getLocalName(element)) {\n case \"a\":\n case \"area\":\n case \"link\":\n if (element.hasAttribute(\"href\")) {\n return \"link\";\n }\n break;\n case \"img\":\n if (element.getAttribute(\"alt\") === \"\" && !ignorePresentationalRole(element, \"img\")) {\n return \"presentation\";\n }\n return \"img\";\n case \"input\":\n {\n var _ref = element,\n type = _ref.type;\n switch (type) {\n case \"button\":\n case \"image\":\n case \"reset\":\n case \"submit\":\n return \"button\";\n case \"checkbox\":\n case \"radio\":\n return type;\n case \"range\":\n return \"slider\";\n case \"email\":\n case \"tel\":\n case \"text\":\n case \"url\":\n if (element.hasAttribute(\"list\")) {\n return \"combobox\";\n }\n return \"textbox\";\n case \"search\":\n if (element.hasAttribute(\"list\")) {\n return \"combobox\";\n }\n return \"searchbox\";\n case \"number\":\n return \"spinbutton\";\n default:\n return null;\n }\n }\n case \"select\":\n if (element.hasAttribute(\"multiple\") || element.size > 1) {\n return \"listbox\";\n }\n return \"combobox\";\n }\n return null;\n}\nfunction getExplicitRole(element) {\n var role = element.getAttribute(\"role\");\n if (role !== null) {\n var explicitRole = role.trim().split(\" \")[0];\n // String.prototype.split(sep, limit) will always return an array with at least one member\n // as long as limit is either undefined or > 0\n if (explicitRole.length > 0) {\n return explicitRole;\n }\n }\n return null;\n}\n//# sourceMappingURL=getRole.mjs.map","export { getLocalName } from \"./getRole.mjs\";\nimport getRole, { getLocalName } from \"./getRole.mjs\";\nexport function isElement(node) {\n return node !== null && node.nodeType === node.ELEMENT_NODE;\n}\nexport function isHTMLTableCaptionElement(node) {\n return isElement(node) && getLocalName(node) === \"caption\";\n}\nexport function isHTMLInputElement(node) {\n return isElement(node) && getLocalName(node) === \"input\";\n}\nexport function isHTMLOptGroupElement(node) {\n return isElement(node) && getLocalName(node) === \"optgroup\";\n}\nexport function isHTMLSelectElement(node) {\n return isElement(node) && getLocalName(node) === \"select\";\n}\nexport function isHTMLTableElement(node) {\n return isElement(node) && getLocalName(node) === \"table\";\n}\nexport function isHTMLTextAreaElement(node) {\n return isElement(node) && getLocalName(node) === \"textarea\";\n}\nexport function safeWindow(node) {\n var _ref = node.ownerDocument === null ? node : node.ownerDocument,\n defaultView = _ref.defaultView;\n if (defaultView === null) {\n throw new TypeError(\"no window available\");\n }\n return defaultView;\n}\nexport function isHTMLFieldSetElement(node) {\n return isElement(node) && getLocalName(node) === \"fieldset\";\n}\nexport function isHTMLLegendElement(node) {\n return isElement(node) && getLocalName(node) === \"legend\";\n}\nexport function isHTMLSlotElement(node) {\n return isElement(node) && getLocalName(node) === \"slot\";\n}\nexport function isSVGElement(node) {\n return isElement(node) && node.ownerSVGElement !== undefined;\n}\nexport function isSVGSVGElement(node) {\n return isElement(node) && getLocalName(node) === \"svg\";\n}\nexport function isSVGTitleElement(node) {\n return isSVGElement(node) && getLocalName(node) === \"title\";\n}\n\n/**\n *\n * @param {Node} node -\n * @param {string} attributeName -\n * @returns {Element[]} -\n */\nexport function queryIdRefs(node, attributeName) {\n if (isElement(node) && node.hasAttribute(attributeName)) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- safe due to hasAttribute check\n var ids = node.getAttribute(attributeName).split(\" \");\n\n // Browsers that don't support shadow DOM won't have getRootNode\n var root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n return ids.map(function (id) {\n return root.getElementById(id);\n }).filter(function (element) {\n return element !== null;\n }\n // TODO: why does this not narrow?\n );\n }\n\n return [];\n}\nexport function hasAnyConcreteRoles(node, roles) {\n if (isElement(node)) {\n return roles.indexOf(getRole(node)) !== -1;\n }\n return false;\n}\n//# sourceMappingURL=util.mjs.map","/**\n * implements https://w3c.github.io/accname/\n */\nimport ArrayFrom from \"./polyfills/array.from.mjs\";\nimport SetLike from \"./polyfills/SetLike.mjs\";\nimport { hasAnyConcreteRoles, isElement, isHTMLTableCaptionElement, isHTMLInputElement, isHTMLSelectElement, isHTMLTextAreaElement, safeWindow, isHTMLFieldSetElement, isHTMLLegendElement, isHTMLOptGroupElement, isHTMLTableElement, isHTMLSlotElement, isSVGSVGElement, isSVGTitleElement, queryIdRefs, getLocalName } from \"./util.mjs\";\n\n/**\n * A string of characters where all carriage returns, newlines, tabs, and form-feeds are replaced with a single space, and multiple spaces are reduced to a single space. The string contains only character data; it does not contain any markup.\n */\n\n/**\n *\n * @param {string} string -\n * @returns {FlatString} -\n */\nfunction asFlatString(s) {\n return s.trim().replace(/\\s\\s+/g, \" \");\n}\n\n/**\n *\n * @param node -\n * @param options - These are not optional to prevent accidentally calling it without options in `computeAccessibleName`\n * @returns {boolean} -\n */\nfunction isHidden(node, getComputedStyleImplementation) {\n if (!isElement(node)) {\n return false;\n }\n if (node.hasAttribute(\"hidden\") || node.getAttribute(\"aria-hidden\") === \"true\") {\n return true;\n }\n var style = getComputedStyleImplementation(node);\n return style.getPropertyValue(\"display\") === \"none\" || style.getPropertyValue(\"visibility\") === \"hidden\";\n}\n\n/**\n * @param {Node} node -\n * @returns {boolean} - As defined in step 2E of https://w3c.github.io/accname/#mapping_additional_nd_te\n */\nfunction isControl(node) {\n return hasAnyConcreteRoles(node, [\"button\", \"combobox\", \"listbox\", \"textbox\"]) || hasAbstractRole(node, \"range\");\n}\nfunction hasAbstractRole(node, role) {\n if (!isElement(node)) {\n return false;\n }\n switch (role) {\n case \"range\":\n return hasAnyConcreteRoles(node, [\"meter\", \"progressbar\", \"scrollbar\", \"slider\", \"spinbutton\"]);\n default:\n throw new TypeError(\"No knowledge about abstract role '\".concat(role, \"'. This is likely a bug :(\"));\n }\n}\n\n/**\n * element.querySelectorAll but also considers owned tree\n * @param element\n * @param selectors\n */\nfunction querySelectorAllSubtree(element, selectors) {\n var elements = ArrayFrom(element.querySelectorAll(selectors));\n queryIdRefs(element, \"aria-owns\").forEach(function (root) {\n // babel transpiles this assuming an iterator\n elements.push.apply(elements, ArrayFrom(root.querySelectorAll(selectors)));\n });\n return elements;\n}\nfunction querySelectedOptions(listbox) {\n if (isHTMLSelectElement(listbox)) {\n // IE11 polyfill\n return listbox.selectedOptions || querySelectorAllSubtree(listbox, \"[selected]\");\n }\n return querySelectorAllSubtree(listbox, '[aria-selected=\"true\"]');\n}\nfunction isMarkedPresentational(node) {\n return hasAnyConcreteRoles(node, [\"none\", \"presentation\"]);\n}\n\n/**\n * Elements specifically listed in html-aam\n *\n * We don't need this for `label` or `legend` elements.\n * Their implicit roles already allow \"naming from content\".\n *\n * sources:\n *\n * - https://w3c.github.io/html-aam/#table-element\n */\nfunction isNativeHostLanguageTextAlternativeElement(node) {\n return isHTMLTableCaptionElement(node);\n}\n\n/**\n * https://w3c.github.io/aria/#namefromcontent\n */\nfunction allowsNameFromContent(node) {\n return hasAnyConcreteRoles(node, [\"button\", \"cell\", \"checkbox\", \"columnheader\", \"gridcell\", \"heading\", \"label\", \"legend\", \"link\", \"menuitem\", \"menuitemcheckbox\", \"menuitemradio\", \"option\", \"radio\", \"row\", \"rowheader\", \"switch\", \"tab\", \"tooltip\", \"treeitem\"]);\n}\n\n/**\n * TODO https://github.com/eps1lon/dom-accessibility-api/issues/100\n */\nfunction isDescendantOfNativeHostLanguageTextAlternativeElement(\n// eslint-disable-next-line @typescript-eslint/no-unused-vars -- not implemented yet\nnode) {\n return false;\n}\nfunction getValueOfTextbox(element) {\n if (isHTMLInputElement(element) || isHTMLTextAreaElement(element)) {\n return element.value;\n }\n // https://github.com/eps1lon/dom-accessibility-api/issues/4\n return element.textContent || \"\";\n}\nfunction getTextualContent(declaration) {\n var content = declaration.getPropertyValue(\"content\");\n if (/^[\"'].*[\"']$/.test(content)) {\n return content.slice(1, -1);\n }\n return \"\";\n}\n\n/**\n * https://html.spec.whatwg.org/multipage/forms.html#category-label\n * TODO: form-associated custom elements\n * @param element\n */\nfunction isLabelableElement(element) {\n var localName = getLocalName(element);\n return localName === \"button\" || localName === \"input\" && element.getAttribute(\"type\") !== \"hidden\" || localName === \"meter\" || localName === \"output\" || localName === \"progress\" || localName === \"select\" || localName === \"textarea\";\n}\n\n/**\n * > [...], then the first such descendant in tree order is the label element's labeled control.\n * -- https://html.spec.whatwg.org/multipage/forms.html#labeled-control\n * @param element\n */\nfunction findLabelableElement(element) {\n if (isLabelableElement(element)) {\n return element;\n }\n var labelableElement = null;\n element.childNodes.forEach(function (childNode) {\n if (labelableElement === null && isElement(childNode)) {\n var descendantLabelableElement = findLabelableElement(childNode);\n if (descendantLabelableElement !== null) {\n labelableElement = descendantLabelableElement;\n }\n }\n });\n return labelableElement;\n}\n\n/**\n * Polyfill of HTMLLabelElement.control\n * https://html.spec.whatwg.org/multipage/forms.html#labeled-control\n * @param label\n */\nfunction getControlOfLabel(label) {\n if (label.control !== undefined) {\n return label.control;\n }\n var htmlFor = label.getAttribute(\"for\");\n if (htmlFor !== null) {\n return label.ownerDocument.getElementById(htmlFor);\n }\n return findLabelableElement(label);\n}\n\n/**\n * Polyfill of HTMLInputElement.labels\n * https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/labels\n * @param element\n */\nfunction getLabels(element) {\n var labelsProperty = element.labels;\n if (labelsProperty === null) {\n return labelsProperty;\n }\n if (labelsProperty !== undefined) {\n return ArrayFrom(labelsProperty);\n }\n\n // polyfill\n if (!isLabelableElement(element)) {\n return null;\n }\n var document = element.ownerDocument;\n return ArrayFrom(document.querySelectorAll(\"label\")).filter(function (label) {\n return getControlOfLabel(label) === element;\n });\n}\n\n/**\n * Gets the contents of a slot used for computing the accname\n * @param slot\n */\nfunction getSlotContents(slot) {\n // Computing the accessible name for elements containing slots is not\n // currently defined in the spec. This implementation reflects the\n // behavior of NVDA 2020.2/Firefox 81 and iOS VoiceOver/Safari 13.6.\n var assignedNodes = slot.assignedNodes();\n if (assignedNodes.length === 0) {\n // if no nodes are assigned to the slot, it displays the default content\n return ArrayFrom(slot.childNodes);\n }\n return assignedNodes;\n}\n\n/**\n * implements https://w3c.github.io/accname/#mapping_additional_nd_te\n * @param root\n * @param options\n * @returns\n */\nexport function computeTextAlternative(root) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var consultedNodes = new SetLike();\n var window = safeWindow(root);\n var _options$compute = options.compute,\n compute = _options$compute === void 0 ? \"name\" : _options$compute,\n _options$computedStyl = options.computedStyleSupportsPseudoElements,\n computedStyleSupportsPseudoElements = _options$computedStyl === void 0 ? options.getComputedStyle !== undefined : _options$computedStyl,\n _options$getComputedS = options.getComputedStyle,\n getComputedStyle = _options$getComputedS === void 0 ? window.getComputedStyle.bind(window) : _options$getComputedS,\n _options$hidden = options.hidden,\n hidden = _options$hidden === void 0 ? false : _options$hidden;\n\n // 2F.i\n function computeMiscTextAlternative(node, context) {\n var accumulatedText = \"\";\n if (isElement(node) && computedStyleSupportsPseudoElements) {\n var pseudoBefore = getComputedStyle(node, \"::before\");\n var beforeContent = getTextualContent(pseudoBefore);\n accumulatedText = \"\".concat(beforeContent, \" \").concat(accumulatedText);\n }\n\n // FIXME: Including aria-owns is not defined in the spec\n // But it is required in the web-platform-test\n var childNodes = isHTMLSlotElement(node) ? getSlotContents(node) : ArrayFrom(node.childNodes).concat(queryIdRefs(node, \"aria-owns\"));\n childNodes.forEach(function (child) {\n var result = computeTextAlternative(child, {\n isEmbeddedInLabel: context.isEmbeddedInLabel,\n isReferenced: false,\n recursion: true\n });\n // TODO: Unclear why display affects delimiter\n // see https://github.com/w3c/accname/issues/3\n var display = isElement(child) ? getComputedStyle(child).getPropertyValue(\"display\") : \"inline\";\n var separator = display !== \"inline\" ? \" \" : \"\";\n // trailing separator for wpt tests\n accumulatedText += \"\".concat(separator).concat(result).concat(separator);\n });\n if (isElement(node) && computedStyleSupportsPseudoElements) {\n var pseudoAfter = getComputedStyle(node, \"::after\");\n var afterContent = getTextualContent(pseudoAfter);\n accumulatedText = \"\".concat(accumulatedText, \" \").concat(afterContent);\n }\n return accumulatedText.trim();\n }\n\n /**\n *\n * @param element\n * @param attributeName\n * @returns A string non-empty string or `null`\n */\n function useAttribute(element, attributeName) {\n var attribute = element.getAttributeNode(attributeName);\n if (attribute !== null && !consultedNodes.has(attribute) && attribute.value.trim() !== \"\") {\n consultedNodes.add(attribute);\n return attribute.value;\n }\n return null;\n }\n function computeTooltipAttributeValue(node) {\n if (!isElement(node)) {\n return null;\n }\n return useAttribute(node, \"title\");\n }\n function computeElementTextAlternative(node) {\n if (!isElement(node)) {\n return null;\n }\n\n // https://w3c.github.io/html-aam/#fieldset-and-legend-elements\n if (isHTMLFieldSetElement(node)) {\n consultedNodes.add(node);\n var children = ArrayFrom(node.childNodes);\n for (var i = 0; i < children.length; i += 1) {\n var child = children[i];\n if (isHTMLLegendElement(child)) {\n return computeTextAlternative(child, {\n isEmbeddedInLabel: false,\n isReferenced: false,\n recursion: false\n });\n }\n }\n } else if (isHTMLTableElement(node)) {\n // https://w3c.github.io/html-aam/#table-element\n consultedNodes.add(node);\n var _children = ArrayFrom(node.childNodes);\n for (var _i = 0; _i < _children.length; _i += 1) {\n var _child = _children[_i];\n if (isHTMLTableCaptionElement(_child)) {\n return computeTextAlternative(_child, {\n isEmbeddedInLabel: false,\n isReferenced: false,\n recursion: false\n });\n }\n }\n } else if (isSVGSVGElement(node)) {\n // https://www.w3.org/TR/svg-aam-1.0/\n consultedNodes.add(node);\n var _children2 = ArrayFrom(node.childNodes);\n for (var _i2 = 0; _i2 < _children2.length; _i2 += 1) {\n var _child2 = _children2[_i2];\n if (isSVGTitleElement(_child2)) {\n return _child2.textContent;\n }\n }\n return null;\n } else if (getLocalName(node) === \"img\" || getLocalName(node) === \"area\") {\n // https://w3c.github.io/html-aam/#area-element\n // https://w3c.github.io/html-aam/#img-element\n var nameFromAlt = useAttribute(node, \"alt\");\n if (nameFromAlt !== null) {\n return nameFromAlt;\n }\n } else if (isHTMLOptGroupElement(node)) {\n var nameFromLabel = useAttribute(node, \"label\");\n if (nameFromLabel !== null) {\n return nameFromLabel;\n }\n }\n if (isHTMLInputElement(node) && (node.type === \"button\" || node.type === \"submit\" || node.type === \"reset\")) {\n // https://w3c.github.io/html-aam/#input-type-text-input-type-password-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-description-computation\n var nameFromValue = useAttribute(node, \"value\");\n if (nameFromValue !== null) {\n return nameFromValue;\n }\n\n // TODO: l10n\n if (node.type === \"submit\") {\n return \"Submit\";\n }\n // TODO: l10n\n if (node.type === \"reset\") {\n return \"Reset\";\n }\n }\n var labels = getLabels(node);\n if (labels !== null && labels.length !== 0) {\n consultedNodes.add(node);\n return ArrayFrom(labels).map(function (element) {\n return computeTextAlternative(element, {\n isEmbeddedInLabel: true,\n isReferenced: false,\n recursion: true\n });\n }).filter(function (label) {\n return label.length > 0;\n }).join(\" \");\n }\n\n // https://w3c.github.io/html-aam/#input-type-image-accessible-name-computation\n // TODO: wpt test consider label elements but html-aam does not mention them\n // We follow existing implementations over spec\n if (isHTMLInputElement(node) && node.type === \"image\") {\n var _nameFromAlt = useAttribute(node, \"alt\");\n if (_nameFromAlt !== null) {\n return _nameFromAlt;\n }\n var nameFromTitle = useAttribute(node, \"title\");\n if (nameFromTitle !== null) {\n return nameFromTitle;\n }\n\n // TODO: l10n\n return \"Submit Query\";\n }\n if (hasAnyConcreteRoles(node, [\"button\"])) {\n // https://www.w3.org/TR/html-aam-1.0/#button-element\n var nameFromSubTree = computeMiscTextAlternative(node, {\n isEmbeddedInLabel: false,\n isReferenced: false\n });\n if (nameFromSubTree !== \"\") {\n return nameFromSubTree;\n }\n }\n return null;\n }\n function computeTextAlternative(current, context) {\n if (consultedNodes.has(current)) {\n return \"\";\n }\n\n // 2A\n if (!hidden && isHidden(current, getComputedStyle) && !context.isReferenced) {\n consultedNodes.add(current);\n return \"\";\n }\n\n // 2B\n var labelAttributeNode = isElement(current) ? current.getAttributeNode(\"aria-labelledby\") : null;\n // TODO: Do we generally need to block query IdRefs of attributes we have already consulted?\n var labelElements = labelAttributeNode !== null && !consultedNodes.has(labelAttributeNode) ? queryIdRefs(current, \"aria-labelledby\") : [];\n if (compute === \"name\" && !context.isReferenced && labelElements.length > 0) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- Can't be null here otherwise labelElements would be empty\n consultedNodes.add(labelAttributeNode);\n return labelElements.map(function (element) {\n // TODO: Chrome will consider repeated values i.e. use a node multiple times while we'll bail out in computeTextAlternative.\n return computeTextAlternative(element, {\n isEmbeddedInLabel: context.isEmbeddedInLabel,\n isReferenced: true,\n // this isn't recursion as specified, otherwise we would skip\n // `aria-label` in\n // <input id=\"myself\" aria-label=\"foo\" aria-labelledby=\"myself\"\n recursion: false\n });\n }).join(\" \");\n }\n\n // 2C\n // Changed from the spec in anticipation of https://github.com/w3c/accname/issues/64\n // spec says we should only consider skipping if we have a non-empty label\n var skipToStep2E = context.recursion && isControl(current) && compute === \"name\";\n if (!skipToStep2E) {\n var ariaLabel = (isElement(current) && current.getAttribute(\"aria-label\") || \"\").trim();\n if (ariaLabel !== \"\" && compute === \"name\") {\n consultedNodes.add(current);\n return ariaLabel;\n }\n\n // 2D\n if (!isMarkedPresentational(current)) {\n var elementTextAlternative = computeElementTextAlternative(current);\n if (elementTextAlternative !== null) {\n consultedNodes.add(current);\n return elementTextAlternative;\n }\n }\n }\n\n // special casing, cheating to make tests pass\n // https://github.com/w3c/accname/issues/67\n if (hasAnyConcreteRoles(current, [\"menu\"])) {\n consultedNodes.add(current);\n return \"\";\n }\n\n // 2E\n if (skipToStep2E || context.isEmbeddedInLabel || context.isReferenced) {\n if (hasAnyConcreteRoles(current, [\"combobox\", \"listbox\"])) {\n consultedNodes.add(current);\n var selectedOptions = querySelectedOptions(current);\n if (selectedOptions.length === 0) {\n // defined per test `name_heading_combobox`\n return isHTMLInputElement(current) ? current.value : \"\";\n }\n return ArrayFrom(selectedOptions).map(function (selectedOption) {\n return computeTextAlternative(selectedOption, {\n isEmbeddedInLabel: context.isEmbeddedInLabel,\n isReferenced: false,\n recursion: true\n });\n }).join(\" \");\n }\n if (hasAbstractRole(current, \"range\")) {\n consultedNodes.add(current);\n if (current.hasAttribute(\"aria-valuetext\")) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- safe due to hasAttribute guard\n return current.getAttribute(\"aria-valuetext\");\n }\n if (current.hasAttribute(\"aria-valuenow\")) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- safe due to hasAttribute guard\n return current.getAttribute(\"aria-valuenow\");\n }\n // Otherwise, use the value as specified by a host language attribute.\n return current.getAttribute(\"value\") || \"\";\n }\n if (hasAnyConcreteRoles(current, [\"textbox\"])) {\n consultedNodes.add(current);\n return getValueOfTextbox(current);\n }\n }\n\n // 2F: https://w3c.github.io/accname/#step2F\n if (allowsNameFromContent(current) || isElement(current) && context.isReferenced || isNativeHostLanguageTextAlternativeElement(current) || isDescendantOfNativeHostLanguageTextAlternativeElement(current)) {\n var accumulatedText2F = computeMiscTextAlternative(current, {\n isEmbeddedInLabel: context.isEmbeddedInLabel,\n isReferenced: false\n });\n if (accumulatedText2F !== \"\") {\n consultedNodes.add(current);\n return accumulatedText2F;\n }\n }\n if (current.nodeType === current.TEXT_NODE) {\n consultedNodes.add(current);\n return current.textContent || \"\";\n }\n if (context.recursion) {\n consultedNodes.add(current);\n return computeMiscTextAlternative(current, {\n isEmbeddedInLabel: context.isEmbeddedInLabel,\n isReferenced: false\n });\n }\n var tooltipAttributeValue = computeTooltipAttributeValue(current);\n if (tooltipAttributeValue !== null) {\n consultedNodes.add(current);\n return tooltipAttributeValue;\n }\n\n // TODO should this be reachable?\n consultedNodes.add(current);\n return \"\";\n }\n return asFlatString(computeTextAlternative(root, {\n isEmbeddedInLabel: false,\n // by spec computeAccessibleDescription starts with the referenced elements as roots\n isReferenced: compute === \"description\",\n recursion: false\n }));\n}\n//# sourceMappingURL=accessible-name-and-description.mjs.map","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return _typeof(key) === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (_typeof(input) !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (_typeof(res) !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nimport { computeTextAlternative } from \"./accessible-name-and-description.mjs\";\nimport { queryIdRefs } from \"./util.mjs\";\n\n/**\n * @param root\n * @param options\n * @returns\n */\nexport function computeAccessibleDescription(root) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var description = queryIdRefs(root, \"aria-describedby\").map(function (element) {\n return computeTextAlternative(element, _objectSpread(_objectSpread({}, options), {}, {\n compute: \"description\"\n }));\n }).join(\" \");\n\n // TODO: Technically we need to make sure that node wasn't used for the accessible name\n // This causes `description_1.0_combobox-focusable-manual` to fail\n //\n // https://www.w3.org/TR/html-aam-1.0/#accessible-name-and-description-computation\n // says for so many elements to use the `title` that we assume all elements are considered\n if (description === \"\") {\n var title = root.getAttribute(\"title\");\n description = title === null ? \"\" : title;\n }\n return description;\n}\n//# sourceMappingURL=accessible-description.mjs.map","import { computeTextAlternative } from \"./accessible-name-and-description.mjs\";\nimport { hasAnyConcreteRoles } from \"./util.mjs\";\n\n/**\n * https://w3c.github.io/aria/#namefromprohibited\n */\nfunction prohibitsNaming(node) {\n return hasAnyConcreteRoles(node, [\"caption\", \"code\", \"deletion\", \"emphasis\", \"generic\", \"insertion\", \"paragraph\", \"presentation\", \"strong\", \"subscript\", \"superscript\"]);\n}\n\n/**\n * implements https://w3c.github.io/accname/#mapping_additional_nd_name\n * @param root\n * @param options\n * @returns\n */\nexport function computeAccessibleName(root) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n if (prohibitsNaming(root)) {\n return \"\";\n }\n return computeTextAlternative(root, options);\n}\n//# sourceMappingURL=accessible-name.mjs.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\n// eslint-disable-next-line no-unused-vars\nfunction iteratorProxy() {\n var values = this;\n var index = 0;\n var iter = {\n '@@iterator': function iterator() {\n return iter;\n },\n next: function next() {\n if (index < values.length) {\n var value = values[index];\n index = index + 1;\n return {\n done: false,\n value: value\n };\n } else {\n return {\n done: true\n };\n }\n }\n };\n return iter;\n}\nvar _default = iteratorProxy;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = iterationDecorator;\nvar _iteratorProxy = _interopRequireDefault(require(\"./iteratorProxy\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\nfunction iterationDecorator(collection, entries) {\n if (typeof Symbol === 'function' && _typeof(Symbol.iterator) === 'symbol') {\n Object.defineProperty(collection, Symbol.iterator, {\n value: _iteratorProxy.default.bind(entries)\n });\n }\n return collection;\n}","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar properties = [['aria-activedescendant', {\n 'type': 'id'\n}], ['aria-atomic', {\n 'type': 'boolean'\n}], ['aria-autocomplete', {\n 'type': 'token',\n 'values': ['inline', 'list', 'both', 'none']\n}], ['aria-braillelabel', {\n 'type': 'string'\n}], ['aria-brailleroledescription', {\n 'type': 'string'\n}], ['aria-busy', {\n 'type': 'boolean'\n}], ['aria-checked', {\n 'type': 'tristate'\n}], ['aria-colcount', {\n type: 'integer'\n}], ['aria-colindex', {\n type: 'integer'\n}], ['aria-colspan', {\n type: 'integer'\n}], ['aria-controls', {\n 'type': 'idlist'\n}], ['aria-current', {\n type: 'token',\n values: ['page', 'step', 'location', 'date', 'time', true, false]\n}], ['aria-describedby', {\n 'type': 'idlist'\n}], ['aria-description', {\n 'type': 'string'\n}], ['aria-details', {\n 'type': 'id'\n}], ['aria-disabled', {\n 'type': 'boolean'\n}], ['aria-dropeffect', {\n 'type': 'tokenlist',\n 'values': ['copy', 'execute', 'link', 'move', 'none', 'popup']\n}], ['aria-errormessage', {\n 'type': 'id'\n}], ['aria-expanded', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-flowto', {\n 'type': 'idlist'\n}], ['aria-grabbed', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-haspopup', {\n 'type': 'token',\n 'values': [false, true, 'menu', 'listbox', 'tree', 'grid', 'dialog']\n}], ['aria-hidden', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-invalid', {\n 'type': 'token',\n 'values': ['grammar', false, 'spelling', true]\n}], ['aria-keyshortcuts', {\n type: 'string'\n}], ['aria-label', {\n 'type': 'string'\n}], ['aria-labelledby', {\n 'type': 'idlist'\n}], ['aria-level', {\n 'type': 'integer'\n}], ['aria-live', {\n 'type': 'token',\n 'values': ['assertive', 'off', 'polite']\n}], ['aria-modal', {\n type: 'boolean'\n}], ['aria-multiline', {\n 'type': 'boolean'\n}], ['aria-multiselectable', {\n 'type': 'boolean'\n}], ['aria-orientation', {\n 'type': 'token',\n 'values': ['vertical', 'undefined', 'horizontal']\n}], ['aria-owns', {\n 'type': 'idlist'\n}], ['aria-placeholder', {\n type: 'string'\n}], ['aria-posinset', {\n 'type': 'integer'\n}], ['aria-pressed', {\n 'type': 'tristate'\n}], ['aria-readonly', {\n 'type': 'boolean'\n}], ['aria-relevant', {\n 'type': 'tokenlist',\n 'values': ['additions', 'all', 'removals', 'text']\n}], ['aria-required', {\n 'type': 'boolean'\n}], ['aria-roledescription', {\n type: 'string'\n}], ['aria-rowcount', {\n type: 'integer'\n}], ['aria-rowindex', {\n type: 'integer'\n}], ['aria-rowspan', {\n type: 'integer'\n}], ['aria-selected', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-setsize', {\n 'type': 'integer'\n}], ['aria-sort', {\n 'type': 'token',\n 'values': ['ascending', 'descending', 'none', 'other']\n}], ['aria-valuemax', {\n 'type': 'number'\n}], ['aria-valuemin', {\n 'type': 'number'\n}], ['aria-valuenow', {\n 'type': 'number'\n}], ['aria-valuetext', {\n 'type': 'string'\n}]];\nvar ariaPropsMap = {\n entries: function entries() {\n return properties;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var _iterator = _createForOfIteratorHelper(properties),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = _slicedToArray(_step.value, 2),\n key = _step$value[0],\n values = _step$value[1];\n fn.call(thisArg, values, key, properties);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n },\n get: function get(key) {\n var item = properties.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!ariaPropsMap.get(key);\n },\n keys: function keys() {\n return properties.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return properties.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(ariaPropsMap, ariaPropsMap.entries());\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar dom = [['a', {\n reserved: false\n}], ['abbr', {\n reserved: false\n}], ['acronym', {\n reserved: false\n}], ['address', {\n reserved: false\n}], ['applet', {\n reserved: false\n}], ['area', {\n reserved: false\n}], ['article', {\n reserved: false\n}], ['aside', {\n reserved: false\n}], ['audio', {\n reserved: false\n}], ['b', {\n reserved: false\n}], ['base', {\n reserved: true\n}], ['bdi', {\n reserved: false\n}], ['bdo', {\n reserved: false\n}], ['big', {\n reserved: false\n}], ['blink', {\n reserved: false\n}], ['blockquote', {\n reserved: false\n}], ['body', {\n reserved: false\n}], ['br', {\n reserved: false\n}], ['button', {\n reserved: false\n}], ['canvas', {\n reserved: false\n}], ['caption', {\n reserved: false\n}], ['center', {\n reserved: false\n}], ['cite', {\n reserved: false\n}], ['code', {\n reserved: false\n}], ['col', {\n reserved: true\n}], ['colgroup', {\n reserved: true\n}], ['content', {\n reserved: false\n}], ['data', {\n reserved: false\n}], ['datalist', {\n reserved: false\n}], ['dd', {\n reserved: false\n}], ['del', {\n reserved: false\n}], ['details', {\n reserved: false\n}], ['dfn', {\n reserved: false\n}], ['dialog', {\n reserved: false\n}], ['dir', {\n reserved: false\n}], ['div', {\n reserved: false\n}], ['dl', {\n reserved: false\n}], ['dt', {\n reserved: false\n}], ['em', {\n reserved: false\n}], ['embed', {\n reserved: false\n}], ['fieldset', {\n reserved: false\n}], ['figcaption', {\n reserved: false\n}], ['figure', {\n reserved: false\n}], ['font', {\n reserved: false\n}], ['footer', {\n reserved: false\n}], ['form', {\n reserved: false\n}], ['frame', {\n reserved: false\n}], ['frameset', {\n reserved: false\n}], ['h1', {\n reserved: false\n}], ['h2', {\n reserved: false\n}], ['h3', {\n reserved: false\n}], ['h4', {\n reserved: false\n}], ['h5', {\n reserved: false\n}], ['h6', {\n reserved: false\n}], ['head', {\n reserved: true\n}], ['header', {\n reserved: false\n}], ['hgroup', {\n reserved: false\n}], ['hr', {\n reserved: false\n}], ['html', {\n reserved: true\n}], ['i', {\n reserved: false\n}], ['iframe', {\n reserved: false\n}], ['img', {\n reserved: false\n}], ['input', {\n reserved: false\n}], ['ins', {\n reserved: false\n}], ['kbd', {\n reserved: false\n}], ['keygen', {\n reserved: false\n}], ['label', {\n reserved: false\n}], ['legend', {\n reserved: false\n}], ['li', {\n reserved: false\n}], ['link', {\n reserved: true\n}], ['main', {\n reserved: false\n}], ['map', {\n reserved: false\n}], ['mark', {\n reserved: false\n}], ['marquee', {\n reserved: false\n}], ['menu', {\n reserved: false\n}], ['menuitem', {\n reserved: false\n}], ['meta', {\n reserved: true\n}], ['meter', {\n reserved: false\n}], ['nav', {\n reserved: false\n}], ['noembed', {\n reserved: true\n}], ['noscript', {\n reserved: true\n}], ['object', {\n reserved: false\n}], ['ol', {\n reserved: false\n}], ['optgroup', {\n reserved: false\n}], ['option', {\n reserved: false\n}], ['output', {\n reserved: false\n}], ['p', {\n reserved: false\n}], ['param', {\n reserved: true\n}], ['picture', {\n reserved: true\n}], ['pre', {\n reserved: false\n}], ['progress', {\n reserved: false\n}], ['q', {\n reserved: false\n}], ['rp', {\n reserved: false\n}], ['rt', {\n reserved: false\n}], ['rtc', {\n reserved: false\n}], ['ruby', {\n reserved: false\n}], ['s', {\n reserved: false\n}], ['samp', {\n reserved: false\n}], ['script', {\n reserved: true\n}], ['section', {\n reserved: false\n}], ['select', {\n reserved: false\n}], ['small', {\n reserved: false\n}], ['source', {\n reserved: true\n}], ['spacer', {\n reserved: false\n}], ['span', {\n reserved: false\n}], ['strike', {\n reserved: false\n}], ['strong', {\n reserved: false\n}], ['style', {\n reserved: true\n}], ['sub', {\n reserved: false\n}], ['summary', {\n reserved: false\n}], ['sup', {\n reserved: false\n}], ['table', {\n reserved: false\n}], ['tbody', {\n reserved: false\n}], ['td', {\n reserved: false\n}], ['textarea', {\n reserved: false\n}], ['tfoot', {\n reserved: false\n}], ['th', {\n reserved: false\n}], ['thead', {\n reserved: false\n}], ['time', {\n reserved: false\n}], ['title', {\n reserved: true\n}], ['tr', {\n reserved: false\n}], ['track', {\n reserved: true\n}], ['tt', {\n reserved: false\n}], ['u', {\n reserved: false\n}], ['ul', {\n reserved: false\n}], ['var', {\n reserved: false\n}], ['video', {\n reserved: false\n}], ['wbr', {\n reserved: false\n}], ['xmp', {\n reserved: false\n}]];\nvar domMap = {\n entries: function entries() {\n return dom;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var _iterator = _createForOfIteratorHelper(dom),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = _slicedToArray(_step.value, 2),\n key = _step$value[0],\n values = _step$value[1];\n fn.call(thisArg, values, key, dom);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n },\n get: function get(key) {\n var item = dom.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!domMap.get(key);\n },\n keys: function keys() {\n return dom.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return dom.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(domMap, domMap.entries());\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar commandRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget']]\n};\nvar _default = commandRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar compositeRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-disabled': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget']]\n};\nvar _default = compositeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar inputRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null\n },\n relatedConcepts: [{\n concept: {\n name: 'input'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget']]\n};\nvar _default = inputRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar landmarkRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = landmarkRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rangeRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-valuemax': null,\n 'aria-valuemin': null,\n 'aria-valuenow': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = rangeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar roletypeRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {\n 'aria-atomic': null,\n 'aria-busy': null,\n 'aria-controls': null,\n 'aria-current': null,\n 'aria-describedby': null,\n 'aria-details': null,\n 'aria-dropeffect': null,\n 'aria-flowto': null,\n 'aria-grabbed': null,\n 'aria-hidden': null,\n 'aria-keyshortcuts': null,\n 'aria-label': null,\n 'aria-labelledby': null,\n 'aria-live': null,\n 'aria-owns': null,\n 'aria-relevant': null,\n 'aria-roledescription': null\n },\n relatedConcepts: [{\n concept: {\n name: 'role'\n },\n module: 'XHTML'\n }, {\n concept: {\n name: 'type'\n },\n module: 'Dublin Core'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: []\n};\nvar _default = roletypeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar sectionRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'frontmatter'\n },\n module: 'DTB'\n }, {\n concept: {\n name: 'level'\n },\n module: 'DTB'\n }, {\n concept: {\n name: 'level'\n },\n module: 'SMIL'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = sectionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar sectionheadRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = sectionheadRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar selectRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite'], ['roletype', 'structure', 'section', 'group']]\n};\nvar _default = selectRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar structureRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype']]\n};\nvar _default = structureRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar widgetRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype']]\n};\nvar _default = widgetRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar windowRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-modal': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype']]\n};\nvar _default = windowRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _commandRole = _interopRequireDefault(require(\"./abstract/commandRole\"));\nvar _compositeRole = _interopRequireDefault(require(\"./abstract/compositeRole\"));\nvar _inputRole = _interopRequireDefault(require(\"./abstract/inputRole\"));\nvar _landmarkRole = _interopRequireDefault(require(\"./abstract/landmarkRole\"));\nvar _rangeRole = _interopRequireDefault(require(\"./abstract/rangeRole\"));\nvar _roletypeRole = _interopRequireDefault(require(\"./abstract/roletypeRole\"));\nvar _sectionRole = _interopRequireDefault(require(\"./abstract/sectionRole\"));\nvar _sectionheadRole = _interopRequireDefault(require(\"./abstract/sectionheadRole\"));\nvar _selectRole = _interopRequireDefault(require(\"./abstract/selectRole\"));\nvar _structureRole = _interopRequireDefault(require(\"./abstract/structureRole\"));\nvar _widgetRole = _interopRequireDefault(require(\"./abstract/widgetRole\"));\nvar _windowRole = _interopRequireDefault(require(\"./abstract/windowRole\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar ariaAbstractRoles = [['command', _commandRole.default], ['composite', _compositeRole.default], ['input', _inputRole.default], ['landmark', _landmarkRole.default], ['range', _rangeRole.default], ['roletype', _roletypeRole.default], ['section', _sectionRole.default], ['sectionhead', _sectionheadRole.default], ['select', _selectRole.default], ['structure', _structureRole.default], ['widget', _widgetRole.default], ['window', _windowRole.default]];\nvar _default = ariaAbstractRoles;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar alertRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-atomic': 'true',\n 'aria-live': 'assertive'\n },\n relatedConcepts: [{\n concept: {\n name: 'alert'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = alertRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar alertdialogRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'alert'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'alert'], ['roletype', 'window', 'dialog']]\n};\nvar _default = alertdialogRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar applicationRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'Device Independence Delivery Unit'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = applicationRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar articleRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n name: 'article'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'document']]\n};\nvar _default = articleRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar bannerRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n constraints: ['scoped to the body element'],\n name: 'header'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = bannerRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar blockquoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'blockquote'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = blockquoteRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar buttonRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-pressed': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'button'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'type',\n value: 'image'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'type',\n value: 'reset'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'type',\n value: 'submit'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'button'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'trigger'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command']]\n};\nvar _default = buttonRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar captionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'caption'\n },\n module: 'HTML'\n }],\n requireContextRole: ['figure', 'grid', 'table'],\n requiredContextRole: ['figure', 'grid', 'table'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = captionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar cellRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-colindex': null,\n 'aria-colspan': null,\n 'aria-rowindex': null,\n 'aria-rowspan': null\n },\n relatedConcepts: [{\n concept: {\n constraints: ['ancestor table element has table role'],\n name: 'td'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row'],\n requiredContextRole: ['row'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = cellRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar checkboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-checked': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'checkbox'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'option'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = checkboxRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar codeRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'code'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = codeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar columnheaderRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-sort': null\n },\n relatedConcepts: [{\n concept: {\n name: 'th'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'scope',\n value: 'col'\n }],\n name: 'th'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'scope',\n value: 'colgroup'\n }],\n name: 'th'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row'],\n requiredContextRole: ['row'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'structure', 'section', 'cell', 'gridcell'], ['roletype', 'widget', 'gridcell'], ['roletype', 'structure', 'sectionhead']]\n};\nvar _default = columnheaderRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar comboboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-autocomplete': null,\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-expanded': 'false',\n 'aria-haspopup': 'listbox'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'email'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'search'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'tel'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'text'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'url'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'url'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'multiple'\n }, {\n constraints: ['undefined'],\n name: 'size'\n }],\n constraints: ['the multiple attribute is not set and the size attribute does not have a value greater than 1'],\n name: 'select'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'select'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-controls': null,\n 'aria-expanded': 'false'\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = comboboxRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar complementaryRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'aside'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-label'\n }],\n constraints: ['scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'aside'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-labelledby'\n }],\n constraints: ['scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'aside'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = complementaryRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar contentinfoRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n constraints: ['scoped to the body element'],\n name: 'footer'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = contentinfoRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar definitionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'dd'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = definitionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar deletionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'del'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = deletionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar dialogRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'dialog'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'window']]\n};\nvar _default = dialogRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar directoryRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n module: 'DAISY Guide'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'list']]\n};\nvar _default = directoryRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar documentRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'Device Independence Delivery Unit'\n }\n }, {\n concept: {\n name: 'html'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = documentRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar emphasisRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'em'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = emphasisRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar feedRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['article']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'list']]\n};\nvar _default = feedRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar figureRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'figure'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = figureRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar formRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-label'\n }],\n name: 'form'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-labelledby'\n }],\n name: 'form'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'name'\n }],\n name: 'form'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = formRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar genericRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'a'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'area'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'aside'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'b'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'bdo'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'body'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'data'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'div'\n },\n module: 'HTML'\n }, {\n concept: {\n constraints: ['scoped to the main element', 'scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'footer'\n },\n module: 'HTML'\n }, {\n concept: {\n constraints: ['scoped to the main element', 'scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'header'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'hgroup'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'i'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'pre'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'q'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'samp'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'section'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'small'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'span'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'u'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = genericRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar gridRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-multiselectable': null,\n 'aria-readonly': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['row'], ['row', 'rowgroup']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite'], ['roletype', 'structure', 'section', 'table']]\n};\nvar _default = gridRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar gridcellRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-selected': null\n },\n relatedConcepts: [{\n concept: {\n constraints: ['ancestor table element has grid role', 'ancestor table element has treegrid role'],\n name: 'td'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row'],\n requiredContextRole: ['row'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'widget']]\n};\nvar _default = gridcellRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar groupRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-disabled': null\n },\n relatedConcepts: [{\n concept: {\n name: 'details'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'fieldset'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'optgroup'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'address'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = groupRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar headingRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-level': '2'\n },\n relatedConcepts: [{\n concept: {\n name: 'h1'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h2'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h3'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h4'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h5'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h6'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-level': '2'\n },\n superClass: [['roletype', 'structure', 'sectionhead']]\n};\nvar _default = headingRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar imgRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'alt'\n }],\n name: 'img'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'alt'\n }],\n name: 'img'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'imggroup'\n },\n module: 'DTB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = imgRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar insertionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'ins'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = insertionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar linkRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'href'\n }],\n name: 'a'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'href'\n }],\n name: 'area'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command']]\n};\nvar _default = linkRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar listRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'menu'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'ol'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'ul'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['listitem']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = listRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar listboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-invalid': null,\n 'aria-multiselectable': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-orientation': 'vertical'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['>1'],\n name: 'size'\n }],\n constraints: ['the size attribute value is greater than 1'],\n name: 'select'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'multiple'\n }],\n name: 'select'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'datalist'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'list'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'select'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['option', 'group'], ['option']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = listboxRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar listitemRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-level': null,\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n constraints: ['direct descendant of ol', 'direct descendant of ul', 'direct descendant of menu'],\n name: 'li'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'item'\n },\n module: 'XForms'\n }],\n requireContextRole: ['directory', 'list'],\n requiredContextRole: ['directory', 'list'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = listitemRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar logRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-live': 'polite'\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = logRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar mainRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'main'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = mainRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar markRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: [],\n props: {\n 'aria-braillelabel': null,\n 'aria-brailleroledescription': null,\n 'aria-description': null\n },\n relatedConcepts: [{\n concept: {\n name: 'mark'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = markRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar marqueeRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = marqueeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar mathRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'math'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = mathRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': 'vertical'\n },\n relatedConcepts: [{\n concept: {\n name: 'MENU'\n },\n module: 'JAPI'\n }, {\n concept: {\n name: 'list'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'select'\n },\n module: 'XForms'\n }, {\n concept: {\n name: 'sidebar'\n },\n module: 'DTB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['menuitem', 'group'], ['menuitemradio', 'group'], ['menuitemcheckbox', 'group'], ['menuitem'], ['menuitemcheckbox'], ['menuitemradio']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = menuRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menubarRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': 'horizontal'\n },\n relatedConcepts: [{\n concept: {\n name: 'toolbar'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['menuitem', 'group'], ['menuitemradio', 'group'], ['menuitemcheckbox', 'group'], ['menuitem'], ['menuitemcheckbox'], ['menuitemradio']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select', 'menu'], ['roletype', 'structure', 'section', 'group', 'select', 'menu']]\n};\nvar _default = menubarRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuitemRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n name: 'MENU_ITEM'\n },\n module: 'JAPI'\n }, {\n concept: {\n name: 'listitem'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'option'\n },\n module: 'ARIA'\n }],\n requireContextRole: ['group', 'menu', 'menubar'],\n requiredContextRole: ['group', 'menu', 'menubar'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command']]\n};\nvar _default = menuitemRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuitemcheckboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'menuitem'\n },\n module: 'ARIA'\n }],\n requireContextRole: ['group', 'menu', 'menubar'],\n requiredContextRole: ['group', 'menu', 'menubar'],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input', 'checkbox'], ['roletype', 'widget', 'command', 'menuitem']]\n};\nvar _default = menuitemcheckboxRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuitemradioRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'menuitem'\n },\n module: 'ARIA'\n }],\n requireContextRole: ['group', 'menu', 'menubar'],\n requiredContextRole: ['group', 'menu', 'menubar'],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input', 'checkbox', 'menuitemcheckbox'], ['roletype', 'widget', 'command', 'menuitem', 'menuitemcheckbox'], ['roletype', 'widget', 'input', 'radio']]\n};\nvar _default = menuitemradioRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar meterRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-valuetext': null,\n 'aria-valuemax': '100',\n 'aria-valuemin': '0'\n },\n relatedConcepts: [{\n concept: {\n name: 'meter'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-valuenow': null\n },\n superClass: [['roletype', 'structure', 'range']]\n};\nvar _default = meterRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar navigationRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'nav'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = navigationRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar noneRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: []\n};\nvar _default = noneRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar noteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = noteRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar optionRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-checked': null,\n 'aria-posinset': null,\n 'aria-setsize': null,\n 'aria-selected': 'false'\n },\n relatedConcepts: [{\n concept: {\n name: 'item'\n },\n module: 'XForms'\n }, {\n concept: {\n name: 'listitem'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'option'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-selected': 'false'\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = optionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar paragraphRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'p'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = paragraphRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar presentationRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'alt',\n value: ''\n }],\n name: 'img'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = presentationRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar progressbarRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-valuetext': null\n },\n relatedConcepts: [{\n concept: {\n name: 'progress'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'status'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'range'], ['roletype', 'widget']]\n};\nvar _default = progressbarRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar radioRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-checked': null,\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'radio'\n }],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = radioRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar radiogroupRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null\n },\n relatedConcepts: [{\n concept: {\n name: 'list'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['radio']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = radiogroupRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar regionRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-label'\n }],\n name: 'section'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-labelledby'\n }],\n name: 'section'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'Device Independence Glossart perceivable unit'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = regionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rowRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-colindex': null,\n 'aria-expanded': null,\n 'aria-level': null,\n 'aria-posinset': null,\n 'aria-rowindex': null,\n 'aria-selected': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n name: 'tr'\n },\n module: 'HTML'\n }],\n requireContextRole: ['grid', 'rowgroup', 'table', 'treegrid'],\n requiredContextRole: ['grid', 'rowgroup', 'table', 'treegrid'],\n requiredOwnedElements: [['cell'], ['columnheader'], ['gridcell'], ['rowheader']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'group'], ['roletype', 'widget']]\n};\nvar _default = rowRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rowgroupRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'tbody'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'tfoot'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'thead'\n },\n module: 'HTML'\n }],\n requireContextRole: ['grid', 'table', 'treegrid'],\n requiredContextRole: ['grid', 'table', 'treegrid'],\n requiredOwnedElements: [['row']],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = rowgroupRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rowheaderRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-sort': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'scope',\n value: 'row'\n }],\n name: 'th'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'scope',\n value: 'rowgroup'\n }],\n name: 'th'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row', 'rowgroup'],\n requiredContextRole: ['row', 'rowgroup'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'structure', 'section', 'cell', 'gridcell'], ['roletype', 'widget', 'gridcell'], ['roletype', 'structure', 'sectionhead']]\n};\nvar _default = rowheaderRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar scrollbarRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-valuetext': null,\n 'aria-orientation': 'vertical',\n 'aria-valuemax': '100',\n 'aria-valuemin': '0'\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-controls': null,\n 'aria-valuenow': null\n },\n superClass: [['roletype', 'structure', 'range'], ['roletype', 'widget']]\n};\nvar _default = scrollbarRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar searchRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = searchRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar searchboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'search'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'input', 'textbox']]\n};\nvar _default = searchboxRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar separatorRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-orientation': 'horizontal',\n 'aria-valuemax': '100',\n 'aria-valuemin': '0',\n 'aria-valuenow': null,\n 'aria-valuetext': null\n },\n relatedConcepts: [{\n concept: {\n name: 'hr'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = separatorRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar sliderRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-haspopup': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-valuetext': null,\n 'aria-orientation': 'horizontal',\n 'aria-valuemax': '100',\n 'aria-valuemin': '0'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'range'\n }],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-valuenow': null\n },\n superClass: [['roletype', 'widget', 'input'], ['roletype', 'structure', 'range']]\n};\nvar _default = sliderRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar spinbuttonRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-valuetext': null,\n 'aria-valuenow': '0'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'number'\n }],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite'], ['roletype', 'widget', 'input'], ['roletype', 'structure', 'range']]\n};\nvar _default = spinbuttonRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar statusRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-atomic': 'true',\n 'aria-live': 'polite'\n },\n relatedConcepts: [{\n concept: {\n name: 'output'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = statusRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar strongRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'strong'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = strongRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar subscriptRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'sub'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = subscriptRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar superscriptRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'sup'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = superscriptRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar switchRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'button'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input', 'checkbox']]\n};\nvar _default = switchRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tabRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-posinset': null,\n 'aria-setsize': null,\n 'aria-selected': 'false'\n },\n relatedConcepts: [],\n requireContextRole: ['tablist'],\n requiredContextRole: ['tablist'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'sectionhead'], ['roletype', 'widget']]\n};\nvar _default = tabRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tableRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-colcount': null,\n 'aria-rowcount': null\n },\n relatedConcepts: [{\n concept: {\n name: 'table'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['row'], ['row', 'rowgroup']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = tableRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tablistRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-level': null,\n 'aria-multiselectable': null,\n 'aria-orientation': 'horizontal'\n },\n relatedConcepts: [{\n module: 'DAISY',\n concept: {\n name: 'guide'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['tab']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite']]\n};\nvar _default = tablistRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tabpanelRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = tabpanelRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar termRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'dfn'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'dt'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = termRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar textboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-autocomplete': null,\n 'aria-errormessage': null,\n 'aria-haspopup': null,\n 'aria-invalid': null,\n 'aria-multiline': null,\n 'aria-placeholder': null,\n 'aria-readonly': null,\n 'aria-required': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'type'\n }, {\n constraints: ['undefined'],\n name: 'list'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'email'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'tel'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'text'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'url'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'input'\n },\n module: 'XForms'\n }, {\n concept: {\n name: 'textarea'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = textboxRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar timeRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'time'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = timeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar timerRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'status']]\n};\nvar _default = timerRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar toolbarRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': 'horizontal'\n },\n relatedConcepts: [{\n concept: {\n name: 'menubar'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'group']]\n};\nvar _default = toolbarRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tooltipRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = tooltipRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar treeRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-multiselectable': null,\n 'aria-required': null,\n 'aria-orientation': 'vertical'\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['treeitem', 'group'], ['treeitem']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = treeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar treegridRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['row'], ['row', 'rowgroup']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'grid'], ['roletype', 'structure', 'section', 'table', 'grid'], ['roletype', 'widget', 'composite', 'select', 'tree'], ['roletype', 'structure', 'section', 'group', 'select', 'tree']]\n};\nvar _default = treegridRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar treeitemRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-expanded': null,\n 'aria-haspopup': null\n },\n relatedConcepts: [],\n requireContextRole: ['group', 'tree'],\n requiredContextRole: ['group', 'tree'],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-selected': null\n },\n superClass: [['roletype', 'structure', 'section', 'listitem'], ['roletype', 'widget', 'input', 'option']]\n};\nvar _default = treeitemRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _alertRole = _interopRequireDefault(require(\"./literal/alertRole\"));\nvar _alertdialogRole = _interopRequireDefault(require(\"./literal/alertdialogRole\"));\nvar _applicationRole = _interopRequireDefault(require(\"./literal/applicationRole\"));\nvar _articleRole = _interopRequireDefault(require(\"./literal/articleRole\"));\nvar _bannerRole = _interopRequireDefault(require(\"./literal/bannerRole\"));\nvar _blockquoteRole = _interopRequireDefault(require(\"./literal/blockquoteRole\"));\nvar _buttonRole = _interopRequireDefault(require(\"./literal/buttonRole\"));\nvar _captionRole = _interopRequireDefault(require(\"./literal/captionRole\"));\nvar _cellRole = _interopRequireDefault(require(\"./literal/cellRole\"));\nvar _checkboxRole = _interopRequireDefault(require(\"./literal/checkboxRole\"));\nvar _codeRole = _interopRequireDefault(require(\"./literal/codeRole\"));\nvar _columnheaderRole = _interopRequireDefault(require(\"./literal/columnheaderRole\"));\nvar _comboboxRole = _interopRequireDefault(require(\"./literal/comboboxRole\"));\nvar _complementaryRole = _interopRequireDefault(require(\"./literal/complementaryRole\"));\nvar _contentinfoRole = _interopRequireDefault(require(\"./literal/contentinfoRole\"));\nvar _definitionRole = _interopRequireDefault(require(\"./literal/definitionRole\"));\nvar _deletionRole = _interopRequireDefault(require(\"./literal/deletionRole\"));\nvar _dialogRole = _interopRequireDefault(require(\"./literal/dialogRole\"));\nvar _directoryRole = _interopRequireDefault(require(\"./literal/directoryRole\"));\nvar _documentRole = _interopRequireDefault(require(\"./literal/documentRole\"));\nvar _emphasisRole = _interopRequireDefault(require(\"./literal/emphasisRole\"));\nvar _feedRole = _interopRequireDefault(require(\"./literal/feedRole\"));\nvar _figureRole = _interopRequireDefault(require(\"./literal/figureRole\"));\nvar _formRole = _interopRequireDefault(require(\"./literal/formRole\"));\nvar _genericRole = _interopRequireDefault(require(\"./literal/genericRole\"));\nvar _gridRole = _interopRequireDefault(require(\"./literal/gridRole\"));\nvar _gridcellRole = _interopRequireDefault(require(\"./literal/gridcellRole\"));\nvar _groupRole = _interopRequireDefault(require(\"./literal/groupRole\"));\nvar _headingRole = _interopRequireDefault(require(\"./literal/headingRole\"));\nvar _imgRole = _interopRequireDefault(require(\"./literal/imgRole\"));\nvar _insertionRole = _interopRequireDefault(require(\"./literal/insertionRole\"));\nvar _linkRole = _interopRequireDefault(require(\"./literal/linkRole\"));\nvar _listRole = _interopRequireDefault(require(\"./literal/listRole\"));\nvar _listboxRole = _interopRequireDefault(require(\"./literal/listboxRole\"));\nvar _listitemRole = _interopRequireDefault(require(\"./literal/listitemRole\"));\nvar _logRole = _interopRequireDefault(require(\"./literal/logRole\"));\nvar _mainRole = _interopRequireDefault(require(\"./literal/mainRole\"));\nvar _markRole = _interopRequireDefault(require(\"./literal/markRole\"));\nvar _marqueeRole = _interopRequireDefault(require(\"./literal/marqueeRole\"));\nvar _mathRole = _interopRequireDefault(require(\"./literal/mathRole\"));\nvar _menuRole = _interopRequireDefault(require(\"./literal/menuRole\"));\nvar _menubarRole = _interopRequireDefault(require(\"./literal/menubarRole\"));\nvar _menuitemRole = _interopRequireDefault(require(\"./literal/menuitemRole\"));\nvar _menuitemcheckboxRole = _interopRequireDefault(require(\"./literal/menuitemcheckboxRole\"));\nvar _menuitemradioRole = _interopRequireDefault(require(\"./literal/menuitemradioRole\"));\nvar _meterRole = _interopRequireDefault(require(\"./literal/meterRole\"));\nvar _navigationRole = _interopRequireDefault(require(\"./literal/navigationRole\"));\nvar _noneRole = _interopRequireDefault(require(\"./literal/noneRole\"));\nvar _noteRole = _interopRequireDefault(require(\"./literal/noteRole\"));\nvar _optionRole = _interopRequireDefault(require(\"./literal/optionRole\"));\nvar _paragraphRole = _interopRequireDefault(require(\"./literal/paragraphRole\"));\nvar _presentationRole = _interopRequireDefault(require(\"./literal/presentationRole\"));\nvar _progressbarRole = _interopRequireDefault(require(\"./literal/progressbarRole\"));\nvar _radioRole = _interopRequireDefault(require(\"./literal/radioRole\"));\nvar _radiogroupRole = _interopRequireDefault(require(\"./literal/radiogroupRole\"));\nvar _regionRole = _interopRequireDefault(require(\"./literal/regionRole\"));\nvar _rowRole = _interopRequireDefault(require(\"./literal/rowRole\"));\nvar _rowgroupRole = _interopRequireDefault(require(\"./literal/rowgroupRole\"));\nvar _rowheaderRole = _interopRequireDefault(require(\"./literal/rowheaderRole\"));\nvar _scrollbarRole = _interopRequireDefault(require(\"./literal/scrollbarRole\"));\nvar _searchRole = _interopRequireDefault(require(\"./literal/searchRole\"));\nvar _searchboxRole = _interopRequireDefault(require(\"./literal/searchboxRole\"));\nvar _separatorRole = _interopRequireDefault(require(\"./literal/separatorRole\"));\nvar _sliderRole = _interopRequireDefault(require(\"./literal/sliderRole\"));\nvar _spinbuttonRole = _interopRequireDefault(require(\"./literal/spinbuttonRole\"));\nvar _statusRole = _interopRequireDefault(require(\"./literal/statusRole\"));\nvar _strongRole = _interopRequireDefault(require(\"./literal/strongRole\"));\nvar _subscriptRole = _interopRequireDefault(require(\"./literal/subscriptRole\"));\nvar _superscriptRole = _interopRequireDefault(require(\"./literal/superscriptRole\"));\nvar _switchRole = _interopRequireDefault(require(\"./literal/switchRole\"));\nvar _tabRole = _interopRequireDefault(require(\"./literal/tabRole\"));\nvar _tableRole = _interopRequireDefault(require(\"./literal/tableRole\"));\nvar _tablistRole = _interopRequireDefault(require(\"./literal/tablistRole\"));\nvar _tabpanelRole = _interopRequireDefault(require(\"./literal/tabpanelRole\"));\nvar _termRole = _interopRequireDefault(require(\"./literal/termRole\"));\nvar _textboxRole = _interopRequireDefault(require(\"./literal/textboxRole\"));\nvar _timeRole = _interopRequireDefault(require(\"./literal/timeRole\"));\nvar _timerRole = _interopRequireDefault(require(\"./literal/timerRole\"));\nvar _toolbarRole = _interopRequireDefault(require(\"./literal/toolbarRole\"));\nvar _tooltipRole = _interopRequireDefault(require(\"./literal/tooltipRole\"));\nvar _treeRole = _interopRequireDefault(require(\"./literal/treeRole\"));\nvar _treegridRole = _interopRequireDefault(require(\"./literal/treegridRole\"));\nvar _treeitemRole = _interopRequireDefault(require(\"./literal/treeitemRole\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar ariaLiteralRoles = [['alert', _alertRole.default], ['alertdialog', _alertdialogRole.default], ['application', _applicationRole.default], ['article', _articleRole.default], ['banner', _bannerRole.default], ['blockquote', _blockquoteRole.default], ['button', _buttonRole.default], ['caption', _captionRole.default], ['cell', _cellRole.default], ['checkbox', _checkboxRole.default], ['code', _codeRole.default], ['columnheader', _columnheaderRole.default], ['combobox', _comboboxRole.default], ['complementary', _complementaryRole.default], ['contentinfo', _contentinfoRole.default], ['definition', _definitionRole.default], ['deletion', _deletionRole.default], ['dialog', _dialogRole.default], ['directory', _directoryRole.default], ['document', _documentRole.default], ['emphasis', _emphasisRole.default], ['feed', _feedRole.default], ['figure', _figureRole.default], ['form', _formRole.default], ['generic', _genericRole.default], ['grid', _gridRole.default], ['gridcell', _gridcellRole.default], ['group', _groupRole.default], ['heading', _headingRole.default], ['img', _imgRole.default], ['insertion', _insertionRole.default], ['link', _linkRole.default], ['list', _listRole.default], ['listbox', _listboxRole.default], ['listitem', _listitemRole.default], ['log', _logRole.default], ['main', _mainRole.default], ['mark', _markRole.default], ['marquee', _marqueeRole.default], ['math', _mathRole.default], ['menu', _menuRole.default], ['menubar', _menubarRole.default], ['menuitem', _menuitemRole.default], ['menuitemcheckbox', _menuitemcheckboxRole.default], ['menuitemradio', _menuitemradioRole.default], ['meter', _meterRole.default], ['navigation', _navigationRole.default], ['none', _noneRole.default], ['note', _noteRole.default], ['option', _optionRole.default], ['paragraph', _paragraphRole.default], ['presentation', _presentationRole.default], ['progressbar', _progressbarRole.default], ['radio', _radioRole.default], ['radiogroup', _radiogroupRole.default], ['region', _regionRole.default], ['row', _rowRole.default], ['rowgroup', _rowgroupRole.default], ['rowheader', _rowheaderRole.default], ['scrollbar', _scrollbarRole.default], ['search', _searchRole.default], ['searchbox', _searchboxRole.default], ['separator', _separatorRole.default], ['slider', _sliderRole.default], ['spinbutton', _spinbuttonRole.default], ['status', _statusRole.default], ['strong', _strongRole.default], ['subscript', _subscriptRole.default], ['superscript', _superscriptRole.default], ['switch', _switchRole.default], ['tab', _tabRole.default], ['table', _tableRole.default], ['tablist', _tablistRole.default], ['tabpanel', _tabpanelRole.default], ['term', _termRole.default], ['textbox', _textboxRole.default], ['time', _timeRole.default], ['timer', _timerRole.default], ['toolbar', _toolbarRole.default], ['tooltip', _tooltipRole.default], ['tree', _treeRole.default], ['treegrid', _treegridRole.default], ['treeitem', _treeitemRole.default]];\nvar _default = ariaLiteralRoles;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAbstractRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'abstract [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docAbstractRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAcknowledgmentsRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'acknowledgments [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docAcknowledgmentsRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAfterwordRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'afterword [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docAfterwordRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAppendixRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'appendix [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docAppendixRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBacklinkRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'referrer [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = docBacklinkRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBiblioentryRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'EPUB biblioentry [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: ['doc-bibliography'],\n requiredContextRole: ['doc-bibliography'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'listitem']]\n};\nvar _default = docBiblioentryRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBibliographyRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'bibliography [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['doc-biblioentry']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docBibliographyRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBibliorefRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'biblioref [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = docBibliorefRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docChapterRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'chapter [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docChapterRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docColophonRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'colophon [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docColophonRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docConclusionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'conclusion [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docConclusionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docCoverRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'cover [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'img']]\n};\nvar _default = docCoverRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docCreditRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'credit [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docCreditRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docCreditsRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'credits [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docCreditsRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docDedicationRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'dedication [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docDedicationRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEndnoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'rearnote [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: ['doc-endnotes'],\n requiredContextRole: ['doc-endnotes'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'listitem']]\n};\nvar _default = docEndnoteRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEndnotesRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'rearnotes [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['doc-endnote']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docEndnotesRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEpigraphRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'epigraph [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docEpigraphRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEpilogueRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'epilogue [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docEpilogueRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docErrataRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'errata [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docErrataRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docExampleRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docExampleRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docFootnoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'footnote [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docFootnoteRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docForewordRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'foreword [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docForewordRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docGlossaryRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'glossary [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['definition'], ['term']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docGlossaryRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docGlossrefRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'glossref [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = docGlossrefRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docIndexRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'index [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark', 'navigation']]\n};\nvar _default = docIndexRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docIntroductionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'introduction [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docIntroductionRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docNoterefRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'noteref [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = docNoterefRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docNoticeRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'notice [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'note']]\n};\nvar _default = docNoticeRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPagebreakRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'pagebreak [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'separator']]\n};\nvar _default = docPagebreakRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPagelistRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'page-list [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark', 'navigation']]\n};\nvar _default = docPagelistRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPartRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'part [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docPartRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPrefaceRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'preface [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docPrefaceRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPrologueRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'prologue [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = docPrologueRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPullquoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'pullquote [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['none']]\n};\nvar _default = docPullquoteRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docQnaRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'qna [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = docQnaRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docSubtitleRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'subtitle [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'sectionhead']]\n};\nvar _default = docSubtitleRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docTipRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'help [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'note']]\n};\nvar _default = docTipRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docTocRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'toc [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark', 'navigation']]\n};\nvar _default = docTocRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _docAbstractRole = _interopRequireDefault(require(\"./dpub/docAbstractRole\"));\nvar _docAcknowledgmentsRole = _interopRequireDefault(require(\"./dpub/docAcknowledgmentsRole\"));\nvar _docAfterwordRole = _interopRequireDefault(require(\"./dpub/docAfterwordRole\"));\nvar _docAppendixRole = _interopRequireDefault(require(\"./dpub/docAppendixRole\"));\nvar _docBacklinkRole = _interopRequireDefault(require(\"./dpub/docBacklinkRole\"));\nvar _docBiblioentryRole = _interopRequireDefault(require(\"./dpub/docBiblioentryRole\"));\nvar _docBibliographyRole = _interopRequireDefault(require(\"./dpub/docBibliographyRole\"));\nvar _docBibliorefRole = _interopRequireDefault(require(\"./dpub/docBibliorefRole\"));\nvar _docChapterRole = _interopRequireDefault(require(\"./dpub/docChapterRole\"));\nvar _docColophonRole = _interopRequireDefault(require(\"./dpub/docColophonRole\"));\nvar _docConclusionRole = _interopRequireDefault(require(\"./dpub/docConclusionRole\"));\nvar _docCoverRole = _interopRequireDefault(require(\"./dpub/docCoverRole\"));\nvar _docCreditRole = _interopRequireDefault(require(\"./dpub/docCreditRole\"));\nvar _docCreditsRole = _interopRequireDefault(require(\"./dpub/docCreditsRole\"));\nvar _docDedicationRole = _interopRequireDefault(require(\"./dpub/docDedicationRole\"));\nvar _docEndnoteRole = _interopRequireDefault(require(\"./dpub/docEndnoteRole\"));\nvar _docEndnotesRole = _interopRequireDefault(require(\"./dpub/docEndnotesRole\"));\nvar _docEpigraphRole = _interopRequireDefault(require(\"./dpub/docEpigraphRole\"));\nvar _docEpilogueRole = _interopRequireDefault(require(\"./dpub/docEpilogueRole\"));\nvar _docErrataRole = _interopRequireDefault(require(\"./dpub/docErrataRole\"));\nvar _docExampleRole = _interopRequireDefault(require(\"./dpub/docExampleRole\"));\nvar _docFootnoteRole = _interopRequireDefault(require(\"./dpub/docFootnoteRole\"));\nvar _docForewordRole = _interopRequireDefault(require(\"./dpub/docForewordRole\"));\nvar _docGlossaryRole = _interopRequireDefault(require(\"./dpub/docGlossaryRole\"));\nvar _docGlossrefRole = _interopRequireDefault(require(\"./dpub/docGlossrefRole\"));\nvar _docIndexRole = _interopRequireDefault(require(\"./dpub/docIndexRole\"));\nvar _docIntroductionRole = _interopRequireDefault(require(\"./dpub/docIntroductionRole\"));\nvar _docNoterefRole = _interopRequireDefault(require(\"./dpub/docNoterefRole\"));\nvar _docNoticeRole = _interopRequireDefault(require(\"./dpub/docNoticeRole\"));\nvar _docPagebreakRole = _interopRequireDefault(require(\"./dpub/docPagebreakRole\"));\nvar _docPagelistRole = _interopRequireDefault(require(\"./dpub/docPagelistRole\"));\nvar _docPartRole = _interopRequireDefault(require(\"./dpub/docPartRole\"));\nvar _docPrefaceRole = _interopRequireDefault(require(\"./dpub/docPrefaceRole\"));\nvar _docPrologueRole = _interopRequireDefault(require(\"./dpub/docPrologueRole\"));\nvar _docPullquoteRole = _interopRequireDefault(require(\"./dpub/docPullquoteRole\"));\nvar _docQnaRole = _interopRequireDefault(require(\"./dpub/docQnaRole\"));\nvar _docSubtitleRole = _interopRequireDefault(require(\"./dpub/docSubtitleRole\"));\nvar _docTipRole = _interopRequireDefault(require(\"./dpub/docTipRole\"));\nvar _docTocRole = _interopRequireDefault(require(\"./dpub/docTocRole\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar ariaDpubRoles = [['doc-abstract', _docAbstractRole.default], ['doc-acknowledgments', _docAcknowledgmentsRole.default], ['doc-afterword', _docAfterwordRole.default], ['doc-appendix', _docAppendixRole.default], ['doc-backlink', _docBacklinkRole.default], ['doc-biblioentry', _docBiblioentryRole.default], ['doc-bibliography', _docBibliographyRole.default], ['doc-biblioref', _docBibliorefRole.default], ['doc-chapter', _docChapterRole.default], ['doc-colophon', _docColophonRole.default], ['doc-conclusion', _docConclusionRole.default], ['doc-cover', _docCoverRole.default], ['doc-credit', _docCreditRole.default], ['doc-credits', _docCreditsRole.default], ['doc-dedication', _docDedicationRole.default], ['doc-endnote', _docEndnoteRole.default], ['doc-endnotes', _docEndnotesRole.default], ['doc-epigraph', _docEpigraphRole.default], ['doc-epilogue', _docEpilogueRole.default], ['doc-errata', _docErrataRole.default], ['doc-example', _docExampleRole.default], ['doc-footnote', _docFootnoteRole.default], ['doc-foreword', _docForewordRole.default], ['doc-glossary', _docGlossaryRole.default], ['doc-glossref', _docGlossrefRole.default], ['doc-index', _docIndexRole.default], ['doc-introduction', _docIntroductionRole.default], ['doc-noteref', _docNoterefRole.default], ['doc-notice', _docNoticeRole.default], ['doc-pagebreak', _docPagebreakRole.default], ['doc-pagelist', _docPagelistRole.default], ['doc-part', _docPartRole.default], ['doc-preface', _docPrefaceRole.default], ['doc-prologue', _docPrologueRole.default], ['doc-pullquote', _docPullquoteRole.default], ['doc-qna', _docQnaRole.default], ['doc-subtitle', _docSubtitleRole.default], ['doc-tip', _docTipRole.default], ['doc-toc', _docTocRole.default]];\nvar _default = ariaDpubRoles;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar graphicsDocumentRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n module: 'GRAPHICS',\n concept: {\n name: 'graphics-object'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'img'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'article'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'document']]\n};\nvar _default = graphicsDocumentRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar graphicsObjectRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n module: 'GRAPHICS',\n concept: {\n name: 'graphics-document'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'group'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'img'\n }\n }, {\n module: 'GRAPHICS',\n concept: {\n name: 'graphics-symbol'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'group']]\n};\nvar _default = graphicsObjectRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar graphicsSymbolRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'img']]\n};\nvar _default = graphicsSymbolRole;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _graphicsDocumentRole = _interopRequireDefault(require(\"./graphics/graphicsDocumentRole\"));\nvar _graphicsObjectRole = _interopRequireDefault(require(\"./graphics/graphicsObjectRole\"));\nvar _graphicsSymbolRole = _interopRequireDefault(require(\"./graphics/graphicsSymbolRole\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar ariaGraphicsRoles = [['graphics-document', _graphicsDocumentRole.default], ['graphics-object', _graphicsObjectRole.default], ['graphics-symbol', _graphicsSymbolRole.default]];\nvar _default = ariaGraphicsRoles;\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _ariaAbstractRoles = _interopRequireDefault(require(\"./etc/roles/ariaAbstractRoles\"));\nvar _ariaLiteralRoles = _interopRequireDefault(require(\"./etc/roles/ariaLiteralRoles\"));\nvar _ariaDpubRoles = _interopRequireDefault(require(\"./etc/roles/ariaDpubRoles\"));\nvar _ariaGraphicsRoles = _interopRequireDefault(require(\"./etc/roles/ariaGraphicsRoles\"));\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nvar roles = [].concat(_ariaAbstractRoles.default, _ariaLiteralRoles.default, _ariaDpubRoles.default, _ariaGraphicsRoles.default);\nroles.forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n roleDefinition = _ref2[1];\n // Conglomerate the properties\n var _iterator = _createForOfIteratorHelper(roleDefinition.superClass),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var superClassIter = _step.value;\n var _iterator2 = _createForOfIteratorHelper(superClassIter),\n _step2;\n try {\n var _loop = function _loop() {\n var superClassName = _step2.value;\n var superClassRoleTuple = roles.find(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 1),\n name = _ref4[0];\n return name === superClassName;\n });\n if (superClassRoleTuple) {\n var superClassDefinition = superClassRoleTuple[1];\n for (var _i2 = 0, _Object$keys = Object.keys(superClassDefinition.props); _i2 < _Object$keys.length; _i2++) {\n var prop = _Object$keys[_i2];\n if (\n // $FlowIssue Accessing the hasOwnProperty on the Object prototype is fine.\n !Object.prototype.hasOwnProperty.call(roleDefinition.props, prop)) {\n Object.assign(roleDefinition.props, _defineProperty({}, prop, superClassDefinition.props[prop]));\n }\n }\n }\n };\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n _loop();\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n});\nvar rolesMap = {\n entries: function entries() {\n return roles;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var _iterator3 = _createForOfIteratorHelper(roles),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n key = _step3$value[0],\n values = _step3$value[1];\n fn.call(thisArg, values, key, roles);\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\n }\n },\n get: function get(key) {\n var item = roles.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!rolesMap.get(key);\n },\n keys: function keys() {\n return roles.map(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 1),\n key = _ref6[0];\n return key;\n });\n },\n values: function values() {\n return roles.map(function (_ref7) {\n var _ref8 = _slicedToArray(_ref7, 2),\n values = _ref8[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(rolesMap, rolesMap.entries());\nexports.default = _default;","var has = Object.prototype.hasOwnProperty;\n\nfunction dequal(foo, bar) {\n\tvar ctor, len;\n\tif (foo === bar) return true;\n\n\tif (foo && bar && (ctor=foo.constructor) === bar.constructor) {\n\t\tif (ctor === Date) return foo.getTime() === bar.getTime();\n\t\tif (ctor === RegExp) return foo.toString() === bar.toString();\n\n\t\tif (ctor === Array) {\n\t\t\tif ((len=foo.length) === bar.length) {\n\t\t\t\twhile (len-- && dequal(foo[len], bar[len]));\n\t\t\t}\n\t\t\treturn len === -1;\n\t\t}\n\n\t\tif (!ctor || typeof foo === 'object') {\n\t\t\tlen = 0;\n\t\t\tfor (ctor in foo) {\n\t\t\t\tif (has.call(foo, ctor) && ++len && !has.call(bar, ctor)) return false;\n\t\t\t\tif (!(ctor in bar) || !dequal(foo[ctor], bar[ctor])) return false;\n\t\t\t}\n\t\t\treturn Object.keys(bar).length === len;\n\t\t}\n\t}\n\n\treturn foo !== foo && bar !== bar;\n}\n\nexports.dequal = dequal;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _lite = require(\"dequal/lite\");\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _rolesMap = _interopRequireDefault(require(\"./rolesMap\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar elementRoles = [];\nvar keys = _rolesMap.default.keys();\nfor (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var role = _rolesMap.default.get(key);\n if (role) {\n var concepts = [].concat(role.baseConcepts, role.relatedConcepts);\n for (var k = 0; k < concepts.length; k++) {\n var relation = concepts[k];\n if (relation.module === 'HTML') {\n (function () {\n var concept = relation.concept;\n if (concept) {\n var elementRoleRelation = elementRoles.find(function (relation) {\n return (0, _lite.dequal)(relation, concept);\n });\n var roles;\n if (elementRoleRelation) {\n roles = elementRoleRelation[1];\n } else {\n roles = [];\n }\n var isUnique = true;\n for (var _i = 0; _i < roles.length; _i++) {\n if (roles[_i] === key) {\n isUnique = false;\n break;\n }\n }\n if (isUnique) {\n roles.push(key);\n }\n elementRoles.push([concept, roles]);\n }\n })();\n }\n }\n }\n}\nvar elementRoleMap = {\n entries: function entries() {\n return elementRoles;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var _iterator = _createForOfIteratorHelper(elementRoles),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = _slicedToArray(_step.value, 2),\n _key = _step$value[0],\n values = _step$value[1];\n fn.call(thisArg, values, _key, elementRoles);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n },\n get: function get(key) {\n var item = elementRoles.find(function (tuple) {\n return key.name === tuple[0].name && (0, _lite.dequal)(key.attributes, tuple[0].attributes);\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!elementRoleMap.get(key);\n },\n keys: function keys() {\n return elementRoles.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return elementRoles.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(elementRoleMap, elementRoleMap.entries());\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _rolesMap = _interopRequireDefault(require(\"./rolesMap\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar roleElement = [];\nvar keys = _rolesMap.default.keys();\nfor (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var role = _rolesMap.default.get(key);\n var relationConcepts = [];\n if (role) {\n var concepts = [].concat(role.baseConcepts, role.relatedConcepts);\n for (var k = 0; k < concepts.length; k++) {\n var relation = concepts[k];\n if (relation.module === 'HTML') {\n var concept = relation.concept;\n if (concept != null) {\n relationConcepts.push(concept);\n }\n }\n }\n if (relationConcepts.length > 0) {\n roleElement.push([key, relationConcepts]);\n }\n }\n}\nvar roleElementMap = {\n entries: function entries() {\n return roleElement;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var _iterator = _createForOfIteratorHelper(roleElement),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = _slicedToArray(_step.value, 2),\n _key = _step$value[0],\n values = _step$value[1];\n fn.call(thisArg, values, _key, roleElement);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n },\n get: function get(key) {\n var item = roleElement.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!roleElementMap.get(key);\n },\n keys: function keys() {\n return roleElement.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return roleElement.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(roleElementMap, roleElementMap.entries());\nexports.default = _default;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.roles = exports.roleElements = exports.elementRoles = exports.dom = exports.aria = void 0;\nvar _ariaPropsMap = _interopRequireDefault(require(\"./ariaPropsMap\"));\nvar _domMap = _interopRequireDefault(require(\"./domMap\"));\nvar _rolesMap = _interopRequireDefault(require(\"./rolesMap\"));\nvar _elementRoleMap = _interopRequireDefault(require(\"./elementRoleMap\"));\nvar _roleElementMap = _interopRequireDefault(require(\"./roleElementMap\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar aria = _ariaPropsMap.default;\nexports.aria = aria;\nvar dom = _domMap.default;\nexports.dom = dom;\nvar roles = _rolesMap.default;\nexports.roles = roles;\nvar elementRoles = _elementRoleMap.default;\nexports.elementRoles = elementRoles;\nvar roleElements = _roleElementMap.default;\nexports.roleElements = roleElements;","// Copyright (c) 2013 Pieroxy <pieroxy@pieroxy.net>\n// This work is free. You can redistribute it and/or modify it\n// under the terms of the WTFPL, Version 2\n// For more information see LICENSE.txt or http://www.wtfpl.net/\n//\n// For more information, the home page:\n// http://pieroxy.net/blog/pages/lz-string/testing.html\n//\n// LZ-based compression algorithm, version 1.4.5\nvar LZString = (function() {\n\n// private property\nvar f = String.fromCharCode;\nvar keyStrBase64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";\nvar keyStrUriSafe = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-$\";\nvar baseReverseDic = {};\n\nfunction getBaseValue(alphabet, character) {\n if (!baseReverseDic[alphabet]) {\n baseReverseDic[alphabet] = {};\n for (var i=0 ; i<alphabet.length ; i++) {\n baseReverseDic[alphabet][alphabet.charAt(i)] = i;\n }\n }\n return baseReverseDic[alphabet][character];\n}\n\nvar LZString = {\n compressToBase64 : function (input) {\n if (input == null) return \"\";\n var res = LZString._compress(input, 6, function(a){return keyStrBase64.charAt(a);});\n switch (res.length % 4) { // To produce valid Base64\n default: // When could this happen ?\n case 0 : return res;\n case 1 : return res+\"===\";\n case 2 : return res+\"==\";\n case 3 : return res+\"=\";\n }\n },\n\n decompressFromBase64 : function (input) {\n if (input == null) return \"\";\n if (input == \"\") return null;\n return LZString._decompress(input.length, 32, function(index) { return getBaseValue(keyStrBase64, input.charAt(index)); });\n },\n\n compressToUTF16 : function (input) {\n if (input == null) return \"\";\n return LZString._compress(input, 15, function(a){return f(a+32);}) + \" \";\n },\n\n decompressFromUTF16: function (compressed) {\n if (compressed == null) return \"\";\n if (compressed == \"\") return null;\n return LZString._decompress(compressed.length, 16384, function(index) { return compressed.charCodeAt(index) - 32; });\n },\n\n //compress into uint8array (UCS-2 big endian format)\n compressToUint8Array: function (uncompressed) {\n var compressed = LZString.compress(uncompressed);\n var buf=new Uint8Array(compressed.length*2); // 2 bytes per character\n\n for (var i=0, TotalLen=compressed.length; i<TotalLen; i++) {\n var current_value = compressed.charCodeAt(i);\n buf[i*2] = current_value >>> 8;\n buf[i*2+1] = current_value % 256;\n }\n return buf;\n },\n\n //decompress from uint8array (UCS-2 big endian format)\n decompressFromUint8Array:function (compressed) {\n if (compressed===null || compressed===undefined){\n return LZString.decompress(compressed);\n } else {\n var buf=new Array(compressed.length/2); // 2 bytes per character\n for (var i=0, TotalLen=buf.length; i<TotalLen; i++) {\n buf[i]=compressed[i*2]*256+compressed[i*2+1];\n }\n\n var result = [];\n buf.forEach(function (c) {\n result.push(f(c));\n });\n return LZString.decompress(result.join(''));\n\n }\n\n },\n\n\n //compress into a string that is already URI encoded\n compressToEncodedURIComponent: function (input) {\n if (input == null) return \"\";\n return LZString._compress(input, 6, function(a){return keyStrUriSafe.charAt(a);});\n },\n\n //decompress from an output of compressToEncodedURIComponent\n decompressFromEncodedURIComponent:function (input) {\n if (input == null) return \"\";\n if (input == \"\") return null;\n input = input.replace(/ /g, \"+\");\n return LZString._decompress(input.length, 32, function(index) { return getBaseValue(keyStrUriSafe, input.charAt(index)); });\n },\n\n compress: function (uncompressed) {\n return LZString._compress(uncompressed, 16, function(a){return f(a);});\n },\n _compress: function (uncompressed, bitsPerChar, getCharFromInt) {\n if (uncompressed == null) return \"\";\n var i, value,\n context_dictionary= {},\n context_dictionaryToCreate= {},\n context_c=\"\",\n context_wc=\"\",\n context_w=\"\",\n context_enlargeIn= 2, // Compensate for the first entry which should not count\n context_dictSize= 3,\n context_numBits= 2,\n context_data=[],\n context_data_val=0,\n context_data_position=0,\n ii;\n\n for (ii = 0; ii < uncompressed.length; ii += 1) {\n context_c = uncompressed.charAt(ii);\n if (!Object.prototype.hasOwnProperty.call(context_dictionary,context_c)) {\n context_dictionary[context_c] = context_dictSize++;\n context_dictionaryToCreate[context_c] = true;\n }\n\n context_wc = context_w + context_c;\n if (Object.prototype.hasOwnProperty.call(context_dictionary,context_wc)) {\n context_w = context_wc;\n } else {\n if (Object.prototype.hasOwnProperty.call(context_dictionaryToCreate,context_w)) {\n if (context_w.charCodeAt(0)<256) {\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n }\n value = context_w.charCodeAt(0);\n for (i=0 ; i<8 ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n } else {\n value = 1;\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1) | value;\n if (context_data_position ==bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = 0;\n }\n value = context_w.charCodeAt(0);\n for (i=0 ; i<16 ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n }\n context_enlargeIn--;\n if (context_enlargeIn == 0) {\n context_enlargeIn = Math.pow(2, context_numBits);\n context_numBits++;\n }\n delete context_dictionaryToCreate[context_w];\n } else {\n value = context_dictionary[context_w];\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n\n\n }\n context_enlargeIn--;\n if (context_enlargeIn == 0) {\n context_enlargeIn = Math.pow(2, context_numBits);\n context_numBits++;\n }\n // Add wc to the dictionary.\n context_dictionary[context_wc] = context_dictSize++;\n context_w = String(context_c);\n }\n }\n\n // Output the code for w.\n if (context_w !== \"\") {\n if (Object.prototype.hasOwnProperty.call(context_dictionaryToCreate,context_w)) {\n if (context_w.charCodeAt(0)<256) {\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n }\n value = context_w.charCodeAt(0);\n for (i=0 ; i<8 ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n } else {\n value = 1;\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1) | value;\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = 0;\n }\n value = context_w.charCodeAt(0);\n for (i=0 ; i<16 ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n }\n context_enlargeIn--;\n if (context_enlargeIn == 0) {\n context_enlargeIn = Math.pow(2, context_numBits);\n context_numBits++;\n }\n delete context_dictionaryToCreate[context_w];\n } else {\n value = context_dictionary[context_w];\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n\n\n }\n context_enlargeIn--;\n if (context_enlargeIn == 0) {\n context_enlargeIn = Math.pow(2, context_numBits);\n context_numBits++;\n }\n }\n\n // Mark the end of the stream\n value = 2;\n for (i=0 ; i<context_numBits ; i++) {\n context_data_val = (context_data_val << 1) | (value&1);\n if (context_data_position == bitsPerChar-1) {\n context_data_position = 0;\n context_data.push(getCharFromInt(context_data_val));\n context_data_val = 0;\n } else {\n context_data_position++;\n }\n value = value >> 1;\n }\n\n // Flush the last char\n while (true) {\n context_data_val = (context_data_val << 1);\n if (context_data_position == bitsPerChar-1) {\n context_data.push(getCharFromInt(context_data_val));\n break;\n }\n else context_data_position++;\n }\n return context_data.join('');\n },\n\n decompress: function (compressed) {\n if (compressed == null) return \"\";\n if (compressed == \"\") return null;\n return LZString._decompress(compressed.length, 32768, function(index) { return compressed.charCodeAt(index); });\n },\n\n _decompress: function (length, resetValue, getNextValue) {\n var dictionary = [],\n next,\n enlargeIn = 4,\n dictSize = 4,\n numBits = 3,\n entry = \"\",\n result = [],\n i,\n w,\n bits, resb, maxpower, power,\n c,\n data = {val:getNextValue(0), position:resetValue, index:1};\n\n for (i = 0; i < 3; i += 1) {\n dictionary[i] = i;\n }\n\n bits = 0;\n maxpower = Math.pow(2,2);\n power=1;\n while (power!=maxpower) {\n resb = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n data.val = getNextValue(data.index++);\n }\n bits |= (resb>0 ? 1 : 0) * power;\n power <<= 1;\n }\n\n switch (next = bits) {\n case 0:\n bits = 0;\n maxpower = Math.pow(2,8);\n power=1;\n while (power!=maxpower) {\n resb = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n data.val = getNextValue(data.index++);\n }\n bits |= (resb>0 ? 1 : 0) * power;\n power <<= 1;\n }\n c = f(bits);\n break;\n case 1:\n bits = 0;\n maxpower = Math.pow(2,16);\n power=1;\n while (power!=maxpower) {\n resb = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n data.val = getNextValue(data.index++);\n }\n bits |= (resb>0 ? 1 : 0) * power;\n power <<= 1;\n }\n c = f(bits);\n break;\n case 2:\n return \"\";\n }\n dictionary[3] = c;\n w = c;\n result.push(c);\n while (true) {\n if (data.index > length) {\n return \"\";\n }\n\n bits = 0;\n maxpower = Math.pow(2,numBits);\n power=1;\n while (power!=maxpower) {\n resb = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n data.val = getNextValue(data.index++);\n }\n bits |= (resb>0 ? 1 : 0) * power;\n power <<= 1;\n }\n\n switch (c = bits) {\n case 0:\n bits = 0;\n maxpower = Math.pow(2,8);\n power=1;\n while (power!=maxpower) {\n resb = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n data.val = getNextValue(data.index++);\n }\n bits |= (resb>0 ? 1 : 0) * power;\n power <<= 1;\n }\n\n dictionary[dictSize++] = f(bits);\n c = dictSize-1;\n enlargeIn--;\n break;\n case 1:\n bits = 0;\n maxpower = Math.pow(2,16);\n power=1;\n while (power!=maxpower) {\n resb = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n data.val = getNextValue(data.index++);\n }\n bits |= (resb>0 ? 1 : 0) * power;\n power <<= 1;\n }\n dictionary[dictSize++] = f(bits);\n c = dictSize-1;\n enlargeIn--;\n break;\n case 2:\n return result.join('');\n }\n\n if (enlargeIn == 0) {\n enlargeIn = Math.pow(2, numBits);\n numBits++;\n }\n\n if (dictionary[c]) {\n entry = dictionary[c];\n } else {\n if (c === dictSize) {\n entry = w + w.charAt(0);\n } else {\n return null;\n }\n }\n result.push(entry);\n\n // Add w+entry[0] to the dictionary.\n dictionary[dictSize++] = w + entry.charAt(0);\n enlargeIn--;\n\n w = entry;\n\n if (enlargeIn == 0) {\n enlargeIn = Math.pow(2, numBits);\n numBits++;\n }\n\n }\n }\n};\n return LZString;\n})();\n\nif (typeof define === 'function' && define.amd) {\n define(function () { return LZString; });\n} else if( typeof module !== 'undefined' && module != null ) {\n module.exports = LZString\n} else if( typeof angular !== 'undefined' && angular != null ) {\n angular.module('LZString', [])\n .factory('LZString', function () {\n return LZString;\n });\n}\n","import * as prettyFormat from 'pretty-format';\nexport { prettyFormat };\nimport { computeAccessibleName, computeAccessibleDescription } from 'dom-accessibility-api';\nimport { elementRoles, roles, roleElements } from 'aria-query';\nimport lzString from 'lz-string';\n\n/**\n * Source: https://github.com/facebook/jest/blob/e7bb6a1e26ffab90611b2593912df15b69315611/packages/pretty-format/src/plugins/DOMElement.ts\n */\n/* eslint-disable -- trying to stay as close to the original as possible */\n/* istanbul ignore file */\n\nfunction escapeHTML(str) {\n return str.replace(/</g, '&lt;').replace(/>/g, '&gt;');\n}\n// Return empty string if keys is empty.\nconst printProps = (keys, props, config, indentation, depth, refs, printer) => {\n const indentationNext = indentation + config.indent;\n const colors = config.colors;\n return keys.map(key => {\n const value = props[key];\n let printed = printer(value, config, indentationNext, depth, refs);\n if (typeof value !== 'string') {\n if (printed.indexOf('\\n') !== -1) {\n printed = config.spacingOuter + indentationNext + printed + config.spacingOuter + indentation;\n }\n printed = '{' + printed + '}';\n }\n return config.spacingInner + indentation + colors.prop.open + key + colors.prop.close + '=' + colors.value.open + printed + colors.value.close;\n }).join('');\n};\n\n// https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType#node_type_constants\nconst NodeTypeTextNode = 3;\n\n// Return empty string if children is empty.\nconst printChildren = (children, config, indentation, depth, refs, printer) => children.map(child => {\n const printedChild = typeof child === 'string' ? printText(child, config) : printer(child, config, indentation, depth, refs);\n if (printedChild === '' && typeof child === 'object' && child !== null && child.nodeType !== NodeTypeTextNode) {\n // A plugin serialized this Node to '' meaning we should ignore it.\n return '';\n }\n return config.spacingOuter + indentation + printedChild;\n}).join('');\nconst printText = (text, config) => {\n const contentColor = config.colors.content;\n return contentColor.open + escapeHTML(text) + contentColor.close;\n};\nconst printComment = (comment, config) => {\n const commentColor = config.colors.comment;\n return commentColor.open + '<!--' + escapeHTML(comment) + '-->' + commentColor.close;\n};\n\n// Separate the functions to format props, children, and element,\n// so a plugin could override a particular function, if needed.\n// Too bad, so sad: the traditional (but unnecessary) space\n// in a self-closing tagColor requires a second test of printedProps.\nconst printElement = (type, printedProps, printedChildren, config, indentation) => {\n const tagColor = config.colors.tag;\n return tagColor.open + '<' + type + (printedProps && tagColor.close + printedProps + config.spacingOuter + indentation + tagColor.open) + (printedChildren ? '>' + tagColor.close + printedChildren + config.spacingOuter + indentation + tagColor.open + '</' + type : (printedProps && !config.min ? '' : ' ') + '/') + '>' + tagColor.close;\n};\nconst printElementAsLeaf = (type, config) => {\n const tagColor = config.colors.tag;\n return tagColor.open + '<' + type + tagColor.close + ' …' + tagColor.open + ' />' + tagColor.close;\n};\nconst ELEMENT_NODE$1 = 1;\nconst TEXT_NODE$1 = 3;\nconst COMMENT_NODE$1 = 8;\nconst FRAGMENT_NODE = 11;\nconst ELEMENT_REGEXP = /^((HTML|SVG)\\w*)?Element$/;\nconst testNode = val => {\n const constructorName = val.constructor.name;\n const {\n nodeType,\n tagName\n } = val;\n const isCustomElement = typeof tagName === 'string' && tagName.includes('-') || typeof val.hasAttribute === 'function' && val.hasAttribute('is');\n return nodeType === ELEMENT_NODE$1 && (ELEMENT_REGEXP.test(constructorName) || isCustomElement) || nodeType === TEXT_NODE$1 && constructorName === 'Text' || nodeType === COMMENT_NODE$1 && constructorName === 'Comment' || nodeType === FRAGMENT_NODE && constructorName === 'DocumentFragment';\n};\nfunction nodeIsText(node) {\n return node.nodeType === TEXT_NODE$1;\n}\nfunction nodeIsComment(node) {\n return node.nodeType === COMMENT_NODE$1;\n}\nfunction nodeIsFragment(node) {\n return node.nodeType === FRAGMENT_NODE;\n}\nfunction createDOMElementFilter(filterNode) {\n return {\n test: val => {\n var _val$constructor2;\n return (val == null || (_val$constructor2 = val.constructor) == null ? void 0 : _val$constructor2.name) && testNode(val);\n },\n serialize: (node, config, indentation, depth, refs, printer) => {\n if (nodeIsText(node)) {\n return printText(node.data, config);\n }\n if (nodeIsComment(node)) {\n return printComment(node.data, config);\n }\n const type = nodeIsFragment(node) ? \"DocumentFragment\" : node.tagName.toLowerCase();\n if (++depth > config.maxDepth) {\n return printElementAsLeaf(type, config);\n }\n return printElement(type, printProps(nodeIsFragment(node) ? [] : Array.from(node.attributes).map(attr => attr.name).sort(), nodeIsFragment(node) ? {} : Array.from(node.attributes).reduce((props, attribute) => {\n props[attribute.name] = attribute.value;\n return props;\n }, {}), config, indentation + config.indent, depth, refs, printer), printChildren(Array.prototype.slice.call(node.childNodes || node.children).filter(filterNode), config, indentation + config.indent, depth, refs, printer), config, indentation);\n }\n };\n}\n\n// We try to load node dependencies\nlet chalk = null;\nlet readFileSync = null;\nlet codeFrameColumns = null;\ntry {\n const nodeRequire = module && module.require;\n readFileSync = nodeRequire.call(module, 'fs').readFileSync;\n codeFrameColumns = nodeRequire.call(module, '@babel/code-frame').codeFrameColumns;\n chalk = nodeRequire.call(module, 'chalk');\n} catch {\n // We're in a browser environment\n}\n\n// frame has the form \"at myMethod (location/to/my/file.js:10:2)\"\nfunction getCodeFrame(frame) {\n const locationStart = frame.indexOf('(') + 1;\n const locationEnd = frame.indexOf(')');\n const frameLocation = frame.slice(locationStart, locationEnd);\n const frameLocationElements = frameLocation.split(':');\n const [filename, line, column] = [frameLocationElements[0], parseInt(frameLocationElements[1], 10), parseInt(frameLocationElements[2], 10)];\n let rawFileContents = '';\n try {\n rawFileContents = readFileSync(filename, 'utf-8');\n } catch {\n return '';\n }\n const codeFrame = codeFrameColumns(rawFileContents, {\n start: {\n line,\n column\n }\n }, {\n highlightCode: true,\n linesBelow: 0\n });\n return chalk.dim(frameLocation) + \"\\n\" + codeFrame + \"\\n\";\n}\nfunction getUserCodeFrame() {\n // If we couldn't load dependencies, we can't generate the user trace\n /* istanbul ignore next */\n if (!readFileSync || !codeFrameColumns) {\n return '';\n }\n const err = new Error();\n const firstClientCodeFrame = err.stack.split('\\n').slice(1) // Remove first line which has the form \"Error: TypeError\"\n .find(frame => !frame.includes('node_modules/')); // Ignore frames from 3rd party libraries\n\n return getCodeFrame(firstClientCodeFrame);\n}\n\n// Constant node.nodeType for text nodes, see:\n// https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType#Node_type_constants\nconst TEXT_NODE = 3;\nfunction jestFakeTimersAreEnabled() {\n /* istanbul ignore else */\n // eslint-disable-next-line\n if (typeof jest !== 'undefined' && jest !== null) {\n return (\n // legacy timers\n setTimeout._isMockFunction === true ||\n // modern timers\n // eslint-disable-next-line prefer-object-has-own -- not supported by our support matrix\n Object.prototype.hasOwnProperty.call(setTimeout, 'clock')\n );\n }\n // istanbul ignore next\n return false;\n}\nfunction getDocument() {\n /* istanbul ignore if */\n if (typeof window === 'undefined') {\n throw new Error('Could not find default container');\n }\n return window.document;\n}\nfunction getWindowFromNode(node) {\n if (node.defaultView) {\n // node is document\n return node.defaultView;\n } else if (node.ownerDocument && node.ownerDocument.defaultView) {\n // node is a DOM node\n return node.ownerDocument.defaultView;\n } else if (node.window) {\n // node is window\n return node.window;\n } else if (node.ownerDocument && node.ownerDocument.defaultView === null) {\n throw new Error(\"It looks like the window object is not available for the provided node.\");\n } else if (node.then instanceof Function) {\n throw new Error(\"It looks like you passed a Promise object instead of a DOM node. Did you do something like `fireEvent.click(screen.findBy...` when you meant to use a `getBy` query `fireEvent.click(screen.getBy...`, or await the findBy query `fireEvent.click(await screen.findBy...`?\");\n } else if (Array.isArray(node)) {\n throw new Error(\"It looks like you passed an Array instead of a DOM node. Did you do something like `fireEvent.click(screen.getAllBy...` when you meant to use a `getBy` query `fireEvent.click(screen.getBy...`?\");\n } else if (typeof node.debug === 'function' && typeof node.logTestingPlaygroundURL === 'function') {\n throw new Error(\"It looks like you passed a `screen` object. Did you do something like `fireEvent.click(screen, ...` when you meant to use a query, e.g. `fireEvent.click(screen.getBy..., `?\");\n } else {\n // The user passed something unusual to a calling function\n throw new Error(\"The given node is not an Element, the node type is: \" + typeof node + \".\");\n }\n}\nfunction checkContainerType(container) {\n if (!container || !(typeof container.querySelector === 'function') || !(typeof container.querySelectorAll === 'function')) {\n throw new TypeError(\"Expected container to be an Element, a Document or a DocumentFragment but got \" + getTypeName(container) + \".\");\n }\n function getTypeName(object) {\n if (typeof object === 'object') {\n return object === null ? 'null' : object.constructor.name;\n }\n return typeof object;\n }\n}\n\nconst shouldHighlight = () => {\n let colors;\n try {\n var _process;\n colors = JSON.parse((_process = process) == null || (_process = _process.env) == null ? void 0 : _process.COLORS);\n } catch (e) {\n // If this throws, process?.env?.COLORS wasn't parsable. Since we only\n // care about `true` or `false`, we can safely ignore the error.\n }\n if (typeof colors === 'boolean') {\n // If `colors` is set explicitly (both `true` and `false`), use that value.\n return colors;\n } else {\n // If `colors` is not set, colorize if we're in node.\n return typeof process !== 'undefined' && process.versions !== undefined && process.versions.node !== undefined;\n }\n};\nconst {\n DOMCollection\n} = prettyFormat.plugins;\n\n// https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType#node_type_constants\nconst ELEMENT_NODE = 1;\nconst COMMENT_NODE = 8;\n\n// https://github.com/facebook/jest/blob/615084195ae1ae61ddd56162c62bbdda17587569/packages/pretty-format/src/plugins/DOMElement.ts#L50\nfunction filterCommentsAndDefaultIgnoreTagsTags(value) {\n return value.nodeType !== COMMENT_NODE && (value.nodeType !== ELEMENT_NODE || !value.matches(getConfig().defaultIgnore));\n}\nfunction prettyDOM(dom, maxLength, options) {\n if (options === void 0) {\n options = {};\n }\n if (!dom) {\n dom = getDocument().body;\n }\n if (typeof maxLength !== 'number') {\n maxLength = typeof process !== 'undefined' && process.env.DEBUG_PRINT_LIMIT || 7000;\n }\n if (maxLength === 0) {\n return '';\n }\n if (dom.documentElement) {\n dom = dom.documentElement;\n }\n let domTypeName = typeof dom;\n if (domTypeName === 'object') {\n domTypeName = dom.constructor.name;\n } else {\n // To don't fall with `in` operator\n dom = {};\n }\n if (!('outerHTML' in dom)) {\n throw new TypeError(\"Expected an element or document but got \" + domTypeName);\n }\n const {\n filterNode = filterCommentsAndDefaultIgnoreTagsTags,\n ...prettyFormatOptions\n } = options;\n const debugContent = prettyFormat.format(dom, {\n plugins: [createDOMElementFilter(filterNode), DOMCollection],\n printFunctionName: false,\n highlight: shouldHighlight(),\n ...prettyFormatOptions\n });\n return maxLength !== undefined && dom.outerHTML.length > maxLength ? debugContent.slice(0, maxLength) + \"...\" : debugContent;\n}\nconst logDOM = function () {\n const userCodeFrame = getUserCodeFrame();\n if (userCodeFrame) {\n console.log(prettyDOM(...arguments) + \"\\n\\n\" + userCodeFrame);\n } else {\n console.log(prettyDOM(...arguments));\n }\n};\n\n// It would be cleaner for this to live inside './queries', but\n// other parts of the code assume that all exports from\n// './queries' are query functions.\nlet config = {\n testIdAttribute: 'data-testid',\n asyncUtilTimeout: 1000,\n // asyncWrapper and advanceTimersWrapper is to support React's async `act` function.\n // forcing react-testing-library to wrap all async functions would've been\n // a total nightmare (consider wrapping every findBy* query and then also\n // updating `within` so those would be wrapped too. Total nightmare).\n // so we have this config option that's really only intended for\n // react-testing-library to use. For that reason, this feature will remain\n // undocumented.\n asyncWrapper: cb => cb(),\n unstable_advanceTimersWrapper: cb => cb(),\n eventWrapper: cb => cb(),\n // default value for the `hidden` option in `ByRole` queries\n defaultHidden: false,\n // default value for the `ignore` option in `ByText` queries\n defaultIgnore: 'script, style',\n // showOriginalStackTrace flag to show the full error stack traces for async errors\n showOriginalStackTrace: false,\n // throw errors w/ suggestions for better queries. Opt in so off by default.\n throwSuggestions: false,\n // called when getBy* queries fail. (message, container) => Error\n getElementError(message, container) {\n const prettifiedDOM = prettyDOM(container);\n const error = new Error([message, \"Ignored nodes: comments, \" + config.defaultIgnore + \"\\n\" + prettifiedDOM].filter(Boolean).join('\\n\\n'));\n error.name = 'TestingLibraryElementError';\n return error;\n },\n _disableExpensiveErrorDiagnostics: false,\n computedStyleSupportsPseudoElements: false\n};\nfunction runWithExpensiveErrorDiagnosticsDisabled(callback) {\n try {\n config._disableExpensiveErrorDiagnostics = true;\n return callback();\n } finally {\n config._disableExpensiveErrorDiagnostics = false;\n }\n}\nfunction configure(newConfig) {\n if (typeof newConfig === 'function') {\n // Pass the existing config out to the provided function\n // and accept a delta in return\n newConfig = newConfig(config);\n }\n\n // Merge the incoming config delta\n config = {\n ...config,\n ...newConfig\n };\n}\nfunction getConfig() {\n return config;\n}\n\nconst labelledNodeNames = ['button', 'meter', 'output', 'progress', 'select', 'textarea', 'input'];\nfunction getTextContent(node) {\n if (labelledNodeNames.includes(node.nodeName.toLowerCase())) {\n return '';\n }\n if (node.nodeType === TEXT_NODE) return node.textContent;\n return Array.from(node.childNodes).map(childNode => getTextContent(childNode)).join('');\n}\nfunction getLabelContent(element) {\n let textContent;\n if (element.tagName.toLowerCase() === 'label') {\n textContent = getTextContent(element);\n } else {\n textContent = element.value || element.textContent;\n }\n return textContent;\n}\n\n// Based on https://github.com/eps1lon/dom-accessibility-api/pull/352\nfunction getRealLabels(element) {\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- types are not aware of older browsers that don't implement `labels`\n if (element.labels !== undefined) {\n var _labels;\n return (_labels = element.labels) != null ? _labels : [];\n }\n if (!isLabelable(element)) return [];\n const labels = element.ownerDocument.querySelectorAll('label');\n return Array.from(labels).filter(label => label.control === element);\n}\nfunction isLabelable(element) {\n return /BUTTON|METER|OUTPUT|PROGRESS|SELECT|TEXTAREA/.test(element.tagName) || element.tagName === 'INPUT' && element.getAttribute('type') !== 'hidden';\n}\nfunction getLabels(container, element, _temp) {\n let {\n selector = '*'\n } = _temp === void 0 ? {} : _temp;\n const ariaLabelledBy = element.getAttribute('aria-labelledby');\n const labelsId = ariaLabelledBy ? ariaLabelledBy.split(' ') : [];\n return labelsId.length ? labelsId.map(labelId => {\n const labellingElement = container.querySelector(\"[id=\\\"\" + labelId + \"\\\"]\");\n return labellingElement ? {\n content: getLabelContent(labellingElement),\n formControl: null\n } : {\n content: '',\n formControl: null\n };\n }) : Array.from(getRealLabels(element)).map(label => {\n const textToMatch = getLabelContent(label);\n const formControlSelector = 'button, input, meter, output, progress, select, textarea';\n const labelledFormControl = Array.from(label.querySelectorAll(formControlSelector)).filter(formControlElement => formControlElement.matches(selector))[0];\n return {\n content: textToMatch,\n formControl: labelledFormControl\n };\n });\n}\n\nfunction assertNotNullOrUndefined(matcher) {\n if (matcher === null || matcher === undefined) {\n throw new Error( // eslint-disable-next-line @typescript-eslint/restrict-template-expressions -- implicitly converting `T` to `string`\n \"It looks like \" + matcher + \" was passed instead of a matcher. Did you do something like getByText(\" + matcher + \")?\");\n }\n}\nfunction fuzzyMatches(textToMatch, node, matcher, normalizer) {\n if (typeof textToMatch !== 'string') {\n return false;\n }\n assertNotNullOrUndefined(matcher);\n const normalizedText = normalizer(textToMatch);\n if (typeof matcher === 'string' || typeof matcher === 'number') {\n return normalizedText.toLowerCase().includes(matcher.toString().toLowerCase());\n } else if (typeof matcher === 'function') {\n return matcher(normalizedText, node);\n } else {\n return matchRegExp(matcher, normalizedText);\n }\n}\nfunction matches(textToMatch, node, matcher, normalizer) {\n if (typeof textToMatch !== 'string') {\n return false;\n }\n assertNotNullOrUndefined(matcher);\n const normalizedText = normalizer(textToMatch);\n if (matcher instanceof Function) {\n return matcher(normalizedText, node);\n } else if (matcher instanceof RegExp) {\n return matchRegExp(matcher, normalizedText);\n } else {\n return normalizedText === String(matcher);\n }\n}\nfunction getDefaultNormalizer(_temp) {\n let {\n trim = true,\n collapseWhitespace = true\n } = _temp === void 0 ? {} : _temp;\n return text => {\n let normalizedText = text;\n normalizedText = trim ? normalizedText.trim() : normalizedText;\n normalizedText = collapseWhitespace ? normalizedText.replace(/\\s+/g, ' ') : normalizedText;\n return normalizedText;\n };\n}\n\n/**\n * Constructs a normalizer to pass to functions in matches.js\n * @param {boolean|undefined} trim The user-specified value for `trim`, without\n * any defaulting having been applied\n * @param {boolean|undefined} collapseWhitespace The user-specified value for\n * `collapseWhitespace`, without any defaulting having been applied\n * @param {Function|undefined} normalizer The user-specified normalizer\n * @returns {Function} A normalizer\n */\n\nfunction makeNormalizer(_ref) {\n let {\n trim,\n collapseWhitespace,\n normalizer\n } = _ref;\n if (!normalizer) {\n // No custom normalizer specified. Just use default.\n return getDefaultNormalizer({\n trim,\n collapseWhitespace\n });\n }\n if (typeof trim !== 'undefined' || typeof collapseWhitespace !== 'undefined') {\n // They've also specified a value for trim or collapseWhitespace\n throw new Error('trim and collapseWhitespace are not supported with a normalizer. ' + 'If you want to use the default trim and collapseWhitespace logic in your normalizer, ' + 'use \"getDefaultNormalizer({trim, collapseWhitespace})\" and compose that into your normalizer');\n }\n return normalizer;\n}\nfunction matchRegExp(matcher, text) {\n const match = matcher.test(text);\n if (matcher.global && matcher.lastIndex !== 0) {\n console.warn(\"To match all elements we had to reset the lastIndex of the RegExp because the global flag is enabled. We encourage to remove the global flag from the RegExp.\");\n matcher.lastIndex = 0;\n }\n return match;\n}\n\nfunction getNodeText(node) {\n if (node.matches('input[type=submit], input[type=button], input[type=reset]')) {\n return node.value;\n }\n return Array.from(node.childNodes).filter(child => child.nodeType === TEXT_NODE && Boolean(child.textContent)).map(c => c.textContent).join('');\n}\n\nconst elementRoleList = buildElementRoleList(elementRoles);\n\n/**\n * @param {Element} element -\n * @returns {boolean} - `true` if `element` and its subtree are inaccessible\n */\nfunction isSubtreeInaccessible(element) {\n if (element.hidden === true) {\n return true;\n }\n if (element.getAttribute('aria-hidden') === 'true') {\n return true;\n }\n const window = element.ownerDocument.defaultView;\n if (window.getComputedStyle(element).display === 'none') {\n return true;\n }\n return false;\n}\n\n/**\n * Partial implementation https://www.w3.org/TR/wai-aria-1.2/#tree_exclusion\n * which should only be used for elements with a non-presentational role i.e.\n * `role=\"none\"` and `role=\"presentation\"` will not be excluded.\n *\n * Implements aria-hidden semantics (i.e. parent overrides child)\n * Ignores \"Child Presentational: True\" characteristics\n *\n * @param {Element} element -\n * @param {object} [options] -\n * @param {function (element: Element): boolean} options.isSubtreeInaccessible -\n * can be used to return cached results from previous isSubtreeInaccessible calls\n * @returns {boolean} true if excluded, otherwise false\n */\nfunction isInaccessible(element, options) {\n if (options === void 0) {\n options = {};\n }\n const {\n isSubtreeInaccessible: isSubtreeInaccessibleImpl = isSubtreeInaccessible\n } = options;\n const window = element.ownerDocument.defaultView;\n // since visibility is inherited we can exit early\n if (window.getComputedStyle(element).visibility === 'hidden') {\n return true;\n }\n let currentElement = element;\n while (currentElement) {\n if (isSubtreeInaccessibleImpl(currentElement)) {\n return true;\n }\n currentElement = currentElement.parentElement;\n }\n return false;\n}\nfunction getImplicitAriaRoles(currentNode) {\n // eslint bug here:\n // eslint-disable-next-line no-unused-vars\n for (const {\n match,\n roles\n } of elementRoleList) {\n if (match(currentNode)) {\n return [...roles];\n }\n }\n return [];\n}\nfunction buildElementRoleList(elementRolesMap) {\n function makeElementSelector(_ref) {\n let {\n name,\n attributes\n } = _ref;\n return \"\" + name + attributes.map(_ref2 => {\n let {\n name: attributeName,\n value,\n constraints = []\n } = _ref2;\n const shouldNotExist = constraints.indexOf('undefined') !== -1;\n const shouldBeNonEmpty = constraints.indexOf('set') !== -1;\n const hasExplicitValue = typeof value !== 'undefined';\n if (hasExplicitValue) {\n return \"[\" + attributeName + \"=\\\"\" + value + \"\\\"]\";\n } else if (shouldNotExist) {\n return \":not([\" + attributeName + \"])\";\n } else if (shouldBeNonEmpty) {\n return \"[\" + attributeName + \"]:not([\" + attributeName + \"=\\\"\\\"])\";\n }\n return \"[\" + attributeName + \"]\";\n }).join('');\n }\n function getSelectorSpecificity(_ref3) {\n let {\n attributes = []\n } = _ref3;\n return attributes.length;\n }\n function bySelectorSpecificity(_ref4, _ref5) {\n let {\n specificity: leftSpecificity\n } = _ref4;\n let {\n specificity: rightSpecificity\n } = _ref5;\n return rightSpecificity - leftSpecificity;\n }\n function match(element) {\n let {\n attributes = []\n } = element;\n\n // https://github.com/testing-library/dom-testing-library/issues/814\n const typeTextIndex = attributes.findIndex(attribute => attribute.value && attribute.name === 'type' && attribute.value === 'text');\n if (typeTextIndex >= 0) {\n // not using splice to not mutate the attributes array\n attributes = [...attributes.slice(0, typeTextIndex), ...attributes.slice(typeTextIndex + 1)];\n }\n const selector = makeElementSelector({\n ...element,\n attributes\n });\n return node => {\n if (typeTextIndex >= 0 && node.type !== 'text') {\n return false;\n }\n return node.matches(selector);\n };\n }\n let result = [];\n\n // eslint bug here:\n // eslint-disable-next-line no-unused-vars\n for (const [element, roles] of elementRolesMap.entries()) {\n result = [...result, {\n match: match(element),\n roles: Array.from(roles),\n specificity: getSelectorSpecificity(element)\n }];\n }\n return result.sort(bySelectorSpecificity);\n}\nfunction getRoles(container, _temp) {\n let {\n hidden = false\n } = _temp === void 0 ? {} : _temp;\n function flattenDOM(node) {\n return [node, ...Array.from(node.children).reduce((acc, child) => [...acc, ...flattenDOM(child)], [])];\n }\n return flattenDOM(container).filter(element => {\n return hidden === false ? isInaccessible(element) === false : true;\n }).reduce((acc, node) => {\n let roles = [];\n // TODO: This violates html-aria which does not allow any role on every element\n if (node.hasAttribute('role')) {\n roles = node.getAttribute('role').split(' ').slice(0, 1);\n } else {\n roles = getImplicitAriaRoles(node);\n }\n return roles.reduce((rolesAcc, role) => Array.isArray(rolesAcc[role]) ? {\n ...rolesAcc,\n [role]: [...rolesAcc[role], node]\n } : {\n ...rolesAcc,\n [role]: [node]\n }, acc);\n }, {});\n}\nfunction prettyRoles(dom, _ref6) {\n let {\n hidden,\n includeDescription\n } = _ref6;\n const roles = getRoles(dom, {\n hidden\n });\n // We prefer to skip generic role, we don't recommend it\n return Object.entries(roles).filter(_ref7 => {\n let [role] = _ref7;\n return role !== 'generic';\n }).map(_ref8 => {\n let [role, elements] = _ref8;\n const delimiterBar = '-'.repeat(50);\n const elementsString = elements.map(el => {\n const nameString = \"Name \\\"\" + computeAccessibleName(el, {\n computedStyleSupportsPseudoElements: getConfig().computedStyleSupportsPseudoElements\n }) + \"\\\":\\n\";\n const domString = prettyDOM(el.cloneNode(false));\n if (includeDescription) {\n const descriptionString = \"Description \\\"\" + computeAccessibleDescription(el, {\n computedStyleSupportsPseudoElements: getConfig().computedStyleSupportsPseudoElements\n }) + \"\\\":\\n\";\n return \"\" + nameString + descriptionString + domString;\n }\n return \"\" + nameString + domString;\n }).join('\\n\\n');\n return role + \":\\n\\n\" + elementsString + \"\\n\\n\" + delimiterBar;\n }).join('\\n');\n}\nconst logRoles = function (dom, _temp2) {\n let {\n hidden = false\n } = _temp2 === void 0 ? {} : _temp2;\n return console.log(prettyRoles(dom, {\n hidden\n }));\n};\n\n/**\n * @param {Element} element -\n * @returns {boolean | undefined} - false/true if (not)selected, undefined if not selectable\n */\nfunction computeAriaSelected(element) {\n // implicit value from html-aam mappings: https://www.w3.org/TR/html-aam-1.0/#html-attribute-state-and-property-mappings\n // https://www.w3.org/TR/html-aam-1.0/#details-id-97\n if (element.tagName === 'OPTION') {\n return element.selected;\n }\n\n // explicit value\n return checkBooleanAttribute(element, 'aria-selected');\n}\n\n/**\n * @param {Element} element -\n * @returns {boolean} -\n */\nfunction computeAriaBusy(element) {\n // https://www.w3.org/TR/wai-aria-1.1/#aria-busy\n return element.getAttribute('aria-busy') === 'true';\n}\n\n/**\n * @param {Element} element -\n * @returns {boolean | undefined} - false/true if (not)checked, undefined if not checked-able\n */\nfunction computeAriaChecked(element) {\n // implicit value from html-aam mappings: https://www.w3.org/TR/html-aam-1.0/#html-attribute-state-and-property-mappings\n // https://www.w3.org/TR/html-aam-1.0/#details-id-56\n // https://www.w3.org/TR/html-aam-1.0/#details-id-67\n if ('indeterminate' in element && element.indeterminate) {\n return undefined;\n }\n if ('checked' in element) {\n return element.checked;\n }\n\n // explicit value\n return checkBooleanAttribute(element, 'aria-checked');\n}\n\n/**\n * @param {Element} element -\n * @returns {boolean | undefined} - false/true if (not)pressed, undefined if not press-able\n */\nfunction computeAriaPressed(element) {\n // https://www.w3.org/TR/wai-aria-1.1/#aria-pressed\n return checkBooleanAttribute(element, 'aria-pressed');\n}\n\n/**\n * @param {Element} element -\n * @returns {boolean | string | null} -\n */\nfunction computeAriaCurrent(element) {\n var _ref9, _checkBooleanAttribut;\n // https://www.w3.org/TR/wai-aria-1.1/#aria-current\n return (_ref9 = (_checkBooleanAttribut = checkBooleanAttribute(element, 'aria-current')) != null ? _checkBooleanAttribut : element.getAttribute('aria-current')) != null ? _ref9 : false;\n}\n\n/**\n * @param {Element} element -\n * @returns {boolean | undefined} - false/true if (not)expanded, undefined if not expand-able\n */\nfunction computeAriaExpanded(element) {\n // https://www.w3.org/TR/wai-aria-1.1/#aria-expanded\n return checkBooleanAttribute(element, 'aria-expanded');\n}\nfunction checkBooleanAttribute(element, attribute) {\n const attributeValue = element.getAttribute(attribute);\n if (attributeValue === 'true') {\n return true;\n }\n if (attributeValue === 'false') {\n return false;\n }\n return undefined;\n}\n\n/**\n * @param {Element} element -\n * @returns {number | undefined} - number if implicit heading or aria-level present, otherwise undefined\n */\nfunction computeHeadingLevel(element) {\n // https://w3c.github.io/html-aam/#el-h1-h6\n // https://w3c.github.io/html-aam/#el-h1-h6\n const implicitHeadingLevels = {\n H1: 1,\n H2: 2,\n H3: 3,\n H4: 4,\n H5: 5,\n H6: 6\n };\n // explicit aria-level value\n // https://www.w3.org/TR/wai-aria-1.2/#aria-level\n const ariaLevelAttribute = element.getAttribute('aria-level') && Number(element.getAttribute('aria-level'));\n return ariaLevelAttribute || implicitHeadingLevels[element.tagName];\n}\n\n/**\n * @param {Element} element -\n * @returns {number | undefined} -\n */\nfunction computeAriaValueNow(element) {\n const valueNow = element.getAttribute('aria-valuenow');\n return valueNow === null ? undefined : +valueNow;\n}\n\n/**\n * @param {Element} element -\n * @returns {number | undefined} -\n */\nfunction computeAriaValueMax(element) {\n const valueMax = element.getAttribute('aria-valuemax');\n return valueMax === null ? undefined : +valueMax;\n}\n\n/**\n * @param {Element} element -\n * @returns {number | undefined} -\n */\nfunction computeAriaValueMin(element) {\n const valueMin = element.getAttribute('aria-valuemin');\n return valueMin === null ? undefined : +valueMin;\n}\n\n/**\n * @param {Element} element -\n * @returns {string | undefined} -\n */\nfunction computeAriaValueText(element) {\n const valueText = element.getAttribute('aria-valuetext');\n return valueText === null ? undefined : valueText;\n}\n\nconst normalize = getDefaultNormalizer();\nfunction escapeRegExp(string) {\n return string.replace(/[.*+\\-?^${}()|[\\]\\\\]/g, '\\\\$&'); // $& means the whole matched string\n}\nfunction getRegExpMatcher(string) {\n return new RegExp(escapeRegExp(string.toLowerCase()), 'i');\n}\nfunction makeSuggestion(queryName, element, content, _ref) {\n let {\n variant,\n name\n } = _ref;\n let warning = '';\n const queryOptions = {};\n const queryArgs = [['Role', 'TestId'].includes(queryName) ? content : getRegExpMatcher(content)];\n if (name) {\n queryOptions.name = getRegExpMatcher(name);\n }\n if (queryName === 'Role' && isInaccessible(element)) {\n queryOptions.hidden = true;\n warning = \"Element is inaccessible. This means that the element and all its children are invisible to screen readers.\\n If you are using the aria-hidden prop, make sure this is the right choice for your case.\\n \";\n }\n if (Object.keys(queryOptions).length > 0) {\n queryArgs.push(queryOptions);\n }\n const queryMethod = variant + \"By\" + queryName;\n return {\n queryName,\n queryMethod,\n queryArgs,\n variant,\n warning,\n toString() {\n if (warning) {\n console.warn(warning);\n }\n let [text, options] = queryArgs;\n text = typeof text === 'string' ? \"'\" + text + \"'\" : text;\n options = options ? \", { \" + Object.entries(options).map(_ref2 => {\n let [k, v] = _ref2;\n return k + \": \" + v;\n }).join(', ') + \" }\" : '';\n return queryMethod + \"(\" + text + options + \")\";\n }\n };\n}\nfunction canSuggest(currentMethod, requestedMethod, data) {\n return data && (!requestedMethod || requestedMethod.toLowerCase() === currentMethod.toLowerCase());\n}\nfunction getSuggestedQuery(element, variant, method) {\n var _element$getAttribute, _getImplicitAriaRoles;\n if (variant === void 0) {\n variant = 'get';\n }\n // don't create suggestions for script and style elements\n if (element.matches(getConfig().defaultIgnore)) {\n return undefined;\n }\n\n //We prefer to suggest something else if the role is generic\n const role = (_element$getAttribute = element.getAttribute('role')) != null ? _element$getAttribute : (_getImplicitAriaRoles = getImplicitAriaRoles(element)) == null ? void 0 : _getImplicitAriaRoles[0];\n if (role !== 'generic' && canSuggest('Role', method, role)) {\n return makeSuggestion('Role', element, role, {\n variant,\n name: computeAccessibleName(element, {\n computedStyleSupportsPseudoElements: getConfig().computedStyleSupportsPseudoElements\n })\n });\n }\n const labelText = getLabels(document, element).map(label => label.content).join(' ');\n if (canSuggest('LabelText', method, labelText)) {\n return makeSuggestion('LabelText', element, labelText, {\n variant\n });\n }\n const placeholderText = element.getAttribute('placeholder');\n if (canSuggest('PlaceholderText', method, placeholderText)) {\n return makeSuggestion('PlaceholderText', element, placeholderText, {\n variant\n });\n }\n const textContent = normalize(getNodeText(element));\n if (canSuggest('Text', method, textContent)) {\n return makeSuggestion('Text', element, textContent, {\n variant\n });\n }\n if (canSuggest('DisplayValue', method, element.value)) {\n return makeSuggestion('DisplayValue', element, normalize(element.value), {\n variant\n });\n }\n const alt = element.getAttribute('alt');\n if (canSuggest('AltText', method, alt)) {\n return makeSuggestion('AltText', element, alt, {\n variant\n });\n }\n const title = element.getAttribute('title');\n if (canSuggest('Title', method, title)) {\n return makeSuggestion('Title', element, title, {\n variant\n });\n }\n const testId = element.getAttribute(getConfig().testIdAttribute);\n if (canSuggest('TestId', method, testId)) {\n return makeSuggestion('TestId', element, testId, {\n variant\n });\n }\n return undefined;\n}\n\n// This is so the stack trace the developer sees is one that's\n// closer to their code (because async stack traces are hard to follow).\nfunction copyStackTrace(target, source) {\n target.stack = source.stack.replace(source.message, target.message);\n}\nfunction waitFor(callback, _ref) {\n let {\n container = getDocument(),\n timeout = getConfig().asyncUtilTimeout,\n showOriginalStackTrace = getConfig().showOriginalStackTrace,\n stackTraceError,\n interval = 50,\n onTimeout = error => {\n Object.defineProperty(error, 'message', {\n value: getConfig().getElementError(error.message, container).message\n });\n return error;\n },\n mutationObserverOptions = {\n subtree: true,\n childList: true,\n attributes: true,\n characterData: true\n }\n } = _ref;\n if (typeof callback !== 'function') {\n throw new TypeError('Received `callback` arg must be a function');\n }\n return new Promise(async (resolve, reject) => {\n let lastError, intervalId, observer;\n let finished = false;\n let promiseStatus = 'idle';\n const overallTimeoutTimer = setTimeout(handleTimeout, timeout);\n const usingJestFakeTimers = jestFakeTimersAreEnabled();\n if (usingJestFakeTimers) {\n const {\n unstable_advanceTimersWrapper: advanceTimersWrapper\n } = getConfig();\n checkCallback();\n // this is a dangerous rule to disable because it could lead to an\n // infinite loop. However, eslint isn't smart enough to know that we're\n // setting finished inside `onDone` which will be called when we're done\n // waiting or when we've timed out.\n // eslint-disable-next-line no-unmodified-loop-condition\n while (!finished) {\n if (!jestFakeTimersAreEnabled()) {\n const error = new Error(\"Changed from using fake timers to real timers while using waitFor. This is not allowed and will result in very strange behavior. Please ensure you're awaiting all async things your test is doing before changing to real timers. For more info, please go to https://github.com/testing-library/dom-testing-library/issues/830\");\n if (!showOriginalStackTrace) copyStackTrace(error, stackTraceError);\n reject(error);\n return;\n }\n\n // In this rare case, we *need* to wait for in-flight promises\n // to resolve before continuing. We don't need to take advantage\n // of parallelization so we're fine.\n // https://stackoverflow.com/a/59243586/971592\n // eslint-disable-next-line no-await-in-loop\n await advanceTimersWrapper(async () => {\n // we *could* (maybe should?) use `advanceTimersToNextTimer` but it's\n // possible that could make this loop go on forever if someone is using\n // third party code that's setting up recursive timers so rapidly that\n // the user's timer's don't get a chance to resolve. So we'll advance\n // by an interval instead. (We have a test for this case).\n jest.advanceTimersByTime(interval);\n });\n\n // Could have timed-out\n if (finished) {\n break;\n }\n // It's really important that checkCallback is run *before* we flush\n // in-flight promises. To be honest, I'm not sure why, and I can't quite\n // think of a way to reproduce the problem in a test, but I spent\n // an entire day banging my head against a wall on this.\n checkCallback();\n }\n } else {\n try {\n checkContainerType(container);\n } catch (e) {\n reject(e);\n return;\n }\n intervalId = setInterval(checkRealTimersCallback, interval);\n const {\n MutationObserver\n } = getWindowFromNode(container);\n observer = new MutationObserver(checkRealTimersCallback);\n observer.observe(container, mutationObserverOptions);\n checkCallback();\n }\n function onDone(error, result) {\n finished = true;\n clearTimeout(overallTimeoutTimer);\n if (!usingJestFakeTimers) {\n clearInterval(intervalId);\n observer.disconnect();\n }\n if (error) {\n reject(error);\n } else {\n resolve(result);\n }\n }\n function checkRealTimersCallback() {\n if (jestFakeTimersAreEnabled()) {\n const error = new Error(\"Changed from using real timers to fake timers while using waitFor. This is not allowed and will result in very strange behavior. Please ensure you're awaiting all async things your test is doing before changing to fake timers. For more info, please go to https://github.com/testing-library/dom-testing-library/issues/830\");\n if (!showOriginalStackTrace) copyStackTrace(error, stackTraceError);\n return reject(error);\n } else {\n return checkCallback();\n }\n }\n function checkCallback() {\n if (promiseStatus === 'pending') return;\n try {\n const result = runWithExpensiveErrorDiagnosticsDisabled(callback);\n if (typeof (result == null ? void 0 : result.then) === 'function') {\n promiseStatus = 'pending';\n result.then(resolvedValue => {\n promiseStatus = 'resolved';\n onDone(null, resolvedValue);\n }, rejectedValue => {\n promiseStatus = 'rejected';\n lastError = rejectedValue;\n });\n } else {\n onDone(null, result);\n }\n // If `callback` throws, wait for the next mutation, interval, or timeout.\n } catch (error) {\n // Save the most recent callback error to reject the promise with it in the event of a timeout\n lastError = error;\n }\n }\n function handleTimeout() {\n let error;\n if (lastError) {\n error = lastError;\n if (!showOriginalStackTrace && error.name === 'TestingLibraryElementError') {\n copyStackTrace(error, stackTraceError);\n }\n } else {\n error = new Error('Timed out in waitFor.');\n if (!showOriginalStackTrace) {\n copyStackTrace(error, stackTraceError);\n }\n }\n onDone(onTimeout(error), null);\n }\n });\n}\nfunction waitForWrapper(callback, options) {\n // create the error here so its stack trace is as close to the\n // calling code as possible\n const stackTraceError = new Error('STACK_TRACE_MESSAGE');\n return getConfig().asyncWrapper(() => waitFor(callback, {\n stackTraceError,\n ...options\n }));\n}\n\n/*\neslint\n max-lines-per-function: [\"error\", {\"max\": 200}],\n*/\n\nfunction getElementError(message, container) {\n return getConfig().getElementError(message, container);\n}\nfunction getMultipleElementsFoundError(message, container) {\n return getElementError(message + \"\\n\\n(If this is intentional, then use the `*AllBy*` variant of the query (like `queryAllByText`, `getAllByText`, or `findAllByText`)).\", container);\n}\nfunction queryAllByAttribute(attribute, container, text, _temp) {\n let {\n exact = true,\n collapseWhitespace,\n trim,\n normalizer\n } = _temp === void 0 ? {} : _temp;\n const matcher = exact ? matches : fuzzyMatches;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n return Array.from(container.querySelectorAll(\"[\" + attribute + \"]\")).filter(node => matcher(node.getAttribute(attribute), node, text, matchNormalizer));\n}\nfunction queryByAttribute(attribute, container, text, options) {\n const els = queryAllByAttribute(attribute, container, text, options);\n if (els.length > 1) {\n throw getMultipleElementsFoundError(\"Found multiple elements by [\" + attribute + \"=\" + text + \"]\", container);\n }\n return els[0] || null;\n}\n\n// this accepts a query function and returns a function which throws an error\n// if more than one elements is returned, otherwise it returns the first\n// element or null\nfunction makeSingleQuery(allQuery, getMultipleError) {\n return function (container) {\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 const els = allQuery(container, ...args);\n if (els.length > 1) {\n const elementStrings = els.map(element => getElementError(null, element).message).join('\\n\\n');\n throw getMultipleElementsFoundError(getMultipleError(container, ...args) + \"\\n\\nHere are the matching elements:\\n\\n\" + elementStrings, container);\n }\n return els[0] || null;\n };\n}\nfunction getSuggestionError(suggestion, container) {\n return getConfig().getElementError(\"A better query is available, try this:\\n\" + suggestion.toString() + \"\\n\", container);\n}\n\n// this accepts a query function and returns a function which throws an error\n// if an empty list of elements is returned\nfunction makeGetAllQuery(allQuery, getMissingError) {\n return function (container) {\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 const els = allQuery(container, ...args);\n if (!els.length) {\n throw getConfig().getElementError(getMissingError(container, ...args), container);\n }\n return els;\n };\n}\n\n// this accepts a getter query function and returns a function which calls\n// waitFor and passing a function which invokes the getter.\nfunction makeFindQuery(getter) {\n return (container, text, options, waitForOptions) => {\n return waitForWrapper(() => {\n return getter(container, text, options);\n }, {\n container,\n ...waitForOptions\n });\n };\n}\nconst wrapSingleQueryWithSuggestion = (query, queryAllByName, variant) => function (container) {\n for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {\n args[_key3 - 1] = arguments[_key3];\n }\n const element = query(container, ...args);\n const [{\n suggest = getConfig().throwSuggestions\n } = {}] = args.slice(-1);\n if (element && suggest) {\n const suggestion = getSuggestedQuery(element, variant);\n if (suggestion && !queryAllByName.endsWith(suggestion.queryName)) {\n throw getSuggestionError(suggestion.toString(), container);\n }\n }\n return element;\n};\nconst wrapAllByQueryWithSuggestion = (query, queryAllByName, variant) => function (container) {\n for (var _len4 = arguments.length, args = new Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) {\n args[_key4 - 1] = arguments[_key4];\n }\n const els = query(container, ...args);\n const [{\n suggest = getConfig().throwSuggestions\n } = {}] = args.slice(-1);\n if (els.length && suggest) {\n // get a unique list of all suggestion messages. We are only going to make a suggestion if\n // all the suggestions are the same\n const uniqueSuggestionMessages = [...new Set(els.map(element => {\n var _getSuggestedQuery;\n return (_getSuggestedQuery = getSuggestedQuery(element, variant)) == null ? void 0 : _getSuggestedQuery.toString();\n }))];\n if (\n // only want to suggest if all the els have the same suggestion.\n uniqueSuggestionMessages.length === 1 && !queryAllByName.endsWith(\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- TODO: Can this be null at runtime?\n getSuggestedQuery(els[0], variant).queryName)) {\n throw getSuggestionError(uniqueSuggestionMessages[0], container);\n }\n }\n return els;\n};\n\n// TODO: This deviates from the published declarations\n// However, the implementation always required a dyadic (after `container`) not variadic `queryAllBy` considering the implementation of `makeFindQuery`\n// This is at least statically true and can be verified by accepting `QueryMethod<Arguments, HTMLElement[]>`\nfunction buildQueries(queryAllBy, getMultipleError, getMissingError) {\n const queryBy = wrapSingleQueryWithSuggestion(makeSingleQuery(queryAllBy, getMultipleError), queryAllBy.name, 'query');\n const getAllBy = makeGetAllQuery(queryAllBy, getMissingError);\n const getBy = makeSingleQuery(getAllBy, getMultipleError);\n const getByWithSuggestions = wrapSingleQueryWithSuggestion(getBy, queryAllBy.name, 'get');\n const getAllWithSuggestions = wrapAllByQueryWithSuggestion(getAllBy, queryAllBy.name.replace('query', 'get'), 'getAll');\n const findAllBy = makeFindQuery(wrapAllByQueryWithSuggestion(getAllBy, queryAllBy.name, 'findAll'));\n const findBy = makeFindQuery(wrapSingleQueryWithSuggestion(getBy, queryAllBy.name, 'find'));\n return [queryBy, getAllWithSuggestions, getByWithSuggestions, findAllBy, findBy];\n}\n\nvar queryHelpers = /*#__PURE__*/Object.freeze({\n __proto__: null,\n getElementError: getElementError,\n wrapAllByQueryWithSuggestion: wrapAllByQueryWithSuggestion,\n wrapSingleQueryWithSuggestion: wrapSingleQueryWithSuggestion,\n getMultipleElementsFoundError: getMultipleElementsFoundError,\n queryAllByAttribute: queryAllByAttribute,\n queryByAttribute: queryByAttribute,\n makeSingleQuery: makeSingleQuery,\n makeGetAllQuery: makeGetAllQuery,\n makeFindQuery: makeFindQuery,\n buildQueries: buildQueries\n});\n\nfunction queryAllLabels(container) {\n return Array.from(container.querySelectorAll('label,input')).map(node => {\n return {\n node,\n textToMatch: getLabelContent(node)\n };\n }).filter(_ref => {\n let {\n textToMatch\n } = _ref;\n return textToMatch !== null;\n });\n}\nconst queryAllLabelsByText = function (container, text, _temp) {\n let {\n exact = true,\n trim,\n collapseWhitespace,\n normalizer\n } = _temp === void 0 ? {} : _temp;\n const matcher = exact ? matches : fuzzyMatches;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n const textToMatchByLabels = queryAllLabels(container);\n return textToMatchByLabels.filter(_ref2 => {\n let {\n node,\n textToMatch\n } = _ref2;\n return matcher(textToMatch, node, text, matchNormalizer);\n }).map(_ref3 => {\n let {\n node\n } = _ref3;\n return node;\n });\n};\nconst queryAllByLabelText = function (container, text, _temp2) {\n let {\n selector = '*',\n exact = true,\n collapseWhitespace,\n trim,\n normalizer\n } = _temp2 === void 0 ? {} : _temp2;\n checkContainerType(container);\n const matcher = exact ? matches : fuzzyMatches;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n const matchingLabelledElements = Array.from(container.querySelectorAll('*')).filter(element => {\n return getRealLabels(element).length || element.hasAttribute('aria-labelledby');\n }).reduce((labelledElements, labelledElement) => {\n const labelList = getLabels(container, labelledElement, {\n selector\n });\n labelList.filter(label => Boolean(label.formControl)).forEach(label => {\n if (matcher(label.content, label.formControl, text, matchNormalizer) && label.formControl) {\n labelledElements.push(label.formControl);\n }\n });\n const labelsValue = labelList.filter(label => Boolean(label.content)).map(label => label.content);\n if (matcher(labelsValue.join(' '), labelledElement, text, matchNormalizer)) {\n labelledElements.push(labelledElement);\n }\n if (labelsValue.length > 1) {\n labelsValue.forEach((labelValue, index) => {\n if (matcher(labelValue, labelledElement, text, matchNormalizer)) {\n labelledElements.push(labelledElement);\n }\n const labelsFiltered = [...labelsValue];\n labelsFiltered.splice(index, 1);\n if (labelsFiltered.length > 1) {\n if (matcher(labelsFiltered.join(' '), labelledElement, text, matchNormalizer)) {\n labelledElements.push(labelledElement);\n }\n }\n });\n }\n return labelledElements;\n }, []).concat(queryAllByAttribute('aria-label', container, text, {\n exact,\n normalizer: matchNormalizer\n }));\n return Array.from(new Set(matchingLabelledElements)).filter(element => element.matches(selector));\n};\n\n// the getAll* query would normally look like this:\n// const getAllByLabelText = makeGetAllQuery(\n// queryAllByLabelText,\n// (c, text) => `Unable to find a label with the text of: ${text}`,\n// )\n// however, we can give a more helpful error message than the generic one,\n// so we're writing this one out by hand.\nconst getAllByLabelText = function (container, text) {\n for (var _len = arguments.length, rest = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n rest[_key - 2] = arguments[_key];\n }\n const els = queryAllByLabelText(container, text, ...rest);\n if (!els.length) {\n const labels = queryAllLabelsByText(container, text, ...rest);\n if (labels.length) {\n const tagNames = labels.map(label => getTagNameOfElementAssociatedWithLabelViaFor(container, label)).filter(tagName => !!tagName);\n if (tagNames.length) {\n throw getConfig().getElementError(tagNames.map(tagName => \"Found a label with the text of: \" + text + \", however the element associated with this label (<\" + tagName + \" />) is non-labellable [https://html.spec.whatwg.org/multipage/forms.html#category-label]. If you really need to label a <\" + tagName + \" />, you can use aria-label or aria-labelledby instead.\").join('\\n\\n'), container);\n } else {\n throw getConfig().getElementError(\"Found a label with the text of: \" + text + \", however no form control was found associated to that label. Make sure you're using the \\\"for\\\" attribute or \\\"aria-labelledby\\\" attribute correctly.\", container);\n }\n } else {\n throw getConfig().getElementError(\"Unable to find a label with the text of: \" + text, container);\n }\n }\n return els;\n};\nfunction getTagNameOfElementAssociatedWithLabelViaFor(container, label) {\n const htmlFor = label.getAttribute('for');\n if (!htmlFor) {\n return null;\n }\n const element = container.querySelector(\"[id=\\\"\" + htmlFor + \"\\\"]\");\n return element ? element.tagName.toLowerCase() : null;\n}\n\n// the reason mentioned above is the same reason we're not using buildQueries\nconst getMultipleError$7 = (c, text) => \"Found multiple elements with the text of: \" + text;\nconst queryByLabelText = wrapSingleQueryWithSuggestion(makeSingleQuery(queryAllByLabelText, getMultipleError$7), queryAllByLabelText.name, 'query');\nconst getByLabelText = makeSingleQuery(getAllByLabelText, getMultipleError$7);\nconst findAllByLabelText = makeFindQuery(wrapAllByQueryWithSuggestion(getAllByLabelText, getAllByLabelText.name, 'findAll'));\nconst findByLabelText = makeFindQuery(wrapSingleQueryWithSuggestion(getByLabelText, getAllByLabelText.name, 'find'));\nconst getAllByLabelTextWithSuggestions = wrapAllByQueryWithSuggestion(getAllByLabelText, getAllByLabelText.name, 'getAll');\nconst getByLabelTextWithSuggestions = wrapSingleQueryWithSuggestion(getByLabelText, getAllByLabelText.name, 'get');\nconst queryAllByLabelTextWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByLabelText, queryAllByLabelText.name, 'queryAll');\n\nconst queryAllByPlaceholderText = function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n checkContainerType(args[0]);\n return queryAllByAttribute('placeholder', ...args);\n};\nconst getMultipleError$6 = (c, text) => \"Found multiple elements with the placeholder text of: \" + text;\nconst getMissingError$6 = (c, text) => \"Unable to find an element with the placeholder text of: \" + text;\nconst queryAllByPlaceholderTextWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByPlaceholderText, queryAllByPlaceholderText.name, 'queryAll');\nconst [queryByPlaceholderText, getAllByPlaceholderText, getByPlaceholderText, findAllByPlaceholderText, findByPlaceholderText] = buildQueries(queryAllByPlaceholderText, getMultipleError$6, getMissingError$6);\n\nconst queryAllByText = function (container, text, _temp) {\n let {\n selector = '*',\n exact = true,\n collapseWhitespace,\n trim,\n ignore = getConfig().defaultIgnore,\n normalizer\n } = _temp === void 0 ? {} : _temp;\n checkContainerType(container);\n const matcher = exact ? matches : fuzzyMatches;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n let baseArray = [];\n if (typeof container.matches === 'function' && container.matches(selector)) {\n baseArray = [container];\n }\n return [...baseArray, ...Array.from(container.querySelectorAll(selector))]\n // TODO: `matches` according lib.dom.d.ts can get only `string` but according our code it can handle also boolean :)\n .filter(node => !ignore || !node.matches(ignore)).filter(node => matcher(getNodeText(node), node, text, matchNormalizer));\n};\nconst getMultipleError$5 = (c, text) => \"Found multiple elements with the text: \" + text;\nconst getMissingError$5 = function (c, text, options) {\n if (options === void 0) {\n options = {};\n }\n const {\n collapseWhitespace,\n trim,\n normalizer,\n selector\n } = options;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n const normalizedText = matchNormalizer(text.toString());\n const isNormalizedDifferent = normalizedText !== text.toString();\n const isCustomSelector = (selector != null ? selector : '*') !== '*';\n return \"Unable to find an element with the text: \" + (isNormalizedDifferent ? normalizedText + \" (normalized from '\" + text + \"')\" : text) + (isCustomSelector ? \", which matches selector '\" + selector + \"'\" : '') + \". This could be because the text is broken up by multiple elements. In this case, you can provide a function for your text matcher to make your matcher more flexible.\";\n};\nconst queryAllByTextWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByText, queryAllByText.name, 'queryAll');\nconst [queryByText, getAllByText, getByText, findAllByText, findByText] = buildQueries(queryAllByText, getMultipleError$5, getMissingError$5);\n\nconst queryAllByDisplayValue = function (container, value, _temp) {\n let {\n exact = true,\n collapseWhitespace,\n trim,\n normalizer\n } = _temp === void 0 ? {} : _temp;\n checkContainerType(container);\n const matcher = exact ? matches : fuzzyMatches;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n return Array.from(container.querySelectorAll(\"input,textarea,select\")).filter(node => {\n if (node.tagName === 'SELECT') {\n const selectedOptions = Array.from(node.options).filter(option => option.selected);\n return selectedOptions.some(optionNode => matcher(getNodeText(optionNode), optionNode, value, matchNormalizer));\n } else {\n return matcher(node.value, node, value, matchNormalizer);\n }\n });\n};\nconst getMultipleError$4 = (c, value) => \"Found multiple elements with the display value: \" + value + \".\";\nconst getMissingError$4 = (c, value) => \"Unable to find an element with the display value: \" + value + \".\";\nconst queryAllByDisplayValueWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByDisplayValue, queryAllByDisplayValue.name, 'queryAll');\nconst [queryByDisplayValue, getAllByDisplayValue, getByDisplayValue, findAllByDisplayValue, findByDisplayValue] = buildQueries(queryAllByDisplayValue, getMultipleError$4, getMissingError$4);\n\n// Valid tags are img, input, area and custom elements\nconst VALID_TAG_REGEXP = /^(img|input|area|.+-.+)$/i;\nconst queryAllByAltText = function (container, alt, options) {\n if (options === void 0) {\n options = {};\n }\n checkContainerType(container);\n return queryAllByAttribute('alt', container, alt, options).filter(node => VALID_TAG_REGEXP.test(node.tagName));\n};\nconst getMultipleError$3 = (c, alt) => \"Found multiple elements with the alt text: \" + alt;\nconst getMissingError$3 = (c, alt) => \"Unable to find an element with the alt text: \" + alt;\nconst queryAllByAltTextWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByAltText, queryAllByAltText.name, 'queryAll');\nconst [queryByAltText, getAllByAltText, getByAltText, findAllByAltText, findByAltText] = buildQueries(queryAllByAltText, getMultipleError$3, getMissingError$3);\n\nconst isSvgTitle = node => {\n var _node$parentElement;\n return node.tagName.toLowerCase() === 'title' && ((_node$parentElement = node.parentElement) == null ? void 0 : _node$parentElement.tagName.toLowerCase()) === 'svg';\n};\nconst queryAllByTitle = function (container, text, _temp) {\n let {\n exact = true,\n collapseWhitespace,\n trim,\n normalizer\n } = _temp === void 0 ? {} : _temp;\n checkContainerType(container);\n const matcher = exact ? matches : fuzzyMatches;\n const matchNormalizer = makeNormalizer({\n collapseWhitespace,\n trim,\n normalizer\n });\n return Array.from(container.querySelectorAll('[title], svg > title')).filter(node => matcher(node.getAttribute('title'), node, text, matchNormalizer) || isSvgTitle(node) && matcher(getNodeText(node), node, text, matchNormalizer));\n};\nconst getMultipleError$2 = (c, title) => \"Found multiple elements with the title: \" + title + \".\";\nconst getMissingError$2 = (c, title) => \"Unable to find an element with the title: \" + title + \".\";\nconst queryAllByTitleWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByTitle, queryAllByTitle.name, 'queryAll');\nconst [queryByTitle, getAllByTitle, getByTitle, findAllByTitle, findByTitle] = buildQueries(queryAllByTitle, getMultipleError$2, getMissingError$2);\n\n/* eslint-disable complexity */\nconst queryAllByRole = function (container, role, _temp) {\n let {\n hidden = getConfig().defaultHidden,\n name,\n description,\n queryFallbacks = false,\n selected,\n busy,\n checked,\n pressed,\n current,\n level,\n expanded,\n value: {\n now: valueNow,\n min: valueMin,\n max: valueMax,\n text: valueText\n } = {}\n } = _temp === void 0 ? {} : _temp;\n checkContainerType(container);\n if (selected !== undefined) {\n var _allRoles$get;\n // guard against unknown roles\n if (((_allRoles$get = roles.get(role)) == null ? void 0 : _allRoles$get.props['aria-selected']) === undefined) {\n throw new Error(\"\\\"aria-selected\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (busy !== undefined) {\n var _allRoles$get2;\n // guard against unknown roles\n if (((_allRoles$get2 = roles.get(role)) == null ? void 0 : _allRoles$get2.props['aria-busy']) === undefined) {\n throw new Error(\"\\\"aria-busy\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (checked !== undefined) {\n var _allRoles$get3;\n // guard against unknown roles\n if (((_allRoles$get3 = roles.get(role)) == null ? void 0 : _allRoles$get3.props['aria-checked']) === undefined) {\n throw new Error(\"\\\"aria-checked\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (pressed !== undefined) {\n var _allRoles$get4;\n // guard against unknown roles\n if (((_allRoles$get4 = roles.get(role)) == null ? void 0 : _allRoles$get4.props['aria-pressed']) === undefined) {\n throw new Error(\"\\\"aria-pressed\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (current !== undefined) {\n var _allRoles$get5;\n /* istanbul ignore next */\n // guard against unknown roles\n // All currently released ARIA versions support `aria-current` on all roles.\n // Leaving this for symmetry and forward compatibility\n if (((_allRoles$get5 = roles.get(role)) == null ? void 0 : _allRoles$get5.props['aria-current']) === undefined) {\n throw new Error(\"\\\"aria-current\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (level !== undefined) {\n // guard against using `level` option with any role other than `heading`\n if (role !== 'heading') {\n throw new Error(\"Role \\\"\" + role + \"\\\" cannot have \\\"level\\\" property.\");\n }\n }\n if (valueNow !== undefined) {\n var _allRoles$get6;\n // guard against unknown roles\n if (((_allRoles$get6 = roles.get(role)) == null ? void 0 : _allRoles$get6.props['aria-valuenow']) === undefined) {\n throw new Error(\"\\\"aria-valuenow\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (valueMax !== undefined) {\n var _allRoles$get7;\n // guard against unknown roles\n if (((_allRoles$get7 = roles.get(role)) == null ? void 0 : _allRoles$get7.props['aria-valuemax']) === undefined) {\n throw new Error(\"\\\"aria-valuemax\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (valueMin !== undefined) {\n var _allRoles$get8;\n // guard against unknown roles\n if (((_allRoles$get8 = roles.get(role)) == null ? void 0 : _allRoles$get8.props['aria-valuemin']) === undefined) {\n throw new Error(\"\\\"aria-valuemin\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (valueText !== undefined) {\n var _allRoles$get9;\n // guard against unknown roles\n if (((_allRoles$get9 = roles.get(role)) == null ? void 0 : _allRoles$get9.props['aria-valuetext']) === undefined) {\n throw new Error(\"\\\"aria-valuetext\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n if (expanded !== undefined) {\n var _allRoles$get10;\n // guard against unknown roles\n if (((_allRoles$get10 = roles.get(role)) == null ? void 0 : _allRoles$get10.props['aria-expanded']) === undefined) {\n throw new Error(\"\\\"aria-expanded\\\" is not supported on role \\\"\" + role + \"\\\".\");\n }\n }\n const subtreeIsInaccessibleCache = new WeakMap();\n function cachedIsSubtreeInaccessible(element) {\n if (!subtreeIsInaccessibleCache.has(element)) {\n subtreeIsInaccessibleCache.set(element, isSubtreeInaccessible(element));\n }\n return subtreeIsInaccessibleCache.get(element);\n }\n return Array.from(container.querySelectorAll(\n // Only query elements that can be matched by the following filters\n makeRoleSelector(role))).filter(node => {\n const isRoleSpecifiedExplicitly = node.hasAttribute('role');\n if (isRoleSpecifiedExplicitly) {\n const roleValue = node.getAttribute('role');\n if (queryFallbacks) {\n return roleValue.split(' ').filter(Boolean).some(roleAttributeToken => roleAttributeToken === role);\n }\n // other wise only send the first token to match\n const [firstRoleAttributeToken] = roleValue.split(' ');\n return firstRoleAttributeToken === role;\n }\n const implicitRoles = getImplicitAriaRoles(node);\n return implicitRoles.some(implicitRole => {\n return implicitRole === role;\n });\n }).filter(element => {\n if (selected !== undefined) {\n return selected === computeAriaSelected(element);\n }\n if (busy !== undefined) {\n return busy === computeAriaBusy(element);\n }\n if (checked !== undefined) {\n return checked === computeAriaChecked(element);\n }\n if (pressed !== undefined) {\n return pressed === computeAriaPressed(element);\n }\n if (current !== undefined) {\n return current === computeAriaCurrent(element);\n }\n if (expanded !== undefined) {\n return expanded === computeAriaExpanded(element);\n }\n if (level !== undefined) {\n return level === computeHeadingLevel(element);\n }\n if (valueNow !== undefined || valueMax !== undefined || valueMin !== undefined || valueText !== undefined) {\n let valueMatches = true;\n if (valueNow !== undefined) {\n valueMatches && (valueMatches = valueNow === computeAriaValueNow(element));\n }\n if (valueMax !== undefined) {\n valueMatches && (valueMatches = valueMax === computeAriaValueMax(element));\n }\n if (valueMin !== undefined) {\n valueMatches && (valueMatches = valueMin === computeAriaValueMin(element));\n }\n if (valueText !== undefined) {\n var _computeAriaValueText;\n valueMatches && (valueMatches = matches((_computeAriaValueText = computeAriaValueText(element)) != null ? _computeAriaValueText : null, element, valueText, text => text));\n }\n return valueMatches;\n }\n // don't care if aria attributes are unspecified\n return true;\n }).filter(element => {\n if (name === undefined) {\n // Don't care\n return true;\n }\n return matches(computeAccessibleName(element, {\n computedStyleSupportsPseudoElements: getConfig().computedStyleSupportsPseudoElements\n }), element, name, text => text);\n }).filter(element => {\n if (description === undefined) {\n // Don't care\n return true;\n }\n return matches(computeAccessibleDescription(element, {\n computedStyleSupportsPseudoElements: getConfig().computedStyleSupportsPseudoElements\n }), element, description, text => text);\n }).filter(element => {\n return hidden === false ? isInaccessible(element, {\n isSubtreeInaccessible: cachedIsSubtreeInaccessible\n }) === false : true;\n });\n};\nfunction makeRoleSelector(role) {\n var _roleElements$get;\n const explicitRoleSelector = \"*[role~=\\\"\" + role + \"\\\"]\";\n const roleRelations = (_roleElements$get = roleElements.get(role)) != null ? _roleElements$get : new Set();\n const implicitRoleSelectors = new Set(Array.from(roleRelations).map(_ref => {\n let {\n name\n } = _ref;\n return name;\n }));\n\n // Current transpilation config sometimes assumes `...` is always applied to arrays.\n // `...` is equivalent to `Array.prototype.concat` for arrays.\n // If you replace this code with `[explicitRoleSelector, ...implicitRoleSelectors]`, make sure every transpilation target retains the `...` in favor of `Array.prototype.concat`.\n return [explicitRoleSelector].concat(Array.from(implicitRoleSelectors)).join(',');\n}\nconst getNameHint = name => {\n let nameHint = '';\n if (name === undefined) {\n nameHint = '';\n } else if (typeof name === 'string') {\n nameHint = \" and name \\\"\" + name + \"\\\"\";\n } else {\n nameHint = \" and name `\" + name + \"`\";\n }\n return nameHint;\n};\nconst getMultipleError$1 = function (c, role, _temp2) {\n let {\n name\n } = _temp2 === void 0 ? {} : _temp2;\n return \"Found multiple elements with the role \\\"\" + role + \"\\\"\" + getNameHint(name);\n};\nconst getMissingError$1 = function (container, role, _temp3) {\n let {\n hidden = getConfig().defaultHidden,\n name,\n description\n } = _temp3 === void 0 ? {} : _temp3;\n if (getConfig()._disableExpensiveErrorDiagnostics) {\n return \"Unable to find role=\\\"\" + role + \"\\\"\" + getNameHint(name);\n }\n let roles = '';\n Array.from(container.children).forEach(childElement => {\n roles += prettyRoles(childElement, {\n hidden,\n includeDescription: description !== undefined\n });\n });\n let roleMessage;\n if (roles.length === 0) {\n if (hidden === false) {\n roleMessage = 'There are no accessible roles. But there might be some inaccessible roles. ' + 'If you wish to access them, then set the `hidden` option to `true`. ' + 'Learn more about this here: https://testing-library.com/docs/dom-testing-library/api-queries#byrole';\n } else {\n roleMessage = 'There are no available roles.';\n }\n } else {\n roleMessage = (\"\\nHere are the \" + (hidden === false ? 'accessible' : 'available') + \" roles:\\n\\n \" + roles.replace(/\\n/g, '\\n ').replace(/\\n\\s\\s\\n/g, '\\n\\n') + \"\\n\").trim();\n }\n let nameHint = '';\n if (name === undefined) {\n nameHint = '';\n } else if (typeof name === 'string') {\n nameHint = \" and name \\\"\" + name + \"\\\"\";\n } else {\n nameHint = \" and name `\" + name + \"`\";\n }\n let descriptionHint = '';\n if (description === undefined) {\n descriptionHint = '';\n } else if (typeof description === 'string') {\n descriptionHint = \" and description \\\"\" + description + \"\\\"\";\n } else {\n descriptionHint = \" and description `\" + description + \"`\";\n }\n return (\"\\nUnable to find an \" + (hidden === false ? 'accessible ' : '') + \"element with the role \\\"\" + role + \"\\\"\" + nameHint + descriptionHint + \"\\n\\n\" + roleMessage).trim();\n};\nconst queryAllByRoleWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByRole, queryAllByRole.name, 'queryAll');\nconst [queryByRole, getAllByRole, getByRole, findAllByRole, findByRole] = buildQueries(queryAllByRole, getMultipleError$1, getMissingError$1);\n\nconst getTestIdAttribute = () => getConfig().testIdAttribute;\nconst queryAllByTestId = function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n checkContainerType(args[0]);\n return queryAllByAttribute(getTestIdAttribute(), ...args);\n};\nconst getMultipleError = (c, id) => \"Found multiple elements by: [\" + getTestIdAttribute() + \"=\\\"\" + id + \"\\\"]\";\nconst getMissingError = (c, id) => \"Unable to find an element by: [\" + getTestIdAttribute() + \"=\\\"\" + id + \"\\\"]\";\nconst queryAllByTestIdWithSuggestions = wrapAllByQueryWithSuggestion(queryAllByTestId, queryAllByTestId.name, 'queryAll');\nconst [queryByTestId, getAllByTestId, getByTestId, findAllByTestId, findByTestId] = buildQueries(queryAllByTestId, getMultipleError, getMissingError);\n\nvar queries = /*#__PURE__*/Object.freeze({\n __proto__: null,\n queryAllByLabelText: queryAllByLabelTextWithSuggestions,\n queryByLabelText: queryByLabelText,\n getAllByLabelText: getAllByLabelTextWithSuggestions,\n getByLabelText: getByLabelTextWithSuggestions,\n findAllByLabelText: findAllByLabelText,\n findByLabelText: findByLabelText,\n queryByPlaceholderText: queryByPlaceholderText,\n queryAllByPlaceholderText: queryAllByPlaceholderTextWithSuggestions,\n getByPlaceholderText: getByPlaceholderText,\n getAllByPlaceholderText: getAllByPlaceholderText,\n findAllByPlaceholderText: findAllByPlaceholderText,\n findByPlaceholderText: findByPlaceholderText,\n queryByText: queryByText,\n queryAllByText: queryAllByTextWithSuggestions,\n getByText: getByText,\n getAllByText: getAllByText,\n findAllByText: findAllByText,\n findByText: findByText,\n queryByDisplayValue: queryByDisplayValue,\n queryAllByDisplayValue: queryAllByDisplayValueWithSuggestions,\n getByDisplayValue: getByDisplayValue,\n getAllByDisplayValue: getAllByDisplayValue,\n findAllByDisplayValue: findAllByDisplayValue,\n findByDisplayValue: findByDisplayValue,\n queryByAltText: queryByAltText,\n queryAllByAltText: queryAllByAltTextWithSuggestions,\n getByAltText: getByAltText,\n getAllByAltText: getAllByAltText,\n findAllByAltText: findAllByAltText,\n findByAltText: findByAltText,\n queryByTitle: queryByTitle,\n queryAllByTitle: queryAllByTitleWithSuggestions,\n getByTitle: getByTitle,\n getAllByTitle: getAllByTitle,\n findAllByTitle: findAllByTitle,\n findByTitle: findByTitle,\n queryByRole: queryByRole,\n queryAllByRole: queryAllByRoleWithSuggestions,\n getAllByRole: getAllByRole,\n getByRole: getByRole,\n findAllByRole: findAllByRole,\n findByRole: findByRole,\n queryByTestId: queryByTestId,\n queryAllByTestId: queryAllByTestIdWithSuggestions,\n getByTestId: getByTestId,\n getAllByTestId: getAllByTestId,\n findAllByTestId: findAllByTestId,\n findByTestId: findByTestId\n});\n\n/**\n * @typedef {{[key: string]: Function}} FuncMap\n */\n\n/**\n * @param {HTMLElement} element container\n * @param {FuncMap} queries object of functions\n * @param {Object} initialValue for reducer\n * @returns {FuncMap} returns object of functions bound to container\n */\nfunction getQueriesForElement(element, queries$1, initialValue) {\n if (queries$1 === void 0) {\n queries$1 = queries;\n }\n if (initialValue === void 0) {\n initialValue = {};\n }\n return Object.keys(queries$1).reduce((helpers, key) => {\n const fn = queries$1[key];\n helpers[key] = fn.bind(null, element);\n return helpers;\n }, initialValue);\n}\n\nconst isRemoved = result => !result || Array.isArray(result) && !result.length;\n\n// Check if the element is not present.\n// As the name implies, waitForElementToBeRemoved should check `present` --> `removed`\nfunction initialCheck(elements) {\n if (isRemoved(elements)) {\n throw new Error('The element(s) given to waitForElementToBeRemoved are already removed. waitForElementToBeRemoved requires that the element(s) exist(s) before waiting for removal.');\n }\n}\nasync function waitForElementToBeRemoved(callback, options) {\n // created here so we get a nice stacktrace\n const timeoutError = new Error('Timed out in waitForElementToBeRemoved.');\n if (typeof callback !== 'function') {\n initialCheck(callback);\n const elements = Array.isArray(callback) ? callback : [callback];\n const getRemainingElements = elements.map(element => {\n let parent = element.parentElement;\n if (parent === null) return () => null;\n while (parent.parentElement) parent = parent.parentElement;\n return () => parent.contains(element) ? element : null;\n });\n callback = () => getRemainingElements.map(c => c()).filter(Boolean);\n }\n initialCheck(callback());\n return waitForWrapper(() => {\n let result;\n try {\n result = callback();\n } catch (error) {\n if (error.name === 'TestingLibraryElementError') {\n return undefined;\n }\n throw error;\n }\n if (!isRemoved(result)) {\n throw timeoutError;\n }\n return undefined;\n }, options);\n}\n\n/*\neslint\n require-await: \"off\"\n*/\n\nconst eventMap = {\n // Clipboard Events\n copy: {\n EventType: 'ClipboardEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n cut: {\n EventType: 'ClipboardEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n paste: {\n EventType: 'ClipboardEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n // Composition Events\n compositionEnd: {\n EventType: 'CompositionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n compositionStart: {\n EventType: 'CompositionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n compositionUpdate: {\n EventType: 'CompositionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n // Keyboard Events\n keyDown: {\n EventType: 'KeyboardEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n charCode: 0,\n composed: true\n }\n },\n keyPress: {\n EventType: 'KeyboardEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n charCode: 0,\n composed: true\n }\n },\n keyUp: {\n EventType: 'KeyboardEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n charCode: 0,\n composed: true\n }\n },\n // Focus Events\n focus: {\n EventType: 'FocusEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false,\n composed: true\n }\n },\n blur: {\n EventType: 'FocusEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false,\n composed: true\n }\n },\n focusIn: {\n EventType: 'FocusEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n focusOut: {\n EventType: 'FocusEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n // Form Events\n change: {\n EventType: 'Event',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n input: {\n EventType: 'InputEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n invalid: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: true\n }\n },\n submit: {\n EventType: 'Event',\n defaultInit: {\n bubbles: true,\n cancelable: true\n }\n },\n reset: {\n EventType: 'Event',\n defaultInit: {\n bubbles: true,\n cancelable: true\n }\n },\n // Mouse Events\n click: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n button: 0,\n composed: true\n }\n },\n contextMenu: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n dblClick: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n drag: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n dragEnd: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n dragEnter: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n dragExit: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n dragLeave: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n dragOver: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n dragStart: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n drop: {\n EventType: 'DragEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n mouseDown: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n mouseEnter: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false,\n composed: true\n }\n },\n mouseLeave: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false,\n composed: true\n }\n },\n mouseMove: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n mouseOut: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n mouseOver: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n mouseUp: {\n EventType: 'MouseEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n // Selection Events\n select: {\n EventType: 'Event',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n // Touch Events\n touchCancel: {\n EventType: 'TouchEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n touchEnd: {\n EventType: 'TouchEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n touchMove: {\n EventType: 'TouchEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n touchStart: {\n EventType: 'TouchEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n // UI Events\n resize: {\n EventType: 'UIEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n scroll: {\n EventType: 'UIEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n // Wheel Events\n wheel: {\n EventType: 'WheelEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n // Media Events\n abort: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n canPlay: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n canPlayThrough: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n durationChange: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n emptied: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n encrypted: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n ended: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n loadedData: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n loadedMetadata: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n loadStart: {\n EventType: 'ProgressEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n pause: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n play: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n playing: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n progress: {\n EventType: 'ProgressEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n rateChange: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n seeked: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n seeking: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n stalled: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n suspend: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n timeUpdate: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n volumeChange: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n waiting: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n // Events\n load: {\n // TODO: load events can be UIEvent or Event depending on what generated them\n // This is where this abstraction breaks down.\n // But the common targets are <img />, <script /> and window.\n // Neither of these targets receive a UIEvent\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n error: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n // Animation Events\n animationStart: {\n EventType: 'AnimationEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n animationEnd: {\n EventType: 'AnimationEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n animationIteration: {\n EventType: 'AnimationEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n // Transition Events\n transitionCancel: {\n EventType: 'TransitionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n transitionEnd: {\n EventType: 'TransitionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true\n }\n },\n transitionRun: {\n EventType: 'TransitionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n transitionStart: {\n EventType: 'TransitionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n // pointer events\n pointerOver: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n pointerEnter: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n pointerDown: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n pointerMove: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n pointerUp: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n pointerCancel: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n pointerOut: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true,\n composed: true\n }\n },\n pointerLeave: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n gotPointerCapture: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n lostPointerCapture: {\n EventType: 'PointerEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false,\n composed: true\n }\n },\n // history events\n popState: {\n EventType: 'PopStateEvent',\n defaultInit: {\n bubbles: true,\n cancelable: false\n }\n },\n // window events\n offline: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n online: {\n EventType: 'Event',\n defaultInit: {\n bubbles: false,\n cancelable: false\n }\n },\n pageHide: {\n EventType: 'PageTransitionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true\n }\n },\n pageShow: {\n EventType: 'PageTransitionEvent',\n defaultInit: {\n bubbles: true,\n cancelable: true\n }\n }\n};\nconst eventAliasMap = {\n doubleClick: 'dblClick'\n};\n\nfunction fireEvent(element, event) {\n return getConfig().eventWrapper(() => {\n if (!event) {\n throw new Error(\"Unable to fire an event - please provide an event object.\");\n }\n if (!element) {\n throw new Error(\"Unable to fire a \\\"\" + event.type + \"\\\" event - please provide a DOM element.\");\n }\n return element.dispatchEvent(event);\n });\n}\nfunction createEvent(eventName, node, init, _temp) {\n let {\n EventType = 'Event',\n defaultInit = {}\n } = _temp === void 0 ? {} : _temp;\n if (!node) {\n throw new Error(\"Unable to fire a \\\"\" + eventName + \"\\\" event - please provide a DOM element.\");\n }\n const eventInit = {\n ...defaultInit,\n ...init\n };\n const {\n target: {\n value,\n files,\n ...targetProperties\n } = {}\n } = eventInit;\n if (value !== undefined) {\n setNativeValue(node, value);\n }\n if (files !== undefined) {\n // input.files is a read-only property so this is not allowed:\n // input.files = [file]\n // so we have to use this workaround to set the property\n Object.defineProperty(node, 'files', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: files\n });\n }\n Object.assign(node, targetProperties);\n const window = getWindowFromNode(node);\n const EventConstructor = window[EventType] || window.Event;\n let event;\n /* istanbul ignore else */\n if (typeof EventConstructor === 'function') {\n event = new EventConstructor(eventName, eventInit);\n } else {\n // IE11 polyfill from https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent#Polyfill\n event = window.document.createEvent(EventType);\n const {\n bubbles,\n cancelable,\n detail,\n ...otherInit\n } = eventInit;\n event.initEvent(eventName, bubbles, cancelable, detail);\n Object.keys(otherInit).forEach(eventKey => {\n event[eventKey] = otherInit[eventKey];\n });\n }\n\n // DataTransfer is not supported in jsdom: https://github.com/jsdom/jsdom/issues/1568\n const dataTransferProperties = ['dataTransfer', 'clipboardData'];\n dataTransferProperties.forEach(dataTransferKey => {\n const dataTransferValue = eventInit[dataTransferKey];\n if (typeof dataTransferValue === 'object') {\n /* istanbul ignore if */\n if (typeof window.DataTransfer === 'function') {\n Object.defineProperty(event, dataTransferKey, {\n value: Object.getOwnPropertyNames(dataTransferValue).reduce((acc, propName) => {\n Object.defineProperty(acc, propName, {\n value: dataTransferValue[propName]\n });\n return acc;\n }, new window.DataTransfer())\n });\n } else {\n Object.defineProperty(event, dataTransferKey, {\n value: dataTransferValue\n });\n }\n }\n });\n return event;\n}\nObject.keys(eventMap).forEach(key => {\n const {\n EventType,\n defaultInit\n } = eventMap[key];\n const eventName = key.toLowerCase();\n createEvent[key] = (node, init) => createEvent(eventName, node, init, {\n EventType,\n defaultInit\n });\n fireEvent[key] = (node, init) => fireEvent(node, createEvent[key](node, init));\n});\n\n// function written after some investigation here:\n// https://github.com/facebook/react/issues/10135#issuecomment-401496776\nfunction setNativeValue(element, value) {\n const {\n set: valueSetter\n } = Object.getOwnPropertyDescriptor(element, 'value') || {};\n const prototype = Object.getPrototypeOf(element);\n const {\n set: prototypeValueSetter\n } = Object.getOwnPropertyDescriptor(prototype, 'value') || {};\n if (prototypeValueSetter && valueSetter !== prototypeValueSetter) {\n prototypeValueSetter.call(element, value);\n } else {\n /* istanbul ignore if */\n // eslint-disable-next-line no-lonely-if -- Can't be ignored by istanbul otherwise\n if (valueSetter) {\n valueSetter.call(element, value);\n } else {\n throw new Error('The given element does not have a value setter');\n }\n }\n}\nObject.keys(eventAliasMap).forEach(aliasKey => {\n const key = eventAliasMap[aliasKey];\n fireEvent[aliasKey] = function () {\n return fireEvent[key](...arguments);\n };\n});\n\n/* eslint complexity:[\"error\", 9] */\n\n// WARNING: `lz-string` only has a default export but statically we assume named exports are allowed\nfunction unindent(string) {\n // remove white spaces first, to save a few bytes.\n // testing-playground will reformat on load any ways.\n return string.replace(/[ \\t]*[\\n][ \\t]*/g, '\\n');\n}\nfunction encode(value) {\n return lzString.compressToEncodedURIComponent(unindent(value));\n}\nfunction getPlaygroundUrl(markup) {\n return \"https://testing-playground.com/#markup=\" + encode(markup);\n}\nconst debug = (element, maxLength, options) => Array.isArray(element) ? element.forEach(el => logDOM(el, maxLength, options)) : logDOM(element, maxLength, options);\nconst logTestingPlaygroundURL = function (element) {\n if (element === void 0) {\n element = getDocument().body;\n }\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n if (!element || !('innerHTML' in element)) {\n console.log(\"The element you're providing isn't a valid DOM element.\");\n return;\n }\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n if (!element.innerHTML) {\n console.log(\"The provided element doesn't have any children.\");\n return;\n }\n const playgroundUrl = getPlaygroundUrl(element.innerHTML);\n console.log(\"Open this URL in your browser\\n\\n\" + playgroundUrl);\n return playgroundUrl;\n};\nconst initialValue = {\n debug,\n logTestingPlaygroundURL\n};\nconst screen = typeof document !== 'undefined' && document.body // eslint-disable-line @typescript-eslint/no-unnecessary-condition\n? getQueriesForElement(document.body, queries, initialValue) : Object.keys(queries).reduce((helpers, key) => {\n // `key` is for all intents and purposes the type of keyof `helpers`, which itself is the type of `initialValue` plus incoming properties from `queries`\n // if `Object.keys(something)` returned Array<keyof typeof something> this explicit type assertion would not be necessary\n // see https://stackoverflow.com/questions/55012174/why-doesnt-object-keys-return-a-keyof-type-in-typescript\n helpers[key] = () => {\n throw new TypeError('For queries bound to document.body a global document has to be available... Learn more: https://testing-library.com/s/screen-global-error');\n };\n return helpers;\n}, initialValue);\n\nexport { buildQueries, configure, createEvent, findAllByAltText, findAllByDisplayValue, findAllByLabelText, findAllByPlaceholderText, findAllByRole, findAllByTestId, findAllByText, findAllByTitle, findByAltText, findByDisplayValue, findByLabelText, findByPlaceholderText, findByRole, findByTestId, findByText, findByTitle, fireEvent, getAllByAltText, getAllByDisplayValue, getAllByLabelTextWithSuggestions as getAllByLabelText, getAllByPlaceholderText, getAllByRole, getAllByTestId, getAllByText, getAllByTitle, getByAltText, getByDisplayValue, getByLabelTextWithSuggestions as getByLabelText, getByPlaceholderText, getByRole, getByTestId, getByText, getByTitle, getConfig, getDefaultNormalizer, getElementError, getMultipleElementsFoundError, getNodeText, getQueriesForElement, getRoles, getSuggestedQuery, isInaccessible, logDOM, logRoles, makeFindQuery, makeGetAllQuery, makeSingleQuery, prettyDOM, queries, queryAllByAltTextWithSuggestions as queryAllByAltText, queryAllByAttribute, queryAllByDisplayValueWithSuggestions as queryAllByDisplayValue, queryAllByLabelTextWithSuggestions as queryAllByLabelText, queryAllByPlaceholderTextWithSuggestions as queryAllByPlaceholderText, queryAllByRoleWithSuggestions as queryAllByRole, queryAllByTestIdWithSuggestions as queryAllByTestId, queryAllByTextWithSuggestions as queryAllByText, queryAllByTitleWithSuggestions as queryAllByTitle, queryByAltText, queryByAttribute, queryByDisplayValue, queryByLabelText, queryByPlaceholderText, queryByRole, queryByTestId, queryByText, queryByTitle, queryHelpers, screen, waitForWrapper as waitFor, waitForElementToBeRemoved, getQueriesForElement as within, wrapAllByQueryWithSuggestion, wrapSingleQueryWithSuggestion };\n","import {fireEvent as dtlFireEvent} from '@testing-library/dom'\n\n// react-testing-library's version of fireEvent will call\n// dom-testing-library's version of fireEvent. The reason\n// we make this distinction however is because we have\n// a few extra events that work a bit differently\nconst fireEvent = (...args) => dtlFireEvent(...args)\n\nObject.keys(dtlFireEvent).forEach(key => {\n fireEvent[key] = (...args) => dtlFireEvent[key](...args)\n})\n\n// React event system tracks native mouseOver/mouseOut events for\n// running onMouseEnter/onMouseLeave handlers\n// @link https://github.com/facebook/react/blob/b87aabdfe1b7461e7331abb3601d9e6bb27544bc/packages/react-dom/src/events/EnterLeaveEventPlugin.js#L24-L31\nconst mouseEnter = fireEvent.mouseEnter\nconst mouseLeave = fireEvent.mouseLeave\nfireEvent.mouseEnter = (...args) => {\n mouseEnter(...args)\n return fireEvent.mouseOver(...args)\n}\nfireEvent.mouseLeave = (...args) => {\n mouseLeave(...args)\n return fireEvent.mouseOut(...args)\n}\n\nconst pointerEnter = fireEvent.pointerEnter\nconst pointerLeave = fireEvent.pointerLeave\nfireEvent.pointerEnter = (...args) => {\n pointerEnter(...args)\n return fireEvent.pointerOver(...args)\n}\nfireEvent.pointerLeave = (...args) => {\n pointerLeave(...args)\n return fireEvent.pointerOut(...args)\n}\n\nconst select = fireEvent.select\nfireEvent.select = (node, init) => {\n select(node, init)\n // React tracks this event only on focused inputs\n node.focus()\n\n // React creates this event when one of the following native events happens\n // - contextMenu\n // - mouseUp\n // - dragEnd\n // - keyUp\n // - keyDown\n // so we can use any here\n // @link https://github.com/facebook/react/blob/b87aabdfe1b7461e7331abb3601d9e6bb27544bc/packages/react-dom/src/events/SelectEventPlugin.js#L203-L224\n fireEvent.keyUp(node, init)\n}\n\n// React event system tracks native focusout/focusin events for\n// running blur/focus handlers\n// @link https://github.com/facebook/react/pull/19186\nconst blur = fireEvent.blur\nconst focus = fireEvent.focus\nfireEvent.blur = (...args) => {\n fireEvent.focusOut(...args)\n return blur(...args)\n}\nfireEvent.focus = (...args) => {\n fireEvent.focusIn(...args)\n return focus(...args)\n}\n\nexport {fireEvent}\n","import {\n getConfig as getConfigDTL,\n configure as configureDTL,\n} from '@testing-library/dom'\n\nlet configForRTL = {\n reactStrictMode: false,\n}\n\nfunction getConfig() {\n return {\n ...getConfigDTL(),\n ...configForRTL,\n }\n}\n\nfunction configure(newConfig) {\n if (typeof newConfig === 'function') {\n // Pass the existing config out to the provided function\n // and accept a delta in return\n newConfig = newConfig(getConfig())\n }\n\n const {reactStrictMode, ...configForDTL} = newConfig\n\n configureDTL(configForDTL)\n\n configForRTL = {\n ...configForRTL,\n reactStrictMode,\n }\n}\n\nexport {getConfig, configure}\n","import * as React from 'react'\nimport ReactDOM from 'react-dom'\nimport * as ReactDOMClient from 'react-dom/client'\nimport {\n getQueriesForElement,\n prettyDOM,\n configure as configureDTL,\n} from '@testing-library/dom'\nimport act, {\n getIsReactActEnvironment,\n setReactActEnvironment,\n} from './act-compat'\nimport {fireEvent} from './fire-event'\nimport {getConfig, configure} from './config'\n\nfunction jestFakeTimersAreEnabled() {\n /* istanbul ignore else */\n if (typeof jest !== 'undefined' && jest !== null) {\n return (\n // legacy timers\n setTimeout._isMockFunction === true || // modern timers\n // eslint-disable-next-line prefer-object-has-own -- No Object.hasOwn in all target environments we support.\n Object.prototype.hasOwnProperty.call(setTimeout, 'clock')\n )\n } // istanbul ignore next\n\n return false\n}\n\nconfigureDTL({\n unstable_advanceTimersWrapper: cb => {\n return act(cb)\n },\n // We just want to run `waitFor` without IS_REACT_ACT_ENVIRONMENT\n // But that's not necessarily how `asyncWrapper` is used since it's a public method.\n // Let's just hope nobody else is using it.\n asyncWrapper: async cb => {\n const previousActEnvironment = getIsReactActEnvironment()\n setReactActEnvironment(false)\n try {\n const result = await cb()\n // Drain microtask queue.\n // Otherwise we'll restore the previous act() environment, before we resolve the `waitFor` call.\n // The caller would have no chance to wrap the in-flight Promises in `act()`\n await new Promise(resolve => {\n setTimeout(() => {\n resolve()\n }, 0)\n\n if (jestFakeTimersAreEnabled()) {\n jest.advanceTimersByTime(0)\n }\n })\n\n return result\n } finally {\n setReactActEnvironment(previousActEnvironment)\n }\n },\n eventWrapper: cb => {\n let result\n act(() => {\n result = cb()\n })\n return result\n },\n})\n\n// Ideally we'd just use a WeakMap where containers are keys and roots are values.\n// We use two variables so that we can bail out in constant time when we render with a new container (most common use case)\n/**\n * @type {Set<import('react-dom').Container>}\n */\nconst mountedContainers = new Set()\n/**\n * @type Array<{container: import('react-dom').Container, root: ReturnType<typeof createConcurrentRoot>}>\n */\nconst mountedRootEntries = []\n\nfunction strictModeIfNeeded(innerElement) {\n return getConfig().reactStrictMode\n ? React.createElement(React.StrictMode, null, innerElement)\n : innerElement\n}\n\nfunction wrapUiIfNeeded(innerElement, wrapperComponent) {\n return wrapperComponent\n ? React.createElement(wrapperComponent, null, innerElement)\n : innerElement\n}\n\nfunction createConcurrentRoot(\n container,\n {hydrate, ui, wrapper: WrapperComponent},\n) {\n let root\n if (hydrate) {\n act(() => {\n root = ReactDOMClient.hydrateRoot(\n container,\n strictModeIfNeeded(wrapUiIfNeeded(ui, WrapperComponent)),\n )\n })\n } else {\n root = ReactDOMClient.createRoot(container)\n }\n\n return {\n hydrate() {\n /* istanbul ignore if */\n if (!hydrate) {\n throw new Error(\n 'Attempted to hydrate a non-hydrateable root. This is a bug in `@testing-library/react`.',\n )\n }\n // Nothing to do since hydration happens when creating the root object.\n },\n render(element) {\n root.render(element)\n },\n unmount() {\n root.unmount()\n },\n }\n}\n\nfunction createLegacyRoot(container) {\n return {\n hydrate(element) {\n ReactDOM.hydrate(element, container)\n },\n render(element) {\n ReactDOM.render(element, container)\n },\n unmount() {\n ReactDOM.unmountComponentAtNode(container)\n },\n }\n}\n\nfunction renderRoot(\n ui,\n {baseElement, container, hydrate, queries, root, wrapper: WrapperComponent},\n) {\n act(() => {\n if (hydrate) {\n root.hydrate(\n strictModeIfNeeded(wrapUiIfNeeded(ui, WrapperComponent)),\n container,\n )\n } else {\n root.render(\n strictModeIfNeeded(wrapUiIfNeeded(ui, WrapperComponent)),\n container,\n )\n }\n })\n\n return {\n container,\n baseElement,\n debug: (el = baseElement, maxLength, options) =>\n Array.isArray(el)\n ? // eslint-disable-next-line no-console\n el.forEach(e => console.log(prettyDOM(e, maxLength, options)))\n : // eslint-disable-next-line no-console,\n console.log(prettyDOM(el, maxLength, options)),\n unmount: () => {\n act(() => {\n root.unmount()\n })\n },\n rerender: rerenderUi => {\n renderRoot(rerenderUi, {\n container,\n baseElement,\n root,\n wrapper: WrapperComponent,\n })\n // Intentionally do not return anything to avoid unnecessarily complicating the API.\n // folks can use all the same utilities we return in the first place that are bound to the container\n },\n asFragment: () => {\n /* istanbul ignore else (old jsdom limitation) */\n if (typeof document.createRange === 'function') {\n return document\n .createRange()\n .createContextualFragment(container.innerHTML)\n } else {\n const template = document.createElement('template')\n template.innerHTML = container.innerHTML\n return template.content\n }\n },\n ...getQueriesForElement(baseElement, queries),\n }\n}\n\nfunction render(\n ui,\n {\n container,\n baseElement = container,\n legacyRoot = false,\n queries,\n hydrate = false,\n wrapper,\n } = {},\n) {\n if (legacyRoot && typeof ReactDOM.render !== 'function') {\n const error = new Error(\n '`legacyRoot: true` is not supported in this version of React. ' +\n 'If your app runs React 19 or later, you should remove this flag. ' +\n 'If your app runs React 18 or earlier, visit https://react.dev/blog/2022/03/08/react-18-upgrade-guide for upgrade instructions.',\n )\n Error.captureStackTrace(error, render)\n throw error\n }\n\n if (!baseElement) {\n // default to document.body instead of documentElement to avoid output of potentially-large\n // head elements (such as JSS style blocks) in debug output\n baseElement = document.body\n }\n if (!container) {\n container = baseElement.appendChild(document.createElement('div'))\n }\n\n let root\n // eslint-disable-next-line no-negated-condition -- we want to map the evolution of this over time. The root is created first. Only later is it re-used so we don't want to read the case that happens later first.\n if (!mountedContainers.has(container)) {\n const createRootImpl = legacyRoot ? createLegacyRoot : createConcurrentRoot\n root = createRootImpl(container, {hydrate, ui, wrapper})\n\n mountedRootEntries.push({container, root})\n // we'll add it to the mounted containers regardless of whether it's actually\n // added to document.body so the cleanup method works regardless of whether\n // they're passing us a custom container or not.\n mountedContainers.add(container)\n } else {\n mountedRootEntries.forEach(rootEntry => {\n // Else is unreachable since `mountedContainers` has the `container`.\n // Only reachable if one would accidentally add the container to `mountedContainers` but not the root to `mountedRootEntries`\n /* istanbul ignore else */\n if (rootEntry.container === container) {\n root = rootEntry.root\n }\n })\n }\n\n return renderRoot(ui, {\n container,\n baseElement,\n queries,\n hydrate,\n wrapper,\n root,\n })\n}\n\nfunction cleanup() {\n mountedRootEntries.forEach(({root, container}) => {\n act(() => {\n root.unmount()\n })\n if (container.parentNode === document.body) {\n document.body.removeChild(container)\n }\n })\n mountedRootEntries.length = 0\n mountedContainers.clear()\n}\n\nfunction renderHook(renderCallback, options = {}) {\n const {initialProps, ...renderOptions} = options\n\n if (renderOptions.legacyRoot && typeof ReactDOM.render !== 'function') {\n const error = new Error(\n '`legacyRoot: true` is not supported in this version of React. ' +\n 'If your app runs React 19 or later, you should remove this flag. ' +\n 'If your app runs React 18 or earlier, visit https://react.dev/blog/2022/03/08/react-18-upgrade-guide for upgrade instructions.',\n )\n Error.captureStackTrace(error, renderHook)\n throw error\n }\n\n const result = React.createRef()\n\n function TestComponent({renderCallbackProps}) {\n const pendingResult = renderCallback(renderCallbackProps)\n\n React.useEffect(() => {\n result.current = pendingResult\n })\n\n return null\n }\n\n const {rerender: baseRerender, unmount} = render(\n <TestComponent renderCallbackProps={initialProps} />,\n renderOptions,\n )\n\n function rerender(rerenderCallbackProps) {\n return baseRerender(\n <TestComponent renderCallbackProps={rerenderCallbackProps} />,\n )\n }\n\n return {result, rerender, unmount}\n}\n\n// just re-export everything from dom-testing-library\nexport * from '@testing-library/dom'\nexport {render, renderHook, cleanup, act, fireEvent, getConfig, configure}\n\n/* eslint func-name-matching:0 */\n","import {getIsReactActEnvironment, setReactActEnvironment} from './act-compat'\nimport {cleanup} from './pure'\n\n// if we're running in a test runner that supports afterEach\n// or teardown then we'll automatically run cleanup afterEach test\n// this ensures that tests run in isolation from each other\n// if you don't like this then either import the `pure` module\n// or set the RTL_SKIP_AUTO_CLEANUP env variable to 'true'.\nif (typeof process === 'undefined' || !process.env?.RTL_SKIP_AUTO_CLEANUP) {\n // ignore teardown() in code coverage because Jest does not support it\n /* istanbul ignore else */\n if (typeof afterEach === 'function') {\n afterEach(() => {\n cleanup()\n })\n } else if (typeof teardown === 'function') {\n // Block is guarded by `typeof` check.\n // eslint does not support `typeof` guards.\n // eslint-disable-next-line no-undef\n teardown(() => {\n cleanup()\n })\n }\n\n // No test setup with other test runners available\n /* istanbul ignore else */\n if (typeof beforeAll === 'function' && typeof afterAll === 'function') {\n // This matches the behavior of React < 18.\n let previousIsReactActEnvironment = getIsReactActEnvironment()\n beforeAll(() => {\n previousIsReactActEnvironment = getIsReactActEnvironment()\n setReactActEnvironment(true)\n })\n\n afterAll(() => {\n setReactActEnvironment(previousIsReactActEnvironment)\n })\n }\n}\n\nexport * from './pure'\n"],"names":["reactAct","React","act","DeprecatedReactTestUtils","getGlobalThis","globalThis","self","window","global","Error","setIsReactActEnvironment","isReactActEnvironment","IS_REACT_ACT_ENVIRONMENT","getIsReactActEnvironment","actImplementation","callback","previousActEnvironment","callbackNeedsToBeAwaited","actResult","result","then","resolve","reject","returnValue","error","wrapAnsi256","offset","code","wrapAnsi16m","red","green","blue","Object","defineProperty","module","enumerable","get","codes","Map","styles","modifier","reset","bold","dim","italic","underline","overline","inverse","hidden","strikethrough","color","black","yellow","magenta","cyan","white","blackBright","redBright","greenBright","yellowBright","blueBright","magentaBright","cyanBright","whiteBright","bgColor","bgBlack","bgRed","bgGreen","bgYellow","bgBlue","bgMagenta","bgCyan","bgWhite","bgBlackBright","bgRedBright","bgGreenBright","bgYellowBright","bgBlueBright","bgMagentaBright","bgCyanBright","bgWhiteBright","gray","bgGray","grey","bgGrey","groupName","group","entries","styleName","style","open","close","set","value","ansi256","ansi16m","defineProperties","rgbToAnsi256","Math","round","hexToRgb","hex","matches","exec","toString","colorString","groups","length","split","map","character","join","integer","Number","parseInt","hexToAnsi256","collections","printIteratorEntries","iterator","config","indentation","depth","refs","printer","separator","current","next","done","spacingOuter","indentationNext","indent","min","spacingInner","printIteratorValues","printListItems","list","i","printObjectProperties","val","keys","getKeysOfEnumerableProperties","compareKeys","key","object","sort","getOwnPropertySymbols","forEach","symbol","getOwnPropertyDescriptor","push","AsymmetricMatcher","test","serialize","_collections","require$$0","Function","Symbol","asymmetricMatcher","for","SPACE","stringedValue","maxDepth","sample","toAsymmetricMatcher","$$typeof","_default","default","ConvertAnsi","_ansiRegex","_interopRequireDefault","_temp","onlyFirst","pattern","RegExp","undefined","_ansiStyles","require$$1","obj","__esModule","match","replace","DOMCollection","OBJECT_NAMES","ARRAY_REGEXP","constructor","name","indexOf","collection","isNamedNodeMap","Array","from","reduce","props","attribute","DOMCollection$1","escapeHTML_1","escapeHTML$2","str","markup","printText","printProps","printElementAsLeaf","printElement","printComment","printChildren","_escapeHTML","colors","printed","prop","children","child","text","contentColor","content","comment","commentColor","type","printedProps","printedChildren","tagColor","tag","DOMElement","_markup","ELEMENT_REGEXP","_val$constructor","constructorName","nodeType","tagName","isCustomElement","includes","hasAttribute","testHasAttribute","testNode","nodeIsFragment","node","nodeIsText","data","nodeIsComment","toLowerCase","attributes","attr","prototype","slice","call","childNodes","Immutable","IS_ORDERED_SENTINEL","getImmutableName","printAsLeaf","printImmutableValues","values","printImmutableEntries","printImmutableSeq","_iter","_object","_array","_collection","_iterable","printImmutableRecord","_name","_keys","getRecordEntries","exports","b","c","d","e","f","g","h","k","l","m","n","p","q","r","u","v","w","x","y","a","t","z","A","B","C","D","E","F","G","H","I","reactIs_production_min","ContextProvider","Element","Fragment","Memo","Portal","StrictMode","Suspense","isAsyncMode","isContextConsumer","isContextProvider","isElement","isForwardRef","isFragment","isLazy","isMemo","isPortal","isProfiler","isStrictMode","isSuspense","typeOf","ReactElement","ReactIs","nodeInterop","cache","_getRequireWildcardCache","has","newObj","hasPropertyDescriptor","hasOwnProperty","desc","_interopRequireWildcard","WeakMap","cacheBabelInterop","cacheNodeInterop","getChildren","arg","isArray","item","getType","element","displayName","functionName","render","filter","getPropKeys","ReactTestComponent","testSymbol","build","default_1","DEFAULT_OPTIONS","format_1","format","plugins_1","plugins","_AsymmetricMatcher","require$$2","_ConvertAnsi","require$$3","_DOMCollection","require$$4","_DOMElement","require$$5","_Immutable","require$$6","_ReactElement","require$$7","_ReactTestComponent","require$$8","toISOString","Date","errorToString","regExpToString","getConstructorName","isWindow","SYMBOL_REGEXP","NEWLINE_REGEXP","PrettyFormatPluginError","message","stack","super","this","printFunction","printFunctionName","printSymbol","String","printError","printBasicValue","escapeRegex","escapeString","is","printNumber","printBigInt","toStringed","isNaN","printComplexValue","hasCalledToJSON","hitMaxDepth","callToJSON","toJSON","isToStringedArrayType","printBasicPrototype","printPlugin","plugin","isNewPlugin","print","valChild","edgeSpacing","spacing","findPlugin","basicResult","DEFAULT_THEME","DEFAULT_THEME_KEYS","highlight","Infinity","theme","DEFAULT_OPTIONS_1","getColorsHighlight","options","create","getPrintFunctionName","getEscapeRegex","getEscapeString","getConfig","_options$printBasicPr","validateOptions","toStr","isCallable","fn","maxSafeInteger","pow","toLength","len","number","isFinite","floor","abs","toInteger","max","arrayFrom","arrayLike","mapFn","items","TypeError","kValue","SetLike","arguments","_classCallCheck","_defineProperty","previousLength","callbackfn","_this","SetLike$1","Set","getLocalName","_element$localName","localName","localNameToRoleMappings","article","aside","button","datalist","dd","details","dialog","dt","fieldset","figure","form","footer","h1","h2","h3","h4","h5","h6","header","hr","html","legend","li","math","main","menu","nav","ol","optgroup","option","output","progress","section","summary","table","tbody","textarea","tfoot","td","th","thead","tr","ul","prohibitedAttributes","caption","deletion","emphasis","generic","insertion","paragraph","presentation","strong","subscript","superscript","ignorePresentationalRole","implicitRole","role","some","attributeName","_prohibitedAttributes","hasGlobalAriaAttributes","getRole","explicitRole","getAttribute","trim","getExplicitRole","mappedByTag","size","getImplicitRole","ELEMENT_NODE","isHTMLTableCaptionElement","isHTMLInputElement","isHTMLLegendElement","isSVGTitleElement","ownerSVGElement","isSVGElement","queryIdRefs","ids","root","getRootNode","ownerDocument","id","getElementById","hasAnyConcreteRoles","roles","hasAbstractRole","concat","querySelectorAllSubtree","selectors","elements","ArrayFrom","querySelectorAll","apply","querySelectedOptions","listbox","selectedOptions","getValueOfTextbox","textContent","getTextualContent","declaration","getPropertyValue","isLabelableElement","findLabelableElement","labelableElement","childNode","descendantLabelableElement","getControlOfLabel","label","control","htmlFor","computeTextAlternative","consultedNodes","defaultView","safeWindow","_options$compute","compute","_options$computedStyl","computedStyleSupportsPseudoElements","getComputedStyle","_options$getComputedS","bind","_options$hidden","computeMiscTextAlternative","context","slot","assignedNodes","accumulatedText","beforeContent","isHTMLSlotElement","isEmbeddedInLabel","isReferenced","recursion","afterContent","useAttribute","getAttributeNode","add","computeElementTextAlternative","isHTMLFieldSetElement","isHTMLTableElement","_children","_i","_child","isSVGSVGElement","_children2","_i2","_child2","nameFromAlt","isHTMLOptGroupElement","nameFromLabel","nameFromValue","labelsProperty","labels","_nameFromAlt","nameFromTitle","nameFromSubTree","getComputedStyleImplementation","isHidden","labelAttributeNode","labelElements","skipToStep2E","ariaLabel","isMarkedPresentational","elementTextAlternative","selectedOption","allowsNameFromContent","isNativeHostLanguageTextAlternativeElement","accumulatedText2F","TEXT_NODE","tooltipAttributeValue","computeTooltipAttributeValue","computeAccessibleDescription","description","_objectSpread","title","computeAccessibleName","iteratorProxy_1","index","iter","iteratorProxy$1","iterationDecorator_1","iterationDecorator$1","_typeof","_iteratorProxy","ariaPropsMap_1","_iterationDecorator","_slicedToArray","arr","_arrayWithHoles","_s","_e","_arr","_n","_d","err","_iterableToArrayLimit","_unsupportedIterableToArray","_nonIterableRest","o","minLen","_arrayLikeToArray","arr2","properties","allowundefined","ariaPropsMap","_step","thisArg","_iterator","allowArrayLike","it","s","_e2","normalCompletion","didErr","step","_e3","return","_createForOfIteratorHelper","_step$value","find","tuple","_ref","_ref3","ariaPropsMap$1","domMap_1","dom","reserved","domMap","domMap$1","commandRole_1","abstract","accessibleNameRequired","baseConcepts","childrenPresentational","nameFrom","prohibitedProps","relatedConcepts","requireContextRole","requiredContextRole","requiredOwnedElements","requiredProps","superClass","commandRole$1","compositeRole_1","compositeRole$1","inputRole_1","concept","inputRole$1","landmarkRole_1","landmarkRole$1","rangeRole_1","rangeRole$1","roletypeRole_1","roletypeRole$1","sectionRole_1","sectionRole$1","sectionheadRole_1","sectionheadRole$1","selectRole_1","selectRole$1","structureRole_1","structureRole$1","widgetRole_1","widgetRole$1","windowRole_1","windowRole$1","ariaAbstractRoles_1","_commandRole","_compositeRole","_inputRole","_landmarkRole","_rangeRole","_roletypeRole","_sectionRole","_sectionheadRole","_selectRole","_structureRole","require$$9","_widgetRole","require$$10","_windowRole","require$$11","ariaAbstractRoles$1","alertRole_1","alertRole$1","alertdialogRole_1","alertdialogRole$1","applicationRole_1","applicationRole$1","articleRole_1","articleRole$1","bannerRole_1","constraints","bannerRole$1","blockquoteRole_1","blockquoteRole$1","buttonRole_1","buttonRole$1","captionRole_1","captionRole$1","cellRole_1","cellRole$1","checkboxRole_1","checkboxRole$1","codeRole_1","codeRole$1","columnheaderRole_1","columnheaderRole$1","comboboxRole_1","comboboxRole$1","complementaryRole_1","complementaryRole$1","contentinfoRole_1","contentinfoRole$1","definitionRole_1","definitionRole$1","deletionRole_1","deletionRole$1","dialogRole_1","dialogRole$1","directoryRole_1","directoryRole$1","documentRole_1","documentRole$1","emphasisRole_1","emphasisRole$1","feedRole_1","feedRole$1","figureRole_1","figureRole$1","formRole_1","formRole$1","genericRole_1","genericRole$1","gridRole_1","gridRole$1","gridcellRole_1","gridcellRole$1","groupRole_1","groupRole$1","headingRole_1","headingRole$1","imgRole_1","imgRole$1","insertionRole_1","insertionRole$1","linkRole_1","linkRole$1","listRole_1","listRole$1","listboxRole_1","listboxRole$1","listitemRole_1","listitemRole$1","logRole_1","logRole$1","mainRole_1","mainRole$1","markRole_1","markRole$1","marqueeRole_1","marqueeRole$1","mathRole_1","mathRole$1","menuRole_1","menuRole$1","menubarRole_1","menubarRole$1","menuitemRole_1","menuitemRole$1","menuitemcheckboxRole_1","menuitemcheckboxRole$1","menuitemradioRole_1","menuitemradioRole$1","meterRole_1","meterRole$1","navigationRole_1","navigationRole$1","noneRole_1","noneRole$1","noteRole_1","noteRole$1","optionRole_1","optionRole$1","paragraphRole_1","paragraphRole$1","presentationRole_1","presentationRole$1","progressbarRole_1","progressbarRole$1","radioRole_1","radioRole$1","radiogroupRole_1","radiogroupRole$1","regionRole_1","regionRole$1","rowRole_1","rowRole$1","rowgroupRole_1","rowgroupRole$1","rowheaderRole_1","rowheaderRole$1","scrollbarRole_1","scrollbarRole$1","searchRole_1","searchRole$1","searchboxRole_1","searchboxRole$1","separatorRole_1","separatorRole$1","sliderRole_1","sliderRole$1","spinbuttonRole_1","spinbuttonRole$1","statusRole_1","statusRole$1","strongRole_1","strongRole$1","subscriptRole_1","subscriptRole$1","superscriptRole_1","superscriptRole$1","switchRole_1","switchRole$1","tabRole_1","tabRole$1","tableRole_1","tableRole$1","tablistRole_1","tablistRole$1","tabpanelRole_1","tabpanelRole$1","termRole_1","termRole$1","textboxRole_1","textboxRole$1","timeRole_1","timeRole$1","timerRole_1","timerRole$1","toolbarRole_1","toolbarRole$1","tooltipRole_1","tooltipRole$1","treeRole_1","treeRole$1","treegridRole_1","treegridRole$1","treeitemRole_1","treeitemRole$1","ariaLiteralRoles_1","_alertRole","_alertdialogRole","_applicationRole","_articleRole","_bannerRole","_blockquoteRole","_buttonRole","_captionRole","_cellRole","_checkboxRole","_codeRole","_columnheaderRole","_comboboxRole","require$$12","_complementaryRole","require$$13","_contentinfoRole","require$$14","_definitionRole","require$$15","_deletionRole","require$$16","_dialogRole","require$$17","_directoryRole","require$$18","_documentRole","require$$19","_emphasisRole","require$$20","_feedRole","require$$21","_figureRole","require$$22","_formRole","require$$23","_genericRole","require$$24","_gridRole","require$$25","_gridcellRole","require$$26","_groupRole","require$$27","_headingRole","require$$28","_imgRole","require$$29","_insertionRole","require$$30","_linkRole","require$$31","_listRole","require$$32","_listboxRole","require$$33","_listitemRole","require$$34","_logRole","require$$35","_mainRole","require$$36","_markRole","require$$37","_marqueeRole","require$$38","_mathRole","require$$39","_menuRole","require$$40","_menubarRole","require$$41","_menuitemRole","require$$42","_menuitemcheckboxRole","require$$43","_menuitemradioRole","require$$44","_meterRole","require$$45","_navigationRole","require$$46","_noneRole","require$$47","_noteRole","require$$48","_optionRole","require$$49","_paragraphRole","require$$50","_presentationRole","require$$51","_progressbarRole","require$$52","_radioRole","require$$53","_radiogroupRole","require$$54","_regionRole","require$$55","_rowRole","require$$56","_rowgroupRole","require$$57","_rowheaderRole","require$$58","_scrollbarRole","require$$59","_searchRole","require$$60","_searchboxRole","require$$61","_separatorRole","require$$62","_sliderRole","require$$63","_spinbuttonRole","require$$64","_statusRole","require$$65","_strongRole","require$$66","_subscriptRole","require$$67","_superscriptRole","require$$68","_switchRole","require$$69","_tabRole","require$$70","_tableRole","require$$71","_tablistRole","require$$72","_tabpanelRole","require$$73","_termRole","require$$74","_textboxRole","require$$75","_timeRole","require$$76","_timerRole","require$$77","_toolbarRole","require$$78","_tooltipRole","require$$79","_treeRole","require$$80","_treegridRole","require$$81","_treeitemRole","require$$82","ariaLiteralRoles$1","docAbstractRole_1","docAbstractRole$1","docAcknowledgmentsRole_1","docAcknowledgmentsRole$1","docAfterwordRole_1","docAfterwordRole$1","docAppendixRole_1","docAppendixRole$1","docBacklinkRole_1","docBacklinkRole$1","docBiblioentryRole_1","docBiblioentryRole$1","docBibliographyRole_1","docBibliographyRole$1","docBibliorefRole_1","docBibliorefRole$1","docChapterRole_1","docChapterRole$1","docColophonRole_1","docColophonRole$1","docConclusionRole_1","docConclusionRole$1","docCoverRole_1","docCoverRole$1","docCreditRole_1","docCreditRole$1","docCreditsRole_1","docCreditsRole$1","docDedicationRole_1","docDedicationRole$1","docEndnoteRole_1","docEndnoteRole$1","docEndnotesRole_1","docEndnotesRole$1","docEpigraphRole_1","docEpigraphRole$1","docEpilogueRole_1","docEpilogueRole$1","docErrataRole_1","docErrataRole$1","docExampleRole_1","docExampleRole$1","docFootnoteRole_1","docFootnoteRole$1","docForewordRole_1","docForewordRole$1","docGlossaryRole_1","docGlossaryRole$1","docGlossrefRole_1","docGlossrefRole$1","docIndexRole_1","docIndexRole$1","docIntroductionRole_1","docIntroductionRole$1","docNoterefRole_1","docNoterefRole$1","docNoticeRole_1","docNoticeRole$1","docPagebreakRole_1","docPagebreakRole$1","docPagelistRole_1","docPagelistRole$1","docPartRole_1","docPartRole$1","docPrefaceRole_1","docPrefaceRole$1","docPrologueRole_1","docPrologueRole$1","docPullquoteRole_1","docPullquoteRole$1","docQnaRole_1","docQnaRole$1","docSubtitleRole_1","docSubtitleRole$1","docTipRole_1","docTipRole$1","docTocRole_1","docTocRole$1","ariaDpubRoles_1","_docAbstractRole","_docAcknowledgmentsRole","_docAfterwordRole","_docAppendixRole","_docBacklinkRole","_docBiblioentryRole","_docBibliographyRole","_docBibliorefRole","_docChapterRole","_docColophonRole","_docConclusionRole","_docCoverRole","_docCreditRole","_docCreditsRole","_docDedicationRole","_docEndnoteRole","_docEndnotesRole","_docEpigraphRole","_docEpilogueRole","_docErrataRole","_docExampleRole","_docFootnoteRole","_docForewordRole","_docGlossaryRole","_docGlossrefRole","_docIndexRole","_docIntroductionRole","_docNoterefRole","_docNoticeRole","_docPagebreakRole","_docPagelistRole","_docPartRole","_docPrefaceRole","_docPrologueRole","_docPullquoteRole","_docQnaRole","_docSubtitleRole","_docTipRole","_docTocRole","ariaDpubRoles$1","graphicsDocumentRole_1","graphicsDocumentRole$1","graphicsObjectRole_1","graphicsObjectRole$1","graphicsSymbolRole_1","graphicsSymbolRole$1","ariaGraphicsRoles_1","_graphicsDocumentRole","_graphicsObjectRole","_graphicsSymbolRole","ariaGraphicsRoles$1","rolesMap_1","_ariaAbstractRoles","_ariaLiteralRoles","_ariaDpubRoles","_ariaGraphicsRoles","configurable","writable","roleDefinition","_step2","_iterator2","_loop","superClassName","superClassRoleTuple","superClassDefinition","_Object$keys","assign","rolesMap","_step3","_iterator3","_step3$value","_ref5","_ref7","rolesMap$1","lite","dequal","foo","bar","ctor","getTime","elementRoleMap_1","_lite","_rolesMap","elementRoles","concepts","relation","elementRoleRelation","isUnique","elementRoleMap","_key","elementRoleMap$1","roleElementMap_1","roleElement","relationConcepts","roleElementMap","roleElementMap$1","lib","roles_1","roleElements_1","roleElements","aria","_ariaPropsMap","_domMap","_elementRoleMap","_roleElementMap","elementRoles_1","LZString","fromCharCode","keyStrBase64","keyStrUriSafe","baseReverseDic","getBaseValue","alphabet","charAt","compressToBase64","input","res","_compress","decompressFromBase64","_decompress","compressToUTF16","decompressFromUTF16","compressed","charCodeAt","compressToUint8Array","uncompressed","compress","buf","Uint8Array","TotalLen","current_value","decompressFromUint8Array","decompress","compressToEncodedURIComponent","decompressFromEncodedURIComponent","bitsPerChar","getCharFromInt","ii","context_dictionary","context_dictionaryToCreate","context_c","context_wc","context_w","context_enlargeIn","context_dictSize","context_numBits","context_data","context_data_val","context_data_position","resetValue","getNextValue","dictionary","bits","resb","maxpower","power","enlargeIn","dictSize","numBits","entry","position","angular","factory","escapeHTML","printedChild","TEXT_NODE$1","COMMENT_NODE$1","FRAGMENT_NODE","createDOMElementFilter","filterNode","_val$constructor2","chalk","readFileSync","codeFrameColumns","nodeRequire","require","getUserCodeFrame","frame","locationStart","locationEnd","frameLocation","frameLocationElements","filename","line","column","rawFileContents","codeFrame","start","highlightCode","linesBelow","getCodeFrame","jestFakeTimersAreEnabled","jest","setTimeout","_isMockFunction","getDocument","document","getWindowFromNode","debug","logTestingPlaygroundURL","checkContainerType","container","querySelector","getTypeName","shouldHighlight","_process","JSON","parse","process","env","COLORS","versions","prettyFormat","COMMENT_NODE","filterCommentsAndDefaultIgnoreTagsTags","defaultIgnore","prettyDOM","maxLength","body","documentElement","domTypeName","prettyFormatOptions","debugContent","outerHTML","logDOM","userCodeFrame","console","log","testIdAttribute","asyncUtilTimeout","asyncWrapper","cb","unstable_advanceTimersWrapper","eventWrapper","defaultHidden","showOriginalStackTrace","throwSuggestions","getElementError","prettifiedDOM","Boolean","_disableExpensiveErrorDiagnostics","configure","newConfig","labelledNodeNames","getTextContent","nodeName","getLabelContent","getRealLabels","_labels","isLabelable","getLabels","selector","ariaLabelledBy","labelsId","labelId","labellingElement","formControl","formControlElement","assertNotNullOrUndefined","matcher","fuzzyMatches","textToMatch","normalizer","normalizedText","matchRegExp","getDefaultNormalizer","collapseWhitespace","makeNormalizer","lastIndex","warn","getNodeText","elementRoleList","elementRolesMap","getSelectorSpecificity","typeTextIndex","findIndex","_ref2","shouldNotExist","shouldBeNonEmpty","makeElementSelector","specificity","_ref4","leftSpecificity","rightSpecificity","buildElementRoleList","isSubtreeInaccessible","display","isInaccessible","isSubtreeInaccessibleImpl","visibility","currentElement","parentElement","getImplicitAriaRoles","currentNode","getRoles","flattenDOM","acc","rolesAcc","prettyRoles","_ref6","includeDescription","_ref8","delimiterBar","repeat","el","nameString","domString","cloneNode","checkBooleanAttribute","attributeValue","normalize","getRegExpMatcher","string","escapeRegExp","makeSuggestion","queryName","variant","warning","queryOptions","queryArgs","queryMethod","canSuggest","currentMethod","requestedMethod","getSuggestedQuery","method","_element$getAttribute","_getImplicitAriaRoles","labelText","placeholderText","alt","testId","copyStackTrace","target","source","waitFor","timeout","stackTraceError","interval","onTimeout","mutationObserverOptions","subtree","childList","characterData","Promise","async","lastError","intervalId","observer","finished","promiseStatus","overallTimeoutTimer","onDone","usingJestFakeTimers","advanceTimersWrapper","checkCallback","advanceTimersByTime","setInterval","checkRealTimersCallback","MutationObserver","observe","clearTimeout","clearInterval","disconnect","runWithExpensiveErrorDiagnosticsDisabled","resolvedValue","rejectedValue","waitForWrapper","getMultipleElementsFoundError","queryAllByAttribute","exact","matchNormalizer","queryByAttribute","els","makeSingleQuery","allQuery","getMultipleError","_len","args","elementStrings","getSuggestionError","suggestion","makeGetAllQuery","getMissingError","_len2","_key2","makeFindQuery","getter","waitForOptions","wrapSingleQueryWithSuggestion","query","queryAllByName","_len3","_key3","suggest","endsWith","wrapAllByQueryWithSuggestion","_len4","_key4","uniqueSuggestionMessages","_getSuggestedQuery","buildQueries","queryAllBy","queryBy","getAllBy","getBy","getByWithSuggestions","queryHelpers","freeze","__proto__","queryAllLabelsByText","textToMatchByLabels","queryAllLabels","queryAllByLabelText","_temp2","matchingLabelledElements","labelledElements","labelledElement","labelList","labelsValue","labelValue","labelsFiltered","splice","getAllByLabelText","rest","tagNames","getTagNameOfElementAssociatedWithLabelViaFor","getMultipleError$7","queryByLabelText","getByLabelText","findAllByLabelText","findByLabelText","getAllByLabelTextWithSuggestions","getByLabelTextWithSuggestions","queryAllByLabelTextWithSuggestions","queryAllByPlaceholderText","queryAllByPlaceholderTextWithSuggestions","queryByPlaceholderText","getAllByPlaceholderText","getByPlaceholderText","findAllByPlaceholderText","findByPlaceholderText","getMultipleError$6","getMissingError$6","queryAllByText","ignore","baseArray","queryAllByTextWithSuggestions","queryByText","getAllByText","getByText","findAllByText","findByText","getMultipleError$5","queryAllByDisplayValue","selected","optionNode","queryAllByDisplayValueWithSuggestions","queryByDisplayValue","getAllByDisplayValue","getByDisplayValue","findAllByDisplayValue","findByDisplayValue","getMultipleError$4","getMissingError$4","VALID_TAG_REGEXP","queryAllByAltText","queryAllByAltTextWithSuggestions","queryByAltText","getAllByAltText","getByAltText","findAllByAltText","findByAltText","getMultipleError$3","getMissingError$3","queryAllByTitle","_node$parentElement","isSvgTitle","queryAllByTitleWithSuggestions","queryByTitle","getAllByTitle","getByTitle","findAllByTitle","findByTitle","getMultipleError$2","getMissingError$2","queryAllByRole","queryFallbacks","busy","checked","pressed","level","expanded","now","valueNow","valueMin","valueMax","valueText","_allRoles$get","_allRoles$get2","_allRoles$get3","_allRoles$get4","_allRoles$get5","_allRoles$get6","_allRoles$get7","_allRoles$get8","_allRoles$get9","_allRoles$get10","subtreeIsInaccessibleCache","cachedIsSubtreeInaccessible","_roleElements$get","explicitRoleSelector","roleRelations","implicitRoleSelectors","makeRoleSelector","roleValue","roleAttributeToken","firstRoleAttributeToken","computeAriaSelected","computeAriaBusy","indeterminate","computeAriaChecked","computeAriaPressed","_ref9","_checkBooleanAttribut","computeAriaCurrent","computeAriaExpanded","H1","H2","H3","H4","H5","H6","computeHeadingLevel","valueMatches","_computeAriaValueText","computeAriaValueNow","computeAriaValueMax","computeAriaValueMin","computeAriaValueText","getNameHint","nameHint","queryAllByRoleWithSuggestions","queryByRole","getAllByRole","getByRole","findAllByRole","findByRole","_temp3","roleMessage","childElement","descriptionHint","getTestIdAttribute","queryAllByTestId","queryAllByTestIdWithSuggestions","queryByTestId","getAllByTestId","getByTestId","findAllByTestId","findByTestId","queries","getQueriesForElement","queries$1","initialValue","helpers","isRemoved","initialCheck","eventMap","copy","EventType","defaultInit","bubbles","cancelable","composed","cut","paste","compositionEnd","compositionStart","compositionUpdate","keyDown","charCode","keyPress","keyUp","focus","blur","focusIn","focusOut","change","invalid","submit","click","contextMenu","dblClick","drag","dragEnd","dragEnter","dragExit","dragLeave","dragOver","dragStart","drop","mouseDown","mouseEnter","mouseLeave","mouseMove","mouseOut","mouseOver","mouseUp","select","touchCancel","touchEnd","touchMove","touchStart","resize","scroll","wheel","abort","canPlay","canPlayThrough","durationChange","emptied","encrypted","ended","loadedData","loadedMetadata","loadStart","pause","play","playing","rateChange","seeked","seeking","stalled","suspend","timeUpdate","volumeChange","waiting","load","animationStart","animationEnd","animationIteration","transitionCancel","transitionEnd","transitionRun","transitionStart","pointerOver","pointerEnter","pointerDown","pointerMove","pointerUp","pointerCancel","pointerOut","pointerLeave","gotPointerCapture","lostPointerCapture","popState","offline","online","pageHide","pageShow","eventAliasMap","doubleClick","fireEvent","event","dispatchEvent","createEvent","eventName","init","eventInit","files","targetProperties","valueSetter","getPrototypeOf","prototypeValueSetter","setNativeValue","EventConstructor","Event","detail","otherInit","initEvent","eventKey","dataTransferKey","dataTransferValue","DataTransfer","getOwnPropertyNames","propName","getPlaygroundUrl","lzString","aliasKey","innerHTML","playgroundUrl","screen","dtlFireEvent","configForRTL","reactStrictMode","getConfigDTL","configureDTL","setReactActEnvironment","mountedContainers","mountedRootEntries","strictModeIfNeeded","innerElement","createElement","wrapUiIfNeeded","wrapperComponent","createConcurrentRoot","hydrate","ui","wrapper","WrapperComponent","ReactDOMClient","hydrateRoot","createRoot","unmount","createLegacyRoot","ReactDOM","unmountComponentAtNode","renderRoot","baseElement","rerender","rerenderUi","asFragment","createRange","createContextualFragment","template","legacyRoot","captureStackTrace","appendChild","rootEntry","cleanup","parentNode","removeChild","clear","RTL_SKIP_AUTO_CLEANUP","afterEach","teardown","beforeAll","afterAll","previousIsReactActEnvironment","configForDTL","renderHook","renderCallback","initialProps","renderOptions","createRef","TestComponent","renderCallbackProps","pendingResult","useEffect","baseRerender","rerenderCallbackProps","timeoutError","getRemainingElements","parent","contains"],"mappings":"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"}