@dotss/ui 1.0.1 → 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 (2079) 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.d.ts +27 -0
  216. package/dist/DatePicker/DatePicker.es.js +818 -0
  217. package/dist/Icon/Icon.cjs +5 -0
  218. package/dist/Icon/Icon.es.js +82 -0
  219. package/dist/Tab/Tab.cjs +18 -0
  220. package/dist/Tab/Tab.es.js +188 -0
  221. package/dist/index.cjs +1 -0
  222. package/dist/index.d.ts +39 -0
  223. package/dist/index.es.js +107 -0
  224. package/dist/resources/tictoccroc/icons/index.ts-DQT-xh5P.cjs +1 -0
  225. package/dist/resources/tictoccroc/icons/index.ts-DrS5ov5F.js +240 -0
  226. package/dist/resources/tictoccroc/icons/line/archive-line.svg-DCCCNm0K.cjs +1 -0
  227. package/dist/resources/tictoccroc/icons/line/archive-line.svg-DRsXXtcA.js +5 -0
  228. package/dist/resources/tictoccroc/icons/line/index.d.ts +78 -0
  229. package/dist/resources/tictoccroc/icons/line/money-line.svg-BlHnCVds.cjs +1 -0
  230. package/dist/resources/tictoccroc/icons/line/money-line.svg-CmMXUYQs.js +5 -0
  231. package/dist/themes/tictoccroc/colors/green.cjs +1 -0
  232. package/dist/themes/tictoccroc/colors/green.es.js +15 -0
  233. package/dist/utils/getIconLabel/getIconLabel.cjs +1 -0
  234. package/dist/utils/getIconLabel/getIconLabel.es.js +125 -0
  235. package/eslint.config.mjs +10 -0
  236. package/global.d.ts +1 -0
  237. package/hooks/index.ts +4 -0
  238. package/hooks/useCheckHasFocus/useCheckHasFocus.ts +38 -0
  239. package/hooks/useCheckHoverPossible/useCheckHoverPossible.ts +20 -0
  240. package/hooks/useCheckKeyboardMode/useCheckKeyboardMode.ts +43 -0
  241. package/hooks/useFocusBoundary/useFocusBoundary.ts +126 -0
  242. package/index.ts +1 -0
  243. package/node_modules/@chromatic-com/storybook/LICENSE +21 -0
  244. package/node_modules/@chromatic-com/storybook/README.md +61 -0
  245. package/node_modules/@chromatic-com/storybook/dist/index.js +5 -0
  246. package/node_modules/@chromatic-com/storybook/dist/index.mjs +3 -0
  247. package/node_modules/@chromatic-com/storybook/dist/manager.mjs +369 -0
  248. package/node_modules/@chromatic-com/storybook/dist/preset.js +679 -0
  249. package/node_modules/@chromatic-com/storybook/package.json +170 -0
  250. package/node_modules/@chromatic-com/storybook/preset.js +1 -0
  251. package/node_modules/@chromatic-com/storybook/types.d.ts +4 -0
  252. package/node_modules/@emotion/react/LICENSE +21 -0
  253. package/node_modules/@emotion/react/README.md +48 -0
  254. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.cjs.default.js +1 -0
  255. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.cjs.js +19 -0
  256. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.cjs.mjs +2 -0
  257. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.cjs.default.js +1 -0
  258. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.cjs.js +19 -0
  259. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.cjs.mjs +2 -0
  260. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.development.esm.js +11 -0
  261. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.esm.js +11 -0
  262. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.d.mts +3 -0
  263. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.d.ts +3 -0
  264. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.default.d.ts +1 -0
  265. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.default.js +1 -0
  266. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.js +19 -0
  267. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.mjs +2 -0
  268. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.cjs.default.js +1 -0
  269. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.cjs.js +19 -0
  270. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.cjs.mjs +2 -0
  271. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.cjs.default.js +1 -0
  272. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.cjs.js +19 -0
  273. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.cjs.mjs +2 -0
  274. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.edge-light.esm.js +11 -0
  275. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.development.esm.js +11 -0
  276. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.cjs.default.js +1 -0
  277. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.cjs.js +19 -0
  278. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.cjs.mjs +2 -0
  279. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.edge-light.esm.js +11 -0
  280. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.esm.js +11 -0
  281. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.umd.min.js +2 -0
  282. package/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.umd.min.js.map +1 -0
  283. package/node_modules/@emotion/react/_isolated-hnrs/package.json +10 -0
  284. package/node_modules/@emotion/react/dist/declarations/src/_isolated-hnrs.d.ts +3 -0
  285. package/node_modules/@emotion/react/dist/declarations/src/class-names.d.ts +18 -0
  286. package/node_modules/@emotion/react/dist/declarations/src/context.d.ts +6 -0
  287. package/node_modules/@emotion/react/dist/declarations/src/css.d.ts +5 -0
  288. package/node_modules/@emotion/react/dist/declarations/src/global.d.ts +7 -0
  289. package/node_modules/@emotion/react/dist/declarations/src/index.d.ts +14 -0
  290. package/node_modules/@emotion/react/dist/declarations/src/jsx-dev-runtime.d.ts +6 -0
  291. package/node_modules/@emotion/react/dist/declarations/src/jsx-namespace.d.ts +64 -0
  292. package/node_modules/@emotion/react/dist/declarations/src/jsx-runtime.d.ts +7 -0
  293. package/node_modules/@emotion/react/dist/declarations/src/jsx.d.ts +22 -0
  294. package/node_modules/@emotion/react/dist/declarations/src/keyframes.d.ts +10 -0
  295. package/node_modules/@emotion/react/dist/declarations/src/theming.d.ts +28 -0
  296. package/node_modules/@emotion/react/dist/declarations/src/types.d.ts +7 -0
  297. package/node_modules/@emotion/react/dist/emotion-element-010f37fa.development.edge-light.cjs.js +313 -0
  298. package/node_modules/@emotion/react/dist/emotion-element-25f9958c.browser.cjs.js +191 -0
  299. package/node_modules/@emotion/react/dist/emotion-element-4787f564.browser.development.cjs.js +274 -0
  300. package/node_modules/@emotion/react/dist/emotion-element-489459f2.browser.development.esm.js +240 -0
  301. package/node_modules/@emotion/react/dist/emotion-element-516430c7.development.edge-light.esm.js +280 -0
  302. package/node_modules/@emotion/react/dist/emotion-element-782f682d.development.esm.js +282 -0
  303. package/node_modules/@emotion/react/dist/emotion-element-8113875a.edge-light.esm.js +196 -0
  304. package/node_modules/@emotion/react/dist/emotion-element-a1829a1e.cjs.js +233 -0
  305. package/node_modules/@emotion/react/dist/emotion-element-af3dc15b.edge-light.cjs.js +230 -0
  306. package/node_modules/@emotion/react/dist/emotion-element-d59e098f.esm.js +198 -0
  307. package/node_modules/@emotion/react/dist/emotion-element-e8f4cc37.development.cjs.js +316 -0
  308. package/node_modules/@emotion/react/dist/emotion-element-f0de968e.browser.esm.js +156 -0
  309. package/node_modules/@emotion/react/dist/emotion-react.browser.cjs.js +279 -0
  310. package/node_modules/@emotion/react/dist/emotion-react.browser.cjs.mjs +15 -0
  311. package/node_modules/@emotion/react/dist/emotion-react.browser.development.cjs.js +639 -0
  312. package/node_modules/@emotion/react/dist/emotion-react.browser.development.cjs.mjs +15 -0
  313. package/node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js +605 -0
  314. package/node_modules/@emotion/react/dist/emotion-react.browser.esm.js +245 -0
  315. package/node_modules/@emotion/react/dist/emotion-react.cjs.d.mts +2 -0
  316. package/node_modules/@emotion/react/dist/emotion-react.cjs.d.ts +2 -0
  317. package/node_modules/@emotion/react/dist/emotion-react.cjs.js +329 -0
  318. package/node_modules/@emotion/react/dist/emotion-react.cjs.mjs +15 -0
  319. package/node_modules/@emotion/react/dist/emotion-react.development.cjs.js +689 -0
  320. package/node_modules/@emotion/react/dist/emotion-react.development.cjs.mjs +15 -0
  321. package/node_modules/@emotion/react/dist/emotion-react.development.edge-light.cjs.js +630 -0
  322. package/node_modules/@emotion/react/dist/emotion-react.development.edge-light.cjs.mjs +15 -0
  323. package/node_modules/@emotion/react/dist/emotion-react.development.edge-light.esm.js +593 -0
  324. package/node_modules/@emotion/react/dist/emotion-react.development.esm.js +652 -0
  325. package/node_modules/@emotion/react/dist/emotion-react.edge-light.cjs.js +270 -0
  326. package/node_modules/@emotion/react/dist/emotion-react.edge-light.cjs.mjs +15 -0
  327. package/node_modules/@emotion/react/dist/emotion-react.edge-light.esm.js +233 -0
  328. package/node_modules/@emotion/react/dist/emotion-react.esm.js +292 -0
  329. package/node_modules/@emotion/react/dist/emotion-react.umd.min.js +2 -0
  330. package/node_modules/@emotion/react/dist/emotion-react.umd.min.js.map +1 -0
  331. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.cjs.js +47 -0
  332. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.cjs.mjs +4 -0
  333. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.development.cjs.js +47 -0
  334. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.development.cjs.mjs +4 -0
  335. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.development.esm.js +22 -0
  336. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.esm.js +22 -0
  337. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.d.mts +2 -0
  338. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.d.ts +2 -0
  339. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.js +47 -0
  340. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.mjs +4 -0
  341. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.cjs.js +47 -0
  342. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.cjs.mjs +4 -0
  343. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.edge-light.cjs.js +47 -0
  344. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.edge-light.cjs.mjs +4 -0
  345. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.edge-light.esm.js +22 -0
  346. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.development.esm.js +22 -0
  347. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.edge-light.cjs.js +47 -0
  348. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.edge-light.cjs.mjs +4 -0
  349. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.edge-light.esm.js +22 -0
  350. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.esm.js +22 -0
  351. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.umd.min.js +2 -0
  352. package/node_modules/@emotion/react/jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.umd.min.js.map +1 -0
  353. package/node_modules/@emotion/react/jsx-dev-runtime/package.json +10 -0
  354. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.cjs.js +55 -0
  355. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.cjs.mjs +5 -0
  356. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.development.cjs.js +55 -0
  357. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.development.cjs.mjs +5 -0
  358. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.development.esm.js +29 -0
  359. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js +29 -0
  360. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.d.mts +2 -0
  361. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.d.ts +2 -0
  362. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.js +55 -0
  363. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.mjs +5 -0
  364. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.cjs.js +55 -0
  365. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.cjs.mjs +5 -0
  366. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.edge-light.cjs.js +55 -0
  367. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.edge-light.cjs.mjs +5 -0
  368. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.edge-light.esm.js +29 -0
  369. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.development.esm.js +29 -0
  370. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.edge-light.cjs.js +55 -0
  371. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.edge-light.cjs.mjs +5 -0
  372. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.edge-light.esm.js +29 -0
  373. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.esm.js +29 -0
  374. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.umd.min.js +2 -0
  375. package/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.umd.min.js.map +1 -0
  376. package/node_modules/@emotion/react/jsx-runtime/package.json +10 -0
  377. package/node_modules/@emotion/react/macro.d.mts +1 -0
  378. package/node_modules/@emotion/react/macro.d.ts +1 -0
  379. package/node_modules/@emotion/react/macro.js +1 -0
  380. package/node_modules/@emotion/react/package.json +318 -0
  381. package/node_modules/@emotion/react/src/_isolated-hnrs.ts +15 -0
  382. package/node_modules/@emotion/react/src/class-names.tsx +180 -0
  383. package/node_modules/@emotion/react/src/conditions/false.ts +1 -0
  384. package/node_modules/@emotion/react/src/conditions/is-browser.ts +1 -0
  385. package/node_modules/@emotion/react/src/conditions/true.ts +1 -0
  386. package/node_modules/@emotion/react/src/context.tsx +72 -0
  387. package/node_modules/@emotion/react/src/css.ts +14 -0
  388. package/node_modules/@emotion/react/src/emotion-element.tsx +193 -0
  389. package/node_modules/@emotion/react/src/get-label-from-stack-trace.ts +55 -0
  390. package/node_modules/@emotion/react/src/global.tsx +147 -0
  391. package/node_modules/@emotion/react/src/index.ts +63 -0
  392. package/node_modules/@emotion/react/src/jsx-dev-runtime.ts +37 -0
  393. package/node_modules/@emotion/react/src/jsx-namespace.ts +107 -0
  394. package/node_modules/@emotion/react/src/jsx-runtime.ts +32 -0
  395. package/node_modules/@emotion/react/src/jsx.ts +45 -0
  396. package/node_modules/@emotion/react/src/keyframes.ts +27 -0
  397. package/node_modules/@emotion/react/src/theming.tsx +105 -0
  398. package/node_modules/@emotion/react/src/types.ts +14 -0
  399. package/node_modules/@emotion/react/src/utils.ts +1 -0
  400. package/node_modules/@emotion/react/types/css-prop.d.ts +9 -0
  401. package/node_modules/@emotion/serialize/LICENSE +21 -0
  402. package/node_modules/@emotion/serialize/dist/declarations/src/index.d.ts +35 -0
  403. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.mts +2 -0
  404. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.ts +2 -0
  405. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.js +246 -0
  406. package/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.mjs +3 -0
  407. package/node_modules/@emotion/serialize/dist/emotion-serialize.development.cjs.js +314 -0
  408. package/node_modules/@emotion/serialize/dist/emotion-serialize.development.cjs.mjs +3 -0
  409. package/node_modules/@emotion/serialize/dist/emotion-serialize.development.esm.js +304 -0
  410. package/node_modules/@emotion/serialize/dist/emotion-serialize.esm.js +236 -0
  411. package/node_modules/@emotion/serialize/package.json +54 -0
  412. package/node_modules/@emotion/serialize/src/conditions/false.ts +1 -0
  413. package/node_modules/@emotion/serialize/src/conditions/true.ts +1 -0
  414. package/node_modules/@emotion/serialize/src/index.ts +451 -0
  415. package/node_modules/@emotion/styled/LICENSE +21 -0
  416. package/node_modules/@emotion/styled/README.md +31 -0
  417. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.default.js +1 -0
  418. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.js +198 -0
  419. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.mjs +2 -0
  420. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.default.js +1 -0
  421. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.js +212 -0
  422. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.mjs +2 -0
  423. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.esm.js +185 -0
  424. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.esm.js +171 -0
  425. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.mts +3 -0
  426. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.ts +3 -0
  427. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.d.ts +1 -0
  428. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.js +1 -0
  429. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.js +216 -0
  430. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.mjs +2 -0
  431. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.default.js +1 -0
  432. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.js +230 -0
  433. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.mjs +2 -0
  434. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.default.js +1 -0
  435. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.js +228 -0
  436. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.mjs +2 -0
  437. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.esm.js +201 -0
  438. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.esm.js +203 -0
  439. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.default.js +1 -0
  440. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.js +214 -0
  441. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.mjs +2 -0
  442. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.esm.js +187 -0
  443. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.esm.js +189 -0
  444. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js +2 -0
  445. package/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js.map +1 -0
  446. package/node_modules/@emotion/styled/base/package.json +9 -0
  447. package/node_modules/@emotion/styled/dist/declarations/src/base.d.ts +4 -0
  448. package/node_modules/@emotion/styled/dist/declarations/src/index.d.ts +15 -0
  449. package/node_modules/@emotion/styled/dist/declarations/src/jsx-namespace.d.ts +5 -0
  450. package/node_modules/@emotion/styled/dist/declarations/src/types.d.ts +88 -0
  451. package/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.default.js +1 -0
  452. package/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.js +23 -0
  453. package/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.mjs +2 -0
  454. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.default.js +1 -0
  455. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.js +23 -0
  456. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.mjs +2 -0
  457. package/node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js +19 -0
  458. package/node_modules/@emotion/styled/dist/emotion-styled.browser.esm.js +19 -0
  459. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.mts +3 -0
  460. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.ts +3 -0
  461. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.d.ts +1 -0
  462. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.js +1 -0
  463. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.js +23 -0
  464. package/node_modules/@emotion/styled/dist/emotion-styled.cjs.mjs +2 -0
  465. package/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.default.js +1 -0
  466. package/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.js +23 -0
  467. package/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.mjs +2 -0
  468. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.default.js +1 -0
  469. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.js +23 -0
  470. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.mjs +2 -0
  471. package/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.esm.js +19 -0
  472. package/node_modules/@emotion/styled/dist/emotion-styled.development.esm.js +19 -0
  473. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.default.js +1 -0
  474. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.js +23 -0
  475. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.mjs +2 -0
  476. package/node_modules/@emotion/styled/dist/emotion-styled.edge-light.esm.js +19 -0
  477. package/node_modules/@emotion/styled/dist/emotion-styled.esm.js +19 -0
  478. package/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js +2 -0
  479. package/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js.map +1 -0
  480. package/node_modules/@emotion/styled/macro.d.mts +3 -0
  481. package/node_modules/@emotion/styled/macro.d.ts +3 -0
  482. package/node_modules/@emotion/styled/macro.js +1 -0
  483. package/node_modules/@emotion/styled/package.json +195 -0
  484. package/node_modules/@emotion/styled/src/base.tsx +229 -0
  485. package/node_modules/@emotion/styled/src/conditions/false.ts +1 -0
  486. package/node_modules/@emotion/styled/src/conditions/is-browser.ts +1 -0
  487. package/node_modules/@emotion/styled/src/conditions/true.ts +1 -0
  488. package/node_modules/@emotion/styled/src/index.ts +42 -0
  489. package/node_modules/@emotion/styled/src/jsx-namespace.ts +12 -0
  490. package/node_modules/@emotion/styled/src/tags.ts +138 -0
  491. package/node_modules/@emotion/styled/src/types.ts +190 -0
  492. package/node_modules/@emotion/styled/src/utils.ts +38 -0
  493. package/node_modules/@storybook/addon-a11y/README.md +13 -0
  494. package/node_modules/@storybook/addon-a11y/dist/chunk-CEH6MNVV.mjs +3 -0
  495. package/node_modules/@storybook/addon-a11y/dist/index.d.ts +40 -0
  496. package/node_modules/@storybook/addon-a11y/dist/index.js +25 -0
  497. package/node_modules/@storybook/addon-a11y/dist/index.mjs +8 -0
  498. package/node_modules/@storybook/addon-a11y/dist/manager.js +11 -0
  499. package/node_modules/@storybook/addon-a11y/dist/matchers-7Z3WT2CE.mjs +16 -0
  500. package/node_modules/@storybook/addon-a11y/dist/matchers-TIWVOQAP.mjs +18 -0
  501. package/node_modules/@storybook/addon-a11y/dist/postinstall.js +69 -0
  502. package/node_modules/@storybook/addon-a11y/dist/preview.d.ts +25 -0
  503. package/node_modules/@storybook/addon-a11y/dist/preview.js +24 -0
  504. package/node_modules/@storybook/addon-a11y/dist/preview.mjs +7 -0
  505. package/node_modules/@storybook/addon-a11y/manager.js +1 -0
  506. package/node_modules/@storybook/addon-a11y/package.json +115 -0
  507. package/node_modules/@storybook/addon-a11y/preview.js +1 -0
  508. package/node_modules/@storybook/addon-docs/README.md +154 -0
  509. package/node_modules/@storybook/addon-docs/angular/README.md +256 -0
  510. package/node_modules/@storybook/addon-docs/angular/index.d.ts +1 -0
  511. package/node_modules/@storybook/addon-docs/angular/index.js +6 -0
  512. package/node_modules/@storybook/addon-docs/common/README.md +98 -0
  513. package/node_modules/@storybook/addon-docs/dist/DocsRenderer-CFRXHY34.mjs +2 -0
  514. package/node_modules/@storybook/addon-docs/dist/blocks.d.ts +2 -0
  515. package/node_modules/@storybook/addon-docs/dist/blocks.js +1 -0
  516. package/node_modules/@storybook/addon-docs/dist/blocks.mjs +4 -0
  517. package/node_modules/@storybook/addon-docs/dist/chunk-H6MOWX77.mjs +3 -0
  518. package/node_modules/@storybook/addon-docs/dist/chunk-NUUEMKO5.mjs +7 -0
  519. package/node_modules/@storybook/addon-docs/dist/chunk-PRSJUHPQ.mjs +5 -0
  520. package/node_modules/@storybook/addon-docs/dist/index.d.ts +198 -0
  521. package/node_modules/@storybook/addon-docs/dist/index.js +1 -0
  522. package/node_modules/@storybook/addon-docs/dist/index.mjs +9 -0
  523. package/node_modules/@storybook/addon-docs/dist/manager.d.ts +2 -0
  524. package/node_modules/@storybook/addon-docs/dist/manager.js +1 -0
  525. package/node_modules/@storybook/addon-docs/dist/manager.mjs +8 -0
  526. package/node_modules/@storybook/addon-docs/dist/mdx-loader.d.ts +5940 -0
  527. package/node_modules/@storybook/addon-docs/dist/mdx-loader.js +56 -0
  528. package/node_modules/@storybook/addon-docs/dist/mdx-loader.mjs +59 -0
  529. package/node_modules/@storybook/addon-docs/dist/preset.d.ts +20 -0
  530. package/node_modules/@storybook/addon-docs/dist/preset.js +53 -0
  531. package/node_modules/@storybook/addon-docs/dist/preview.d.ts +3 -0
  532. package/node_modules/@storybook/addon-docs/dist/preview.js +1 -0
  533. package/node_modules/@storybook/addon-docs/dist/preview.mjs +2 -0
  534. package/node_modules/@storybook/addon-docs/dist/shims/mdx-react-shim.d.ts +1 -0
  535. package/node_modules/@storybook/addon-docs/dist/shims/mdx-react-shim.js +1 -0
  536. package/node_modules/@storybook/addon-docs/dist/shims/mdx-react-shim.mjs +1 -0
  537. package/node_modules/@storybook/addon-docs/ember/README.md +153 -0
  538. package/node_modules/@storybook/addon-docs/ember/index.d.ts +1 -0
  539. package/node_modules/@storybook/addon-docs/ember/index.js +5 -0
  540. package/node_modules/@storybook/addon-docs/package.json +171 -0
  541. package/node_modules/@storybook/addon-docs/preset.js +1 -0
  542. package/node_modules/@storybook/addon-docs/preview.js +1 -0
  543. package/node_modules/@storybook/addon-docs/react/README.md +149 -0
  544. package/node_modules/@storybook/addon-docs/svelte/HOC.svelte +7 -0
  545. package/node_modules/@storybook/addon-docs/vue/README.md +152 -0
  546. package/node_modules/@storybook/addon-docs/web-components/README.md +131 -0
  547. package/node_modules/@storybook/addon-docs/web-components/index.js +1 -0
  548. package/node_modules/@storybook/addon-essentials/README.md +57 -0
  549. package/node_modules/@storybook/addon-essentials/dist/actions/manager.js +1 -0
  550. package/node_modules/@storybook/addon-essentials/dist/actions/preview.d.ts +7 -0
  551. package/node_modules/@storybook/addon-essentials/dist/actions/preview.js +12 -0
  552. package/node_modules/@storybook/addon-essentials/dist/actions/preview.mjs +1 -0
  553. package/node_modules/@storybook/addon-essentials/dist/backgrounds/manager.js +1 -0
  554. package/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.d.ts +1 -0
  555. package/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.js +12 -0
  556. package/node_modules/@storybook/addon-essentials/dist/backgrounds/preview.mjs +1 -0
  557. package/node_modules/@storybook/addon-essentials/dist/controls/manager.js +1 -0
  558. package/node_modules/@storybook/addon-essentials/dist/docs/manager.js +1 -0
  559. package/node_modules/@storybook/addon-essentials/dist/docs/mdx-react-shim.js +12 -0
  560. package/node_modules/@storybook/addon-essentials/dist/docs/preset.js +14 -0
  561. package/node_modules/@storybook/addon-essentials/dist/docs/preview.d.ts +1 -0
  562. package/node_modules/@storybook/addon-essentials/dist/docs/preview.js +12 -0
  563. package/node_modules/@storybook/addon-essentials/dist/docs/preview.mjs +1 -0
  564. package/node_modules/@storybook/addon-essentials/dist/highlight/preview.d.ts +1 -0
  565. package/node_modules/@storybook/addon-essentials/dist/highlight/preview.js +12 -0
  566. package/node_modules/@storybook/addon-essentials/dist/highlight/preview.mjs +1 -0
  567. package/node_modules/@storybook/addon-essentials/dist/index.d.ts +5 -0
  568. package/node_modules/@storybook/addon-essentials/dist/index.js +42 -0
  569. package/node_modules/@storybook/addon-essentials/dist/index.mjs +12 -0
  570. package/node_modules/@storybook/addon-essentials/dist/measure/manager.js +1 -0
  571. package/node_modules/@storybook/addon-essentials/dist/measure/preview.d.ts +1 -0
  572. package/node_modules/@storybook/addon-essentials/dist/measure/preview.js +12 -0
  573. package/node_modules/@storybook/addon-essentials/dist/measure/preview.mjs +1 -0
  574. package/node_modules/@storybook/addon-essentials/dist/outline/manager.js +1 -0
  575. package/node_modules/@storybook/addon-essentials/dist/outline/preview.d.ts +1 -0
  576. package/node_modules/@storybook/addon-essentials/dist/outline/preview.js +12 -0
  577. package/node_modules/@storybook/addon-essentials/dist/outline/preview.mjs +1 -0
  578. package/node_modules/@storybook/addon-essentials/dist/preset.js +9 -0
  579. package/node_modules/@storybook/addon-essentials/dist/preview.d.ts +5 -0
  580. package/node_modules/@storybook/addon-essentials/dist/preview.js +42 -0
  581. package/node_modules/@storybook/addon-essentials/dist/preview.mjs +12 -0
  582. package/node_modules/@storybook/addon-essentials/dist/toolbars/manager.js +1 -0
  583. package/node_modules/@storybook/addon-essentials/dist/viewport/manager.js +1 -0
  584. package/node_modules/@storybook/addon-essentials/dist/viewport/preview.d.ts +1 -0
  585. package/node_modules/@storybook/addon-essentials/dist/viewport/preview.js +12 -0
  586. package/node_modules/@storybook/addon-essentials/dist/viewport/preview.mjs +1 -0
  587. package/node_modules/@storybook/addon-essentials/package.json +162 -0
  588. package/node_modules/@storybook/addon-essentials/preset.js +1 -0
  589. package/node_modules/@storybook/addon-interactions/README.md +57 -0
  590. package/node_modules/@storybook/addon-interactions/dist/index.d.ts +5 -0
  591. package/node_modules/@storybook/addon-interactions/dist/index.js +9 -0
  592. package/node_modules/@storybook/addon-interactions/dist/index.mjs +7 -0
  593. package/node_modules/@storybook/addon-interactions/dist/manager.css +1 -0
  594. package/node_modules/@storybook/addon-interactions/dist/manager.js +19 -0
  595. package/node_modules/@storybook/addon-interactions/dist/preset.js +9 -0
  596. package/node_modules/@storybook/addon-interactions/dist/preview.d.ts +20 -0
  597. package/node_modules/@storybook/addon-interactions/dist/preview.js +9 -0
  598. package/node_modules/@storybook/addon-interactions/dist/preview.mjs +6 -0
  599. package/node_modules/@storybook/addon-interactions/manager.js +1 -0
  600. package/node_modules/@storybook/addon-interactions/package.json +109 -0
  601. package/node_modules/@storybook/addon-interactions/preset.js +1 -0
  602. package/node_modules/@storybook/addon-interactions/preview.js +1 -0
  603. package/node_modules/@storybook/addon-links/README.md +147 -0
  604. package/node_modules/@storybook/addon-links/dist/chunk-DQW2J2JG.mjs +8 -0
  605. package/node_modules/@storybook/addon-links/dist/index.d.ts +20 -0
  606. package/node_modules/@storybook/addon-links/dist/index.js +16 -0
  607. package/node_modules/@storybook/addon-links/dist/index.mjs +7 -0
  608. package/node_modules/@storybook/addon-links/dist/manager.js +3 -0
  609. package/node_modules/@storybook/addon-links/dist/preview.d.ts +3 -0
  610. package/node_modules/@storybook/addon-links/dist/preview.js +10 -0
  611. package/node_modules/@storybook/addon-links/dist/preview.mjs +8 -0
  612. package/node_modules/@storybook/addon-links/dist/react/index.d.ts +24 -0
  613. package/node_modules/@storybook/addon-links/dist/react/index.js +15 -0
  614. package/node_modules/@storybook/addon-links/dist/react/index.mjs +6 -0
  615. package/node_modules/@storybook/addon-links/manager.js +1 -0
  616. package/node_modules/@storybook/addon-links/package.json +110 -0
  617. package/node_modules/@storybook/addon-links/preview.js +1 -0
  618. package/node_modules/@storybook/addon-links/react.d.ts +1 -0
  619. package/node_modules/@storybook/addon-links/react.js +3 -0
  620. package/node_modules/@storybook/addon-viewport/README.md +29 -0
  621. package/node_modules/@storybook/addon-viewport/dist/index.d.ts +311 -0
  622. package/node_modules/@storybook/addon-viewport/dist/index.js +12 -0
  623. package/node_modules/@storybook/addon-viewport/dist/index.mjs +5 -0
  624. package/node_modules/@storybook/addon-viewport/dist/manager.js +9 -0
  625. package/node_modules/@storybook/addon-viewport/dist/preview.d.ts +19 -0
  626. package/node_modules/@storybook/addon-viewport/dist/preview.js +5 -0
  627. package/node_modules/@storybook/addon-viewport/dist/preview.mjs +3 -0
  628. package/node_modules/@storybook/addon-viewport/manager.js +1 -0
  629. package/node_modules/@storybook/addon-viewport/package.json +98 -0
  630. package/node_modules/@storybook/addon-viewport/preview.js +1 -0
  631. package/node_modules/@storybook/blocks/README.md +23 -0
  632. package/node_modules/@storybook/blocks/dist/Color-YHDXOIA2.mjs +9 -0
  633. package/node_modules/@storybook/blocks/dist/chunk-2PTXLE6R.mjs +3 -0
  634. package/node_modules/@storybook/blocks/dist/index.d.ts +1032 -0
  635. package/node_modules/@storybook/blocks/dist/index.js +198 -0
  636. package/node_modules/@storybook/blocks/dist/index.mjs +214 -0
  637. package/node_modules/@storybook/blocks/package.json +86 -0
  638. package/node_modules/@storybook/manager-api/package.json +46 -0
  639. package/node_modules/@storybook/manager-api/shim.d.ts +2 -0
  640. package/node_modules/@storybook/manager-api/shim.js +1 -0
  641. package/node_modules/@storybook/manager-api/shim.mjs +1 -0
  642. package/node_modules/@storybook/react/README.md +1 -0
  643. package/node_modules/@storybook/react/dist/chunk-EWIU6LHT.mjs +56 -0
  644. package/node_modules/@storybook/react/dist/chunk-TENYCC3B.mjs +8 -0
  645. package/node_modules/@storybook/react/dist/chunk-XP5HYGXS.mjs +3 -0
  646. package/node_modules/@storybook/react/dist/chunk-ZGTCCPPZ.mjs +7 -0
  647. package/node_modules/@storybook/react/dist/entry-preview-docs.d.ts +20 -0
  648. package/node_modules/@storybook/react/dist/entry-preview-docs.js +47 -0
  649. package/node_modules/@storybook/react/dist/entry-preview-docs.mjs +2 -0
  650. package/node_modules/@storybook/react/dist/entry-preview-rsc.d.ts +7 -0
  651. package/node_modules/@storybook/react/dist/entry-preview-rsc.js +1 -0
  652. package/node_modules/@storybook/react/dist/entry-preview-rsc.mjs +5 -0
  653. package/node_modules/@storybook/react/dist/entry-preview.d.ts +19 -0
  654. package/node_modules/@storybook/react/dist/entry-preview.js +1 -0
  655. package/node_modules/@storybook/react/dist/entry-preview.mjs +2 -0
  656. package/node_modules/@storybook/react/dist/index.d.ts +91 -0
  657. package/node_modules/@storybook/react/dist/index.js +47 -0
  658. package/node_modules/@storybook/react/dist/index.mjs +11 -0
  659. package/node_modules/@storybook/react/dist/playwright.d.ts +1 -0
  660. package/node_modules/@storybook/react/dist/playwright.js +1 -0
  661. package/node_modules/@storybook/react/dist/playwright.mjs +2 -0
  662. package/node_modules/@storybook/react/dist/preset.d.ts +18 -0
  663. package/node_modules/@storybook/react/dist/preset.js +1 -0
  664. package/node_modules/@storybook/react/dist/preview.d.ts +199 -0
  665. package/node_modules/@storybook/react/dist/preview.js +47 -0
  666. package/node_modules/@storybook/react/dist/preview.mjs +4 -0
  667. package/node_modules/@storybook/react/dist/public-types-f2c70f25.d.ts +230 -0
  668. package/node_modules/@storybook/react/dist/types-5617c98e.d.ts +27 -0
  669. package/node_modules/@storybook/react/package.json +136 -0
  670. package/node_modules/@storybook/react/preset.js +1 -0
  671. package/node_modules/@storybook/react/template/cli/.eslintrc.json +5 -0
  672. package/node_modules/@storybook/react/template/cli/js/Button.jsx +39 -0
  673. package/node_modules/@storybook/react/template/cli/js/Button.stories.js +49 -0
  674. package/node_modules/@storybook/react/template/cli/js/Header.jsx +56 -0
  675. package/node_modules/@storybook/react/template/cli/js/Header.stories.js +29 -0
  676. package/node_modules/@storybook/react/template/cli/js/Page.jsx +69 -0
  677. package/node_modules/@storybook/react/template/cli/js/Page.stories.js +28 -0
  678. package/node_modules/@storybook/react/template/cli/ts-3-8/Button.stories.ts +53 -0
  679. package/node_modules/@storybook/react/template/cli/ts-3-8/Button.tsx +37 -0
  680. package/node_modules/@storybook/react/template/cli/ts-3-8/Header.stories.ts +33 -0
  681. package/node_modules/@storybook/react/template/cli/ts-3-8/Header.tsx +56 -0
  682. package/node_modules/@storybook/react/template/cli/ts-3-8/Page.stories.ts +32 -0
  683. package/node_modules/@storybook/react/template/cli/ts-3-8/Page.tsx +73 -0
  684. package/node_modules/@storybook/react/template/cli/ts-4-9/Button.stories.ts +53 -0
  685. package/node_modules/@storybook/react/template/cli/ts-4-9/Button.tsx +37 -0
  686. package/node_modules/@storybook/react/template/cli/ts-4-9/Header.stories.ts +33 -0
  687. package/node_modules/@storybook/react/template/cli/ts-4-9/Header.tsx +56 -0
  688. package/node_modules/@storybook/react/template/cli/ts-4-9/Page.stories.ts +32 -0
  689. package/node_modules/@storybook/react/template/cli/ts-4-9/Page.tsx +73 -0
  690. package/node_modules/@storybook/react-vite/README.md +3 -0
  691. package/node_modules/@storybook/react-vite/dist/index.d.ts +49 -0
  692. package/node_modules/@storybook/react-vite/dist/index.js +1 -0
  693. package/node_modules/@storybook/react-vite/dist/index.mjs +1 -0
  694. package/node_modules/@storybook/react-vite/dist/node/index.d.ts +9 -0
  695. package/node_modules/@storybook/react-vite/dist/node/index.js +1 -0
  696. package/node_modules/@storybook/react-vite/dist/node/index.mjs +3 -0
  697. package/node_modules/@storybook/react-vite/dist/preset.d.ts +10 -0
  698. package/node_modules/@storybook/react-vite/dist/preset.js +1 -0
  699. package/node_modules/@storybook/react-vite/package.json +111 -0
  700. package/node_modules/@storybook/react-vite/preset.js +1 -0
  701. package/node_modules/@storybook/test/README.md +41 -0
  702. package/node_modules/@storybook/test/dist/index.d.ts +186 -0
  703. package/node_modules/@storybook/test/dist/index.js +193 -0
  704. package/node_modules/@storybook/test/dist/index.mjs +199 -0
  705. package/node_modules/@storybook/test/package.json +85 -0
  706. package/node_modules/@storybook/theming/create.d.ts +2 -0
  707. package/node_modules/@storybook/theming/create.js +1 -0
  708. package/node_modules/@storybook/theming/create.mjs +1 -0
  709. package/node_modules/@storybook/theming/package.json +52 -0
  710. package/node_modules/@storybook/theming/shim.d.ts +2 -0
  711. package/node_modules/@storybook/theming/shim.js +1 -0
  712. package/node_modules/@storybook/theming/shim.mjs +1 -0
  713. package/node_modules/@testing-library/jest-dom/LICENSE +20 -0
  714. package/node_modules/@testing-library/jest-dom/README.md +1706 -0
  715. package/node_modules/@testing-library/jest-dom/dist/index.js +12 -0
  716. package/node_modules/@testing-library/jest-dom/dist/index.mjs +10 -0
  717. package/node_modules/@testing-library/jest-dom/dist/jest-globals.js +16 -0
  718. package/node_modules/@testing-library/jest-dom/dist/jest-globals.mjs +14 -0
  719. package/node_modules/@testing-library/jest-dom/dist/matchers-7fb38cd4.js +1945 -0
  720. package/node_modules/@testing-library/jest-dom/dist/matchers-c85aadf8.mjs +1914 -0
  721. package/node_modules/@testing-library/jest-dom/dist/matchers.js +42 -0
  722. package/node_modules/@testing-library/jest-dom/dist/matchers.mjs +8 -0
  723. package/node_modules/@testing-library/jest-dom/dist/vitest.js +16 -0
  724. package/node_modules/@testing-library/jest-dom/dist/vitest.mjs +14 -0
  725. package/node_modules/@testing-library/jest-dom/jest-globals.d.ts +1 -0
  726. package/node_modules/@testing-library/jest-dom/jest-globals.js +4 -0
  727. package/node_modules/@testing-library/jest-dom/matchers.d.ts +3 -0
  728. package/node_modules/@testing-library/jest-dom/matchers.js +2 -0
  729. package/node_modules/@testing-library/jest-dom/package.json +153 -0
  730. package/node_modules/@testing-library/jest-dom/types/__tests__/bun/bun-custom-expect-types.test.ts +100 -0
  731. package/node_modules/@testing-library/jest-dom/types/__tests__/bun/bun-types.test.ts +120 -0
  732. package/node_modules/@testing-library/jest-dom/types/__tests__/bun/tsconfig.json +9 -0
  733. package/node_modules/@testing-library/jest-dom/types/__tests__/jest/jest-custom-expect-types.test.ts +100 -0
  734. package/node_modules/@testing-library/jest-dom/types/__tests__/jest/jest-types.test.ts +119 -0
  735. package/node_modules/@testing-library/jest-dom/types/__tests__/jest/tsconfig.json +9 -0
  736. package/node_modules/@testing-library/jest-dom/types/__tests__/jest-globals/jest-globals-custom-expect-types.test.ts +97 -0
  737. package/node_modules/@testing-library/jest-dom/types/__tests__/jest-globals/jest-globals-types.test.ts +120 -0
  738. package/node_modules/@testing-library/jest-dom/types/__tests__/jest-globals/tsconfig.json +9 -0
  739. package/node_modules/@testing-library/jest-dom/types/__tests__/vitest/tsconfig.json +9 -0
  740. package/node_modules/@testing-library/jest-dom/types/__tests__/vitest/vitest-custom-expect-types.test.ts +97 -0
  741. package/node_modules/@testing-library/jest-dom/types/__tests__/vitest/vitest-types.test.ts +120 -0
  742. package/node_modules/@testing-library/jest-dom/types/bun.d.ts +11 -0
  743. package/node_modules/@testing-library/jest-dom/types/index.d.ts +1 -0
  744. package/node_modules/@testing-library/jest-dom/types/jest-globals.d.ts +11 -0
  745. package/node_modules/@testing-library/jest-dom/types/jest.d.ts +13 -0
  746. package/node_modules/@testing-library/jest-dom/types/matchers-standalone.d.ts +30 -0
  747. package/node_modules/@testing-library/jest-dom/types/matchers.d.ts +771 -0
  748. package/node_modules/@testing-library/jest-dom/types/vitest.d.ts +15 -0
  749. package/node_modules/@testing-library/jest-dom/vitest.d.ts +1 -0
  750. package/node_modules/@testing-library/jest-dom/vitest.js +4 -0
  751. package/node_modules/@testing-library/react/LICENSE +20 -0
  752. package/node_modules/@testing-library/react/README.md +688 -0
  753. package/node_modules/@testing-library/react/dist/@testing-library/react.cjs.js +532 -0
  754. package/node_modules/@testing-library/react/dist/@testing-library/react.esm.js +492 -0
  755. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.cjs.js +496 -0
  756. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.esm.js +456 -0
  757. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.js +13017 -0
  758. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.js.map +1 -0
  759. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.min.js +2 -0
  760. package/node_modules/@testing-library/react/dist/@testing-library/react.pure.umd.min.js.map +1 -0
  761. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.js +13053 -0
  762. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.js.map +1 -0
  763. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.min.js +2 -0
  764. package/node_modules/@testing-library/react/dist/@testing-library/react.umd.min.js.map +1 -0
  765. package/node_modules/@testing-library/react/dist/act-compat.js +81 -0
  766. package/node_modules/@testing-library/react/dist/config.js +33 -0
  767. package/node_modules/@testing-library/react/dist/fire-event.js +70 -0
  768. package/node_modules/@testing-library/react/dist/index.js +52 -0
  769. package/node_modules/@testing-library/react/dist/pure.js +335 -0
  770. package/node_modules/@testing-library/react/dont-cleanup-after-each.js +1 -0
  771. package/node_modules/@testing-library/react/package.json +111 -0
  772. package/node_modules/@testing-library/react/pure.d.ts +1 -0
  773. package/node_modules/@testing-library/react/pure.js +2 -0
  774. package/node_modules/@testing-library/react/types/index.d.ts +257 -0
  775. package/node_modules/@testing-library/react/types/pure.d.ts +1 -0
  776. package/node_modules/@testing-library/user-event/LICENSE +20 -0
  777. package/node_modules/@testing-library/user-event/README.md +124 -0
  778. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/copy.js +22 -0
  779. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/cut.js +22 -0
  780. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/index.js +11 -0
  781. package/node_modules/@testing-library/user-event/dist/cjs/clipboard/paste.js +25 -0
  782. package/node_modules/@testing-library/user-event/dist/cjs/convenience/click.js +35 -0
  783. package/node_modules/@testing-library/user-event/dist/cjs/convenience/hover.js +19 -0
  784. package/node_modules/@testing-library/user-event/dist/cjs/convenience/index.js +14 -0
  785. package/node_modules/@testing-library/user-event/dist/cjs/convenience/tab.js +7 -0
  786. package/node_modules/@testing-library/user-event/dist/cjs/document/UI.js +92 -0
  787. package/node_modules/@testing-library/user-event/dist/cjs/document/copySelection.js +29 -0
  788. package/node_modules/@testing-library/user-event/dist/cjs/document/getValueOrTextContent.js +18 -0
  789. package/node_modules/@testing-library/user-event/dist/cjs/document/index.js +17 -0
  790. package/node_modules/@testing-library/user-event/dist/cjs/document/interceptor.js +104 -0
  791. package/node_modules/@testing-library/user-event/dist/cjs/document/patchFocus.js +104 -0
  792. package/node_modules/@testing-library/user-event/dist/cjs/document/prepareDocument.js +58 -0
  793. package/node_modules/@testing-library/user-event/dist/cjs/document/trackValue.js +57 -0
  794. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/click.js +32 -0
  795. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/cut.js +14 -0
  796. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/index.js +13 -0
  797. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/keydown.js +128 -0
  798. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/keypress.js +51 -0
  799. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/keyup.js +17 -0
  800. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/paste.js +18 -0
  801. package/node_modules/@testing-library/user-event/dist/cjs/event/behavior/registry.js +5 -0
  802. package/node_modules/@testing-library/user-event/dist/cjs/event/createEvent.js +207 -0
  803. package/node_modules/@testing-library/user-event/dist/cjs/event/dispatchEvent.js +54 -0
  804. package/node_modules/@testing-library/user-event/dist/cjs/event/eventMap.js +281 -0
  805. package/node_modules/@testing-library/user-event/dist/cjs/event/focus.js +34 -0
  806. package/node_modules/@testing-library/user-event/dist/cjs/event/index.js +22 -0
  807. package/node_modules/@testing-library/user-event/dist/cjs/event/input.js +157 -0
  808. package/node_modules/@testing-library/user-event/dist/cjs/event/radio.js +27 -0
  809. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/getInputRange.js +18 -0
  810. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/getTargetTypeAndSelection.js +31 -0
  811. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/index.js +24 -0
  812. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/modifySelection.js +21 -0
  813. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/modifySelectionPerMouse.js +40 -0
  814. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/moveSelection.js +38 -0
  815. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/resolveCaretPosition.js +61 -0
  816. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/selectAll.js +38 -0
  817. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/setSelection.js +21 -0
  818. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/setSelectionPerMouse.js +81 -0
  819. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/setSelectionRange.js +31 -0
  820. package/node_modules/@testing-library/user-event/dist/cjs/event/selection/updateSelectionOnFocus.js +40 -0
  821. package/node_modules/@testing-library/user-event/dist/cjs/event/types.js +2 -0
  822. package/node_modules/@testing-library/user-event/dist/cjs/event/wrapEvent.js +9 -0
  823. package/node_modules/@testing-library/user-event/dist/cjs/index.js +12 -0
  824. package/node_modules/@testing-library/user-event/dist/cjs/keyboard/index.js +40 -0
  825. package/node_modules/@testing-library/user-event/dist/cjs/keyboard/keyMap.js +178 -0
  826. package/node_modules/@testing-library/user-event/dist/cjs/keyboard/parseKeyDef.js +45 -0
  827. package/node_modules/@testing-library/user-event/dist/cjs/options.js +14 -0
  828. package/node_modules/@testing-library/user-event/dist/cjs/package.json +3 -0
  829. package/node_modules/@testing-library/user-event/dist/cjs/pointer/index.js +74 -0
  830. package/node_modules/@testing-library/user-event/dist/cjs/pointer/keyMap.js +33 -0
  831. package/node_modules/@testing-library/user-event/dist/cjs/pointer/parseKeyDef.js +23 -0
  832. package/node_modules/@testing-library/user-event/dist/cjs/setup/api.js +35 -0
  833. package/node_modules/@testing-library/user-event/dist/cjs/setup/directApi.js +75 -0
  834. package/node_modules/@testing-library/user-event/dist/cjs/setup/index.js +11 -0
  835. package/node_modules/@testing-library/user-event/dist/cjs/setup/setup.js +125 -0
  836. package/node_modules/@testing-library/user-event/dist/cjs/setup/wrapAsync.js +11 -0
  837. package/node_modules/@testing-library/user-event/dist/cjs/system/index.js +44 -0
  838. package/node_modules/@testing-library/user-event/dist/cjs/system/keyboard.js +169 -0
  839. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/buttons.js +84 -0
  840. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/device.js +34 -0
  841. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/index.js +159 -0
  842. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/mouse.js +207 -0
  843. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/pointer.js +131 -0
  844. package/node_modules/@testing-library/user-event/dist/cjs/system/pointer/shared.js +8 -0
  845. package/node_modules/@testing-library/user-event/dist/cjs/utility/clear.js +32 -0
  846. package/node_modules/@testing-library/user-event/dist/cjs/utility/index.js +14 -0
  847. package/node_modules/@testing-library/user-event/dist/cjs/utility/selectOptions.js +114 -0
  848. package/node_modules/@testing-library/user-event/dist/cjs/utility/type.js +23 -0
  849. package/node_modules/@testing-library/user-event/dist/cjs/utility/upload.js +62 -0
  850. package/node_modules/@testing-library/user-event/dist/cjs/utils/click/isClickableInput.js +20 -0
  851. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/Blob.js +16 -0
  852. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/Clipboard.js +169 -0
  853. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/DataTransfer.js +136 -0
  854. package/node_modules/@testing-library/user-event/dist/cjs/utils/dataTransfer/FileList.js +24 -0
  855. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/isContentEditable.js +18 -0
  856. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/isEditable.js +29 -0
  857. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/maxLength.js +26 -0
  858. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/setFiles.js +59 -0
  859. package/node_modules/@testing-library/user-event/dist/cjs/utils/edit/timeValue.js +40 -0
  860. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/cursor.js +126 -0
  861. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/getActiveElement.js +23 -0
  862. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/getTabDestination.js +80 -0
  863. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/isFocusable.js +9 -0
  864. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/selection.js +20 -0
  865. package/node_modules/@testing-library/user-event/dist/cjs/utils/focus/selector.js +14 -0
  866. package/node_modules/@testing-library/user-event/dist/cjs/utils/index.js +78 -0
  867. package/node_modules/@testing-library/user-event/dist/cjs/utils/keyDef/readNextDescriptor.js +92 -0
  868. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/cloneEvent.js +7 -0
  869. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/findClosest.js +14 -0
  870. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/getDocumentFromNode.js +10 -0
  871. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/getTreeDiff.js +25 -0
  872. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/getWindow.js +19 -0
  873. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isDescendantOrSelf.js +14 -0
  874. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isDisabled.js +33 -0
  875. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isElementType.js +20 -0
  876. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/isVisible.js +19 -0
  877. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/level.js +17 -0
  878. package/node_modules/@testing-library/user-event/dist/cjs/utils/misc/wait.js +14 -0
  879. package/node_modules/@testing-library/user-event/dist/cjs/utils/pointer/cssPointerEvents.js +103 -0
  880. package/node_modules/@testing-library/user-event/dist/esm/clipboard/copy.js +20 -0
  881. package/node_modules/@testing-library/user-event/dist/esm/clipboard/cut.js +20 -0
  882. package/node_modules/@testing-library/user-event/dist/esm/clipboard/index.js +3 -0
  883. package/node_modules/@testing-library/user-event/dist/esm/clipboard/paste.js +23 -0
  884. package/node_modules/@testing-library/user-event/dist/esm/convenience/click.js +31 -0
  885. package/node_modules/@testing-library/user-event/dist/esm/convenience/hover.js +16 -0
  886. package/node_modules/@testing-library/user-event/dist/esm/convenience/index.js +3 -0
  887. package/node_modules/@testing-library/user-event/dist/esm/convenience/tab.js +5 -0
  888. package/node_modules/@testing-library/user-event/dist/esm/document/UI.js +79 -0
  889. package/node_modules/@testing-library/user-event/dist/esm/document/copySelection.js +27 -0
  890. package/node_modules/@testing-library/user-event/dist/esm/document/getValueOrTextContent.js +16 -0
  891. package/node_modules/@testing-library/user-event/dist/esm/document/index.js +4 -0
  892. package/node_modules/@testing-library/user-event/dist/esm/document/interceptor.js +99 -0
  893. package/node_modules/@testing-library/user-event/dist/esm/document/patchFocus.js +101 -0
  894. package/node_modules/@testing-library/user-event/dist/esm/document/prepareDocument.js +56 -0
  895. package/node_modules/@testing-library/user-event/dist/esm/document/trackValue.js +53 -0
  896. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/click.js +30 -0
  897. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/cut.js +12 -0
  898. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/index.js +7 -0
  899. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/keydown.js +126 -0
  900. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/keypress.js +49 -0
  901. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/keyup.js +15 -0
  902. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/paste.js +16 -0
  903. package/node_modules/@testing-library/user-event/dist/esm/event/behavior/registry.js +3 -0
  904. package/node_modules/@testing-library/user-event/dist/esm/event/createEvent.js +205 -0
  905. package/node_modules/@testing-library/user-event/dist/esm/event/dispatchEvent.js +50 -0
  906. package/node_modules/@testing-library/user-event/dist/esm/event/eventMap.js +277 -0
  907. package/node_modules/@testing-library/user-event/dist/esm/event/focus.js +31 -0
  908. package/node_modules/@testing-library/user-event/dist/esm/event/index.js +7 -0
  909. package/node_modules/@testing-library/user-event/dist/esm/event/input.js +155 -0
  910. package/node_modules/@testing-library/user-event/dist/esm/event/radio.js +25 -0
  911. package/node_modules/@testing-library/user-event/dist/esm/event/selection/getInputRange.js +16 -0
  912. package/node_modules/@testing-library/user-event/dist/esm/event/selection/getTargetTypeAndSelection.js +29 -0
  913. package/node_modules/@testing-library/user-event/dist/esm/event/selection/index.js +9 -0
  914. package/node_modules/@testing-library/user-event/dist/esm/event/selection/modifySelection.js +19 -0
  915. package/node_modules/@testing-library/user-event/dist/esm/event/selection/modifySelectionPerMouse.js +38 -0
  916. package/node_modules/@testing-library/user-event/dist/esm/event/selection/moveSelection.js +36 -0
  917. package/node_modules/@testing-library/user-event/dist/esm/event/selection/resolveCaretPosition.js +59 -0
  918. package/node_modules/@testing-library/user-event/dist/esm/event/selection/selectAll.js +35 -0
  919. package/node_modules/@testing-library/user-event/dist/esm/event/selection/setSelection.js +19 -0
  920. package/node_modules/@testing-library/user-event/dist/esm/event/selection/setSelectionPerMouse.js +79 -0
  921. package/node_modules/@testing-library/user-event/dist/esm/event/selection/setSelectionRange.js +29 -0
  922. package/node_modules/@testing-library/user-event/dist/esm/event/selection/updateSelectionOnFocus.js +38 -0
  923. package/node_modules/@testing-library/user-event/dist/esm/event/types.js +1 -0
  924. package/node_modules/@testing-library/user-event/dist/esm/event/wrapEvent.js +7 -0
  925. package/node_modules/@testing-library/user-event/dist/esm/index.js +2 -0
  926. package/node_modules/@testing-library/user-event/dist/esm/keyboard/index.js +37 -0
  927. package/node_modules/@testing-library/user-event/dist/esm/keyboard/keyMap.js +176 -0
  928. package/node_modules/@testing-library/user-event/dist/esm/keyboard/parseKeyDef.js +43 -0
  929. package/node_modules/@testing-library/user-event/dist/esm/options.js +12 -0
  930. package/node_modules/@testing-library/user-event/dist/esm/package.json +3 -0
  931. package/node_modules/@testing-library/user-event/dist/esm/pointer/index.js +72 -0
  932. package/node_modules/@testing-library/user-event/dist/esm/pointer/keyMap.js +31 -0
  933. package/node_modules/@testing-library/user-event/dist/esm/pointer/parseKeyDef.js +21 -0
  934. package/node_modules/@testing-library/user-event/dist/esm/setup/api.js +33 -0
  935. package/node_modules/@testing-library/user-event/dist/esm/setup/directApi.js +58 -0
  936. package/node_modules/@testing-library/user-event/dist/esm/setup/index.js +9 -0
  937. package/node_modules/@testing-library/user-event/dist/esm/setup/setup.js +119 -0
  938. package/node_modules/@testing-library/user-event/dist/esm/setup/wrapAsync.js +9 -0
  939. package/node_modules/@testing-library/user-event/dist/esm/system/index.js +42 -0
  940. package/node_modules/@testing-library/user-event/dist/esm/system/keyboard.js +166 -0
  941. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/buttons.js +78 -0
  942. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/device.js +32 -0
  943. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/index.js +157 -0
  944. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/mouse.js +205 -0
  945. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/pointer.js +129 -0
  946. package/node_modules/@testing-library/user-event/dist/esm/system/pointer/shared.js +6 -0
  947. package/node_modules/@testing-library/user-event/dist/esm/utility/clear.js +30 -0
  948. package/node_modules/@testing-library/user-event/dist/esm/utility/index.js +4 -0
  949. package/node_modules/@testing-library/user-event/dist/esm/utility/selectOptions.js +111 -0
  950. package/node_modules/@testing-library/user-event/dist/esm/utility/type.js +21 -0
  951. package/node_modules/@testing-library/user-event/dist/esm/utility/upload.js +60 -0
  952. package/node_modules/@testing-library/user-event/dist/esm/utils/click/isClickableInput.js +18 -0
  953. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/Blob.js +14 -0
  954. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/Clipboard.js +162 -0
  955. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/DataTransfer.js +133 -0
  956. package/node_modules/@testing-library/user-event/dist/esm/utils/dataTransfer/FileList.js +22 -0
  957. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/isContentEditable.js +15 -0
  958. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/isEditable.js +26 -0
  959. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/maxLength.js +23 -0
  960. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/setFiles.js +57 -0
  961. package/node_modules/@testing-library/user-event/dist/esm/utils/edit/timeValue.js +37 -0
  962. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/cursor.js +124 -0
  963. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/getActiveElement.js +20 -0
  964. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/getTabDestination.js +78 -0
  965. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/isFocusable.js +7 -0
  966. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/selection.js +17 -0
  967. package/node_modules/@testing-library/user-event/dist/esm/utils/focus/selector.js +12 -0
  968. package/node_modules/@testing-library/user-event/dist/esm/utils/index.js +29 -0
  969. package/node_modules/@testing-library/user-event/dist/esm/utils/keyDef/readNextDescriptor.js +90 -0
  970. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/cloneEvent.js +5 -0
  971. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/findClosest.js +12 -0
  972. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/getDocumentFromNode.js +8 -0
  973. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/getTreeDiff.js +23 -0
  974. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/getWindow.js +17 -0
  975. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isDescendantOrSelf.js +12 -0
  976. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isDisabled.js +31 -0
  977. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isElementType.js +18 -0
  978. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/isVisible.js +17 -0
  979. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/level.js +13 -0
  980. package/node_modules/@testing-library/user-event/dist/esm/utils/misc/wait.js +12 -0
  981. package/node_modules/@testing-library/user-event/dist/esm/utils/pointer/cssPointerEvents.js +100 -0
  982. package/node_modules/@testing-library/user-event/dist/types/clipboard/copy.d.ts +2 -0
  983. package/node_modules/@testing-library/user-event/dist/types/clipboard/cut.d.ts +2 -0
  984. package/node_modules/@testing-library/user-event/dist/types/clipboard/index.d.ts +3 -0
  985. package/node_modules/@testing-library/user-event/dist/types/clipboard/paste.d.ts +2 -0
  986. package/node_modules/@testing-library/user-event/dist/types/convenience/click.d.ts +4 -0
  987. package/node_modules/@testing-library/user-event/dist/types/convenience/hover.d.ts +3 -0
  988. package/node_modules/@testing-library/user-event/dist/types/convenience/index.d.ts +3 -0
  989. package/node_modules/@testing-library/user-event/dist/types/convenience/tab.d.ts +4 -0
  990. package/node_modules/@testing-library/user-event/dist/types/document/UI.d.ts +42 -0
  991. package/node_modules/@testing-library/user-event/dist/types/document/copySelection.d.ts +1 -0
  992. package/node_modules/@testing-library/user-event/dist/types/document/getValueOrTextContent.d.ts +1 -0
  993. package/node_modules/@testing-library/user-event/dist/types/document/index.d.ts +5 -0
  994. package/node_modules/@testing-library/user-event/dist/types/document/interceptor.d.ts +19 -0
  995. package/node_modules/@testing-library/user-event/dist/types/document/patchFocus.d.ts +9 -0
  996. package/node_modules/@testing-library/user-event/dist/types/document/prepareDocument.d.ts +8 -0
  997. package/node_modules/@testing-library/user-event/dist/types/document/trackValue.d.ts +17 -0
  998. package/node_modules/@testing-library/user-event/dist/types/event/behavior/click.d.ts +1 -0
  999. package/node_modules/@testing-library/user-event/dist/types/event/behavior/cut.d.ts +1 -0
  1000. package/node_modules/@testing-library/user-event/dist/types/event/behavior/index.d.ts +8 -0
  1001. package/node_modules/@testing-library/user-event/dist/types/event/behavior/keydown.d.ts +1 -0
  1002. package/node_modules/@testing-library/user-event/dist/types/event/behavior/keypress.d.ts +1 -0
  1003. package/node_modules/@testing-library/user-event/dist/types/event/behavior/keyup.d.ts +1 -0
  1004. package/node_modules/@testing-library/user-event/dist/types/event/behavior/paste.d.ts +1 -0
  1005. package/node_modules/@testing-library/user-event/dist/types/event/behavior/registry.d.ts +9 -0
  1006. package/node_modules/@testing-library/user-event/dist/types/event/createEvent.d.ts +2 -0
  1007. package/node_modules/@testing-library/user-event/dist/types/event/dispatchEvent.d.ts +5 -0
  1008. package/node_modules/@testing-library/user-event/dist/types/event/eventMap.d.ts +265 -0
  1009. package/node_modules/@testing-library/user-event/dist/types/event/focus.d.ts +5 -0
  1010. package/node_modules/@testing-library/user-event/dist/types/event/index.d.ts +7 -0
  1011. package/node_modules/@testing-library/user-event/dist/types/event/input.d.ts +2 -0
  1012. package/node_modules/@testing-library/user-event/dist/types/event/radio.d.ts +4 -0
  1013. package/node_modules/@testing-library/user-event/dist/types/event/selection/getInputRange.d.ts +5 -0
  1014. package/node_modules/@testing-library/user-event/dist/types/event/selection/getTargetTypeAndSelection.d.ts +10 -0
  1015. package/node_modules/@testing-library/user-event/dist/types/event/selection/index.d.ts +15 -0
  1016. package/node_modules/@testing-library/user-event/dist/types/event/selection/modifySelection.d.ts +8 -0
  1017. package/node_modules/@testing-library/user-event/dist/types/event/selection/modifySelectionPerMouse.d.ts +7 -0
  1018. package/node_modules/@testing-library/user-event/dist/types/event/selection/moveSelection.d.ts +4 -0
  1019. package/node_modules/@testing-library/user-event/dist/types/event/selection/resolveCaretPosition.d.ts +8 -0
  1020. package/node_modules/@testing-library/user-event/dist/types/event/selection/selectAll.d.ts +5 -0
  1021. package/node_modules/@testing-library/user-event/dist/types/event/selection/setSelection.d.ts +10 -0
  1022. package/node_modules/@testing-library/user-event/dist/types/event/selection/setSelectionPerMouse.d.ts +8 -0
  1023. package/node_modules/@testing-library/user-event/dist/types/event/selection/setSelectionRange.d.ts +6 -0
  1024. package/node_modules/@testing-library/user-event/dist/types/event/selection/updateSelectionOnFocus.d.ts +5 -0
  1025. package/node_modules/@testing-library/user-event/dist/types/event/types.d.ts +20 -0
  1026. package/node_modules/@testing-library/user-event/dist/types/event/wrapEvent.d.ts +1 -0
  1027. package/node_modules/@testing-library/user-event/dist/types/index.d.ts +6 -0
  1028. package/node_modules/@testing-library/user-event/dist/types/keyboard/index.d.ts +3 -0
  1029. package/node_modules/@testing-library/user-event/dist/types/keyboard/keyMap.d.ts +5 -0
  1030. package/node_modules/@testing-library/user-event/dist/types/keyboard/parseKeyDef.d.ts +17 -0
  1031. package/node_modules/@testing-library/user-event/dist/types/options.d.ts +115 -0
  1032. package/node_modules/@testing-library/user-event/dist/types/pointer/index.d.ts +28 -0
  1033. package/node_modules/@testing-library/user-event/dist/types/pointer/keyMap.d.ts +2 -0
  1034. package/node_modules/@testing-library/user-event/dist/types/pointer/parseKeyDef.d.ts +6 -0
  1035. package/node_modules/@testing-library/user-event/dist/types/setup/api.d.ts +23 -0
  1036. package/node_modules/@testing-library/user-event/dist/types/setup/directApi.d.ts +24 -0
  1037. package/node_modules/@testing-library/user-event/dist/types/setup/index.d.ts +22 -0
  1038. package/node_modules/@testing-library/user-event/dist/types/setup/setup.d.ts +44 -0
  1039. package/node_modules/@testing-library/user-event/dist/types/setup/wrapAsync.d.ts +4 -0
  1040. package/node_modules/@testing-library/user-event/dist/types/system/index.d.ts +10 -0
  1041. package/node_modules/@testing-library/user-event/dist/types/system/keyboard.d.ts +50 -0
  1042. package/node_modules/@testing-library/user-event/dist/types/system/pointer/buttons.d.ts +23 -0
  1043. package/node_modules/@testing-library/user-event/dist/types/system/pointer/device.d.ts +8 -0
  1044. package/node_modules/@testing-library/user-event/dist/types/system/pointer/index.d.ts +21 -0
  1045. package/node_modules/@testing-library/user-event/dist/types/system/pointer/mouse.d.ts +31 -0
  1046. package/node_modules/@testing-library/user-event/dist/types/system/pointer/pointer.d.ts +32 -0
  1047. package/node_modules/@testing-library/user-event/dist/types/system/pointer/shared.d.ts +20 -0
  1048. package/node_modules/@testing-library/user-event/dist/types/utility/clear.d.ts +2 -0
  1049. package/node_modules/@testing-library/user-event/dist/types/utility/index.d.ts +4 -0
  1050. package/node_modules/@testing-library/user-event/dist/types/utility/selectOptions.d.ts +3 -0
  1051. package/node_modules/@testing-library/user-event/dist/types/utility/type.d.ts +9 -0
  1052. package/node_modules/@testing-library/user-event/dist/types/utility/upload.d.ts +5 -0
  1053. package/node_modules/@testing-library/user-event/dist/types/utils/click/isClickableInput.d.ts +15 -0
  1054. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/Blob.d.ts +3 -0
  1055. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/Clipboard.d.ts +11 -0
  1056. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/DataTransfer.d.ts +2 -0
  1057. package/node_modules/@testing-library/user-event/dist/types/utils/dataTransfer/FileList.d.ts +1 -0
  1058. package/node_modules/@testing-library/user-event/dist/types/utils/edit/isContentEditable.d.ts +7 -0
  1059. package/node_modules/@testing-library/user-event/dist/types/utils/edit/isEditable.d.ts +24 -0
  1060. package/node_modules/@testing-library/user-event/dist/types/utils/edit/maxLength.d.ts +14 -0
  1061. package/node_modules/@testing-library/user-event/dist/types/utils/edit/setFiles.d.ts +12 -0
  1062. package/node_modules/@testing-library/user-event/dist/types/utils/edit/timeValue.d.ts +4 -0
  1063. package/node_modules/@testing-library/user-event/dist/types/utils/focus/cursor.d.ts +9 -0
  1064. package/node_modules/@testing-library/user-event/dist/types/utils/focus/getActiveElement.d.ts +2 -0
  1065. package/node_modules/@testing-library/user-event/dist/types/utils/focus/getTabDestination.d.ts +1 -0
  1066. package/node_modules/@testing-library/user-event/dist/types/utils/focus/isFocusable.d.ts +1 -0
  1067. package/node_modules/@testing-library/user-event/dist/types/utils/focus/selection.d.ts +8 -0
  1068. package/node_modules/@testing-library/user-event/dist/types/utils/focus/selector.d.ts +1 -0
  1069. package/node_modules/@testing-library/user-event/dist/types/utils/index.d.ts +29 -0
  1070. package/node_modules/@testing-library/user-event/dist/types/utils/keyDef/readNextDescriptor.d.ts +21 -0
  1071. package/node_modules/@testing-library/user-event/dist/types/utils/misc/cloneEvent.d.ts +1 -0
  1072. package/node_modules/@testing-library/user-event/dist/types/utils/misc/findClosest.d.ts +1 -0
  1073. package/node_modules/@testing-library/user-event/dist/types/utils/misc/getDocumentFromNode.d.ts +1 -0
  1074. package/node_modules/@testing-library/user-event/dist/types/utils/misc/getTreeDiff.d.ts +1 -0
  1075. package/node_modules/@testing-library/user-event/dist/types/utils/misc/getWindow.d.ts +1 -0
  1076. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isDescendantOrSelf.d.ts +1 -0
  1077. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isDisabled.d.ts +1 -0
  1078. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isElementType.d.ts +5 -0
  1079. package/node_modules/@testing-library/user-event/dist/types/utils/misc/isVisible.d.ts +1 -0
  1080. package/node_modules/@testing-library/user-event/dist/types/utils/misc/level.d.ts +8 -0
  1081. package/node_modules/@testing-library/user-event/dist/types/utils/misc/wait.d.ts +2 -0
  1082. package/node_modules/@testing-library/user-event/dist/types/utils/pointer/cssPointerEvents.d.ts +19 -0
  1083. package/node_modules/@testing-library/user-event/package.json +112 -0
  1084. package/node_modules/@types/node/LICENSE +21 -0
  1085. package/node_modules/@types/node/README.md +15 -0
  1086. package/node_modules/@types/node/assert/strict.d.ts +8 -0
  1087. package/node_modules/@types/node/assert.d.ts +1040 -0
  1088. package/node_modules/@types/node/async_hooks.d.ts +541 -0
  1089. package/node_modules/@types/node/buffer.d.ts +2363 -0
  1090. package/node_modules/@types/node/child_process.d.ts +1542 -0
  1091. package/node_modules/@types/node/cluster.d.ts +578 -0
  1092. package/node_modules/@types/node/console.d.ts +452 -0
  1093. package/node_modules/@types/node/constants.d.ts +19 -0
  1094. package/node_modules/@types/node/crypto.d.ts +4522 -0
  1095. package/node_modules/@types/node/dgram.d.ts +596 -0
  1096. package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
  1097. package/node_modules/@types/node/dns/promises.d.ts +473 -0
  1098. package/node_modules/@types/node/dns.d.ts +853 -0
  1099. package/node_modules/@types/node/dom-events.d.ts +124 -0
  1100. package/node_modules/@types/node/domain.d.ts +170 -0
  1101. package/node_modules/@types/node/events.d.ts +884 -0
  1102. package/node_modules/@types/node/fs/promises.d.ts +1245 -0
  1103. package/node_modules/@types/node/fs.d.ts +4317 -0
  1104. package/node_modules/@types/node/globals.d.ts +411 -0
  1105. package/node_modules/@types/node/globals.global.d.ts +1 -0
  1106. package/node_modules/@types/node/http.d.ts +1889 -0
  1107. package/node_modules/@types/node/http2.d.ts +2418 -0
  1108. package/node_modules/@types/node/https.d.ts +550 -0
  1109. package/node_modules/@types/node/index.d.ts +89 -0
  1110. package/node_modules/@types/node/inspector.d.ts +2746 -0
  1111. package/node_modules/@types/node/module.d.ts +315 -0
  1112. package/node_modules/@types/node/net.d.ts +996 -0
  1113. package/node_modules/@types/node/os.d.ts +495 -0
  1114. package/node_modules/@types/node/package.json +217 -0
  1115. package/node_modules/@types/node/path.d.ts +191 -0
  1116. package/node_modules/@types/node/perf_hooks.d.ts +645 -0
  1117. package/node_modules/@types/node/process.d.ts +1747 -0
  1118. package/node_modules/@types/node/punycode.d.ts +117 -0
  1119. package/node_modules/@types/node/querystring.d.ts +153 -0
  1120. package/node_modules/@types/node/readline/promises.d.ts +150 -0
  1121. package/node_modules/@types/node/readline.d.ts +540 -0
  1122. package/node_modules/@types/node/repl.d.ts +430 -0
  1123. package/node_modules/@types/node/sea.d.ts +153 -0
  1124. package/node_modules/@types/node/stream/consumers.d.ts +12 -0
  1125. package/node_modules/@types/node/stream/promises.d.ts +83 -0
  1126. package/node_modules/@types/node/stream/web.d.ts +367 -0
  1127. package/node_modules/@types/node/stream.d.ts +1707 -0
  1128. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  1129. package/node_modules/@types/node/test.d.ts +1470 -0
  1130. package/node_modules/@types/node/timers/promises.d.ts +97 -0
  1131. package/node_modules/@types/node/timers.d.ts +240 -0
  1132. package/node_modules/@types/node/tls.d.ts +1217 -0
  1133. package/node_modules/@types/node/trace_events.d.ts +197 -0
  1134. package/node_modules/@types/node/tty.d.ts +208 -0
  1135. package/node_modules/@types/node/url.d.ts +944 -0
  1136. package/node_modules/@types/node/util.d.ts +2276 -0
  1137. package/node_modules/@types/node/v8.d.ts +764 -0
  1138. package/node_modules/@types/node/vm.d.ts +921 -0
  1139. package/node_modules/@types/node/wasi.d.ts +181 -0
  1140. package/node_modules/@types/node/worker_threads.d.ts +691 -0
  1141. package/node_modules/@types/node/zlib.d.ts +530 -0
  1142. package/node_modules/@types/react/LICENSE +21 -0
  1143. package/node_modules/@types/react/README.md +15 -0
  1144. package/node_modules/@types/react/canary.d.ts +157 -0
  1145. package/node_modules/@types/react/experimental.d.ts +127 -0
  1146. package/node_modules/@types/react/global.d.ts +160 -0
  1147. package/node_modules/@types/react/index.d.ts +4537 -0
  1148. package/node_modules/@types/react/jsx-dev-runtime.d.ts +45 -0
  1149. package/node_modules/@types/react/jsx-runtime.d.ts +36 -0
  1150. package/node_modules/@types/react/package.json +210 -0
  1151. package/node_modules/@types/react/ts5.0/canary.d.ts +157 -0
  1152. package/node_modules/@types/react/ts5.0/experimental.d.ts +127 -0
  1153. package/node_modules/@types/react/ts5.0/global.d.ts +160 -0
  1154. package/node_modules/@types/react/ts5.0/index.d.ts +4524 -0
  1155. package/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +44 -0
  1156. package/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +35 -0
  1157. package/node_modules/@types/react-dom/LICENSE +21 -0
  1158. package/node_modules/@types/react-dom/README.md +16 -0
  1159. package/node_modules/@types/react-dom/canary.d.ts +185 -0
  1160. package/node_modules/@types/react-dom/client.d.ts +72 -0
  1161. package/node_modules/@types/react-dom/experimental.d.ts +36 -0
  1162. package/node_modules/@types/react-dom/index.d.ts +150 -0
  1163. package/node_modules/@types/react-dom/package.json +88 -0
  1164. package/node_modules/@types/react-dom/server.d.ts +131 -0
  1165. package/node_modules/@types/react-dom/test-utils/index.d.ts +402 -0
  1166. package/node_modules/@vitest/ui/LICENSE +21 -0
  1167. package/node_modules/@vitest/ui/README.md +21 -0
  1168. package/node_modules/@vitest/ui/dist/client/assets/index-9agQl9q3.js +35 -0
  1169. package/node_modules/@vitest/ui/dist/client/assets/index-fUmMsp0O.css +1 -0
  1170. package/node_modules/@vitest/ui/dist/client/bg.png +0 -0
  1171. package/node_modules/@vitest/ui/dist/client/favicon.svg +5 -0
  1172. package/node_modules/@vitest/ui/dist/client/index.html +26 -0
  1173. package/node_modules/@vitest/ui/dist/index.d.ts +6 -0
  1174. package/node_modules/@vitest/ui/dist/index.js +70 -0
  1175. package/node_modules/@vitest/ui/dist/reporter.js +109 -0
  1176. package/node_modules/@vitest/ui/package.json +89 -0
  1177. package/node_modules/@vitest/ui/reporter.d.ts +4 -0
  1178. package/node_modules/@vitest/ui/shim.d.ts +3 -0
  1179. package/package.json +13 -2
  1180. package/pnpm-lock.yaml +6986 -0
  1181. package/resources/tictoccroc/icons/colorLine/calendar-color-line.svg +4 -0
  1182. package/resources/tictoccroc/icons/colorLine/capacity-color-line.svg +6 -0
  1183. package/resources/tictoccroc/icons/colorLine/goods-color-line.svg +4 -0
  1184. package/resources/tictoccroc/icons/colorLine/index.ts +5 -0
  1185. package/resources/tictoccroc/icons/colorLine/kids-color-line.svg +5 -0
  1186. package/resources/tictoccroc/icons/colorLine/time-color-line.svg +4 -0
  1187. package/resources/tictoccroc/icons/emoji/average-plane-emoji.svg +13 -0
  1188. package/resources/tictoccroc/icons/emoji/excellent-plane-emoji.svg +13 -0
  1189. package/resources/tictoccroc/icons/emoji/good-plane-emoji.svg +13 -0
  1190. package/resources/tictoccroc/icons/emoji/index.ts +3 -0
  1191. package/resources/tictoccroc/icons/etc/cash-etc.svg +5 -0
  1192. package/resources/tictoccroc/icons/etc/check-etc.svg +4 -0
  1193. package/resources/tictoccroc/icons/etc/coupon-etc.svg +16 -0
  1194. package/resources/tictoccroc/icons/etc/index.ts +5 -0
  1195. package/resources/tictoccroc/icons/etc/point-etc.svg +5 -0
  1196. package/resources/tictoccroc/icons/etc/unscheduled-etc.svg +19 -0
  1197. package/resources/tictoccroc/icons/fill/alert-fill.svg +3 -0
  1198. package/resources/tictoccroc/icons/fill/alphabet-fill.svg +4 -0
  1199. package/resources/tictoccroc/icons/fill/apply-fill.svg +3 -0
  1200. package/resources/tictoccroc/icons/fill/arrow-down-fill.svg +3 -0
  1201. package/resources/tictoccroc/icons/fill/arrow-left-fill.svg +3 -0
  1202. package/resources/tictoccroc/icons/fill/arrow-right-fill.svg +3 -0
  1203. package/resources/tictoccroc/icons/fill/arrow-up-fill.svg +3 -0
  1204. package/resources/tictoccroc/icons/fill/certified-fill.svg +3 -0
  1205. package/resources/tictoccroc/icons/fill/chatting-fill.svg +3 -0
  1206. package/resources/tictoccroc/icons/fill/check-fill.svg +3 -0
  1207. package/resources/tictoccroc/icons/fill/clr-fill.svg +3 -0
  1208. package/resources/tictoccroc/icons/fill/complete-fill.svg +3 -0
  1209. package/resources/tictoccroc/icons/fill/home-fill.svg +3 -0
  1210. package/resources/tictoccroc/icons/fill/index.ts +26 -0
  1211. package/resources/tictoccroc/icons/fill/info-fill.svg +3 -0
  1212. package/resources/tictoccroc/icons/fill/invalid-fill.svg +3 -0
  1213. package/resources/tictoccroc/icons/fill/like-fill.svg +4 -0
  1214. package/resources/tictoccroc/icons/fill/location-fill.svg +3 -0
  1215. package/resources/tictoccroc/icons/fill/met-fill.svg +3 -0
  1216. package/resources/tictoccroc/icons/fill/ongoing-fill.svg +3 -0
  1217. package/resources/tictoccroc/icons/fill/review-fill.svg +3 -0
  1218. package/resources/tictoccroc/icons/fill/schedule-fill.svg +3 -0
  1219. package/resources/tictoccroc/icons/fill/search-fill.svg +3 -0
  1220. package/resources/tictoccroc/icons/fill/send-fill.svg +3 -0
  1221. package/resources/tictoccroc/icons/fill/time-fill.svg +3 -0
  1222. package/resources/tictoccroc/icons/fill/tooltip-fill.svg +3 -0
  1223. package/resources/tictoccroc/icons/fill/user-fill.svg +4 -0
  1224. package/resources/tictoccroc/icons/index.ts +5 -0
  1225. package/resources/tictoccroc/icons/line/alarm-line.svg +4 -0
  1226. package/resources/tictoccroc/icons/line/align-edit.svg +5 -0
  1227. package/resources/tictoccroc/icons/line/align-line.svg +4 -0
  1228. package/resources/tictoccroc/icons/line/apply-line.svg +7 -0
  1229. package/resources/tictoccroc/icons/line/archive-line.svg +3 -0
  1230. package/resources/tictoccroc/icons/line/arrow-back-line.svg +3 -0
  1231. package/resources/tictoccroc/icons/line/arrow-downward-line.svg +3 -0
  1232. package/resources/tictoccroc/icons/line/arrow-forward-line.svg +3 -0
  1233. package/resources/tictoccroc/icons/line/arrow-upward-line.svg +3 -0
  1234. package/resources/tictoccroc/icons/line/attach-line.svg +3 -0
  1235. package/resources/tictoccroc/icons/line/ban-line.svg +3 -0
  1236. package/resources/tictoccroc/icons/line/browser-line.svg +6 -0
  1237. package/resources/tictoccroc/icons/line/calendar-line.svg +3 -0
  1238. package/resources/tictoccroc/icons/line/call-line.svg +3 -0
  1239. package/resources/tictoccroc/icons/line/camera-line.svg +5 -0
  1240. package/resources/tictoccroc/icons/line/card-line.svg +3 -0
  1241. package/resources/tictoccroc/icons/line/cash-line.svg +4 -0
  1242. package/resources/tictoccroc/icons/line/certificate-line.svg +3 -0
  1243. package/resources/tictoccroc/icons/line/chat-line.svg +3 -0
  1244. package/resources/tictoccroc/icons/line/chatting-line.svg +7 -0
  1245. package/resources/tictoccroc/icons/line/check-line.svg +3 -0
  1246. package/resources/tictoccroc/icons/line/chevron-down-line.svg +3 -0
  1247. package/resources/tictoccroc/icons/line/chevron-left-line.svg +3 -0
  1248. package/resources/tictoccroc/icons/line/chevron-right-line.svg +3 -0
  1249. package/resources/tictoccroc/icons/line/chevron-up-line.svg +3 -0
  1250. package/resources/tictoccroc/icons/line/close-line.svg +3 -0
  1251. package/resources/tictoccroc/icons/line/copy-line.svg +3 -0
  1252. package/resources/tictoccroc/icons/line/delete-line.svg +6 -0
  1253. package/resources/tictoccroc/icons/line/download-line.svg +4 -0
  1254. package/resources/tictoccroc/icons/line/eye-invisible-line.svg +7 -0
  1255. package/resources/tictoccroc/icons/line/eye-visible-line.svg +3 -0
  1256. package/resources/tictoccroc/icons/line/filter-line.svg +5 -0
  1257. package/resources/tictoccroc/icons/line/fullview-line.svg +6 -0
  1258. package/resources/tictoccroc/icons/line/goods-line.svg +3 -0
  1259. package/resources/tictoccroc/icons/line/hamburger-line.svg +3 -0
  1260. package/resources/tictoccroc/icons/line/headphone-line.svg +3 -0
  1261. package/resources/tictoccroc/icons/line/home-line.svg +4 -0
  1262. package/resources/tictoccroc/icons/line/img-disable-line.svg +3 -0
  1263. package/resources/tictoccroc/icons/line/img-line.svg +4 -0
  1264. package/resources/tictoccroc/icons/line/index.ts +78 -0
  1265. package/resources/tictoccroc/icons/line/information-line.svg +4 -0
  1266. package/resources/tictoccroc/icons/line/instagram-line.svg +5 -0
  1267. package/resources/tictoccroc/icons/line/insurance-line.svg +4 -0
  1268. package/resources/tictoccroc/icons/line/kids-line.svg +6 -0
  1269. package/resources/tictoccroc/icons/line/like-line.svg +4 -0
  1270. package/resources/tictoccroc/icons/line/link-line.svg +5 -0
  1271. package/resources/tictoccroc/icons/line/list-line.svg +8 -0
  1272. package/resources/tictoccroc/icons/line/location-line.svg +4 -0
  1273. package/resources/tictoccroc/icons/line/match-type-line.svg +4 -0
  1274. package/resources/tictoccroc/icons/line/met-line.svg +4 -0
  1275. package/resources/tictoccroc/icons/line/minus-line.svg +3 -0
  1276. package/resources/tictoccroc/icons/line/mobile-line.svg +4 -0
  1277. package/resources/tictoccroc/icons/line/modify-line.svg +4 -0
  1278. package/resources/tictoccroc/icons/line/money-line.svg +4 -0
  1279. package/resources/tictoccroc/icons/line/monthly-line.svg +14 -0
  1280. package/resources/tictoccroc/icons/line/more-line.svg +6 -0
  1281. package/resources/tictoccroc/icons/line/parking-line.svg +5 -0
  1282. package/resources/tictoccroc/icons/line/plus-line.svg +3 -0
  1283. package/resources/tictoccroc/icons/line/receipt-line.svg +5 -0
  1284. package/resources/tictoccroc/icons/line/reset-line.svg +3 -0
  1285. package/resources/tictoccroc/icons/line/review-line.svg +3 -0
  1286. package/resources/tictoccroc/icons/line/schedule-line.svg +13 -0
  1287. package/resources/tictoccroc/icons/line/search-line.svg +3 -0
  1288. package/resources/tictoccroc/icons/line/setting-line.svg +4 -0
  1289. package/resources/tictoccroc/icons/line/share-line.svg +5 -0
  1290. package/resources/tictoccroc/icons/line/sms-line.svg +4 -0
  1291. package/resources/tictoccroc/icons/line/sound-line.svg +5 -0
  1292. package/resources/tictoccroc/icons/line/sound-off-line.svg +4 -0
  1293. package/resources/tictoccroc/icons/line/special-line.svg +4 -0
  1294. package/resources/tictoccroc/icons/line/time-line.svg +4 -0
  1295. package/resources/tictoccroc/icons/line/toy-line.svg +3 -0
  1296. package/resources/tictoccroc/icons/line/university-line.svg +3 -0
  1297. package/resources/tictoccroc/icons/line/upload-line.svg +4 -0
  1298. package/resources/tictoccroc/icons/line/user-line.svg +6 -0
  1299. package/resources/tictoccroc/icons/line/video-camera-line.svg +4 -0
  1300. package/resources/tictoccroc/icons/line/warning1-line.svg +5 -0
  1301. package/resources/tictoccroc/icons/line/warning2-line.svg +4 -0
  1302. package/resources/tictoccroc/icons/line/weekly-line.svg +7 -0
  1303. package/resources/tictoccroc/icons/line/wifi-line.svg +6 -0
  1304. package/stories/Introduction.mdx +113 -0
  1305. package/stories/foundations/tictoccroc-parent.mdx +189 -0
  1306. package/stories/foundations/tictoccroc-teacher.mdx +189 -0
  1307. package/themes/tictoccroc/colors/background.ts +9 -0
  1308. package/themes/tictoccroc/colors/blue.ts +16 -0
  1309. package/themes/tictoccroc/colors/classType.ts +12 -0
  1310. package/themes/tictoccroc/colors/etc.ts +12 -0
  1311. package/themes/tictoccroc/colors/green.ts +16 -0
  1312. package/themes/tictoccroc/colors/grey.ts +18 -0
  1313. package/themes/tictoccroc/colors/index.ts +8 -0
  1314. package/themes/tictoccroc/colors/pink.ts +16 -0
  1315. package/themes/tictoccroc/colors/yellow.ts +16 -0
  1316. package/themes/tictoccroc/index.ts +5 -0
  1317. package/themes/tictoccroc/parentLight.ts +65 -0
  1318. package/themes/tictoccroc/teacherLight.ts +65 -0
  1319. package/themes/tictoccroc/typography/body.ts +76 -0
  1320. package/themes/tictoccroc/typography/caption.ts +111 -0
  1321. package/themes/tictoccroc/typography/display.ts +90 -0
  1322. package/themes/tictoccroc/typography/headline.ts +132 -0
  1323. package/themes/tictoccroc/typography/index.ts +4 -0
  1324. package/tsconfig.json +32 -0
  1325. package/typings/color.ts +37 -0
  1326. package/typings/component.ts +59 -0
  1327. package/typings/index.ts +7 -0
  1328. package/typings/theme/core.ts +72 -0
  1329. package/typings/theme/tictoccroc.ts +29 -0
  1330. package/typings/typography.ts +30 -0
  1331. package/typings/utility.ts +20 -0
  1332. package/utils/convertNumberToCSSValue.ts +12 -0
  1333. package/utils/debounce/debounce.ts +17 -0
  1334. package/utils/getContrastRatio/getContrastRatio.test.ts +19 -0
  1335. package/utils/getContrastRatio/getContrastRatio.ts +12 -0
  1336. package/utils/getContrastingTextColor/getContrastingTextColor.test.ts +27 -0
  1337. package/utils/getContrastingTextColor/getContrastingTextColor.ts +33 -0
  1338. package/utils/getIconLabel/getIconLabel.ts +128 -0
  1339. package/utils/getInterpolation/getInterpolation.ts +16 -0
  1340. package/utils/getPaletteColor/getPaletteColor.test.ts +26 -0
  1341. package/utils/getPaletteColor/getPaletteColor.ts +71 -0
  1342. package/utils/getRelativeLuminance/getRelativeLuminance.test.ts +23 -0
  1343. package/utils/getRelativeLuminance/getRelativeLuminance.ts +7 -0
  1344. package/utils/getSibling/getSibling.ts +27 -0
  1345. package/utils/hexToRgb/hexToRgb.test.ts +28 -0
  1346. package/utils/hexToRgb/hexToRgb.ts +15 -0
  1347. package/vite.config.mts +196 -0
  1348. package/vitest.setup.ts +7 -0
  1349. package/DatePicker/DatePicker.cjs +0 -100
  1350. package/DatePicker/DatePicker.d.ts +0 -26
  1351. package/DatePicker/DatePicker.es.js +0 -800
  1352. package/Icon/Icon.cjs +0 -5
  1353. package/Icon/Icon.es.js +0 -82
  1354. package/Tab/Tab.cjs +0 -18
  1355. package/Tab/Tab.es.js +0 -183
  1356. package/index.cjs +0 -1
  1357. package/index.d.ts +0 -38
  1358. package/index.es.js +0 -105
  1359. package/resources/tictoccroc/icons/index.ts-DI_CztBn.cjs +0 -1
  1360. package/resources/tictoccroc/icons/index.ts-Dt89JG4Z.js +0 -236
  1361. package/resources/tictoccroc/icons/line/index.d.ts +0 -76
  1362. package/themes/tictoccroc/colors/green.cjs +0 -1
  1363. package/themes/tictoccroc/colors/green.es.js +0 -15
  1364. package/utils/getIconLabel/getIconLabel.cjs +0 -1
  1365. package/utils/getIconLabel/getIconLabel.es.js +0 -123
  1366. /package/{Accordion → dist/Accordion}/Accordion.cjs +0 -0
  1367. /package/{Accordion → dist/Accordion}/Accordion.d.ts +0 -0
  1368. /package/{Accordion → dist/Accordion}/Accordion.es.js +0 -0
  1369. /package/{Accordion → dist/Accordion}/Accordion.stories.d.ts +0 -0
  1370. /package/{Accordion → dist/Accordion}/index.cjs +0 -0
  1371. /package/{Accordion → dist/Accordion}/index.d.ts +0 -0
  1372. /package/{Accordion → dist/Accordion}/index.es.js +0 -0
  1373. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.cjs +0 -0
  1374. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.d.ts +0 -0
  1375. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.es.js +0 -0
  1376. /package/{Autocomplete → dist/Autocomplete}/Autocomplete.stories.d.ts +0 -0
  1377. /package/{Autocomplete → dist/Autocomplete}/index.cjs +0 -0
  1378. /package/{Autocomplete → dist/Autocomplete}/index.d.ts +0 -0
  1379. /package/{Autocomplete → dist/Autocomplete}/index.es.js +0 -0
  1380. /package/{Backdrop → dist/Backdrop}/Backdrop.cjs +0 -0
  1381. /package/{Backdrop → dist/Backdrop}/Backdrop.d.ts +0 -0
  1382. /package/{Backdrop → dist/Backdrop}/Backdrop.es.js +0 -0
  1383. /package/{Backdrop → dist/Backdrop}/Backdrop.stories.d.ts +0 -0
  1384. /package/{Backdrop → dist/Backdrop}/index.cjs +0 -0
  1385. /package/{Backdrop → dist/Backdrop}/index.d.ts +0 -0
  1386. /package/{Backdrop → dist/Backdrop}/index.es.js +0 -0
  1387. /package/{Badge → dist/Badge}/Badge.cjs +0 -0
  1388. /package/{Badge → dist/Badge}/Badge.d.ts +0 -0
  1389. /package/{Badge → dist/Badge}/Badge.es.js +0 -0
  1390. /package/{Badge → dist/Badge}/Badge.stories.d.ts +0 -0
  1391. /package/{Badge → dist/Badge}/index.cjs +0 -0
  1392. /package/{Badge → dist/Badge}/index.d.ts +0 -0
  1393. /package/{Badge → dist/Badge}/index.es.js +0 -0
  1394. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.cjs +0 -0
  1395. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.d.ts +0 -0
  1396. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.es.js +0 -0
  1397. /package/{BottomSheet → dist/BottomSheet}/BottomSheet.stories.d.ts +0 -0
  1398. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/BottomSheetAction.cjs +0 -0
  1399. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/BottomSheetAction.d.ts +0 -0
  1400. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/BottomSheetAction.es.js +0 -0
  1401. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/index.cjs +0 -0
  1402. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/index.d.ts +0 -0
  1403. /package/{BottomSheet → dist/BottomSheet}/BottomSheetAction/index.es.js +0 -0
  1404. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/BottomSheetContent.cjs +0 -0
  1405. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/BottomSheetContent.d.ts +0 -0
  1406. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/BottomSheetContent.es.js +0 -0
  1407. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/index.cjs +0 -0
  1408. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/index.d.ts +0 -0
  1409. /package/{BottomSheet → dist/BottomSheet}/BottomSheetContent/index.es.js +0 -0
  1410. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/BottomSheetText.cjs +0 -0
  1411. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/BottomSheetText.d.ts +0 -0
  1412. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/BottomSheetText.es.js +0 -0
  1413. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/index.cjs +0 -0
  1414. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/index.d.ts +0 -0
  1415. /package/{BottomSheet → dist/BottomSheet}/BottomSheetText/index.es.js +0 -0
  1416. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/BottomSheetTitle.cjs +0 -0
  1417. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/BottomSheetTitle.d.ts +0 -0
  1418. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/BottomSheetTitle.es.js +0 -0
  1419. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/index.cjs +0 -0
  1420. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/index.d.ts +0 -0
  1421. /package/{BottomSheet → dist/BottomSheet}/BottomSheetTitle/index.es.js +0 -0
  1422. /package/{BottomSheet → dist/BottomSheet}/index.cjs +0 -0
  1423. /package/{BottomSheet → dist/BottomSheet}/index.d.ts +0 -0
  1424. /package/{BottomSheet → dist/BottomSheet}/index.es.js +0 -0
  1425. /package/{Box → dist/Box}/Box.cjs +0 -0
  1426. /package/{Box → dist/Box}/Box.d.ts +0 -0
  1427. /package/{Box → dist/Box}/Box.es.js +0 -0
  1428. /package/{Box → dist/Box}/Box.stories.d.ts +0 -0
  1429. /package/{Box → dist/Box}/index.cjs +0 -0
  1430. /package/{Box → dist/Box}/index.d.ts +0 -0
  1431. /package/{Box → dist/Box}/index.es.js +0 -0
  1432. /package/{Button → dist/Button}/Button.cjs +0 -0
  1433. /package/{Button → dist/Button}/Button.d.ts +0 -0
  1434. /package/{Button → dist/Button}/Button.es.js +0 -0
  1435. /package/{Button → dist/Button}/Button.stories.d.ts +0 -0
  1436. /package/{Button → dist/Button}/index.cjs +0 -0
  1437. /package/{Button → dist/Button}/index.d.ts +0 -0
  1438. /package/{Button → dist/Button}/index.es.js +0 -0
  1439. /package/{Card → dist/Card}/Card.cjs +0 -0
  1440. /package/{Card → dist/Card}/Card.d.ts +0 -0
  1441. /package/{Card → dist/Card}/Card.es.js +0 -0
  1442. /package/{Card → dist/Card}/Card.stories.d.ts +0 -0
  1443. /package/{Card → dist/Card}/index.cjs +0 -0
  1444. /package/{Card → dist/Card}/index.d.ts +0 -0
  1445. /package/{Card → dist/Card}/index.es.js +0 -0
  1446. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.cjs +0 -0
  1447. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.d.ts +0 -0
  1448. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.es.js +0 -0
  1449. /package/{ChainPicker → dist/ChainPicker}/ChainPicker.stories.d.ts +0 -0
  1450. /package/{ChainPicker → dist/ChainPicker}/index.cjs +0 -0
  1451. /package/{ChainPicker → dist/ChainPicker}/index.d.ts +0 -0
  1452. /package/{ChainPicker → dist/ChainPicker}/index.es.js +0 -0
  1453. /package/{Checkbox → dist/Checkbox}/Checkbox.cjs +0 -0
  1454. /package/{Checkbox → dist/Checkbox}/Checkbox.d.ts +0 -0
  1455. /package/{Checkbox → dist/Checkbox}/Checkbox.es.js +0 -0
  1456. /package/{Checkbox → dist/Checkbox}/Checkbox.stories.d.ts +0 -0
  1457. /package/{Checkbox → dist/Checkbox}/index.cjs +0 -0
  1458. /package/{Checkbox → dist/Checkbox}/index.d.ts +0 -0
  1459. /package/{Checkbox → dist/Checkbox}/index.es.js +0 -0
  1460. /package/{Chip → dist/Chip}/Chip.cjs +0 -0
  1461. /package/{Chip → dist/Chip}/Chip.d.ts +0 -0
  1462. /package/{Chip → dist/Chip}/Chip.es.js +0 -0
  1463. /package/{Chip → dist/Chip}/Chip.stories.d.ts +0 -0
  1464. /package/{Chip → dist/Chip}/index.cjs +0 -0
  1465. /package/{Chip → dist/Chip}/index.d.ts +0 -0
  1466. /package/{Chip → dist/Chip}/index.es.js +0 -0
  1467. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.cjs +0 -0
  1468. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.d.ts +0 -0
  1469. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.es.js +0 -0
  1470. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/CircularProgressIndicator.stories.d.ts +0 -0
  1471. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/index.cjs +0 -0
  1472. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/index.d.ts +0 -0
  1473. /package/{CircularProgressIndicator → dist/CircularProgressIndicator}/index.es.js +0 -0
  1474. /package/{ClickAwayListener → dist/ClickAwayListener}/ClickAwayListener.cjs +0 -0
  1475. /package/{ClickAwayListener → dist/ClickAwayListener}/ClickAwayListener.d.ts +0 -0
  1476. /package/{ClickAwayListener → dist/ClickAwayListener}/ClickAwayListener.es.js +0 -0
  1477. /package/{ClickAwayListener → dist/ClickAwayListener}/index.cjs +0 -0
  1478. /package/{ClickAwayListener → dist/ClickAwayListener}/index.d.ts +0 -0
  1479. /package/{ClickAwayListener → dist/ClickAwayListener}/index.es.js +0 -0
  1480. /package/{DatePicker → dist/DatePicker}/DatePicker.stories.d.ts +0 -0
  1481. /package/{DatePicker → dist/DatePicker}/EventDot/EventDot.cjs +0 -0
  1482. /package/{DatePicker → dist/DatePicker}/EventDot/EventDot.d.ts +0 -0
  1483. /package/{DatePicker → dist/DatePicker}/EventDot/EventDot.es.js +0 -0
  1484. /package/{DatePicker → dist/DatePicker}/EventDot/index.cjs +0 -0
  1485. /package/{DatePicker → dist/DatePicker}/EventDot/index.d.ts +0 -0
  1486. /package/{DatePicker → dist/DatePicker}/EventDot/index.es.js +0 -0
  1487. /package/{DatePicker → dist/DatePicker}/EventDotGroup/EventDotGroup.cjs +0 -0
  1488. /package/{DatePicker → dist/DatePicker}/EventDotGroup/EventDotGroup.d.ts +0 -0
  1489. /package/{DatePicker → dist/DatePicker}/EventDotGroup/EventDotGroup.es.js +0 -0
  1490. /package/{DatePicker → dist/DatePicker}/EventDotGroup/index.cjs +0 -0
  1491. /package/{DatePicker → dist/DatePicker}/EventDotGroup/index.d.ts +0 -0
  1492. /package/{DatePicker → dist/DatePicker}/EventDotGroup/index.es.js +0 -0
  1493. /package/{DatePicker → dist/DatePicker}/index.cjs +0 -0
  1494. /package/{DatePicker → dist/DatePicker}/index.d.ts +0 -0
  1495. /package/{DatePicker → dist/DatePicker}/index.es.js +0 -0
  1496. /package/{Dialog → dist/Dialog}/Dialog.cjs +0 -0
  1497. /package/{Dialog → dist/Dialog}/Dialog.d.ts +0 -0
  1498. /package/{Dialog → dist/Dialog}/Dialog.es.js +0 -0
  1499. /package/{Dialog → dist/Dialog}/Dialog.stories.d.ts +0 -0
  1500. /package/{Dialog → dist/Dialog}/DialogAction/DialogAction.cjs +0 -0
  1501. /package/{Dialog → dist/Dialog}/DialogAction/DialogAction.d.ts +0 -0
  1502. /package/{Dialog → dist/Dialog}/DialogAction/DialogAction.es.js +0 -0
  1503. /package/{Dialog → dist/Dialog}/DialogAction/index.cjs +0 -0
  1504. /package/{Dialog → dist/Dialog}/DialogAction/index.d.ts +0 -0
  1505. /package/{Dialog → dist/Dialog}/DialogAction/index.es.js +0 -0
  1506. /package/{Dialog → dist/Dialog}/DialogContent/DialogContent.cjs +0 -0
  1507. /package/{Dialog → dist/Dialog}/DialogContent/DialogContent.d.ts +0 -0
  1508. /package/{Dialog → dist/Dialog}/DialogContent/DialogContent.es.js +0 -0
  1509. /package/{Dialog → dist/Dialog}/DialogContent/index.cjs +0 -0
  1510. /package/{Dialog → dist/Dialog}/DialogContent/index.d.ts +0 -0
  1511. /package/{Dialog → dist/Dialog}/DialogContent/index.es.js +0 -0
  1512. /package/{Dialog → dist/Dialog}/DialogText/DialogText.cjs +0 -0
  1513. /package/{Dialog → dist/Dialog}/DialogText/DialogText.d.ts +0 -0
  1514. /package/{Dialog → dist/Dialog}/DialogText/DialogText.es.js +0 -0
  1515. /package/{Dialog → dist/Dialog}/DialogText/index.cjs +0 -0
  1516. /package/{Dialog → dist/Dialog}/DialogText/index.d.ts +0 -0
  1517. /package/{Dialog → dist/Dialog}/DialogText/index.es.js +0 -0
  1518. /package/{Dialog → dist/Dialog}/DialogTitle/DialogTitle.cjs +0 -0
  1519. /package/{Dialog → dist/Dialog}/DialogTitle/DialogTitle.d.ts +0 -0
  1520. /package/{Dialog → dist/Dialog}/DialogTitle/DialogTitle.es.js +0 -0
  1521. /package/{Dialog → dist/Dialog}/DialogTitle/index.cjs +0 -0
  1522. /package/{Dialog → dist/Dialog}/DialogTitle/index.d.ts +0 -0
  1523. /package/{Dialog → dist/Dialog}/DialogTitle/index.es.js +0 -0
  1524. /package/{Dialog → dist/Dialog}/index.cjs +0 -0
  1525. /package/{Dialog → dist/Dialog}/index.d.ts +0 -0
  1526. /package/{Dialog → dist/Dialog}/index.es.js +0 -0
  1527. /package/{Flexbox → dist/Flexbox}/Flexbox.cjs +0 -0
  1528. /package/{Flexbox → dist/Flexbox}/Flexbox.d.ts +0 -0
  1529. /package/{Flexbox → dist/Flexbox}/Flexbox.es.js +0 -0
  1530. /package/{Flexbox → dist/Flexbox}/Flexbox.stories.d.ts +0 -0
  1531. /package/{Flexbox → dist/Flexbox}/index.cjs +0 -0
  1532. /package/{Flexbox → dist/Flexbox}/index.d.ts +0 -0
  1533. /package/{Flexbox → dist/Flexbox}/index.es.js +0 -0
  1534. /package/{FocusBoundary → dist/FocusBoundary}/FocusBoundary.cjs +0 -0
  1535. /package/{FocusBoundary → dist/FocusBoundary}/FocusBoundary.d.ts +0 -0
  1536. /package/{FocusBoundary → dist/FocusBoundary}/FocusBoundary.es.js +0 -0
  1537. /package/{FocusBoundary → dist/FocusBoundary}/index.cjs +0 -0
  1538. /package/{FocusBoundary → dist/FocusBoundary}/index.d.ts +0 -0
  1539. /package/{FocusBoundary → dist/FocusBoundary}/index.es.js +0 -0
  1540. /package/{FormControlText → dist/FormControlText}/FormControlText.cjs +0 -0
  1541. /package/{FormControlText → dist/FormControlText}/FormControlText.d.ts +0 -0
  1542. /package/{FormControlText → dist/FormControlText}/FormControlText.es.js +0 -0
  1543. /package/{FormControlText → dist/FormControlText}/FormControlText.stories.d.ts +0 -0
  1544. /package/{FormControlText → dist/FormControlText}/index.cjs +0 -0
  1545. /package/{FormControlText → dist/FormControlText}/index.d.ts +0 -0
  1546. /package/{FormControlText → dist/FormControlText}/index.es.js +0 -0
  1547. /package/{Icon → dist/Icon}/Icon.d.ts +0 -0
  1548. /package/{Icon → dist/Icon}/Icon.stories.d.ts +0 -0
  1549. /package/{Icon → dist/Icon}/index.cjs +0 -0
  1550. /package/{Icon → dist/Icon}/index.d.ts +0 -0
  1551. /package/{Icon → dist/Icon}/index.es.js +0 -0
  1552. /package/{IconButton → dist/IconButton}/IconButton.cjs +0 -0
  1553. /package/{IconButton → dist/IconButton}/IconButton.d.ts +0 -0
  1554. /package/{IconButton → dist/IconButton}/IconButton.es.js +0 -0
  1555. /package/{IconButton → dist/IconButton}/IconButton.stories.d.ts +0 -0
  1556. /package/{IconButton → dist/IconButton}/index.cjs +0 -0
  1557. /package/{IconButton → dist/IconButton}/index.d.ts +0 -0
  1558. /package/{IconButton → dist/IconButton}/index.es.js +0 -0
  1559. /package/{Label → dist/Label}/Label.cjs +0 -0
  1560. /package/{Label → dist/Label}/Label.d.ts +0 -0
  1561. /package/{Label → dist/Label}/Label.es.js +0 -0
  1562. /package/{Label → dist/Label}/Label.stories.d.ts +0 -0
  1563. /package/{Label → dist/Label}/index.cjs +0 -0
  1564. /package/{Label → dist/Label}/index.d.ts +0 -0
  1565. /package/{Label → dist/Label}/index.es.js +0 -0
  1566. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.cjs +0 -0
  1567. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.d.ts +0 -0
  1568. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.es.js +0 -0
  1569. /package/{LineProgressIndicator → dist/LineProgressIndicator}/LineProgressIndicator.stories.d.ts +0 -0
  1570. /package/{LineProgressIndicator → dist/LineProgressIndicator}/index.cjs +0 -0
  1571. /package/{LineProgressIndicator → dist/LineProgressIndicator}/index.d.ts +0 -0
  1572. /package/{LineProgressIndicator → dist/LineProgressIndicator}/index.es.js +0 -0
  1573. /package/{Menu → dist/Menu}/Menu.cjs +0 -0
  1574. /package/{Menu → dist/Menu}/Menu.d.ts +0 -0
  1575. /package/{Menu → dist/Menu}/Menu.es.js +0 -0
  1576. /package/{Menu → dist/Menu}/Menu.stories.d.ts +0 -0
  1577. /package/{Menu → dist/Menu}/MenuBlock/MenuBlock.cjs +0 -0
  1578. /package/{Menu → dist/Menu}/MenuBlock/MenuBlock.d.ts +0 -0
  1579. /package/{Menu → dist/Menu}/MenuBlock/MenuBlock.es.js +0 -0
  1580. /package/{Menu → dist/Menu}/MenuBlock/index.cjs +0 -0
  1581. /package/{Menu → dist/Menu}/MenuBlock/index.d.ts +0 -0
  1582. /package/{Menu → dist/Menu}/MenuBlock/index.es.js +0 -0
  1583. /package/{Menu → dist/Menu}/MenuButton/MenuButton.cjs +0 -0
  1584. /package/{Menu → dist/Menu}/MenuButton/MenuButton.d.ts +0 -0
  1585. /package/{Menu → dist/Menu}/MenuButton/MenuButton.es.js +0 -0
  1586. /package/{Menu → dist/Menu}/MenuButton/index.cjs +0 -0
  1587. /package/{Menu → dist/Menu}/MenuButton/index.d.ts +0 -0
  1588. /package/{Menu → dist/Menu}/MenuButton/index.es.js +0 -0
  1589. /package/{Menu → dist/Menu}/index.cjs +0 -0
  1590. /package/{Menu → dist/Menu}/index.d.ts +0 -0
  1591. /package/{Menu → dist/Menu}/index.es.js +0 -0
  1592. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.cjs +0 -0
  1593. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.d.ts +0 -0
  1594. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.es.js +0 -0
  1595. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypad.stories.d.ts +0 -0
  1596. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/NumberKeypadBlock.cjs +0 -0
  1597. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/NumberKeypadBlock.d.ts +0 -0
  1598. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/NumberKeypadBlock.es.js +0 -0
  1599. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/index.cjs +0 -0
  1600. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/index.d.ts +0 -0
  1601. /package/{NumberKeypad → dist/NumberKeypad}/NumberKeypadBlock/index.es.js +0 -0
  1602. /package/{NumberKeypad → dist/NumberKeypad}/index.cjs +0 -0
  1603. /package/{NumberKeypad → dist/NumberKeypad}/index.d.ts +0 -0
  1604. /package/{NumberKeypad → dist/NumberKeypad}/index.es.js +0 -0
  1605. /package/{PageControl → dist/PageControl}/PageControl.cjs +0 -0
  1606. /package/{PageControl → dist/PageControl}/PageControl.d.ts +0 -0
  1607. /package/{PageControl → dist/PageControl}/PageControl.es.js +0 -0
  1608. /package/{PageControl → dist/PageControl}/PageControl.stories.d.ts +0 -0
  1609. /package/{PageControl → dist/PageControl}/index.cjs +0 -0
  1610. /package/{PageControl → dist/PageControl}/index.d.ts +0 -0
  1611. /package/{PageControl → dist/PageControl}/index.es.js +0 -0
  1612. /package/{Radio → dist/Radio}/Radio.cjs +0 -0
  1613. /package/{Radio → dist/Radio}/Radio.d.ts +0 -0
  1614. /package/{Radio → dist/Radio}/Radio.es.js +0 -0
  1615. /package/{Radio → dist/Radio}/Radio.stories.d.ts +0 -0
  1616. /package/{Radio → dist/Radio}/index.cjs +0 -0
  1617. /package/{Radio → dist/Radio}/index.d.ts +0 -0
  1618. /package/{Radio → dist/Radio}/index.es.js +0 -0
  1619. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.cjs +0 -0
  1620. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.d.ts +0 -0
  1621. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.es.js +0 -0
  1622. /package/{RadioGroup → dist/RadioGroup}/RadioGroup.stories.d.ts +0 -0
  1623. /package/{RadioGroup → dist/RadioGroup}/index.cjs +0 -0
  1624. /package/{RadioGroup → dist/RadioGroup}/index.d.ts +0 -0
  1625. /package/{RadioGroup → dist/RadioGroup}/index.es.js +0 -0
  1626. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.cjs +0 -0
  1627. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.d.ts +0 -0
  1628. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.es.js +0 -0
  1629. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButton.stories.d.ts +0 -0
  1630. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/SegmentedButtonBlock.cjs +0 -0
  1631. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/SegmentedButtonBlock.d.ts +0 -0
  1632. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/SegmentedButtonBlock.es.js +0 -0
  1633. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/index.cjs +0 -0
  1634. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/index.d.ts +0 -0
  1635. /package/{SegmentedButton → dist/SegmentedButton}/SegmentedButtonBlock/index.es.js +0 -0
  1636. /package/{SegmentedButton → dist/SegmentedButton}/index.cjs +0 -0
  1637. /package/{SegmentedButton → dist/SegmentedButton}/index.d.ts +0 -0
  1638. /package/{SegmentedButton → dist/SegmentedButton}/index.es.js +0 -0
  1639. /package/{Select → dist/Select}/Option/Option.cjs +0 -0
  1640. /package/{Select → dist/Select}/Option/Option.d.ts +0 -0
  1641. /package/{Select → dist/Select}/Option/Option.es.js +0 -0
  1642. /package/{Select → dist/Select}/Option/index.cjs +0 -0
  1643. /package/{Select → dist/Select}/Option/index.d.ts +0 -0
  1644. /package/{Select → dist/Select}/Option/index.es.js +0 -0
  1645. /package/{Select → dist/Select}/Select.cjs +0 -0
  1646. /package/{Select → dist/Select}/Select.d.ts +0 -0
  1647. /package/{Select → dist/Select}/Select.es.js +0 -0
  1648. /package/{Select → dist/Select}/Select.stories.d.ts +0 -0
  1649. /package/{Select → dist/Select}/index.cjs +0 -0
  1650. /package/{Select → dist/Select}/index.d.ts +0 -0
  1651. /package/{Select → dist/Select}/index.es.js +0 -0
  1652. /package/{Skeleton → dist/Skeleton}/Skeleton.cjs +0 -0
  1653. /package/{Skeleton → dist/Skeleton}/Skeleton.d.ts +0 -0
  1654. /package/{Skeleton → dist/Skeleton}/Skeleton.es.js +0 -0
  1655. /package/{Skeleton → dist/Skeleton}/Skeleton.stories.d.ts +0 -0
  1656. /package/{Skeleton → dist/Skeleton}/index.cjs +0 -0
  1657. /package/{Skeleton → dist/Skeleton}/index.d.ts +0 -0
  1658. /package/{Skeleton → dist/Skeleton}/index.es.js +0 -0
  1659. /package/{Slider → dist/Slider}/Slider.cjs +0 -0
  1660. /package/{Slider → dist/Slider}/Slider.d.ts +0 -0
  1661. /package/{Slider → dist/Slider}/Slider.es.js +0 -0
  1662. /package/{Slider → dist/Slider}/Slider.stories.d.ts +0 -0
  1663. /package/{Slider → dist/Slider}/index.cjs +0 -0
  1664. /package/{Slider → dist/Slider}/index.d.ts +0 -0
  1665. /package/{Slider → dist/Slider}/index.es.js +0 -0
  1666. /package/{Snackbar → dist/Snackbar}/Snackbar.cjs +0 -0
  1667. /package/{Snackbar → dist/Snackbar}/Snackbar.d.ts +0 -0
  1668. /package/{Snackbar → dist/Snackbar}/Snackbar.es.js +0 -0
  1669. /package/{Snackbar → dist/Snackbar}/Snackbar.stories.d.ts +0 -0
  1670. /package/{Snackbar → dist/Snackbar}/index.cjs +0 -0
  1671. /package/{Snackbar → dist/Snackbar}/index.d.ts +0 -0
  1672. /package/{Snackbar → dist/Snackbar}/index.es.js +0 -0
  1673. /package/{Switch → dist/Switch}/Switch.cjs +0 -0
  1674. /package/{Switch → dist/Switch}/Switch.d.ts +0 -0
  1675. /package/{Switch → dist/Switch}/Switch.es.js +0 -0
  1676. /package/{Switch → dist/Switch}/Switch.stories.d.ts +0 -0
  1677. /package/{Switch → dist/Switch}/index.cjs +0 -0
  1678. /package/{Switch → dist/Switch}/index.d.ts +0 -0
  1679. /package/{Switch → dist/Switch}/index.es.js +0 -0
  1680. /package/{Tab → dist/Tab}/Tab.d.ts +0 -0
  1681. /package/{Tab → dist/Tab}/Tab.stories.d.ts +0 -0
  1682. /package/{Tab → dist/Tab}/TabBlock/TabBlock.cjs +0 -0
  1683. /package/{Tab → dist/Tab}/TabBlock/TabBlock.d.ts +0 -0
  1684. /package/{Tab → dist/Tab}/TabBlock/TabBlock.es.js +0 -0
  1685. /package/{Tab → dist/Tab}/TabBlock/index.cjs +0 -0
  1686. /package/{Tab → dist/Tab}/TabBlock/index.d.ts +0 -0
  1687. /package/{Tab → dist/Tab}/TabBlock/index.es.js +0 -0
  1688. /package/{Tab → dist/Tab}/index.cjs +0 -0
  1689. /package/{Tab → dist/Tab}/index.d.ts +0 -0
  1690. /package/{Tab → dist/Tab}/index.es.js +0 -0
  1691. /package/{TextArea → dist/TextArea}/TextArea.cjs +0 -0
  1692. /package/{TextArea → dist/TextArea}/TextArea.d.ts +0 -0
  1693. /package/{TextArea → dist/TextArea}/TextArea.es.js +0 -0
  1694. /package/{TextArea → dist/TextArea}/TextArea.stories.d.ts +0 -0
  1695. /package/{TextArea → dist/TextArea}/index.cjs +0 -0
  1696. /package/{TextArea → dist/TextArea}/index.d.ts +0 -0
  1697. /package/{TextArea → dist/TextArea}/index.es.js +0 -0
  1698. /package/{TextField → dist/TextField}/TextField.cjs +0 -0
  1699. /package/{TextField → dist/TextField}/TextField.d.ts +0 -0
  1700. /package/{TextField → dist/TextField}/TextField.es.js +0 -0
  1701. /package/{TextField → dist/TextField}/TextField.stories.d.ts +0 -0
  1702. /package/{TextField → dist/TextField}/index.cjs +0 -0
  1703. /package/{TextField → dist/TextField}/index.d.ts +0 -0
  1704. /package/{TextField → dist/TextField}/index.es.js +0 -0
  1705. /package/{Tooltip → dist/Tooltip}/Tooltip.cjs +0 -0
  1706. /package/{Tooltip → dist/Tooltip}/Tooltip.d.ts +0 -0
  1707. /package/{Tooltip → dist/Tooltip}/Tooltip.es.js +0 -0
  1708. /package/{Tooltip → dist/Tooltip}/Tooltip.stories.d.ts +0 -0
  1709. /package/{Tooltip → dist/Tooltip}/index.cjs +0 -0
  1710. /package/{Tooltip → dist/Tooltip}/index.d.ts +0 -0
  1711. /package/{Tooltip → dist/Tooltip}/index.es.js +0 -0
  1712. /package/{Typography → dist/Typography}/Typography.cjs +0 -0
  1713. /package/{Typography → dist/Typography}/Typography.d.ts +0 -0
  1714. /package/{Typography → dist/Typography}/Typography.es.js +0 -0
  1715. /package/{Typography → dist/Typography}/Typography.stories.d.ts +0 -0
  1716. /package/{Typography → dist/Typography}/index.cjs +0 -0
  1717. /package/{Typography → dist/Typography}/index.d.ts +0 -0
  1718. /package/{Typography → dist/Typography}/index.es.js +0 -0
  1719. /package/{core → dist/core}/GlobalStyle.cjs +0 -0
  1720. /package/{core → dist/core}/GlobalStyle.d.ts +0 -0
  1721. /package/{core → dist/core}/GlobalStyle.es.js +0 -0
  1722. /package/{core → dist/core}/ThemeContext.cjs +0 -0
  1723. /package/{core → dist/core}/ThemeContext.d.ts +0 -0
  1724. /package/{core → dist/core}/ThemeContext.es.js +0 -0
  1725. /package/{core → dist/core}/ThemeProvider.cjs +0 -0
  1726. /package/{core → dist/core}/ThemeProvider.d.ts +0 -0
  1727. /package/{core → dist/core}/ThemeProvider.es.js +0 -0
  1728. /package/{core → dist/core}/useTheme.cjs +0 -0
  1729. /package/{core → dist/core}/useTheme.d.ts +0 -0
  1730. /package/{core → dist/core}/useTheme.es.js +0 -0
  1731. /package/{hooks → dist/hooks}/index.cjs +0 -0
  1732. /package/{hooks → dist/hooks}/index.d.ts +0 -0
  1733. /package/{hooks → dist/hooks}/index.es.js +0 -0
  1734. /package/{hooks → dist/hooks}/useCheckHasFocus/useCheckHasFocus.cjs +0 -0
  1735. /package/{hooks → dist/hooks}/useCheckHasFocus/useCheckHasFocus.d.ts +0 -0
  1736. /package/{hooks → dist/hooks}/useCheckHasFocus/useCheckHasFocus.es.js +0 -0
  1737. /package/{hooks → dist/hooks}/useCheckHoverPossible/useCheckHoverPossible.cjs +0 -0
  1738. /package/{hooks → dist/hooks}/useCheckHoverPossible/useCheckHoverPossible.d.ts +0 -0
  1739. /package/{hooks → dist/hooks}/useCheckHoverPossible/useCheckHoverPossible.es.js +0 -0
  1740. /package/{hooks → dist/hooks}/useCheckKeyboardMode/useCheckKeyboardMode.cjs +0 -0
  1741. /package/{hooks → dist/hooks}/useCheckKeyboardMode/useCheckKeyboardMode.d.ts +0 -0
  1742. /package/{hooks → dist/hooks}/useCheckKeyboardMode/useCheckKeyboardMode.es.js +0 -0
  1743. /package/{hooks → dist/hooks}/useFocusBoundary/useFocusBoundary.cjs +0 -0
  1744. /package/{hooks → dist/hooks}/useFocusBoundary/useFocusBoundary.d.ts +0 -0
  1745. /package/{hooks → dist/hooks}/useFocusBoundary/useFocusBoundary.es.js +0 -0
  1746. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/calendar-color-line.svg-B_vYjqIZ.js +0 -0
  1747. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/calendar-color-line.svg-BtUQ4TKP.cjs +0 -0
  1748. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/capacity-color-line.svg-BQo3SZhS.cjs +0 -0
  1749. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/capacity-color-line.svg-oT5B8THh.js +0 -0
  1750. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/goods-color-line.svg-CT8jVC5v.js +0 -0
  1751. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/goods-color-line.svg-Dz9RB5RV.cjs +0 -0
  1752. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/index.d.ts +0 -0
  1753. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/index.ts-Dyvby5gX.cjs +0 -0
  1754. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/index.ts-l0sNRNKZ.js +0 -0
  1755. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/kids-color-line.svg-BF7M2ymg.cjs +0 -0
  1756. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/kids-color-line.svg-CZDUwvTf.js +0 -0
  1757. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/time-color-line.svg-K7igWiF7.js +0 -0
  1758. /package/{resources → dist/resources}/tictoccroc/icons/colorLine/time-color-line.svg-lvcsdtRd.cjs +0 -0
  1759. /package/{resources → dist/resources}/tictoccroc/icons/emoji/average-plane-emoji.svg-1B3oSCfr.js +0 -0
  1760. /package/{resources → dist/resources}/tictoccroc/icons/emoji/average-plane-emoji.svg-Ddpo9mEE.cjs +0 -0
  1761. /package/{resources → dist/resources}/tictoccroc/icons/emoji/excellent-plane-emoji.svg-Bq_nM8Tm.js +0 -0
  1762. /package/{resources → dist/resources}/tictoccroc/icons/emoji/excellent-plane-emoji.svg-CSFc2vsd.cjs +0 -0
  1763. /package/{resources → dist/resources}/tictoccroc/icons/emoji/good-plane-emoji.svg-BShQn-co.cjs +0 -0
  1764. /package/{resources → dist/resources}/tictoccroc/icons/emoji/good-plane-emoji.svg-Bve6hTZH.js +0 -0
  1765. /package/{resources → dist/resources}/tictoccroc/icons/emoji/index.d.ts +0 -0
  1766. /package/{resources → dist/resources}/tictoccroc/icons/emoji/index.ts-Dyvby5gX.cjs +0 -0
  1767. /package/{resources → dist/resources}/tictoccroc/icons/emoji/index.ts-l0sNRNKZ.js +0 -0
  1768. /package/{resources → dist/resources}/tictoccroc/icons/etc/cash-etc.svg-BE9-4t5W.cjs +0 -0
  1769. /package/{resources → dist/resources}/tictoccroc/icons/etc/cash-etc.svg-CvAOzEdq.js +0 -0
  1770. /package/{resources → dist/resources}/tictoccroc/icons/etc/check-etc.svg-6o7_QHlK.cjs +0 -0
  1771. /package/{resources → dist/resources}/tictoccroc/icons/etc/check-etc.svg-CeWjWVqv.js +0 -0
  1772. /package/{resources → dist/resources}/tictoccroc/icons/etc/coupon-etc.svg-BYpSMvLr.js +0 -0
  1773. /package/{resources → dist/resources}/tictoccroc/icons/etc/coupon-etc.svg-DB4JIfi8.cjs +0 -0
  1774. /package/{resources → dist/resources}/tictoccroc/icons/etc/index.d.ts +0 -0
  1775. /package/{resources → dist/resources}/tictoccroc/icons/etc/index.ts-Dyvby5gX.cjs +0 -0
  1776. /package/{resources → dist/resources}/tictoccroc/icons/etc/index.ts-l0sNRNKZ.js +0 -0
  1777. /package/{resources → dist/resources}/tictoccroc/icons/etc/point-etc.svg-CAEUCvfM.cjs +0 -0
  1778. /package/{resources → dist/resources}/tictoccroc/icons/etc/point-etc.svg-DZ31KNBj.js +0 -0
  1779. /package/{resources → dist/resources}/tictoccroc/icons/etc/unscheduled-etc.svg-C9TZ0hvI.js +0 -0
  1780. /package/{resources → dist/resources}/tictoccroc/icons/etc/unscheduled-etc.svg-D-47KeXg.cjs +0 -0
  1781. /package/{resources → dist/resources}/tictoccroc/icons/fill/alert-fill.svg-BJrM_goo.js +0 -0
  1782. /package/{resources → dist/resources}/tictoccroc/icons/fill/alert-fill.svg-C8QjfUUX.cjs +0 -0
  1783. /package/{resources → dist/resources}/tictoccroc/icons/fill/alphabet-fill.svg-CvfRsdBW.js +0 -0
  1784. /package/{resources → dist/resources}/tictoccroc/icons/fill/alphabet-fill.svg-HBXWjzrC.cjs +0 -0
  1785. /package/{resources → dist/resources}/tictoccroc/icons/fill/apply-fill.svg-CmRhMN1w.js +0 -0
  1786. /package/{resources → dist/resources}/tictoccroc/icons/fill/apply-fill.svg-DRpGrJGw.cjs +0 -0
  1787. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-down-fill.svg-C30f0N0F.js +0 -0
  1788. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-down-fill.svg-VKh4yV7q.cjs +0 -0
  1789. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-left-fill.svg-CdGognG9.js +0 -0
  1790. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-left-fill.svg-DVd7uVkk.cjs +0 -0
  1791. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-right-fill.svg-C3fI1iEy.js +0 -0
  1792. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-right-fill.svg-CkH6pq8F.cjs +0 -0
  1793. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-up-fill.svg-CEHHUpG_.js +0 -0
  1794. /package/{resources → dist/resources}/tictoccroc/icons/fill/arrow-up-fill.svg-DWbcv7JX.cjs +0 -0
  1795. /package/{resources → dist/resources}/tictoccroc/icons/fill/certified-fill.svg-DA375i9-.cjs +0 -0
  1796. /package/{resources → dist/resources}/tictoccroc/icons/fill/certified-fill.svg-DBC-EEKD.js +0 -0
  1797. /package/{resources → dist/resources}/tictoccroc/icons/fill/chatting-fill.svg-CVjv4Kr7.js +0 -0
  1798. /package/{resources → dist/resources}/tictoccroc/icons/fill/chatting-fill.svg-HaX5-_VL.cjs +0 -0
  1799. /package/{resources → dist/resources}/tictoccroc/icons/fill/check-fill.svg-0_5PrDLC.js +0 -0
  1800. /package/{resources → dist/resources}/tictoccroc/icons/fill/check-fill.svg-BKKTgIa3.cjs +0 -0
  1801. /package/{resources → dist/resources}/tictoccroc/icons/fill/clr-fill.svg-Cn-I8j7d.js +0 -0
  1802. /package/{resources → dist/resources}/tictoccroc/icons/fill/clr-fill.svg-DuLFHwKc.cjs +0 -0
  1803. /package/{resources → dist/resources}/tictoccroc/icons/fill/complete-fill.svg-DhQki4Tw.cjs +0 -0
  1804. /package/{resources → dist/resources}/tictoccroc/icons/fill/complete-fill.svg-cERkJmCb.js +0 -0
  1805. /package/{resources → dist/resources}/tictoccroc/icons/fill/home-fill.svg-CxFGWK0L.cjs +0 -0
  1806. /package/{resources → dist/resources}/tictoccroc/icons/fill/home-fill.svg-D3lzGMV2.js +0 -0
  1807. /package/{resources → dist/resources}/tictoccroc/icons/fill/index.d.ts +0 -0
  1808. /package/{resources → dist/resources}/tictoccroc/icons/fill/index.ts-Dyvby5gX.cjs +0 -0
  1809. /package/{resources → dist/resources}/tictoccroc/icons/fill/index.ts-l0sNRNKZ.js +0 -0
  1810. /package/{resources → dist/resources}/tictoccroc/icons/fill/info-fill.svg-CwgxQGwL.js +0 -0
  1811. /package/{resources → dist/resources}/tictoccroc/icons/fill/info-fill.svg-DkEX99Sy.cjs +0 -0
  1812. /package/{resources → dist/resources}/tictoccroc/icons/fill/invalid-fill.svg-CJJ-xmGJ.cjs +0 -0
  1813. /package/{resources → dist/resources}/tictoccroc/icons/fill/invalid-fill.svg-D-87fL2g.js +0 -0
  1814. /package/{resources → dist/resources}/tictoccroc/icons/fill/like-fill.svg-Cx1cz0ZV.js +0 -0
  1815. /package/{resources → dist/resources}/tictoccroc/icons/fill/like-fill.svg-DnL66ApL.cjs +0 -0
  1816. /package/{resources → dist/resources}/tictoccroc/icons/fill/location-fill.svg-DfSHAnsd.js +0 -0
  1817. /package/{resources → dist/resources}/tictoccroc/icons/fill/location-fill.svg-Die9mxQH.cjs +0 -0
  1818. /package/{resources → dist/resources}/tictoccroc/icons/fill/met-fill.svg-B09QdWd-.cjs +0 -0
  1819. /package/{resources → dist/resources}/tictoccroc/icons/fill/met-fill.svg-BYSmsKBw.js +0 -0
  1820. /package/{resources → dist/resources}/tictoccroc/icons/fill/ongoing-fill.svg-BWY0Pepo.js +0 -0
  1821. /package/{resources → dist/resources}/tictoccroc/icons/fill/ongoing-fill.svg-D9OuoEPD.cjs +0 -0
  1822. /package/{resources → dist/resources}/tictoccroc/icons/fill/review-fill.svg-C356jYYw.js +0 -0
  1823. /package/{resources → dist/resources}/tictoccroc/icons/fill/review-fill.svg-Ci8MN4eI.cjs +0 -0
  1824. /package/{resources → dist/resources}/tictoccroc/icons/fill/schedule-fill.svg-7tGjhrTb.cjs +0 -0
  1825. /package/{resources → dist/resources}/tictoccroc/icons/fill/schedule-fill.svg-BrKSb-wR.js +0 -0
  1826. /package/{resources → dist/resources}/tictoccroc/icons/fill/search-fill.svg-BvLNCg-N.cjs +0 -0
  1827. /package/{resources → dist/resources}/tictoccroc/icons/fill/search-fill.svg-DnxhncI6.js +0 -0
  1828. /package/{resources → dist/resources}/tictoccroc/icons/fill/send-fill.svg-CItD_2L1.js +0 -0
  1829. /package/{resources → dist/resources}/tictoccroc/icons/fill/send-fill.svg-D197Lwl0.cjs +0 -0
  1830. /package/{resources → dist/resources}/tictoccroc/icons/fill/time-fill.svg-CbMJxmhK.js +0 -0
  1831. /package/{resources → dist/resources}/tictoccroc/icons/fill/time-fill.svg-DcMfM75a.cjs +0 -0
  1832. /package/{resources → dist/resources}/tictoccroc/icons/fill/tooltip-fill.svg-Csn01XEU.js +0 -0
  1833. /package/{resources → dist/resources}/tictoccroc/icons/fill/tooltip-fill.svg-taAPxbyB.cjs +0 -0
  1834. /package/{resources → dist/resources}/tictoccroc/icons/fill/user-fill.svg-1AdHldZ7.js +0 -0
  1835. /package/{resources → dist/resources}/tictoccroc/icons/fill/user-fill.svg-C5DT_82L.cjs +0 -0
  1836. /package/{resources → dist/resources}/tictoccroc/icons/index.d.ts +0 -0
  1837. /package/{resources → dist/resources}/tictoccroc/icons/line/alarm-line.svg-BRunNxMG.cjs +0 -0
  1838. /package/{resources → dist/resources}/tictoccroc/icons/line/alarm-line.svg-B_fgmSUh.js +0 -0
  1839. /package/{resources → dist/resources}/tictoccroc/icons/line/align-edit.svg-BpBWlArj.js +0 -0
  1840. /package/{resources → dist/resources}/tictoccroc/icons/line/align-edit.svg-CheFH-PQ.cjs +0 -0
  1841. /package/{resources → dist/resources}/tictoccroc/icons/line/align-line.svg-CZVeKsXI.js +0 -0
  1842. /package/{resources → dist/resources}/tictoccroc/icons/line/align-line.svg-DEHi23C3.cjs +0 -0
  1843. /package/{resources → dist/resources}/tictoccroc/icons/line/apply-line.svg-CPVSeeXQ.js +0 -0
  1844. /package/{resources → dist/resources}/tictoccroc/icons/line/apply-line.svg-OFt_RKTM.cjs +0 -0
  1845. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-back-line.svg-6pAPPZFb.js +0 -0
  1846. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-back-line.svg-CohS2cJ8.cjs +0 -0
  1847. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-downward-line.svg-BGmQO-HH.js +0 -0
  1848. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-downward-line.svg-U4yGkiO6.cjs +0 -0
  1849. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-forward-line.svg-CXsiELrZ.cjs +0 -0
  1850. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-forward-line.svg-i2PyDbcS.js +0 -0
  1851. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-upward-line.svg-D38aA0Uw.cjs +0 -0
  1852. /package/{resources → dist/resources}/tictoccroc/icons/line/arrow-upward-line.svg-UfpZFid8.js +0 -0
  1853. /package/{resources → dist/resources}/tictoccroc/icons/line/attach-line.svg-BhuonxHd.cjs +0 -0
  1854. /package/{resources → dist/resources}/tictoccroc/icons/line/attach-line.svg-SIRIt0qo.js +0 -0
  1855. /package/{resources → dist/resources}/tictoccroc/icons/line/ban-line.svg-D9JlR8gb.cjs +0 -0
  1856. /package/{resources → dist/resources}/tictoccroc/icons/line/ban-line.svg-oA3yLqdR.js +0 -0
  1857. /package/{resources → dist/resources}/tictoccroc/icons/line/browser-line.svg-B7UMwER5.cjs +0 -0
  1858. /package/{resources → dist/resources}/tictoccroc/icons/line/browser-line.svg-hDn02ywo.js +0 -0
  1859. /package/{resources → dist/resources}/tictoccroc/icons/line/calendar-line.svg-BsHcmpqT.cjs +0 -0
  1860. /package/{resources → dist/resources}/tictoccroc/icons/line/calendar-line.svg-CwmRMqQV.js +0 -0
  1861. /package/{resources → dist/resources}/tictoccroc/icons/line/call-line.svg-B2jT8BCB.js +0 -0
  1862. /package/{resources → dist/resources}/tictoccroc/icons/line/call-line.svg-CVbza-nx.cjs +0 -0
  1863. /package/{resources → dist/resources}/tictoccroc/icons/line/camera-line.svg-BuDRmRYc.cjs +0 -0
  1864. /package/{resources → dist/resources}/tictoccroc/icons/line/camera-line.svg-BvUSwmSN.js +0 -0
  1865. /package/{resources → dist/resources}/tictoccroc/icons/line/card-line.svg-BwluOZMy.js +0 -0
  1866. /package/{resources → dist/resources}/tictoccroc/icons/line/card-line.svg-Dh3x2e7j.cjs +0 -0
  1867. /package/{resources → dist/resources}/tictoccroc/icons/line/cash-line.svg-DMDHHJrt.js +0 -0
  1868. /package/{resources → dist/resources}/tictoccroc/icons/line/cash-line.svg-_QlaTlXM.cjs +0 -0
  1869. /package/{resources → dist/resources}/tictoccroc/icons/line/certificate-line.svg-BjOsTl11.js +0 -0
  1870. /package/{resources → dist/resources}/tictoccroc/icons/line/certificate-line.svg-BoPUjufG.cjs +0 -0
  1871. /package/{resources → dist/resources}/tictoccroc/icons/line/chat-line.svg-CmY7En0-.js +0 -0
  1872. /package/{resources → dist/resources}/tictoccroc/icons/line/chat-line.svg-Dhe-5vHA.cjs +0 -0
  1873. /package/{resources → dist/resources}/tictoccroc/icons/line/chatting-line.svg-CdN684WI.js +0 -0
  1874. /package/{resources → dist/resources}/tictoccroc/icons/line/chatting-line.svg-DFq1Xeov.cjs +0 -0
  1875. /package/{resources → dist/resources}/tictoccroc/icons/line/check-line.svg-BmxqZytH.js +0 -0
  1876. /package/{resources → dist/resources}/tictoccroc/icons/line/check-line.svg-CKsagFl6.cjs +0 -0
  1877. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-down-line.svg-BTq4vzeg.js +0 -0
  1878. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-down-line.svg-BYCd5Luv.cjs +0 -0
  1879. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-left-line.svg-DSET8qrk.cjs +0 -0
  1880. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-left-line.svg-aZUXpJ9q.js +0 -0
  1881. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-right-line.svg-C6wr7pgK.js +0 -0
  1882. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-right-line.svg-Dm2YWA1K.cjs +0 -0
  1883. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-up-line.svg-C8Sj7hTQ.js +0 -0
  1884. /package/{resources → dist/resources}/tictoccroc/icons/line/chevron-up-line.svg-D9ekQ02i.cjs +0 -0
  1885. /package/{resources → dist/resources}/tictoccroc/icons/line/close-line.svg-BzpCbaoG.js +0 -0
  1886. /package/{resources → dist/resources}/tictoccroc/icons/line/close-line.svg-CSVwgqiB.cjs +0 -0
  1887. /package/{resources → dist/resources}/tictoccroc/icons/line/copy-line.svg-CLdLNk9r.js +0 -0
  1888. /package/{resources → dist/resources}/tictoccroc/icons/line/copy-line.svg-DA-07Z90.cjs +0 -0
  1889. /package/{resources → dist/resources}/tictoccroc/icons/line/delete-line.svg-DQg7TEYw.js +0 -0
  1890. /package/{resources → dist/resources}/tictoccroc/icons/line/delete-line.svg-DyddYBjS.cjs +0 -0
  1891. /package/{resources → dist/resources}/tictoccroc/icons/line/download-line.svg-BKfz-6Mz.js +0 -0
  1892. /package/{resources → dist/resources}/tictoccroc/icons/line/download-line.svg-DvinNPah.cjs +0 -0
  1893. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-invisible-line.svg-BuZicmwG.js +0 -0
  1894. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-invisible-line.svg-C_XjeDHE.cjs +0 -0
  1895. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-visible-line.svg-D3netPU8.cjs +0 -0
  1896. /package/{resources → dist/resources}/tictoccroc/icons/line/eye-visible-line.svg-XpDOJPr0.js +0 -0
  1897. /package/{resources → dist/resources}/tictoccroc/icons/line/filter-line.svg-Dbe7jw9Q.js +0 -0
  1898. /package/{resources → dist/resources}/tictoccroc/icons/line/filter-line.svg-J5XFEh1F.cjs +0 -0
  1899. /package/{resources → dist/resources}/tictoccroc/icons/line/fullview-line.svg-3aeWiJNf.cjs +0 -0
  1900. /package/{resources → dist/resources}/tictoccroc/icons/line/fullview-line.svg-n_xxoG0C.js +0 -0
  1901. /package/{resources → dist/resources}/tictoccroc/icons/line/goods-line.svg-BDAb5Snx.js +0 -0
  1902. /package/{resources → dist/resources}/tictoccroc/icons/line/goods-line.svg-BYSmk4Lo.cjs +0 -0
  1903. /package/{resources → dist/resources}/tictoccroc/icons/line/hamburger-line.svg-CMG7FGB3.cjs +0 -0
  1904. /package/{resources → dist/resources}/tictoccroc/icons/line/hamburger-line.svg-CZAv5Wt4.js +0 -0
  1905. /package/{resources → dist/resources}/tictoccroc/icons/line/headphone-line.svg-Buq82k6m.cjs +0 -0
  1906. /package/{resources → dist/resources}/tictoccroc/icons/line/headphone-line.svg-Cy-z1uje.js +0 -0
  1907. /package/{resources → dist/resources}/tictoccroc/icons/line/home-line.svg-BqHMy_15.cjs +0 -0
  1908. /package/{resources → dist/resources}/tictoccroc/icons/line/home-line.svg-DO90M2q7.js +0 -0
  1909. /package/{resources → dist/resources}/tictoccroc/icons/line/img-disable-line.svg-Bzvgi8Uu.cjs +0 -0
  1910. /package/{resources → dist/resources}/tictoccroc/icons/line/img-disable-line.svg-DtD7dgZQ.js +0 -0
  1911. /package/{resources → dist/resources}/tictoccroc/icons/line/img-line.svg-CPHQ1Cur.js +0 -0
  1912. /package/{resources → dist/resources}/tictoccroc/icons/line/img-line.svg-runB4pj4.cjs +0 -0
  1913. /package/{resources → dist/resources}/tictoccroc/icons/line/index.ts-Dyvby5gX.cjs +0 -0
  1914. /package/{resources → dist/resources}/tictoccroc/icons/line/index.ts-l0sNRNKZ.js +0 -0
  1915. /package/{resources → dist/resources}/tictoccroc/icons/line/information-line.svg-C1HeihVj.js +0 -0
  1916. /package/{resources → dist/resources}/tictoccroc/icons/line/information-line.svg-fQYLBjcn.cjs +0 -0
  1917. /package/{resources → dist/resources}/tictoccroc/icons/line/instagram-line.svg-9QADilvw.js +0 -0
  1918. /package/{resources → dist/resources}/tictoccroc/icons/line/instagram-line.svg-BiBj4li4.cjs +0 -0
  1919. /package/{resources → dist/resources}/tictoccroc/icons/line/insurance-line.svg-C-jGCuZ0.js +0 -0
  1920. /package/{resources → dist/resources}/tictoccroc/icons/line/insurance-line.svg-XgpoFsM2.cjs +0 -0
  1921. /package/{resources → dist/resources}/tictoccroc/icons/line/kids-line.svg-BZjs2lbf.js +0 -0
  1922. /package/{resources → dist/resources}/tictoccroc/icons/line/kids-line.svg-Hhqmv7us.cjs +0 -0
  1923. /package/{resources → dist/resources}/tictoccroc/icons/line/like-line.svg-B09ewWGN.cjs +0 -0
  1924. /package/{resources → dist/resources}/tictoccroc/icons/line/like-line.svg-WcxnZwNP.js +0 -0
  1925. /package/{resources → dist/resources}/tictoccroc/icons/line/link-line.svg-BQlngNks.cjs +0 -0
  1926. /package/{resources → dist/resources}/tictoccroc/icons/line/link-line.svg-DyTzcfH-.js +0 -0
  1927. /package/{resources → dist/resources}/tictoccroc/icons/line/list-line.svg-r5d5htjN.cjs +0 -0
  1928. /package/{resources → dist/resources}/tictoccroc/icons/line/list-line.svg-yFfhZxUp.js +0 -0
  1929. /package/{resources → dist/resources}/tictoccroc/icons/line/location-line.svg-BYTa6SR_.cjs +0 -0
  1930. /package/{resources → dist/resources}/tictoccroc/icons/line/location-line.svg-EQvkDzcG.js +0 -0
  1931. /package/{resources → dist/resources}/tictoccroc/icons/line/match-type-line.svg-CGS2gQZB.js +0 -0
  1932. /package/{resources → dist/resources}/tictoccroc/icons/line/match-type-line.svg-DGpCvcRV.cjs +0 -0
  1933. /package/{resources → dist/resources}/tictoccroc/icons/line/met-line.svg-CiYvySY5.cjs +0 -0
  1934. /package/{resources → dist/resources}/tictoccroc/icons/line/met-line.svg-CuTfmBGY.js +0 -0
  1935. /package/{resources → dist/resources}/tictoccroc/icons/line/minus-line.svg-BFTYxAEx.cjs +0 -0
  1936. /package/{resources → dist/resources}/tictoccroc/icons/line/minus-line.svg-Cd4pUSxn.js +0 -0
  1937. /package/{resources → dist/resources}/tictoccroc/icons/line/mobile-line.svg-B3REkeOs.js +0 -0
  1938. /package/{resources → dist/resources}/tictoccroc/icons/line/mobile-line.svg-CcR_mhy0.cjs +0 -0
  1939. /package/{resources → dist/resources}/tictoccroc/icons/line/modify-line.svg-Dtw-aJJL.js +0 -0
  1940. /package/{resources → dist/resources}/tictoccroc/icons/line/modify-line.svg-y24Tpez8.cjs +0 -0
  1941. /package/{resources → dist/resources}/tictoccroc/icons/line/monthly-line.svg-BdyaJ1t_.cjs +0 -0
  1942. /package/{resources → dist/resources}/tictoccroc/icons/line/monthly-line.svg-DY5-Xv34.js +0 -0
  1943. /package/{resources → dist/resources}/tictoccroc/icons/line/more-line.svg-DkHQ1aCu.js +0 -0
  1944. /package/{resources → dist/resources}/tictoccroc/icons/line/more-line.svg-fOrqycnA.cjs +0 -0
  1945. /package/{resources → dist/resources}/tictoccroc/icons/line/parking-line.svg-BYdvScSf.cjs +0 -0
  1946. /package/{resources → dist/resources}/tictoccroc/icons/line/parking-line.svg-C69hhyJp.js +0 -0
  1947. /package/{resources → dist/resources}/tictoccroc/icons/line/plus-line.svg-CGLFrOvH.cjs +0 -0
  1948. /package/{resources → dist/resources}/tictoccroc/icons/line/plus-line.svg-DYFu3bQb.js +0 -0
  1949. /package/{resources → dist/resources}/tictoccroc/icons/line/receipt-line.svg-BpDVEXs_.js +0 -0
  1950. /package/{resources → dist/resources}/tictoccroc/icons/line/receipt-line.svg-Db2ey7Vk.cjs +0 -0
  1951. /package/{resources → dist/resources}/tictoccroc/icons/line/reset-line.svg-CYyXv2Ii.js +0 -0
  1952. /package/{resources → dist/resources}/tictoccroc/icons/line/reset-line.svg-VXhJXGw4.cjs +0 -0
  1953. /package/{resources → dist/resources}/tictoccroc/icons/line/review-line.svg-B4rfJrsO.js +0 -0
  1954. /package/{resources → dist/resources}/tictoccroc/icons/line/review-line.svg-DYUuUybx.cjs +0 -0
  1955. /package/{resources → dist/resources}/tictoccroc/icons/line/schedule-line.svg-C4rlD6fX.js +0 -0
  1956. /package/{resources → dist/resources}/tictoccroc/icons/line/schedule-line.svg-CBOfzdyP.cjs +0 -0
  1957. /package/{resources → dist/resources}/tictoccroc/icons/line/search-line.svg-ChK1nMkg.js +0 -0
  1958. /package/{resources → dist/resources}/tictoccroc/icons/line/search-line.svg-CyECq3s4.cjs +0 -0
  1959. /package/{resources → dist/resources}/tictoccroc/icons/line/setting-line.svg-B5KTXMkf.js +0 -0
  1960. /package/{resources → dist/resources}/tictoccroc/icons/line/setting-line.svg-KZcCRQnu.cjs +0 -0
  1961. /package/{resources → dist/resources}/tictoccroc/icons/line/share-line.svg-BuvAb_mR.cjs +0 -0
  1962. /package/{resources → dist/resources}/tictoccroc/icons/line/share-line.svg-YIeAM7qG.js +0 -0
  1963. /package/{resources → dist/resources}/tictoccroc/icons/line/sms-line.svg-CfS4BH8b.cjs +0 -0
  1964. /package/{resources → dist/resources}/tictoccroc/icons/line/sms-line.svg-mkRJRb3t.js +0 -0
  1965. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-line.svg-CmfcTDgu.cjs +0 -0
  1966. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-line.svg-DDrcGkDm.js +0 -0
  1967. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-off-line.svg-BpovzQS7.cjs +0 -0
  1968. /package/{resources → dist/resources}/tictoccroc/icons/line/sound-off-line.svg-CyLPPUCN.js +0 -0
  1969. /package/{resources → dist/resources}/tictoccroc/icons/line/special-line.svg-BIbaMWsd.cjs +0 -0
  1970. /package/{resources → dist/resources}/tictoccroc/icons/line/special-line.svg-DmNM79L9.js +0 -0
  1971. /package/{resources → dist/resources}/tictoccroc/icons/line/time-line.svg-BuB2NlRB.js +0 -0
  1972. /package/{resources → dist/resources}/tictoccroc/icons/line/time-line.svg-DXBDjsih.cjs +0 -0
  1973. /package/{resources → dist/resources}/tictoccroc/icons/line/toy-line.svg-DyArYgu3.js +0 -0
  1974. /package/{resources → dist/resources}/tictoccroc/icons/line/toy-line.svg-vUxUn7S0.cjs +0 -0
  1975. /package/{resources → dist/resources}/tictoccroc/icons/line/university-line.svg-BEdQwFB6.js +0 -0
  1976. /package/{resources → dist/resources}/tictoccroc/icons/line/university-line.svg-D2T-TUW5.cjs +0 -0
  1977. /package/{resources → dist/resources}/tictoccroc/icons/line/upload-line.svg-CDbJ-I5E.cjs +0 -0
  1978. /package/{resources → dist/resources}/tictoccroc/icons/line/upload-line.svg-CKFtr3Jx.js +0 -0
  1979. /package/{resources → dist/resources}/tictoccroc/icons/line/user-line.svg-CNcTTUmF.js +0 -0
  1980. /package/{resources → dist/resources}/tictoccroc/icons/line/user-line.svg-Du2rRzus.cjs +0 -0
  1981. /package/{resources → dist/resources}/tictoccroc/icons/line/video-camera-line.svg-C2Y4ssOf.js +0 -0
  1982. /package/{resources → dist/resources}/tictoccroc/icons/line/video-camera-line.svg-iZ3dICcd.cjs +0 -0
  1983. /package/{resources → dist/resources}/tictoccroc/icons/line/warning1-line.svg-Bhi7ngGw.cjs +0 -0
  1984. /package/{resources → dist/resources}/tictoccroc/icons/line/warning1-line.svg-DsmZxbsf.js +0 -0
  1985. /package/{resources → dist/resources}/tictoccroc/icons/line/warning2-line.svg-DTvtKOYN.js +0 -0
  1986. /package/{resources → dist/resources}/tictoccroc/icons/line/warning2-line.svg-Kf0io8lf.cjs +0 -0
  1987. /package/{resources → dist/resources}/tictoccroc/icons/line/weekly-line.svg-BCO-LS_a.cjs +0 -0
  1988. /package/{resources → dist/resources}/tictoccroc/icons/line/weekly-line.svg-BUPmmgeE.js +0 -0
  1989. /package/{resources → dist/resources}/tictoccroc/icons/line/wifi-line.svg-BtsQLwZl.js +0 -0
  1990. /package/{resources → dist/resources}/tictoccroc/icons/line/wifi-line.svg-DGCMJ5Oi.cjs +0 -0
  1991. /package/{themes → dist/themes}/tictoccroc/colors/background.cjs +0 -0
  1992. /package/{themes → dist/themes}/tictoccroc/colors/background.d.ts +0 -0
  1993. /package/{themes → dist/themes}/tictoccroc/colors/background.es.js +0 -0
  1994. /package/{themes → dist/themes}/tictoccroc/colors/blue.cjs +0 -0
  1995. /package/{themes → dist/themes}/tictoccroc/colors/blue.d.ts +0 -0
  1996. /package/{themes → dist/themes}/tictoccroc/colors/blue.es.js +0 -0
  1997. /package/{themes → dist/themes}/tictoccroc/colors/classType.cjs +0 -0
  1998. /package/{themes → dist/themes}/tictoccroc/colors/classType.d.ts +0 -0
  1999. /package/{themes → dist/themes}/tictoccroc/colors/classType.es.js +0 -0
  2000. /package/{themes → dist/themes}/tictoccroc/colors/etc.cjs +0 -0
  2001. /package/{themes → dist/themes}/tictoccroc/colors/etc.d.ts +0 -0
  2002. /package/{themes → dist/themes}/tictoccroc/colors/etc.es.js +0 -0
  2003. /package/{themes → dist/themes}/tictoccroc/colors/green.d.ts +0 -0
  2004. /package/{themes → dist/themes}/tictoccroc/colors/grey.cjs +0 -0
  2005. /package/{themes → dist/themes}/tictoccroc/colors/grey.d.ts +0 -0
  2006. /package/{themes → dist/themes}/tictoccroc/colors/grey.es.js +0 -0
  2007. /package/{themes → dist/themes}/tictoccroc/colors/index.cjs +0 -0
  2008. /package/{themes → dist/themes}/tictoccroc/colors/index.d.ts +0 -0
  2009. /package/{themes → dist/themes}/tictoccroc/colors/index.es.js +0 -0
  2010. /package/{themes → dist/themes}/tictoccroc/colors/pink.cjs +0 -0
  2011. /package/{themes → dist/themes}/tictoccroc/colors/pink.d.ts +0 -0
  2012. /package/{themes → dist/themes}/tictoccroc/colors/pink.es.js +0 -0
  2013. /package/{themes → dist/themes}/tictoccroc/colors/yellow.cjs +0 -0
  2014. /package/{themes → dist/themes}/tictoccroc/colors/yellow.d.ts +0 -0
  2015. /package/{themes → dist/themes}/tictoccroc/colors/yellow.es.js +0 -0
  2016. /package/{themes → dist/themes}/tictoccroc/index.cjs +0 -0
  2017. /package/{themes → dist/themes}/tictoccroc/index.d.ts +0 -0
  2018. /package/{themes → dist/themes}/tictoccroc/index.es.js +0 -0
  2019. /package/{themes → dist/themes}/tictoccroc/parentLight.cjs +0 -0
  2020. /package/{themes → dist/themes}/tictoccroc/parentLight.d.ts +0 -0
  2021. /package/{themes → dist/themes}/tictoccroc/parentLight.es.js +0 -0
  2022. /package/{themes → dist/themes}/tictoccroc/teacherLight.cjs +0 -0
  2023. /package/{themes → dist/themes}/tictoccroc/teacherLight.d.ts +0 -0
  2024. /package/{themes → dist/themes}/tictoccroc/teacherLight.es.js +0 -0
  2025. /package/{themes → dist/themes}/tictoccroc/typography/body.cjs +0 -0
  2026. /package/{themes → dist/themes}/tictoccroc/typography/body.d.ts +0 -0
  2027. /package/{themes → dist/themes}/tictoccroc/typography/body.es.js +0 -0
  2028. /package/{themes → dist/themes}/tictoccroc/typography/caption.cjs +0 -0
  2029. /package/{themes → dist/themes}/tictoccroc/typography/caption.d.ts +0 -0
  2030. /package/{themes → dist/themes}/tictoccroc/typography/caption.es.js +0 -0
  2031. /package/{themes → dist/themes}/tictoccroc/typography/display.cjs +0 -0
  2032. /package/{themes → dist/themes}/tictoccroc/typography/display.d.ts +0 -0
  2033. /package/{themes → dist/themes}/tictoccroc/typography/display.es.js +0 -0
  2034. /package/{themes → dist/themes}/tictoccroc/typography/headline.cjs +0 -0
  2035. /package/{themes → dist/themes}/tictoccroc/typography/headline.d.ts +0 -0
  2036. /package/{themes → dist/themes}/tictoccroc/typography/headline.es.js +0 -0
  2037. /package/{themes → dist/themes}/tictoccroc/typography/index.cjs +0 -0
  2038. /package/{themes → dist/themes}/tictoccroc/typography/index.d.ts +0 -0
  2039. /package/{themes → dist/themes}/tictoccroc/typography/index.es.js +0 -0
  2040. /package/{typings → dist/typings}/color.d.ts +0 -0
  2041. /package/{typings → dist/typings}/component.d.ts +0 -0
  2042. /package/{typings → dist/typings}/index.d.ts +0 -0
  2043. /package/{typings → dist/typings}/theme/core.d.ts +0 -0
  2044. /package/{typings → dist/typings}/theme/tictoccroc.d.ts +0 -0
  2045. /package/{typings → dist/typings}/typography.d.ts +0 -0
  2046. /package/{typings → dist/typings}/utility.d.ts +0 -0
  2047. /package/{utils → dist/utils}/convertNumberToCSSValue.cjs +0 -0
  2048. /package/{utils → dist/utils}/convertNumberToCSSValue.d.ts +0 -0
  2049. /package/{utils → dist/utils}/convertNumberToCSSValue.es.js +0 -0
  2050. /package/{utils → dist/utils}/debounce/debounce.cjs +0 -0
  2051. /package/{utils → dist/utils}/debounce/debounce.d.ts +0 -0
  2052. /package/{utils → dist/utils}/debounce/debounce.es.js +0 -0
  2053. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.cjs +0 -0
  2054. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.d.ts +0 -0
  2055. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.es.js +0 -0
  2056. /package/{utils → dist/utils}/getContrastRatio/getContrastRatio.test.d.ts +0 -0
  2057. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.cjs +0 -0
  2058. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.d.ts +0 -0
  2059. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.es.js +0 -0
  2060. /package/{utils → dist/utils}/getContrastingTextColor/getContrastingTextColor.test.d.ts +0 -0
  2061. /package/{utils → dist/utils}/getIconLabel/getIconLabel.d.ts +0 -0
  2062. /package/{utils → dist/utils}/getInterpolation/getInterpolation.cjs +0 -0
  2063. /package/{utils → dist/utils}/getInterpolation/getInterpolation.d.ts +0 -0
  2064. /package/{utils → dist/utils}/getInterpolation/getInterpolation.es.js +0 -0
  2065. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.cjs +0 -0
  2066. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.d.ts +0 -0
  2067. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.es.js +0 -0
  2068. /package/{utils → dist/utils}/getPaletteColor/getPaletteColor.test.d.ts +0 -0
  2069. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.cjs +0 -0
  2070. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.d.ts +0 -0
  2071. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.es.js +0 -0
  2072. /package/{utils → dist/utils}/getRelativeLuminance/getRelativeLuminance.test.d.ts +0 -0
  2073. /package/{utils → dist/utils}/getSibling/getSibling.cjs +0 -0
  2074. /package/{utils → dist/utils}/getSibling/getSibling.d.ts +0 -0
  2075. /package/{utils → dist/utils}/getSibling/getSibling.es.js +0 -0
  2076. /package/{utils → dist/utils}/hexToRgb/hexToRgb.cjs +0 -0
  2077. /package/{utils → dist/utils}/hexToRgb/hexToRgb.d.ts +0 -0
  2078. /package/{utils → dist/utils}/hexToRgb/hexToRgb.es.js +0 -0
  2079. /package/{utils → dist/utils}/hexToRgb/hexToRgb.test.d.ts +0 -0
@@ -0,0 +1,1945 @@
1
+ 'use strict';
2
+
3
+ var redent = require('redent');
4
+ var cssTools = require('@adobe/css-tools');
5
+ var domAccessibilityApi = require('dom-accessibility-api');
6
+ var ariaQuery = require('aria-query');
7
+ var chalk = require('chalk');
8
+ var isEqualWith = require('lodash/isEqualWith.js');
9
+ var escape = require('css.escape');
10
+
11
+ class GenericTypeError extends Error {
12
+ constructor(expectedString, received, matcherFn, context) {
13
+ super();
14
+
15
+ /* istanbul ignore next */
16
+ if (Error.captureStackTrace) {
17
+ Error.captureStackTrace(this, matcherFn);
18
+ }
19
+ let withType = '';
20
+ try {
21
+ withType = context.utils.printWithType(
22
+ 'Received',
23
+ received,
24
+ context.utils.printReceived,
25
+ );
26
+ } catch (e) {
27
+ // Can throw for Document:
28
+ // https://github.com/jsdom/jsdom/issues/2304
29
+ }
30
+ this.message = [
31
+ context.utils.matcherHint(
32
+ `${context.isNot ? '.not' : ''}.${matcherFn.name}`,
33
+ 'received',
34
+ '',
35
+ ),
36
+ '',
37
+ // eslint-disable-next-line new-cap
38
+ `${context.utils.RECEIVED_COLOR(
39
+ 'received',
40
+ )} value must ${expectedString}.`,
41
+ withType,
42
+ ].join('\n');
43
+ }
44
+ }
45
+
46
+ class HtmlElementTypeError extends GenericTypeError {
47
+ constructor(...args) {
48
+ super('be an HTMLElement or an SVGElement', ...args);
49
+ }
50
+ }
51
+
52
+ class NodeTypeError extends GenericTypeError {
53
+ constructor(...args) {
54
+ super('be a Node', ...args);
55
+ }
56
+ }
57
+
58
+ function checkHasWindow(htmlElement, ErrorClass, ...args) {
59
+ if (
60
+ !htmlElement ||
61
+ !htmlElement.ownerDocument ||
62
+ !htmlElement.ownerDocument.defaultView
63
+ ) {
64
+ throw new ErrorClass(htmlElement, ...args)
65
+ }
66
+ }
67
+
68
+ function checkNode(node, ...args) {
69
+ checkHasWindow(node, NodeTypeError, ...args);
70
+ const window = node.ownerDocument.defaultView;
71
+
72
+ if (!(node instanceof window.Node)) {
73
+ throw new NodeTypeError(node, ...args)
74
+ }
75
+ }
76
+
77
+ function checkHtmlElement(htmlElement, ...args) {
78
+ checkHasWindow(htmlElement, HtmlElementTypeError, ...args);
79
+ const window = htmlElement.ownerDocument.defaultView;
80
+
81
+ if (
82
+ !(htmlElement instanceof window.HTMLElement) &&
83
+ !(htmlElement instanceof window.SVGElement)
84
+ ) {
85
+ throw new HtmlElementTypeError(htmlElement, ...args)
86
+ }
87
+ }
88
+
89
+ class InvalidCSSError extends Error {
90
+ constructor(received, matcherFn, context) {
91
+ super();
92
+
93
+ /* istanbul ignore next */
94
+ if (Error.captureStackTrace) {
95
+ Error.captureStackTrace(this, matcherFn);
96
+ }
97
+ this.message = [
98
+ received.message,
99
+ '',
100
+ // eslint-disable-next-line new-cap
101
+ context.utils.RECEIVED_COLOR(`Failing css:`),
102
+ // eslint-disable-next-line new-cap
103
+ context.utils.RECEIVED_COLOR(`${received.css}`),
104
+ ].join('\n');
105
+ }
106
+ }
107
+
108
+ function parseCSS(css, ...args) {
109
+ const ast = cssTools.parse(`selector { ${css} }`, {silent: true}).stylesheet;
110
+
111
+ if (ast.parsingErrors && ast.parsingErrors.length > 0) {
112
+ const {reason, line} = ast.parsingErrors[0];
113
+
114
+ throw new InvalidCSSError(
115
+ {
116
+ css,
117
+ message: `Syntax error parsing expected css: ${reason} on line: ${line}`,
118
+ },
119
+ ...args,
120
+ )
121
+ }
122
+
123
+ const parsedRules = ast.rules[0].declarations
124
+ .filter(d => d.type === 'declaration')
125
+ .reduce(
126
+ (obj, {property, value}) => Object.assign(obj, {[property]: value}),
127
+ {},
128
+ );
129
+ return parsedRules
130
+ }
131
+
132
+ function display(context, value) {
133
+ return typeof value === 'string' ? value : context.utils.stringify(value)
134
+ }
135
+
136
+ function getMessage(
137
+ context,
138
+ matcher,
139
+ expectedLabel,
140
+ expectedValue,
141
+ receivedLabel,
142
+ receivedValue,
143
+ ) {
144
+ return [
145
+ `${matcher}\n`,
146
+ // eslint-disable-next-line new-cap
147
+ `${expectedLabel}:\n${context.utils.EXPECTED_COLOR(
148
+ redent(display(context, expectedValue), 2),
149
+ )}`,
150
+ // eslint-disable-next-line new-cap
151
+ `${receivedLabel}:\n${context.utils.RECEIVED_COLOR(
152
+ redent(display(context, receivedValue), 2),
153
+ )}`,
154
+ ].join('\n')
155
+ }
156
+
157
+ function matches(textToMatch, matcher) {
158
+ if (matcher instanceof RegExp) {
159
+ return matcher.test(textToMatch)
160
+ } else {
161
+ return textToMatch.includes(String(matcher))
162
+ }
163
+ }
164
+
165
+ function deprecate(name, replacementText) {
166
+ // Notify user that they are using deprecated functionality.
167
+ // eslint-disable-next-line no-console
168
+ console.warn(
169
+ `Warning: ${name} has been deprecated and will be removed in future updates.`,
170
+ replacementText,
171
+ );
172
+ }
173
+
174
+ function normalize(text) {
175
+ return text.replace(/\s+/g, ' ').trim()
176
+ }
177
+
178
+ function getTag(element) {
179
+ return element.tagName && element.tagName.toLowerCase()
180
+ }
181
+
182
+ function getSelectValue({multiple, options}) {
183
+ const selectedOptions = [...options].filter(option => option.selected);
184
+
185
+ if (multiple) {
186
+ return [...selectedOptions].map(opt => opt.value)
187
+ }
188
+ /* istanbul ignore if */
189
+ if (selectedOptions.length === 0) {
190
+ return undefined // Couldn't make this happen, but just in case
191
+ }
192
+ return selectedOptions[0].value
193
+ }
194
+
195
+ function getInputValue(inputElement) {
196
+ switch (inputElement.type) {
197
+ case 'number':
198
+ return inputElement.value === '' ? null : Number(inputElement.value)
199
+ case 'checkbox':
200
+ return inputElement.checked
201
+ default:
202
+ return inputElement.value
203
+ }
204
+ }
205
+
206
+ const rolesSupportingValues = ['meter', 'progressbar', 'slider', 'spinbutton'];
207
+ function getAccessibleValue(element) {
208
+ if (!rolesSupportingValues.includes(element.getAttribute('role'))) {
209
+ return undefined
210
+ }
211
+ return Number(element.getAttribute('aria-valuenow'))
212
+ }
213
+
214
+ function getSingleElementValue(element) {
215
+ /* istanbul ignore if */
216
+ if (!element) {
217
+ return undefined
218
+ }
219
+
220
+ switch (element.tagName.toLowerCase()) {
221
+ case 'input':
222
+ return getInputValue(element)
223
+ case 'select':
224
+ return getSelectValue(element)
225
+ default: {
226
+ return element.value ?? getAccessibleValue(element)
227
+ }
228
+ }
229
+ }
230
+
231
+ function toSentence(
232
+ array,
233
+ {wordConnector = ', ', lastWordConnector = ' and '} = {},
234
+ ) {
235
+ return [array.slice(0, -1).join(wordConnector), array[array.length - 1]].join(
236
+ array.length > 1 ? lastWordConnector : '',
237
+ )
238
+ }
239
+
240
+ function compareArraysAsSet(arr1, arr2) {
241
+ if (Array.isArray(arr1) && Array.isArray(arr2)) {
242
+ return [...new Set(arr1)].every(v => new Set(arr2).has(v))
243
+ }
244
+ return undefined
245
+ }
246
+
247
+ function toBeInTheDOM(element, container) {
248
+ deprecate(
249
+ 'toBeInTheDOM',
250
+ 'Please use toBeInTheDocument for searching the entire document and toContainElement for searching a specific container.',
251
+ );
252
+
253
+ if (element) {
254
+ checkHtmlElement(element, toBeInTheDOM, this);
255
+ }
256
+
257
+ if (container) {
258
+ checkHtmlElement(container, toBeInTheDOM, this);
259
+ }
260
+
261
+ return {
262
+ pass: container ? container.contains(element) : !!element,
263
+ message: () => {
264
+ return [
265
+ this.utils.matcherHint(
266
+ `${this.isNot ? '.not' : ''}.toBeInTheDOM`,
267
+ 'element',
268
+ '',
269
+ ),
270
+ '',
271
+ 'Received:',
272
+ ` ${this.utils.printReceived(
273
+ element ? element.cloneNode(false) : element,
274
+ )}`,
275
+ ].join('\n')
276
+ },
277
+ }
278
+ }
279
+
280
+ function toBeInTheDocument(element) {
281
+ if (element !== null || !this.isNot) {
282
+ checkHtmlElement(element, toBeInTheDocument, this);
283
+ }
284
+
285
+ const pass =
286
+ element === null
287
+ ? false
288
+ : element.ownerDocument === element.getRootNode({composed: true});
289
+
290
+ const errorFound = () => {
291
+ return `expected document not to contain element, found ${this.utils.stringify(
292
+ element.cloneNode(true),
293
+ )} instead`
294
+ };
295
+ const errorNotFound = () => {
296
+ return `element could not be found in the document`
297
+ };
298
+
299
+ return {
300
+ pass,
301
+ message: () => {
302
+ return [
303
+ this.utils.matcherHint(
304
+ `${this.isNot ? '.not' : ''}.toBeInTheDocument`,
305
+ 'element',
306
+ '',
307
+ ),
308
+ '',
309
+ // eslint-disable-next-line new-cap
310
+ this.utils.RECEIVED_COLOR(this.isNot ? errorFound() : errorNotFound()),
311
+ ].join('\n')
312
+ },
313
+ }
314
+ }
315
+
316
+ function toBeEmpty(element) {
317
+ deprecate(
318
+ 'toBeEmpty',
319
+ 'Please use instead toBeEmptyDOMElement for finding empty nodes in the DOM.',
320
+ );
321
+ checkHtmlElement(element, toBeEmpty, this);
322
+
323
+ return {
324
+ pass: element.innerHTML === '',
325
+ message: () => {
326
+ return [
327
+ this.utils.matcherHint(
328
+ `${this.isNot ? '.not' : ''}.toBeEmpty`,
329
+ 'element',
330
+ '',
331
+ ),
332
+ '',
333
+ 'Received:',
334
+ ` ${this.utils.printReceived(element.innerHTML)}`,
335
+ ].join('\n')
336
+ },
337
+ }
338
+ }
339
+
340
+ function toBeEmptyDOMElement(element) {
341
+ checkHtmlElement(element, toBeEmptyDOMElement, this);
342
+
343
+ return {
344
+ pass: isEmptyElement(element),
345
+ message: () => {
346
+ return [
347
+ this.utils.matcherHint(
348
+ `${this.isNot ? '.not' : ''}.toBeEmptyDOMElement`,
349
+ 'element',
350
+ '',
351
+ ),
352
+ '',
353
+ 'Received:',
354
+ ` ${this.utils.printReceived(element.innerHTML)}`,
355
+ ].join('\n')
356
+ },
357
+ }
358
+ }
359
+
360
+ /**
361
+ * Identifies if an element doesn't contain child nodes (excluding comments)
362
+ * ℹ Node.COMMENT_NODE can't be used because of the following issue
363
+ * https://github.com/jsdom/jsdom/issues/2220
364
+ *
365
+ * @param {*} element an HtmlElement or SVGElement
366
+ * @return {*} true if the element only contains comments or none
367
+ */
368
+ function isEmptyElement(element){
369
+ const nonCommentChildNodes = [...element.childNodes].filter(node => node.nodeType !== 8);
370
+ return nonCommentChildNodes.length === 0;
371
+ }
372
+
373
+ function toContainElement(container, element) {
374
+ checkHtmlElement(container, toContainElement, this);
375
+
376
+ if (element !== null) {
377
+ checkHtmlElement(element, toContainElement, this);
378
+ }
379
+
380
+ return {
381
+ pass: container.contains(element),
382
+ message: () => {
383
+ return [
384
+ this.utils.matcherHint(
385
+ `${this.isNot ? '.not' : ''}.toContainElement`,
386
+ 'element',
387
+ 'element',
388
+ ),
389
+ '',
390
+ // eslint-disable-next-line new-cap
391
+ this.utils.RECEIVED_COLOR(`${this.utils.stringify(
392
+ container.cloneNode(false),
393
+ )} ${
394
+ this.isNot ? 'contains:' : 'does not contain:'
395
+ } ${this.utils.stringify(element ? element.cloneNode(false) : element)}
396
+ `),
397
+ ].join('\n')
398
+ },
399
+ }
400
+ }
401
+
402
+ function getNormalizedHtml(container, htmlText) {
403
+ const div = container.ownerDocument.createElement('div');
404
+ div.innerHTML = htmlText;
405
+ return div.innerHTML
406
+ }
407
+
408
+ function toContainHTML(container, htmlText) {
409
+ checkHtmlElement(container, toContainHTML, this);
410
+
411
+ if (typeof htmlText !== 'string') {
412
+ throw new Error(`.toContainHTML() expects a string value, got ${htmlText}`)
413
+ }
414
+
415
+ return {
416
+ pass: container.outerHTML.includes(getNormalizedHtml(container, htmlText)),
417
+ message: () => {
418
+ return [
419
+ this.utils.matcherHint(
420
+ `${this.isNot ? '.not' : ''}.toContainHTML`,
421
+ 'element',
422
+ '',
423
+ ),
424
+ 'Expected:',
425
+ // eslint-disable-next-line new-cap
426
+ ` ${this.utils.EXPECTED_COLOR(htmlText)}`,
427
+ 'Received:',
428
+ ` ${this.utils.printReceived(container.cloneNode(true))}`,
429
+ ].join('\n')
430
+ },
431
+ }
432
+ }
433
+
434
+ function toHaveTextContent(
435
+ node,
436
+ checkWith,
437
+ options = {normalizeWhitespace: true},
438
+ ) {
439
+ checkNode(node, toHaveTextContent, this);
440
+
441
+ const textContent = options.normalizeWhitespace
442
+ ? normalize(node.textContent)
443
+ : node.textContent.replace(/\u00a0/g, ' '); // Replace   with normal spaces
444
+
445
+ const checkingWithEmptyString = textContent !== '' && checkWith === '';
446
+
447
+ return {
448
+ pass: !checkingWithEmptyString && matches(textContent, checkWith),
449
+ message: () => {
450
+ const to = this.isNot ? 'not to' : 'to';
451
+ return getMessage(
452
+ this,
453
+ this.utils.matcherHint(
454
+ `${this.isNot ? '.not' : ''}.toHaveTextContent`,
455
+ 'element',
456
+ '',
457
+ ),
458
+ checkingWithEmptyString
459
+ ? `Checking with empty string will always match, use .toBeEmptyDOMElement() instead`
460
+ : `Expected element ${to} have text content`,
461
+ checkWith,
462
+ 'Received',
463
+ textContent,
464
+ )
465
+ },
466
+ }
467
+ }
468
+
469
+ function toHaveAccessibleDescription(
470
+ htmlElement,
471
+ expectedAccessibleDescription,
472
+ ) {
473
+ checkHtmlElement(htmlElement, toHaveAccessibleDescription, this);
474
+ const actualAccessibleDescription = domAccessibilityApi.computeAccessibleDescription(htmlElement);
475
+ const missingExpectedValue = arguments.length === 1;
476
+
477
+ let pass = false;
478
+ if (missingExpectedValue) {
479
+ // When called without an expected value we only want to validate that the element has an
480
+ // accessible description, whatever it may be.
481
+ pass = actualAccessibleDescription !== '';
482
+ } else {
483
+ pass =
484
+ expectedAccessibleDescription instanceof RegExp
485
+ ? expectedAccessibleDescription.test(actualAccessibleDescription)
486
+ : this.equals(
487
+ actualAccessibleDescription,
488
+ expectedAccessibleDescription,
489
+ );
490
+ }
491
+
492
+ return {
493
+ pass,
494
+
495
+ message: () => {
496
+ const to = this.isNot ? 'not to' : 'to';
497
+ return getMessage(
498
+ this,
499
+ this.utils.matcherHint(
500
+ `${this.isNot ? '.not' : ''}.${toHaveAccessibleDescription.name}`,
501
+ 'element',
502
+ '',
503
+ ),
504
+ `Expected element ${to} have accessible description`,
505
+ expectedAccessibleDescription,
506
+ 'Received',
507
+ actualAccessibleDescription,
508
+ )
509
+ },
510
+ }
511
+ }
512
+
513
+ const ariaInvalidName = 'aria-invalid';
514
+ const validStates = ['false'];
515
+
516
+ // See `aria-errormessage` spec at https://www.w3.org/TR/wai-aria-1.2/#aria-errormessage
517
+ function toHaveAccessibleErrorMessage(
518
+ htmlElement,
519
+ expectedAccessibleErrorMessage,
520
+ ) {
521
+ checkHtmlElement(htmlElement, toHaveAccessibleErrorMessage, this);
522
+ const to = this.isNot ? 'not to' : 'to';
523
+ const method = this.isNot
524
+ ? '.not.toHaveAccessibleErrorMessage'
525
+ : '.toHaveAccessibleErrorMessage';
526
+
527
+ // Enforce Valid Id
528
+ const errormessageId = htmlElement.getAttribute('aria-errormessage');
529
+ const errormessageIdInvalid = !!errormessageId && /\s+/.test(errormessageId);
530
+
531
+ if (errormessageIdInvalid) {
532
+ return {
533
+ pass: false,
534
+ message: () => {
535
+ return getMessage(
536
+ this,
537
+ this.utils.matcherHint(method, 'element'),
538
+ "Expected element's `aria-errormessage` attribute to be empty or a single, valid ID",
539
+ '',
540
+ 'Received',
541
+ `aria-errormessage="${errormessageId}"`,
542
+ )
543
+ },
544
+ }
545
+ }
546
+
547
+ // See `aria-invalid` spec at https://www.w3.org/TR/wai-aria-1.2/#aria-invalid
548
+ const ariaInvalidVal = htmlElement.getAttribute(ariaInvalidName);
549
+ const fieldValid =
550
+ !htmlElement.hasAttribute(ariaInvalidName) ||
551
+ validStates.includes(ariaInvalidVal);
552
+
553
+ // Enforce Valid `aria-invalid` Attribute
554
+ if (fieldValid) {
555
+ return {
556
+ pass: false,
557
+ message: () => {
558
+ return getMessage(
559
+ this,
560
+ this.utils.matcherHint(method, 'element'),
561
+ 'Expected element to be marked as invalid with attribute',
562
+ `${ariaInvalidName}="${String(true)}"`,
563
+ 'Received',
564
+ htmlElement.hasAttribute('aria-invalid')
565
+ ? `${ariaInvalidName}="${htmlElement.getAttribute(ariaInvalidName)}`
566
+ : null,
567
+ )
568
+ },
569
+ }
570
+ }
571
+
572
+ const error = normalize(
573
+ htmlElement.ownerDocument.getElementById(errormessageId)?.textContent ?? '',
574
+ );
575
+
576
+ return {
577
+ pass:
578
+ expectedAccessibleErrorMessage === undefined
579
+ ? Boolean(error)
580
+ : expectedAccessibleErrorMessage instanceof RegExp
581
+ ? expectedAccessibleErrorMessage.test(error)
582
+ : this.equals(error, expectedAccessibleErrorMessage),
583
+
584
+ message: () => {
585
+ return getMessage(
586
+ this,
587
+ this.utils.matcherHint(method, 'element'),
588
+ `Expected element ${to} have accessible error message`,
589
+ expectedAccessibleErrorMessage ?? '',
590
+ 'Received',
591
+ error,
592
+ )
593
+ },
594
+ }
595
+ }
596
+
597
+ const elementRoleList = buildElementRoleList(ariaQuery.elementRoles);
598
+
599
+ function toHaveRole(htmlElement, expectedRole) {
600
+ checkHtmlElement(htmlElement, toHaveRole, this);
601
+
602
+ const actualRoles = getExplicitOrImplicitRoles(htmlElement);
603
+ const pass = actualRoles.some(el => el === expectedRole);
604
+
605
+ return {
606
+ pass,
607
+
608
+ message: () => {
609
+ const to = this.isNot ? 'not to' : 'to';
610
+ return getMessage(
611
+ this,
612
+ this.utils.matcherHint(
613
+ `${this.isNot ? '.not' : ''}.${toHaveRole.name}`,
614
+ 'element',
615
+ '',
616
+ ),
617
+ `Expected element ${to} have role`,
618
+ expectedRole,
619
+ 'Received',
620
+ actualRoles.join(', '),
621
+ )
622
+ },
623
+ }
624
+ }
625
+
626
+ function getExplicitOrImplicitRoles(htmlElement) {
627
+ const hasExplicitRole = htmlElement.hasAttribute('role');
628
+
629
+ if (hasExplicitRole) {
630
+ const roleValue = htmlElement.getAttribute('role');
631
+
632
+ // Handle fallback roles, such as role="switch button"
633
+ // testing-library gates this behind the `queryFallbacks` flag; it is
634
+ // unclear why, but it makes sense to support this pattern out of the box
635
+ // https://testing-library.com/docs/queries/byrole/#queryfallbacks
636
+ return roleValue.split(' ').filter(Boolean)
637
+ }
638
+
639
+ const implicitRoles = getImplicitAriaRoles(htmlElement);
640
+
641
+ return implicitRoles
642
+ }
643
+
644
+ function getImplicitAriaRoles(currentNode) {
645
+ for (const {match, roles} of elementRoleList) {
646
+ if (match(currentNode)) {
647
+ return [...roles]
648
+ }
649
+ }
650
+
651
+ /* istanbul ignore next */
652
+ return [] // this does not get reached in practice, since elements have at least a 'generic' role
653
+ }
654
+
655
+ /**
656
+ * Transform the roles map (with required attributes and constraints) to a list
657
+ * of roles. Each item in the list has functions to match an element against it.
658
+ *
659
+ * Essentially copied over from [dom-testing-library's
660
+ * helpers](https://github.com/testing-library/dom-testing-library/blob/bd04cf95a1ed85a2238f7dfc1a77d5d16b4f59dc/src/role-helpers.js#L80)
661
+ *
662
+ * TODO: If we are truly just copying over stuff, would it make sense to move
663
+ * this to a separate package?
664
+ *
665
+ * TODO: This technique relies on CSS selectors; are those consistently
666
+ * available in all jest-dom environments? Why do other matchers in this package
667
+ * not use them like this?
668
+ */
669
+ function buildElementRoleList(elementRolesMap) {
670
+ function makeElementSelector({name, attributes}) {
671
+ return `${name}${attributes
672
+ .map(({name: attributeName, value, constraints = []}) => {
673
+ const shouldNotExist = constraints.indexOf('undefined') !== -1;
674
+ if (shouldNotExist) {
675
+ return `:not([${attributeName}])`
676
+ } else if (value) {
677
+ return `[${attributeName}="${value}"]`
678
+ } else {
679
+ return `[${attributeName}]`
680
+ }
681
+ })
682
+ .join('')}`
683
+ }
684
+
685
+ function getSelectorSpecificity({attributes = []}) {
686
+ return attributes.length
687
+ }
688
+
689
+ function bySelectorSpecificity(
690
+ {specificity: leftSpecificity},
691
+ {specificity: rightSpecificity},
692
+ ) {
693
+ return rightSpecificity - leftSpecificity
694
+ }
695
+
696
+ function match(element) {
697
+ let {attributes = []} = element;
698
+
699
+ // https://github.com/testing-library/dom-testing-library/issues/814
700
+ const typeTextIndex = attributes.findIndex(
701
+ attribute =>
702
+ attribute.value &&
703
+ attribute.name === 'type' &&
704
+ attribute.value === 'text',
705
+ );
706
+
707
+ if (typeTextIndex >= 0) {
708
+ // not using splice to not mutate the attributes array
709
+ attributes = [
710
+ ...attributes.slice(0, typeTextIndex),
711
+ ...attributes.slice(typeTextIndex + 1),
712
+ ];
713
+ }
714
+
715
+ const selector = makeElementSelector({...element, attributes});
716
+
717
+ return node => {
718
+ if (typeTextIndex >= 0 && node.type !== 'text') {
719
+ return false
720
+ }
721
+
722
+ return node.matches(selector)
723
+ }
724
+ }
725
+
726
+ let result = [];
727
+
728
+ for (const [element, roles] of elementRolesMap.entries()) {
729
+ result = [
730
+ ...result,
731
+ {
732
+ match: match(element),
733
+ roles: Array.from(roles),
734
+ specificity: getSelectorSpecificity(element),
735
+ },
736
+ ];
737
+ }
738
+
739
+ return result.sort(bySelectorSpecificity)
740
+ }
741
+
742
+ function toHaveAccessibleName(htmlElement, expectedAccessibleName) {
743
+ checkHtmlElement(htmlElement, toHaveAccessibleName, this);
744
+ const actualAccessibleName = domAccessibilityApi.computeAccessibleName(htmlElement);
745
+ const missingExpectedValue = arguments.length === 1;
746
+
747
+ let pass = false;
748
+ if (missingExpectedValue) {
749
+ // When called without an expected value we only want to validate that the element has an
750
+ // accessible name, whatever it may be.
751
+ pass = actualAccessibleName !== '';
752
+ } else {
753
+ pass =
754
+ expectedAccessibleName instanceof RegExp
755
+ ? expectedAccessibleName.test(actualAccessibleName)
756
+ : this.equals(actualAccessibleName, expectedAccessibleName);
757
+ }
758
+
759
+ return {
760
+ pass,
761
+
762
+ message: () => {
763
+ const to = this.isNot ? 'not to' : 'to';
764
+ return getMessage(
765
+ this,
766
+ this.utils.matcherHint(
767
+ `${this.isNot ? '.not' : ''}.${toHaveAccessibleName.name}`,
768
+ 'element',
769
+ '',
770
+ ),
771
+ `Expected element ${to} have accessible name`,
772
+ expectedAccessibleName,
773
+ 'Received',
774
+ actualAccessibleName,
775
+ )
776
+ },
777
+ }
778
+ }
779
+
780
+ function printAttribute(stringify, name, value) {
781
+ return value === undefined ? name : `${name}=${stringify(value)}`
782
+ }
783
+
784
+ function getAttributeComment(stringify, name, value) {
785
+ return value === undefined
786
+ ? `element.hasAttribute(${stringify(name)})`
787
+ : `element.getAttribute(${stringify(name)}) === ${stringify(value)}`
788
+ }
789
+
790
+ function toHaveAttribute(htmlElement, name, expectedValue) {
791
+ checkHtmlElement(htmlElement, toHaveAttribute, this);
792
+ const isExpectedValuePresent = expectedValue !== undefined;
793
+ const hasAttribute = htmlElement.hasAttribute(name);
794
+ const receivedValue = htmlElement.getAttribute(name);
795
+ return {
796
+ pass: isExpectedValuePresent
797
+ ? hasAttribute && this.equals(receivedValue, expectedValue)
798
+ : hasAttribute,
799
+ message: () => {
800
+ const to = this.isNot ? 'not to' : 'to';
801
+ const receivedAttribute = hasAttribute
802
+ ? printAttribute(this.utils.stringify, name, receivedValue)
803
+ : null;
804
+ const matcher = this.utils.matcherHint(
805
+ `${this.isNot ? '.not' : ''}.toHaveAttribute`,
806
+ 'element',
807
+ this.utils.printExpected(name),
808
+ {
809
+ secondArgument: isExpectedValuePresent
810
+ ? this.utils.printExpected(expectedValue)
811
+ : undefined,
812
+ comment: getAttributeComment(
813
+ this.utils.stringify,
814
+ name,
815
+ expectedValue,
816
+ ),
817
+ },
818
+ );
819
+ return getMessage(
820
+ this,
821
+ matcher,
822
+ `Expected the element ${to} have attribute`,
823
+ printAttribute(this.utils.stringify, name, expectedValue),
824
+ 'Received',
825
+ receivedAttribute,
826
+ )
827
+ },
828
+ }
829
+ }
830
+
831
+ function getExpectedClassNamesAndOptions(params) {
832
+ const lastParam = params.pop();
833
+ let expectedClassNames, options;
834
+
835
+ if (typeof lastParam === 'object' && !(lastParam instanceof RegExp)) {
836
+ expectedClassNames = params;
837
+ options = lastParam;
838
+ } else {
839
+ expectedClassNames = params.concat(lastParam);
840
+ options = {exact: false};
841
+ }
842
+ return {expectedClassNames, options}
843
+ }
844
+
845
+ function splitClassNames(str) {
846
+ if (!str) return []
847
+ return str.split(/\s+/).filter(s => s.length > 0)
848
+ }
849
+
850
+ function isSubset$1(subset, superset) {
851
+ return subset.every(strOrRegexp =>
852
+ typeof strOrRegexp === 'string'
853
+ ? superset.includes(strOrRegexp)
854
+ : superset.some(className => strOrRegexp.test(className)),
855
+ )
856
+ }
857
+
858
+ function toHaveClass(htmlElement, ...params) {
859
+ checkHtmlElement(htmlElement, toHaveClass, this);
860
+ const {expectedClassNames, options} = getExpectedClassNamesAndOptions(params);
861
+
862
+ const received = splitClassNames(htmlElement.getAttribute('class'));
863
+ const expected = expectedClassNames.reduce(
864
+ (acc, className) =>
865
+ acc.concat(
866
+ typeof className === 'string' || !className
867
+ ? splitClassNames(className)
868
+ : className,
869
+ ),
870
+ [],
871
+ );
872
+
873
+ const hasRegExp = expected.some(className => className instanceof RegExp);
874
+ if (options.exact && hasRegExp) {
875
+ throw new Error('Exact option does not support RegExp expected class names')
876
+ }
877
+
878
+ if (options.exact) {
879
+ return {
880
+ pass: isSubset$1(expected, received) && expected.length === received.length,
881
+ message: () => {
882
+ const to = this.isNot ? 'not to' : 'to';
883
+ return getMessage(
884
+ this,
885
+ this.utils.matcherHint(
886
+ `${this.isNot ? '.not' : ''}.toHaveClass`,
887
+ 'element',
888
+ this.utils.printExpected(expected.join(' ')),
889
+ ),
890
+ `Expected the element ${to} have EXACTLY defined classes`,
891
+ expected.join(' '),
892
+ 'Received',
893
+ received.join(' '),
894
+ )
895
+ },
896
+ }
897
+ }
898
+
899
+ return expected.length > 0
900
+ ? {
901
+ pass: isSubset$1(expected, received),
902
+ message: () => {
903
+ const to = this.isNot ? 'not to' : 'to';
904
+ return getMessage(
905
+ this,
906
+ this.utils.matcherHint(
907
+ `${this.isNot ? '.not' : ''}.toHaveClass`,
908
+ 'element',
909
+ this.utils.printExpected(expected.join(' ')),
910
+ ),
911
+ `Expected the element ${to} have class`,
912
+ expected.join(' '),
913
+ 'Received',
914
+ received.join(' '),
915
+ )
916
+ },
917
+ }
918
+ : {
919
+ pass: this.isNot ? received.length > 0 : false,
920
+ message: () =>
921
+ this.isNot
922
+ ? getMessage(
923
+ this,
924
+ this.utils.matcherHint('.not.toHaveClass', 'element', ''),
925
+ 'Expected the element to have classes',
926
+ '(none)',
927
+ 'Received',
928
+ received.join(' '),
929
+ )
930
+ : [
931
+ this.utils.matcherHint(`.toHaveClass`, 'element'),
932
+ 'At least one expected class must be provided.',
933
+ ].join('\n'),
934
+ }
935
+ }
936
+
937
+ function getStyleDeclaration(document, css) {
938
+ const styles = {};
939
+
940
+ // The next block is necessary to normalize colors
941
+ const copy = document.createElement('div');
942
+ Object.keys(css).forEach(property => {
943
+ copy.style[property] = css[property];
944
+ styles[property] = copy.style[property];
945
+ });
946
+
947
+ return styles
948
+ }
949
+
950
+ function isSubset(styles, computedStyle) {
951
+ return (
952
+ !!Object.keys(styles).length &&
953
+ Object.entries(styles).every(([prop, value]) => {
954
+ const isCustomProperty = prop.startsWith('--');
955
+ const spellingVariants = [prop];
956
+ if (!isCustomProperty) spellingVariants.push(prop.toLowerCase());
957
+
958
+ return spellingVariants.some(
959
+ name =>
960
+ computedStyle[name] === value ||
961
+ computedStyle.getPropertyValue(name) === value,
962
+ )
963
+ })
964
+ )
965
+ }
966
+
967
+ function printoutStyles(styles) {
968
+ return Object.keys(styles)
969
+ .sort()
970
+ .map(prop => `${prop}: ${styles[prop]};`)
971
+ .join('\n')
972
+ }
973
+
974
+ // Highlights only style rules that were expected but were not found in the
975
+ // received computed styles
976
+ function expectedDiff(diffFn, expected, computedStyles) {
977
+ const received = Array.from(computedStyles)
978
+ .filter(prop => expected[prop] !== undefined)
979
+ .reduce(
980
+ (obj, prop) =>
981
+ Object.assign(obj, {[prop]: computedStyles.getPropertyValue(prop)}),
982
+ {},
983
+ );
984
+ const diffOutput = diffFn(printoutStyles(expected), printoutStyles(received));
985
+ // Remove the "+ Received" annotation because this is a one-way diff
986
+ return diffOutput.replace(`${chalk.red('+ Received')}\n`, '')
987
+ }
988
+
989
+ function toHaveStyle(htmlElement, css) {
990
+ checkHtmlElement(htmlElement, toHaveStyle, this);
991
+ const parsedCSS =
992
+ typeof css === 'object' ? css : parseCSS(css, toHaveStyle, this);
993
+ const {getComputedStyle} = htmlElement.ownerDocument.defaultView;
994
+
995
+ const expected = getStyleDeclaration(htmlElement.ownerDocument, parsedCSS);
996
+ const received = getComputedStyle(htmlElement);
997
+
998
+ return {
999
+ pass: isSubset(expected, received),
1000
+ message: () => {
1001
+ const matcher = `${this.isNot ? '.not' : ''}.toHaveStyle`;
1002
+ return [
1003
+ this.utils.matcherHint(matcher, 'element', ''),
1004
+ expectedDiff(this.utils.diff, expected, received),
1005
+ ].join('\n\n')
1006
+ },
1007
+ }
1008
+ }
1009
+
1010
+ function toHaveFocus(element) {
1011
+ checkHtmlElement(element, toHaveFocus, this);
1012
+
1013
+ return {
1014
+ pass: element.ownerDocument.activeElement === element,
1015
+ message: () => {
1016
+ return [
1017
+ this.utils.matcherHint(
1018
+ `${this.isNot ? '.not' : ''}.toHaveFocus`,
1019
+ 'element',
1020
+ '',
1021
+ ),
1022
+ '',
1023
+ ...(this.isNot
1024
+ ? [
1025
+ 'Received element is focused:',
1026
+ ` ${this.utils.printReceived(element)}`,
1027
+ ]
1028
+ : [
1029
+ 'Expected element with focus:',
1030
+ ` ${this.utils.printExpected(element)}`,
1031
+ 'Received element with focus:',
1032
+ ` ${this.utils.printReceived(
1033
+ element.ownerDocument.activeElement,
1034
+ )}`,
1035
+ ]),
1036
+ ].join('\n')
1037
+ },
1038
+ }
1039
+ }
1040
+
1041
+ // Returns the combined value of several elements that have the same name
1042
+ // e.g. radio buttons or groups of checkboxes
1043
+ function getMultiElementValue(elements) {
1044
+ const types = [...new Set(elements.map(element => element.type))];
1045
+ if (types.length !== 1) {
1046
+ throw new Error(
1047
+ 'Multiple form elements with the same name must be of the same type',
1048
+ )
1049
+ }
1050
+ switch (types[0]) {
1051
+ case 'radio': {
1052
+ const theChosenOne = elements.find(radio => radio.checked);
1053
+ return theChosenOne ? theChosenOne.value : undefined
1054
+ }
1055
+ case 'checkbox':
1056
+ return elements
1057
+ .filter(checkbox => checkbox.checked)
1058
+ .map(checkbox => checkbox.value)
1059
+ default:
1060
+ // NOTE: Not even sure this is a valid use case, but just in case...
1061
+ return elements.map(element => element.value)
1062
+ }
1063
+ }
1064
+
1065
+ function getFormValue(container, name) {
1066
+ const elements = [...container.querySelectorAll(`[name="${escape(name)}"]`)];
1067
+ /* istanbul ignore if */
1068
+ if (elements.length === 0) {
1069
+ return undefined // shouldn't happen, but just in case
1070
+ }
1071
+ switch (elements.length) {
1072
+ case 1:
1073
+ return getSingleElementValue(elements[0])
1074
+ default:
1075
+ return getMultiElementValue(elements)
1076
+ }
1077
+ }
1078
+
1079
+ // Strips the `[]` suffix off a form value name
1080
+ function getPureName(name) {
1081
+ return /\[\]$/.test(name) ? name.slice(0, -2) : name
1082
+ }
1083
+
1084
+ function getAllFormValues(container) {
1085
+ const names = Array.from(container.elements).map(element => element.name);
1086
+ return names.reduce(
1087
+ (obj, name) => ({
1088
+ ...obj,
1089
+ [getPureName(name)]: getFormValue(container, name),
1090
+ }),
1091
+ {},
1092
+ )
1093
+ }
1094
+
1095
+ function toHaveFormValues(formElement, expectedValues) {
1096
+ checkHtmlElement(formElement, toHaveFormValues, this);
1097
+ if (!formElement.elements) {
1098
+ // TODO: Change condition to use instanceof against the appropriate element classes instead
1099
+ throw new Error('toHaveFormValues must be called on a form or a fieldset')
1100
+ }
1101
+ const formValues = getAllFormValues(formElement);
1102
+ return {
1103
+ pass: Object.entries(expectedValues).every(([name, expectedValue]) =>
1104
+ isEqualWith(formValues[name], expectedValue, compareArraysAsSet),
1105
+ ),
1106
+ message: () => {
1107
+ const to = this.isNot ? 'not to' : 'to';
1108
+ const matcher = `${this.isNot ? '.not' : ''}.toHaveFormValues`;
1109
+ const commonKeyValues = Object.keys(formValues)
1110
+ .filter(key => expectedValues.hasOwnProperty(key))
1111
+ .reduce((obj, key) => ({...obj, [key]: formValues[key]}), {});
1112
+ return [
1113
+ this.utils.matcherHint(matcher, 'element', ''),
1114
+ `Expected the element ${to} have form values`,
1115
+ this.utils.diff(expectedValues, commonKeyValues),
1116
+ ].join('\n\n')
1117
+ },
1118
+ }
1119
+ }
1120
+
1121
+ function isStyleVisible(element) {
1122
+ const {getComputedStyle} = element.ownerDocument.defaultView;
1123
+
1124
+ const {display, visibility, opacity} = getComputedStyle(element);
1125
+ return (
1126
+ display !== 'none' &&
1127
+ visibility !== 'hidden' &&
1128
+ visibility !== 'collapse' &&
1129
+ opacity !== '0' &&
1130
+ opacity !== 0
1131
+ )
1132
+ }
1133
+
1134
+ function isAttributeVisible(element, previousElement) {
1135
+ let detailsVisibility;
1136
+
1137
+ if (previousElement) {
1138
+ detailsVisibility =
1139
+ element.nodeName === 'DETAILS' && previousElement.nodeName !== 'SUMMARY'
1140
+ ? element.hasAttribute('open')
1141
+ : true;
1142
+ } else {
1143
+ detailsVisibility =
1144
+ element.nodeName === 'DETAILS' ? element.hasAttribute('open') : true;
1145
+ }
1146
+
1147
+ return !element.hasAttribute('hidden') && detailsVisibility
1148
+ }
1149
+
1150
+ function isElementVisible(element, previousElement) {
1151
+ return (
1152
+ isStyleVisible(element) &&
1153
+ isAttributeVisible(element, previousElement) &&
1154
+ (!element.parentElement || isElementVisible(element.parentElement, element))
1155
+ )
1156
+ }
1157
+
1158
+ function toBeVisible(element) {
1159
+ checkHtmlElement(element, toBeVisible, this);
1160
+ const isInDocument =
1161
+ element.ownerDocument === element.getRootNode({composed: true});
1162
+ const isVisible = isInDocument && isElementVisible(element);
1163
+ return {
1164
+ pass: isVisible,
1165
+ message: () => {
1166
+ const is = isVisible ? 'is' : 'is not';
1167
+ return [
1168
+ this.utils.matcherHint(
1169
+ `${this.isNot ? '.not' : ''}.toBeVisible`,
1170
+ 'element',
1171
+ '',
1172
+ ),
1173
+ '',
1174
+ `Received element ${is} visible${
1175
+ isInDocument ? '' : ' (element is not in the document)'
1176
+ }:`,
1177
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1178
+ ].join('\n')
1179
+ },
1180
+ }
1181
+ }
1182
+
1183
+ // form elements that support 'disabled'
1184
+ const FORM_TAGS$2 = [
1185
+ 'fieldset',
1186
+ 'input',
1187
+ 'select',
1188
+ 'optgroup',
1189
+ 'option',
1190
+ 'button',
1191
+ 'textarea',
1192
+ ];
1193
+
1194
+ /*
1195
+ * According to specification:
1196
+ * If <fieldset> is disabled, the form controls that are its descendants,
1197
+ * except descendants of its first optional <legend> element, are disabled
1198
+ *
1199
+ * https://html.spec.whatwg.org/multipage/form-elements.html#concept-fieldset-disabled
1200
+ *
1201
+ * This method tests whether element is first legend child of fieldset parent
1202
+ */
1203
+ function isFirstLegendChildOfFieldset(element, parent) {
1204
+ return (
1205
+ getTag(element) === 'legend' &&
1206
+ getTag(parent) === 'fieldset' &&
1207
+ element.isSameNode(
1208
+ Array.from(parent.children).find(child => getTag(child) === 'legend'),
1209
+ )
1210
+ )
1211
+ }
1212
+
1213
+ function isElementDisabledByParent(element, parent) {
1214
+ return (
1215
+ isElementDisabled(parent) && !isFirstLegendChildOfFieldset(element, parent)
1216
+ )
1217
+ }
1218
+
1219
+ function isCustomElement(tag) {
1220
+ return tag.includes('-')
1221
+ }
1222
+
1223
+ /*
1224
+ * Only certain form elements and custom elements can actually be disabled:
1225
+ * https://html.spec.whatwg.org/multipage/semantics-other.html#disabled-elements
1226
+ */
1227
+ function canElementBeDisabled(element) {
1228
+ const tag = getTag(element);
1229
+ return FORM_TAGS$2.includes(tag) || isCustomElement(tag)
1230
+ }
1231
+
1232
+ function isElementDisabled(element) {
1233
+ return canElementBeDisabled(element) && element.hasAttribute('disabled')
1234
+ }
1235
+
1236
+ function isAncestorDisabled(element) {
1237
+ const parent = element.parentElement;
1238
+ return (
1239
+ Boolean(parent) &&
1240
+ (isElementDisabledByParent(element, parent) || isAncestorDisabled(parent))
1241
+ )
1242
+ }
1243
+
1244
+ function isElementOrAncestorDisabled(element) {
1245
+ return (
1246
+ canElementBeDisabled(element) &&
1247
+ (isElementDisabled(element) || isAncestorDisabled(element))
1248
+ )
1249
+ }
1250
+
1251
+ function toBeDisabled(element) {
1252
+ checkHtmlElement(element, toBeDisabled, this);
1253
+
1254
+ const isDisabled = isElementOrAncestorDisabled(element);
1255
+
1256
+ return {
1257
+ pass: isDisabled,
1258
+ message: () => {
1259
+ const is = isDisabled ? 'is' : 'is not';
1260
+ return [
1261
+ this.utils.matcherHint(
1262
+ `${this.isNot ? '.not' : ''}.toBeDisabled`,
1263
+ 'element',
1264
+ '',
1265
+ ),
1266
+ '',
1267
+ `Received element ${is} disabled:`,
1268
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1269
+ ].join('\n')
1270
+ },
1271
+ }
1272
+ }
1273
+
1274
+ function toBeEnabled(element) {
1275
+ checkHtmlElement(element, toBeEnabled, this);
1276
+
1277
+ const isEnabled = !isElementOrAncestorDisabled(element);
1278
+
1279
+ return {
1280
+ pass: isEnabled,
1281
+ message: () => {
1282
+ const is = isEnabled ? 'is' : 'is not';
1283
+ return [
1284
+ this.utils.matcherHint(
1285
+ `${this.isNot ? '.not' : ''}.toBeEnabled`,
1286
+ 'element',
1287
+ '',
1288
+ ),
1289
+ '',
1290
+ `Received element ${is} enabled:`,
1291
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1292
+ ].join('\n')
1293
+ },
1294
+ }
1295
+ }
1296
+
1297
+ // form elements that support 'required'
1298
+ const FORM_TAGS$1 = ['select', 'textarea'];
1299
+
1300
+ const ARIA_FORM_TAGS = ['input', 'select', 'textarea'];
1301
+
1302
+ const UNSUPPORTED_INPUT_TYPES = [
1303
+ 'color',
1304
+ 'hidden',
1305
+ 'range',
1306
+ 'submit',
1307
+ 'image',
1308
+ 'reset',
1309
+ ];
1310
+
1311
+ const SUPPORTED_ARIA_ROLES = [
1312
+ 'checkbox',
1313
+ 'combobox',
1314
+ 'gridcell',
1315
+ 'listbox',
1316
+ 'radiogroup',
1317
+ 'spinbutton',
1318
+ 'textbox',
1319
+ 'tree',
1320
+ ];
1321
+
1322
+ function isRequiredOnFormTagsExceptInput(element) {
1323
+ return FORM_TAGS$1.includes(getTag(element)) && element.hasAttribute('required')
1324
+ }
1325
+
1326
+ function isRequiredOnSupportedInput(element) {
1327
+ return (
1328
+ getTag(element) === 'input' &&
1329
+ element.hasAttribute('required') &&
1330
+ ((element.hasAttribute('type') &&
1331
+ !UNSUPPORTED_INPUT_TYPES.includes(element.getAttribute('type'))) ||
1332
+ !element.hasAttribute('type'))
1333
+ )
1334
+ }
1335
+
1336
+ function isElementRequiredByARIA(element) {
1337
+ return (
1338
+ element.hasAttribute('aria-required') &&
1339
+ element.getAttribute('aria-required') === 'true' &&
1340
+ (ARIA_FORM_TAGS.includes(getTag(element)) ||
1341
+ (element.hasAttribute('role') &&
1342
+ SUPPORTED_ARIA_ROLES.includes(element.getAttribute('role'))))
1343
+ )
1344
+ }
1345
+
1346
+ function toBeRequired(element) {
1347
+ checkHtmlElement(element, toBeRequired, this);
1348
+
1349
+ const isRequired =
1350
+ isRequiredOnFormTagsExceptInput(element) ||
1351
+ isRequiredOnSupportedInput(element) ||
1352
+ isElementRequiredByARIA(element);
1353
+
1354
+ return {
1355
+ pass: isRequired,
1356
+ message: () => {
1357
+ const is = isRequired ? 'is' : 'is not';
1358
+ return [
1359
+ this.utils.matcherHint(
1360
+ `${this.isNot ? '.not' : ''}.toBeRequired`,
1361
+ 'element',
1362
+ '',
1363
+ ),
1364
+ '',
1365
+ `Received element ${is} required:`,
1366
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1367
+ ].join('\n')
1368
+ },
1369
+ }
1370
+ }
1371
+
1372
+ const FORM_TAGS = ['form', 'input', 'select', 'textarea'];
1373
+
1374
+ function isElementHavingAriaInvalid(element) {
1375
+ return (
1376
+ element.hasAttribute('aria-invalid') &&
1377
+ element.getAttribute('aria-invalid') !== 'false'
1378
+ )
1379
+ }
1380
+
1381
+ function isSupportsValidityMethod(element) {
1382
+ return FORM_TAGS.includes(getTag(element))
1383
+ }
1384
+
1385
+ function isElementInvalid(element) {
1386
+ const isHaveAriaInvalid = isElementHavingAriaInvalid(element);
1387
+ if (isSupportsValidityMethod(element)) {
1388
+ return isHaveAriaInvalid || !element.checkValidity()
1389
+ } else {
1390
+ return isHaveAriaInvalid
1391
+ }
1392
+ }
1393
+
1394
+ function toBeInvalid(element) {
1395
+ checkHtmlElement(element, toBeInvalid, this);
1396
+
1397
+ const isInvalid = isElementInvalid(element);
1398
+
1399
+ return {
1400
+ pass: isInvalid,
1401
+ message: () => {
1402
+ const is = isInvalid ? 'is' : 'is not';
1403
+ return [
1404
+ this.utils.matcherHint(
1405
+ `${this.isNot ? '.not' : ''}.toBeInvalid`,
1406
+ 'element',
1407
+ '',
1408
+ ),
1409
+ '',
1410
+ `Received element ${is} currently invalid:`,
1411
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1412
+ ].join('\n')
1413
+ },
1414
+ }
1415
+ }
1416
+
1417
+ function toBeValid(element) {
1418
+ checkHtmlElement(element, toBeValid, this);
1419
+
1420
+ const isValid = !isElementInvalid(element);
1421
+
1422
+ return {
1423
+ pass: isValid,
1424
+ message: () => {
1425
+ const is = isValid ? 'is' : 'is not';
1426
+ return [
1427
+ this.utils.matcherHint(
1428
+ `${this.isNot ? '.not' : ''}.toBeValid`,
1429
+ 'element',
1430
+ '',
1431
+ ),
1432
+ '',
1433
+ `Received element ${is} currently valid:`,
1434
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1435
+ ].join('\n')
1436
+ },
1437
+ }
1438
+ }
1439
+
1440
+ function toHaveValue(htmlElement, expectedValue) {
1441
+ checkHtmlElement(htmlElement, toHaveValue, this);
1442
+
1443
+ if (
1444
+ htmlElement.tagName.toLowerCase() === 'input' &&
1445
+ ['checkbox', 'radio'].includes(htmlElement.type)
1446
+ ) {
1447
+ throw new Error(
1448
+ 'input with type=checkbox or type=radio cannot be used with .toHaveValue(). Use .toBeChecked() for type=checkbox or .toHaveFormValues() instead',
1449
+ )
1450
+ }
1451
+
1452
+ const receivedValue = getSingleElementValue(htmlElement);
1453
+ const expectsValue = expectedValue !== undefined;
1454
+
1455
+ let expectedTypedValue = expectedValue;
1456
+ let receivedTypedValue = receivedValue;
1457
+ if (expectedValue == receivedValue && expectedValue !== receivedValue) {
1458
+ expectedTypedValue = `${expectedValue} (${typeof expectedValue})`;
1459
+ receivedTypedValue = `${receivedValue} (${typeof receivedValue})`;
1460
+ }
1461
+
1462
+ return {
1463
+ pass: expectsValue
1464
+ ? isEqualWith(receivedValue, expectedValue, compareArraysAsSet)
1465
+ : Boolean(receivedValue),
1466
+ message: () => {
1467
+ const to = this.isNot ? 'not to' : 'to';
1468
+ const matcher = this.utils.matcherHint(
1469
+ `${this.isNot ? '.not' : ''}.toHaveValue`,
1470
+ 'element',
1471
+ expectedValue,
1472
+ );
1473
+ return getMessage(
1474
+ this,
1475
+ matcher,
1476
+ `Expected the element ${to} have value`,
1477
+ expectsValue ? expectedTypedValue : '(any)',
1478
+ 'Received',
1479
+ receivedTypedValue,
1480
+ )
1481
+ },
1482
+ }
1483
+ }
1484
+
1485
+ function toHaveDisplayValue(htmlElement, expectedValue) {
1486
+ checkHtmlElement(htmlElement, toHaveDisplayValue, this);
1487
+ const tagName = htmlElement.tagName.toLowerCase();
1488
+
1489
+ if (!['select', 'input', 'textarea'].includes(tagName)) {
1490
+ throw new Error(
1491
+ '.toHaveDisplayValue() currently supports only input, textarea or select elements, try with another matcher instead.',
1492
+ )
1493
+ }
1494
+
1495
+ if (tagName === 'input' && ['radio', 'checkbox'].includes(htmlElement.type)) {
1496
+ throw new Error(
1497
+ `.toHaveDisplayValue() currently does not support input[type="${htmlElement.type}"], try with another matcher instead.`,
1498
+ )
1499
+ }
1500
+
1501
+ const values = getValues(tagName, htmlElement);
1502
+ const expectedValues = getExpectedValues(expectedValue);
1503
+ const numberOfMatchesWithValues = expectedValues.filter(expected =>
1504
+ values.some(value =>
1505
+ expected instanceof RegExp
1506
+ ? expected.test(value)
1507
+ : this.equals(value, String(expected)),
1508
+ ),
1509
+ ).length;
1510
+
1511
+ const matchedWithAllValues = numberOfMatchesWithValues === values.length;
1512
+ const matchedWithAllExpectedValues =
1513
+ numberOfMatchesWithValues === expectedValues.length;
1514
+
1515
+ return {
1516
+ pass: matchedWithAllValues && matchedWithAllExpectedValues,
1517
+ message: () =>
1518
+ getMessage(
1519
+ this,
1520
+ this.utils.matcherHint(
1521
+ `${this.isNot ? '.not' : ''}.toHaveDisplayValue`,
1522
+ 'element',
1523
+ '',
1524
+ ),
1525
+ `Expected element ${this.isNot ? 'not ' : ''}to have display value`,
1526
+ expectedValue,
1527
+ 'Received',
1528
+ values,
1529
+ ),
1530
+ }
1531
+ }
1532
+
1533
+ function getValues(tagName, htmlElement) {
1534
+ return tagName === 'select'
1535
+ ? Array.from(htmlElement)
1536
+ .filter(option => option.selected)
1537
+ .map(option => option.textContent)
1538
+ : [htmlElement.value]
1539
+ }
1540
+
1541
+ function getExpectedValues(expectedValue) {
1542
+ return expectedValue instanceof Array ? expectedValue : [expectedValue]
1543
+ }
1544
+
1545
+ function toBeChecked(element) {
1546
+ checkHtmlElement(element, toBeChecked, this);
1547
+
1548
+ const isValidInput = () => {
1549
+ return (
1550
+ element.tagName.toLowerCase() === 'input' &&
1551
+ ['checkbox', 'radio'].includes(element.type)
1552
+ )
1553
+ };
1554
+
1555
+ const isValidAriaElement = () => {
1556
+ return (
1557
+ roleSupportsChecked(element.getAttribute('role')) &&
1558
+ ['true', 'false'].includes(element.getAttribute('aria-checked'))
1559
+ )
1560
+ };
1561
+
1562
+ if (!isValidInput() && !isValidAriaElement()) {
1563
+ return {
1564
+ pass: false,
1565
+ message: () =>
1566
+ `only inputs with type="checkbox" or type="radio" or elements with ${supportedRolesSentence()} and a valid aria-checked attribute can be used with .toBeChecked(). Use .toHaveValue() instead`,
1567
+ }
1568
+ }
1569
+
1570
+ const isChecked = () => {
1571
+ if (isValidInput()) return element.checked
1572
+ return element.getAttribute('aria-checked') === 'true'
1573
+ };
1574
+
1575
+ return {
1576
+ pass: isChecked(),
1577
+ message: () => {
1578
+ const is = isChecked() ? 'is' : 'is not';
1579
+ return [
1580
+ this.utils.matcherHint(
1581
+ `${this.isNot ? '.not' : ''}.toBeChecked`,
1582
+ 'element',
1583
+ '',
1584
+ ),
1585
+ '',
1586
+ `Received element ${is} checked:`,
1587
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1588
+ ].join('\n')
1589
+ },
1590
+ }
1591
+ }
1592
+
1593
+ function supportedRolesSentence() {
1594
+ return toSentence(
1595
+ supportedRoles().map(role => `role="${role}"`),
1596
+ {lastWordConnector: ' or '},
1597
+ )
1598
+ }
1599
+
1600
+ function supportedRoles() {
1601
+ return ariaQuery.roles.keys().filter(roleSupportsChecked)
1602
+ }
1603
+
1604
+ function roleSupportsChecked(role) {
1605
+ return ariaQuery.roles.get(role)?.props['aria-checked'] !== undefined
1606
+ }
1607
+
1608
+ function toBePartiallyChecked(element) {
1609
+ checkHtmlElement(element, toBePartiallyChecked, this);
1610
+
1611
+ const isValidInput = () => {
1612
+ return (
1613
+ element.tagName.toLowerCase() === 'input' && element.type === 'checkbox'
1614
+ )
1615
+ };
1616
+
1617
+ const isValidAriaElement = () => {
1618
+ return element.getAttribute('role') === 'checkbox'
1619
+ };
1620
+
1621
+ if (!isValidInput() && !isValidAriaElement()) {
1622
+ return {
1623
+ pass: false,
1624
+ message: () =>
1625
+ 'only inputs with type="checkbox" or elements with role="checkbox" and a valid aria-checked attribute can be used with .toBePartiallyChecked(). Use .toHaveValue() instead',
1626
+ }
1627
+ }
1628
+
1629
+ const isPartiallyChecked = () => {
1630
+ const isAriaMixed = element.getAttribute('aria-checked') === 'mixed';
1631
+
1632
+ if (isValidInput()) {
1633
+ return element.indeterminate || isAriaMixed
1634
+ }
1635
+
1636
+ return isAriaMixed
1637
+ };
1638
+
1639
+ return {
1640
+ pass: isPartiallyChecked(),
1641
+ message: () => {
1642
+ const is = isPartiallyChecked() ? 'is' : 'is not';
1643
+ return [
1644
+ this.utils.matcherHint(
1645
+ `${this.isNot ? '.not' : ''}.toBePartiallyChecked`,
1646
+ 'element',
1647
+ '',
1648
+ ),
1649
+ '',
1650
+ `Received element ${is} partially checked:`,
1651
+ ` ${this.utils.printReceived(element.cloneNode(false))}`,
1652
+ ].join('\n')
1653
+ },
1654
+ }
1655
+ }
1656
+
1657
+ // See algoritm: https://www.w3.org/TR/accname-1.1/#mapping_additional_nd_description
1658
+ function toHaveDescription(htmlElement, checkWith) {
1659
+ deprecate(
1660
+ 'toHaveDescription',
1661
+ 'Please use toHaveAccessibleDescription.',
1662
+ );
1663
+
1664
+ checkHtmlElement(htmlElement, toHaveDescription, this);
1665
+
1666
+ const expectsDescription = checkWith !== undefined;
1667
+
1668
+ const descriptionIDRaw = htmlElement.getAttribute('aria-describedby') || '';
1669
+ const descriptionIDs = descriptionIDRaw.split(/\s+/).filter(Boolean);
1670
+ let description = '';
1671
+ if (descriptionIDs.length > 0) {
1672
+ const document = htmlElement.ownerDocument;
1673
+ const descriptionEls = descriptionIDs
1674
+ .map(descriptionID => document.getElementById(descriptionID))
1675
+ .filter(Boolean);
1676
+ description = normalize(descriptionEls.map(el => el.textContent).join(' '));
1677
+ }
1678
+
1679
+ return {
1680
+ pass: expectsDescription
1681
+ ? checkWith instanceof RegExp
1682
+ ? checkWith.test(description)
1683
+ : this.equals(description, checkWith)
1684
+ : Boolean(description),
1685
+ message: () => {
1686
+ const to = this.isNot ? 'not to' : 'to';
1687
+ return getMessage(
1688
+ this,
1689
+ this.utils.matcherHint(
1690
+ `${this.isNot ? '.not' : ''}.toHaveDescription`,
1691
+ 'element',
1692
+ '',
1693
+ ),
1694
+ `Expected the element ${to} have description`,
1695
+ this.utils.printExpected(checkWith),
1696
+ 'Received',
1697
+ this.utils.printReceived(description),
1698
+ )
1699
+ },
1700
+ }
1701
+ }
1702
+
1703
+ // See aria-errormessage spec https://www.w3.org/TR/wai-aria-1.2/#aria-errormessage
1704
+ function toHaveErrorMessage(htmlElement, checkWith) {
1705
+ deprecate('toHaveErrorMessage', 'Please use toHaveAccessibleErrorMessage.');
1706
+ checkHtmlElement(htmlElement, toHaveErrorMessage, this);
1707
+
1708
+ if (
1709
+ !htmlElement.hasAttribute('aria-invalid') ||
1710
+ htmlElement.getAttribute('aria-invalid') === 'false'
1711
+ ) {
1712
+ const not = this.isNot ? '.not' : '';
1713
+
1714
+ return {
1715
+ pass: false,
1716
+ message: () => {
1717
+ return getMessage(
1718
+ this,
1719
+ this.utils.matcherHint(`${not}.toHaveErrorMessage`, 'element', ''),
1720
+ `Expected the element to have invalid state indicated by`,
1721
+ 'aria-invalid="true"',
1722
+ 'Received',
1723
+ htmlElement.hasAttribute('aria-invalid')
1724
+ ? `aria-invalid="${htmlElement.getAttribute('aria-invalid')}"`
1725
+ : this.utils.printReceived(''),
1726
+ )
1727
+ },
1728
+ }
1729
+ }
1730
+
1731
+ const expectsErrorMessage = checkWith !== undefined;
1732
+
1733
+ const errormessageIDRaw = htmlElement.getAttribute('aria-errormessage') || '';
1734
+ const errormessageIDs = errormessageIDRaw.split(/\s+/).filter(Boolean);
1735
+
1736
+ let errormessage = '';
1737
+ if (errormessageIDs.length > 0) {
1738
+ const document = htmlElement.ownerDocument;
1739
+
1740
+ const errormessageEls = errormessageIDs
1741
+ .map(errormessageID => document.getElementById(errormessageID))
1742
+ .filter(Boolean);
1743
+
1744
+ errormessage = normalize(
1745
+ errormessageEls.map(el => el.textContent).join(' '),
1746
+ );
1747
+ }
1748
+
1749
+ return {
1750
+ pass: expectsErrorMessage
1751
+ ? checkWith instanceof RegExp
1752
+ ? checkWith.test(errormessage)
1753
+ : this.equals(errormessage, checkWith)
1754
+ : Boolean(errormessage),
1755
+ message: () => {
1756
+ const to = this.isNot ? 'not to' : 'to';
1757
+ return getMessage(
1758
+ this,
1759
+ this.utils.matcherHint(
1760
+ `${this.isNot ? '.not' : ''}.toHaveErrorMessage`,
1761
+ 'element',
1762
+ '',
1763
+ ),
1764
+ `Expected the element ${to} have error message`,
1765
+ this.utils.printExpected(checkWith),
1766
+ 'Received',
1767
+ this.utils.printReceived(errormessage),
1768
+ )
1769
+ },
1770
+ }
1771
+ }
1772
+
1773
+ /**
1774
+ * Returns the selection from the element.
1775
+ *
1776
+ * @param element {HTMLElement} The element to get the selection from.
1777
+ * @returns {String} The selection.
1778
+ */
1779
+ function getSelection(element) {
1780
+ const selection = element.ownerDocument.getSelection();
1781
+
1782
+ if (['input', 'textarea'].includes(element.tagName.toLowerCase())) {
1783
+ if (['radio', 'checkbox'].includes(element.type)) return ''
1784
+ return element.value
1785
+ .toString()
1786
+ .substring(element.selectionStart, element.selectionEnd)
1787
+ }
1788
+
1789
+ if (selection.anchorNode === null || selection.focusNode === null) {
1790
+ // No selection
1791
+ return ''
1792
+ }
1793
+
1794
+ const originalRange = selection.getRangeAt(0);
1795
+ const temporaryRange = element.ownerDocument.createRange();
1796
+
1797
+ if (selection.containsNode(element, false)) {
1798
+ // Whole element is inside selection
1799
+ temporaryRange.selectNodeContents(element);
1800
+ selection.removeAllRanges();
1801
+ selection.addRange(temporaryRange);
1802
+ } else if (
1803
+ element.contains(selection.anchorNode) &&
1804
+ element.contains(selection.focusNode)
1805
+ ) ; else {
1806
+ // Element is partially selected
1807
+ const selectionStartsWithinElement =
1808
+ element === originalRange.startContainer ||
1809
+ element.contains(originalRange.startContainer);
1810
+ const selectionEndsWithinElement =
1811
+ element === originalRange.endContainer ||
1812
+ element.contains(originalRange.endContainer);
1813
+ selection.removeAllRanges();
1814
+
1815
+ if (selectionStartsWithinElement || selectionEndsWithinElement) {
1816
+ temporaryRange.selectNodeContents(element);
1817
+
1818
+ if (selectionStartsWithinElement) {
1819
+ temporaryRange.setStart(
1820
+ originalRange.startContainer,
1821
+ originalRange.startOffset,
1822
+ );
1823
+ }
1824
+ if (selectionEndsWithinElement) {
1825
+ temporaryRange.setEnd(
1826
+ originalRange.endContainer,
1827
+ originalRange.endOffset,
1828
+ );
1829
+ }
1830
+
1831
+ selection.addRange(temporaryRange);
1832
+ }
1833
+ }
1834
+
1835
+ const result = selection.toString();
1836
+
1837
+ selection.removeAllRanges();
1838
+ selection.addRange(originalRange);
1839
+
1840
+ return result
1841
+ }
1842
+
1843
+ /**
1844
+ * Checks if the element has the string selected.
1845
+ *
1846
+ * @param htmlElement {HTMLElement} The html element to check the selection for.
1847
+ * @param expectedSelection {String} The selection as a string.
1848
+ */
1849
+ function toHaveSelection(htmlElement, expectedSelection) {
1850
+ checkHtmlElement(htmlElement, toHaveSelection, this);
1851
+
1852
+ const expectsSelection = expectedSelection !== undefined;
1853
+
1854
+ if (expectsSelection && typeof expectedSelection !== 'string') {
1855
+ throw new Error(`expected selection must be a string or undefined`)
1856
+ }
1857
+
1858
+ const receivedSelection = getSelection(htmlElement);
1859
+
1860
+ return {
1861
+ pass: expectsSelection
1862
+ ? isEqualWith(receivedSelection, expectedSelection, compareArraysAsSet)
1863
+ : Boolean(receivedSelection),
1864
+ message: () => {
1865
+ const to = this.isNot ? 'not to' : 'to';
1866
+ const matcher = this.utils.matcherHint(
1867
+ `${this.isNot ? '.not' : ''}.toHaveSelection`,
1868
+ 'element',
1869
+ expectedSelection,
1870
+ );
1871
+ return getMessage(
1872
+ this,
1873
+ matcher,
1874
+ `Expected the element ${to} have selection`,
1875
+ expectsSelection ? expectedSelection : '(any)',
1876
+ 'Received',
1877
+ receivedSelection,
1878
+ )
1879
+ },
1880
+ }
1881
+ }
1882
+
1883
+ var extensions = /*#__PURE__*/Object.freeze({
1884
+ __proto__: null,
1885
+ toBeChecked: toBeChecked,
1886
+ toBeDisabled: toBeDisabled,
1887
+ toBeEmpty: toBeEmpty,
1888
+ toBeEmptyDOMElement: toBeEmptyDOMElement,
1889
+ toBeEnabled: toBeEnabled,
1890
+ toBeInTheDOM: toBeInTheDOM,
1891
+ toBeInTheDocument: toBeInTheDocument,
1892
+ toBeInvalid: toBeInvalid,
1893
+ toBePartiallyChecked: toBePartiallyChecked,
1894
+ toBeRequired: toBeRequired,
1895
+ toBeValid: toBeValid,
1896
+ toBeVisible: toBeVisible,
1897
+ toContainElement: toContainElement,
1898
+ toContainHTML: toContainHTML,
1899
+ toHaveAccessibleDescription: toHaveAccessibleDescription,
1900
+ toHaveAccessibleErrorMessage: toHaveAccessibleErrorMessage,
1901
+ toHaveAccessibleName: toHaveAccessibleName,
1902
+ toHaveAttribute: toHaveAttribute,
1903
+ toHaveClass: toHaveClass,
1904
+ toHaveDescription: toHaveDescription,
1905
+ toHaveDisplayValue: toHaveDisplayValue,
1906
+ toHaveErrorMessage: toHaveErrorMessage,
1907
+ toHaveFocus: toHaveFocus,
1908
+ toHaveFormValues: toHaveFormValues,
1909
+ toHaveRole: toHaveRole,
1910
+ toHaveSelection: toHaveSelection,
1911
+ toHaveStyle: toHaveStyle,
1912
+ toHaveTextContent: toHaveTextContent,
1913
+ toHaveValue: toHaveValue
1914
+ });
1915
+
1916
+ exports.extensions = extensions;
1917
+ exports.toBeChecked = toBeChecked;
1918
+ exports.toBeDisabled = toBeDisabled;
1919
+ exports.toBeEmpty = toBeEmpty;
1920
+ exports.toBeEmptyDOMElement = toBeEmptyDOMElement;
1921
+ exports.toBeEnabled = toBeEnabled;
1922
+ exports.toBeInTheDOM = toBeInTheDOM;
1923
+ exports.toBeInTheDocument = toBeInTheDocument;
1924
+ exports.toBeInvalid = toBeInvalid;
1925
+ exports.toBePartiallyChecked = toBePartiallyChecked;
1926
+ exports.toBeRequired = toBeRequired;
1927
+ exports.toBeValid = toBeValid;
1928
+ exports.toBeVisible = toBeVisible;
1929
+ exports.toContainElement = toContainElement;
1930
+ exports.toContainHTML = toContainHTML;
1931
+ exports.toHaveAccessibleDescription = toHaveAccessibleDescription;
1932
+ exports.toHaveAccessibleErrorMessage = toHaveAccessibleErrorMessage;
1933
+ exports.toHaveAccessibleName = toHaveAccessibleName;
1934
+ exports.toHaveAttribute = toHaveAttribute;
1935
+ exports.toHaveClass = toHaveClass;
1936
+ exports.toHaveDescription = toHaveDescription;
1937
+ exports.toHaveDisplayValue = toHaveDisplayValue;
1938
+ exports.toHaveErrorMessage = toHaveErrorMessage;
1939
+ exports.toHaveFocus = toHaveFocus;
1940
+ exports.toHaveFormValues = toHaveFormValues;
1941
+ exports.toHaveRole = toHaveRole;
1942
+ exports.toHaveSelection = toHaveSelection;
1943
+ exports.toHaveStyle = toHaveStyle;
1944
+ exports.toHaveTextContent = toHaveTextContent;
1945
+ exports.toHaveValue = toHaveValue;