@ilo-org/react 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +36 -0
- package/.storybook/main.js +28 -0
- package/.storybook/manager-head.html +7 -0
- package/.storybook/manager.js +6 -0
- package/.storybook/preview.tsx +33 -0
- package/.storybook/styles.scss +1 -0
- package/.storybook/theme.js +11 -0
- package/.turbo/turbo-build.log +513 -0
- package/.turbo/turbo-check.log +5 -0
- package/.turbo/turbo-test.log +1676 -0
- package/=6.4.0 +115 -0
- package/=7.21.4 +21 -0
- package/LICENSE +201 -0
- package/README.md +11 -0
- package/lib/index.esm.js +24 -0
- package/lib/index.esm.js.map +1 -0
- package/lib/index.js +24 -0
- package/lib/index.js.map +1 -0
- package/package.json +115 -0
- package/rollup.config.js +40 -0
- package/src/__tests__/Accordion.test.tsx +52 -0
- package/src/__tests__/Button.test.tsx +60 -0
- package/src/__tests__/Callout.test.tsx +41 -0
- package/src/__tests__/ContextMenu.test.tsx +19 -0
- package/src/__tests__/Dropdown.test.tsx +38 -0
- package/src/__tests__/Form.test.tsx +34 -0
- package/src/__tests__/Heading.test.tsx +51 -0
- package/src/__tests__/Hero.test.tsx +22 -0
- package/src/__tests__/Image.test.tsx +21 -0
- package/src/__tests__/LinkList.test.tsx +17 -0
- package/src/__tests__/List.test.tsx +37 -0
- package/src/__tests__/Loading.text.tsx +33 -0
- package/src/__tests__/Notification.test.tsx +39 -0
- package/src/__tests__/Pagination.test.tsx +58 -0
- package/src/__tests__/Profile.test.tsx +48 -0
- package/src/__tests__/ReadMore.test.tsx +42 -0
- package/src/__tests__/RichText.test.tsx +16 -0
- package/src/__tests__/SearchField.test.tsx +35 -0
- package/src/__tests__/TableOfContents.test.tsx +12 -0
- package/src/__tests__/Tag.test.tsx +10 -0
- package/src/components/Accordion/Accordion.args.ts +19 -0
- package/src/components/Accordion/Accordion.props.d.ts +39 -0
- package/src/components/Accordion/Accordion.tsx +70 -0
- package/src/components/Accordion/AccordionButton.props.d.ts +13 -0
- package/src/components/Accordion/AccordionButton.tsx +60 -0
- package/src/components/Accordion/AccordionItem.props.d.ts +25 -0
- package/src/components/Accordion/AccordionItem.tsx +33 -0
- package/src/components/Accordion/AccordionPanel.props.d.ts +20 -0
- package/src/components/Accordion/AccordionPanel.tsx +47 -0
- package/src/components/Accordion/index.ts +4 -0
- package/src/components/Button/Button.args.ts +353 -0
- package/src/components/Button/Button.props.d.ts +74 -0
- package/src/components/Button/Button.tsx +67 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/Callout/Callout.args.ts +64 -0
- package/src/components/Callout/Callout.props.d.ts +61 -0
- package/src/components/Callout/Callout.tsx +80 -0
- package/src/components/Callout/index.ts +1 -0
- package/src/components/Checkbox/Checkbox.args.ts +22 -0
- package/src/components/Checkbox/Checkbox.props.d.ts +61 -0
- package/src/components/Checkbox/Checkbox.tsx +92 -0
- package/src/components/Checkbox/index.ts +1 -0
- package/src/components/ChoiceGroup/ChoiceGroup.args.ts +90 -0
- package/src/components/ChoiceGroup/ChoiceGroup.props.d.ts +57 -0
- package/src/components/ChoiceGroup/ChoiceGroup.tsx +42 -0
- package/src/components/ChoiceGroup/index.ts +1 -0
- package/src/components/Collapse/Collapse.props.d.ts +92 -0
- package/src/components/Collapse/Collapse.tsx +130 -0
- package/src/components/Collapse/index.ts +1 -0
- package/src/components/ContextMenu/ContextMenu.args.ts +62 -0
- package/src/components/ContextMenu/ContextMenu.props.d.ts +28 -0
- package/src/components/ContextMenu/ContextMenu.tsx +32 -0
- package/src/components/ContextMenu/index.ts +1 -0
- package/src/components/Credit/Credit.args.ts +14 -0
- package/src/components/Credit/Credit.props.d.ts +11 -0
- package/src/components/Credit/Credit.tsx +41 -0
- package/src/components/Credit/index.ts +1 -0
- package/src/components/DatePicker/DatePicker.args.ts +82 -0
- package/src/components/DatePicker/DatePicker.props.d.ts +68 -0
- package/src/components/DatePicker/DatePicker.tsx +119 -0
- package/src/components/DatePicker/index.ts +1 -0
- package/src/components/Dropdown/Dropdown.args.ts +220 -0
- package/src/components/Dropdown/Dropdown.props.d.ts +84 -0
- package/src/components/Dropdown/Dropdown.tsx +82 -0
- package/src/components/Dropdown/index.ts +1 -0
- package/src/components/Empty/Empty.args.ts +14 -0
- package/src/components/Empty/Empty.props.d.ts +6 -0
- package/src/components/Empty/Empty.tsx +16 -0
- package/src/components/Empty/index.ts +1 -0
- package/src/components/Fieldset/Fieldset.props.d.ts +36 -0
- package/src/components/Fieldset/Fieldset.tsx +90 -0
- package/src/components/Fieldset/index.ts +1 -0
- package/src/components/FileUpload/FileUpload.args.ts +62 -0
- package/src/components/FileUpload/FileUpload.props.d.ts +63 -0
- package/src/components/FileUpload/FileUpload.tsx +82 -0
- package/src/components/FileUpload/index.ts +1 -0
- package/src/components/Form/Form.args.ts +265 -0
- package/src/components/Form/Form.props.d.ts +84 -0
- package/src/components/Form/Form.tsx +83 -0
- package/src/components/Form/index.ts +1 -0
- package/src/components/FormElement/FormElement.props.d.ts +53 -0
- package/src/components/FormElement/FormElement.tsx +26 -0
- package/src/components/FormElement/index.ts +1 -0
- package/src/components/FormGroup/FormGroup.args.ts +84 -0
- package/src/components/FormGroup/FormGroup.props.d.ts +71 -0
- package/src/components/FormGroup/FormGroup.tsx +73 -0
- package/src/components/FormGroup/index.ts +1 -0
- package/src/components/GlobalProvider/GlobalProvider.props.d.ts +15 -0
- package/src/components/GlobalProvider/GlobalProvider.tsx +27 -0
- package/src/components/GlobalProvider/index.js +4 -0
- package/src/components/Heading/Heading.args.ts +46 -0
- package/src/components/Heading/Heading.props.d.ts +24 -0
- package/src/components/Heading/Heading.tsx +28 -0
- package/src/components/Heading/index.ts +1 -0
- package/src/components/Hero/Hero.args.ts +296 -0
- package/src/components/Hero/Hero.props.d.ts +29 -0
- package/src/components/Hero/Hero.tsx +35 -0
- package/src/components/Hero/HeroCard.props.d.ts +65 -0
- package/src/components/Hero/HeroCard.tsx +53 -0
- package/src/components/Hero/index.ts +2 -0
- package/src/components/Icon/Icon.args.ts +15 -0
- package/src/components/Icon/Icon.props.d.ts +16 -0
- package/src/components/Icon/Icon.tsx +25 -0
- package/src/components/Icon/index.ts +1 -0
- package/src/components/Image/Image.args.ts +35 -0
- package/src/components/Image/Image.props.d.ts +38 -0
- package/src/components/Image/Image.tsx +51 -0
- package/src/components/Image/index.ts +1 -0
- package/src/components/Input/Input.args.ts +139 -0
- package/src/components/Input/Input.props.d.ts +63 -0
- package/src/components/Input/Input.tsx +63 -0
- package/src/components/Input/index.ts +1 -0
- package/src/components/Link/Link.args.ts +36 -0
- package/src/components/Link/Link.props.d.ts +34 -0
- package/src/components/Link/Link.tsx +49 -0
- package/src/components/Link/index.ts +1 -0
- package/src/components/LinkList/LinkList.args.ts +193 -0
- package/src/components/LinkList/LinkList.props.d.ts +52 -0
- package/src/components/LinkList/LinkList.tsx +59 -0
- package/src/components/LinkList/index.ts +1 -0
- package/src/components/List/List.args.ts +38 -0
- package/src/components/List/List.props.d.ts +36 -0
- package/src/components/List/List.tsx +47 -0
- package/src/components/List/ListItem.props.d.ts +25 -0
- package/src/components/List/ListItem.tsx +23 -0
- package/src/components/List/index.ts +2 -0
- package/src/components/Loading/Loading.args.ts +55 -0
- package/src/components/Loading/Loading.props.d.ts +23 -0
- package/src/components/Loading/Loading.tsx +24 -0
- package/src/components/Loading/index.ts +1 -0
- package/src/components/Notification/Notification.args.ts +157 -0
- package/src/components/Notification/Notification.props.d.ts +67 -0
- package/src/components/Notification/Notification.tsx +78 -0
- package/src/components/Notification/index.ts +1 -0
- package/src/components/NumberPicker/NumberPicker.args.ts +58 -0
- package/src/components/NumberPicker/NumberPicker.props.d.ts +56 -0
- package/src/components/NumberPicker/NumberPicker.tsx +65 -0
- package/src/components/NumberPicker/index.ts +1 -0
- package/src/components/Pagination/Pagination.args.ts +43 -0
- package/src/components/Pagination/Pagination.props.d.ts +66 -0
- package/src/components/Pagination/Pagination.tsx +114 -0
- package/src/components/Pagination/index.ts +1 -0
- package/src/components/Profile/Profile.args.ts +58 -0
- package/src/components/Profile/Profile.props.d.ts +43 -0
- package/src/components/Profile/Profile.tsx +43 -0
- package/src/components/Profile/index.ts +1 -0
- package/src/components/Radio/Radio.args.ts +22 -0
- package/src/components/Radio/Radio.props.d.ts +61 -0
- package/src/components/Radio/Radio.tsx +64 -0
- package/src/components/Radio/index.ts +1 -0
- package/src/components/ReadMore/ReadMore.props.d.ts +38 -0
- package/src/components/ReadMore/ReadMore.tsx +55 -0
- package/src/components/ReadMore/index.ts +1 -0
- package/src/components/ReadMore/readMore.args.ts +35 -0
- package/src/components/RichText/RichText.props.d.ts +11 -0
- package/src/components/RichText/RichText.tsx +22 -0
- package/src/components/RichText/index.ts +1 -0
- package/src/components/RichText/richText.args.ts +15 -0
- package/src/components/SearchField/SearchField.args.ts +73 -0
- package/src/components/SearchField/SearchField.props.d.ts +35 -0
- package/src/components/SearchField/SearchField.tsx +55 -0
- package/src/components/SearchField/index.ts +1 -0
- package/src/components/TableOfContents/TableOfContents.args.ts +35 -0
- package/src/components/TableOfContents/TableOfContents.props.d.ts +23 -0
- package/src/components/TableOfContents/TableOfContents.tsx +32 -0
- package/src/components/TableOfContents/index.ts +1 -0
- package/src/components/Tag/Tag.args.ts +15 -0
- package/src/components/Tag/Tag.props.d.ts +34 -0
- package/src/components/Tag/Tag.tsx +99 -0
- package/src/components/Tag/TagSet.args.ts +39 -0
- package/src/components/Tag/TagSet.props.d.ts +36 -0
- package/src/components/Tag/TagSet.tsx +71 -0
- package/src/components/Tag/index.ts +2 -0
- package/src/components/Textarea/Textarea.args.ts +62 -0
- package/src/components/Textarea/Textarea.props.d.ts +71 -0
- package/src/components/Textarea/Textarea.tsx +67 -0
- package/src/components/Textarea/index.ts +1 -0
- package/src/components/Tooltip/Tooltip.args.ts +43 -0
- package/src/components/Tooltip/Tooltip.props.d.ts +48 -0
- package/src/components/Tooltip/Tooltip.tsx +139 -0
- package/src/components/Tooltip/index.ts +1 -0
- package/src/components/Video/Video.args.ts +81 -0
- package/src/components/Video/Video.props.d.ts +82 -0
- package/src/components/Video/Video.tsx +29 -0
- package/src/components/Video/VideoPlayer.props.d.ts +80 -0
- package/src/components/Video/VideoPlayer.tsx +285 -0
- package/src/components/Video/index.ts +1 -0
- package/src/hooks/useGlobalSettings.ts +13 -0
- package/src/hooks/useVideoPlayer.ts +85 -0
- package/src/index.ts +19 -0
- package/src/public/favicon.ico +0 -0
- package/src/public/index.html +43 -0
- package/src/public/logo192.png +0 -0
- package/src/public/logo512.png +0 -0
- package/src/public/manifest.json +25 -0
- package/src/public/robots.txt +3 -0
- package/src/setup.ts +6 -0
- package/src/stories/Accordion.stories.tsx +94 -0
- package/src/stories/Button.stories.tsx +491 -0
- package/src/stories/Callout.stories.tsx +154 -0
- package/src/stories/ContextMenu.stories.tsx +72 -0
- package/src/stories/Dropdown.stories.tsx +85 -0
- package/src/stories/Empty.stories.tsx +48 -0
- package/src/stories/Form.stories.tsx +67 -0
- package/src/stories/Heading.stories.tsx +191 -0
- package/src/stories/Hero.stories.tsx +129 -0
- package/src/stories/Image.stories.tsx +71 -0
- package/src/stories/Introduction.stories.mdx +12 -0
- package/src/stories/Link.stories.tsx +99 -0
- package/src/stories/LinkList.stories.tsx +68 -0
- package/src/stories/List.stories.tsx +246 -0
- package/src/stories/Loading.stories.tsx +103 -0
- package/src/stories/Notification.stories.tsx +154 -0
- package/src/stories/Pagination.stories.tsx +63 -0
- package/src/stories/Profile.stories.tsx +84 -0
- package/src/stories/ReadMore.stories.tsx +80 -0
- package/src/stories/RichText.stories.tsx +59 -0
- package/src/stories/SearchField.stories.tsx +87 -0
- package/src/stories/TableOfContents.stories.tsx +50 -0
- package/src/stories/Tag.stories.tsx +194 -0
- package/src/stories/Tooltip.stories.tsx +83 -0
- package/src/stories/Video.stories.tsx +69 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/types/index.ts +49 -0
- package/src/types/temp.d.ts +9 -0
- package/src/utils/checkArrayDuplicates.ts +3 -0
- package/src/utils/createChainedFunction.ts +31 -0
- package/src/utils/getDefaultDimensionValue.ts +28 -0
- package/src/utils/hoursMinutesSeconds.ts +8 -0
- package/src/utils/transitionEndListener.ts +29 -0
- package/src/utils/triggerBrowserReflow.ts +4 -0
- package/storybook-static/0.f9bb25299a048d2bb825.manager.bundle.js +2 -0
- package/storybook-static/0.f9bb25299a048d2bb825.manager.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/01daf23af61cc99e9d75.woff2 +0 -0
- package/storybook-static/06a2da828c8b6497ba7a.woff +0 -0
- package/storybook-static/0fa24adac56865ac7e5f.ttf +0 -0
- package/storybook-static/12ec02e7e66abaf38243.eot +0 -0
- package/storybook-static/164.8f6e5926.iframe.bundle.js +2 -0
- package/storybook-static/164.8f6e5926.iframe.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/181.1d6d475b.iframe.bundle.js +1 -0
- package/storybook-static/1cc3364249fd0db446ad.ttf +0 -0
- package/storybook-static/1dbed2ef5cef8fcb4cbe.ttf +0 -0
- package/storybook-static/1fa1c16a4a45d13f0df8.ttf +0 -0
- package/storybook-static/23cdaa8575b5e003dcde.eot +0 -0
- package/storybook-static/248db78ddf1e3568728d.woff +0 -0
- package/storybook-static/27d33755a2b827666dc5.woff +0 -0
- package/storybook-static/29.8e0bc9a8.iframe.bundle.js +2 -0
- package/storybook-static/29.8e0bc9a8.iframe.bundle.js.LICENSE.txt +102 -0
- package/storybook-static/2ac1a95228cf06e17040.woff2 +0 -0
- package/storybook-static/337.b8defe66.iframe.bundle.js +2 -0
- package/storybook-static/337.b8defe66.iframe.bundle.js.LICENSE.txt +11 -0
- package/storybook-static/3579203659b1428de036.eot +0 -0
- package/storybook-static/36229f80a738c199462d.woff2 +0 -0
- package/storybook-static/409a9c398a28ee4d74ff.eot +0 -0
- package/storybook-static/431.8ab7c276.iframe.bundle.js +1 -0
- package/storybook-static/431.b32fed6077acc140df7c.manager.bundle.js +1 -0
- package/storybook-static/4bf5fc6f93ba10519c82.eot +0 -0
- package/storybook-static/51d7da3f5e58e3a24a84.woff +0 -0
- package/storybook-static/697.1f42ad69d33c2733c631.manager.bundle.js +1 -0
- package/storybook-static/697.9e56beef.iframe.bundle.js +1 -0
- package/storybook-static/6a159f0a2005668f1f78.woff +0 -0
- package/storybook-static/6f781753b674130d947a.ttf +0 -0
- package/storybook-static/70a240717e773fe567b3.woff2 +0 -0
- package/storybook-static/720.f44d4e1f5203b6083ae4.manager.bundle.js +1 -0
- package/storybook-static/730.1240c246.iframe.bundle.js +1 -0
- package/storybook-static/730.7223b772132e3e068755.manager.bundle.js +1 -0
- package/storybook-static/73ba1c910e0f7bfc6b18.woff2 +0 -0
- package/storybook-static/88739612501023fa15e3.woff +0 -0
- package/storybook-static/8a142c29a318c432117a.woff +0 -0
- package/storybook-static/914.8ddb80ae2badda1468b0.manager.bundle.js +2 -0
- package/storybook-static/914.8ddb80ae2badda1468b0.manager.bundle.js.LICENSE.txt +94 -0
- package/storybook-static/978.236a5d9d5736517b960e.manager.bundle.js +2 -0
- package/storybook-static/978.236a5d9d5736517b960e.manager.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/978.32e8032b.iframe.bundle.js +2 -0
- package/storybook-static/978.32e8032b.iframe.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/9db5d05810cb98f2831f.ttf +0 -0
- package/storybook-static/9ff97e342523931a4992.eot +0 -0
- package/storybook-static/a40d436619020fb67db5.woff +0 -0
- package/storybook-static/a41d7e330757fb4b2125.woff2 +0 -0
- package/storybook-static/ab3494afe25b712485ed.woff +0 -0
- package/storybook-static/b53d0e74edc5a5fbef0a.ttf +0 -0
- package/storybook-static/b70a9c0ad8e8b43f5e6c.ttf +0 -0
- package/storybook-static/c12a83f816844ff94375.ttf +0 -0
- package/storybook-static/c5116d16544f932eba4b.eot +0 -0
- package/storybook-static/c807e115c00aaffbac11.woff2 +0 -0
- package/storybook-static/cadb6b94d6b0ecc3a86a.woff2 +0 -0
- package/storybook-static/d0cff1b064bcd84324fe.eot +0 -0
- package/storybook-static/d3434771ad7e9030387e.ttf +0 -0
- package/storybook-static/d8610c2a4fe5c177f4f6.woff +0 -0
- package/storybook-static/d970f426740b938f39e1.woff +0 -0
- package/storybook-static/d9c7eba773ff1c8df5bb.eot +0 -0
- package/storybook-static/dd4645bdb2f1e1a47ed7.woff2 +0 -0
- package/storybook-static/e0a63577ac642885f067.eot +0 -0
- package/storybook-static/e2625b8a1277972c9240.ttf +0 -0
- package/storybook-static/f469ea3aa8aacf7ad83a.eot +0 -0
- package/storybook-static/f632ebfa0d7b7085d542.woff2 +0 -0
- package/storybook-static/f93e2252d7112c3bcca5.woff2 +0 -0
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/iframe.html +348 -0
- package/storybook-static/index.html +59 -0
- package/storybook-static/main.01e6a863.iframe.bundle.js +1 -0
- package/storybook-static/main.dc406261155f1ebb44ce.manager.bundle.js +1 -0
- package/storybook-static/reactPlayerDailyMotion.469cc00f.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerFacebook.1423bb15.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerFilePlayer.e19e24a0.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerKaltura.d1eb0868.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerMixcloud.9f1b1691.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerPreview.9295696b.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerSoundCloud.d420395c.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerStreamable.9b655bf3.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerTwitch.e90e6dea.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerVidyard.a37ae6b3.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerVimeo.a7f367ee.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerWistia.fb351944.iframe.bundle.js +1 -0
- package/storybook-static/reactPlayerYouTube.3514e11a.iframe.bundle.js +1 -0
- package/storybook-static/runtime~main.012769eac0433a7ec083.manager.bundle.js +1 -0
- package/storybook-static/runtime~main.f3168ed5.iframe.bundle.js +1 -0
- package/storybook-static/static/css/main.3d116812.css +3 -0
- package/storybook-static/static/css/main.3d116812.css.map +1 -0
- package/tsconfig.build.json +15 -0
- package/tsconfig.json +7 -0
|
@@ -0,0 +1,1676 @@
|
|
|
1
|
+
@ilo-org/react:test: cache hit, replaying output d68619edf5a366de
|
|
2
|
+
@ilo-org/react:test:
|
|
3
|
+
@ilo-org/react:test: > @ilo-org/react@0.0.1 test /home/runner/work/designsystem/designsystem/packages/react
|
|
4
|
+
@ilo-org/react:test: > NODE_OPTIONS=--experimental-vm-modules SKIP_PREFLIGHT_CHECK=true react-scripts test --watchAll=false --setupFilesAfterEnv ./src/setup.ts
|
|
5
|
+
@ilo-org/react:test:
|
|
6
|
+
@ilo-org/react:test: (node:2850) ExperimentalWarning: VM Modules is an experimental feature. This feature could change at any time
|
|
7
|
+
@ilo-org/react:test: (Use `node --trace-warnings ...` to show where the warning was created)
|
|
8
|
+
@ilo-org/react:test: PASS src/__tests__/Button.test.tsx
|
|
9
|
+
@ilo-org/react:test: PASS src/__tests__/Pagination.test.tsx
|
|
10
|
+
@ilo-org/react:test: PASS src/__tests__/Profile.test.tsx
|
|
11
|
+
@ilo-org/react:test: PASS src/__tests__/Heading.test.tsx
|
|
12
|
+
@ilo-org/react:test: PASS src/__tests__/Accordion.test.tsx
|
|
13
|
+
@ilo-org/react:test: ● Console
|
|
14
|
+
@ilo-org/react:test:
|
|
15
|
+
@ilo-org/react:test: console.log
|
|
16
|
+
@ilo-org/react:test: <ref *1> HTMLButtonElement {
|
|
17
|
+
@ilo-org/react:test: '__reactFiber$wo9k3xm96r': <ref *2> FiberNode {
|
|
18
|
+
@ilo-org/react:test: tag: 5,
|
|
19
|
+
@ilo-org/react:test: key: null,
|
|
20
|
+
@ilo-org/react:test: elementType: 'button',
|
|
21
|
+
@ilo-org/react:test: type: 'button',
|
|
22
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
23
|
+
@ilo-org/react:test: return: FiberNode {
|
|
24
|
+
@ilo-org/react:test: tag: 5,
|
|
25
|
+
@ilo-org/react:test: key: null,
|
|
26
|
+
@ilo-org/react:test: elementType: 'div',
|
|
27
|
+
@ilo-org/react:test: type: 'div',
|
|
28
|
+
@ilo-org/react:test: stateNode: [HTMLDivElement],
|
|
29
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
30
|
+
@ilo-org/react:test: child: [Circular *2],
|
|
31
|
+
@ilo-org/react:test: sibling: null,
|
|
32
|
+
@ilo-org/react:test: index: 0,
|
|
33
|
+
@ilo-org/react:test: ref: null,
|
|
34
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
35
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
36
|
+
@ilo-org/react:test: updateQueue: null,
|
|
37
|
+
@ilo-org/react:test: memoizedState: null,
|
|
38
|
+
@ilo-org/react:test: dependencies: null,
|
|
39
|
+
@ilo-org/react:test: mode: 0,
|
|
40
|
+
@ilo-org/react:test: flags: 0,
|
|
41
|
+
@ilo-org/react:test: nextEffect: null,
|
|
42
|
+
@ilo-org/react:test: firstEffect: null,
|
|
43
|
+
@ilo-org/react:test: lastEffect: null,
|
|
44
|
+
@ilo-org/react:test: lanes: 0,
|
|
45
|
+
@ilo-org/react:test: childLanes: 0,
|
|
46
|
+
@ilo-org/react:test: alternate: [FiberNode],
|
|
47
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
48
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
49
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
50
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
51
|
+
@ilo-org/react:test: _debugID: 30,
|
|
52
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
53
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
54
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
55
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
56
|
+
@ilo-org/react:test: },
|
|
57
|
+
@ilo-org/react:test: child: null,
|
|
58
|
+
@ilo-org/react:test: sibling: null,
|
|
59
|
+
@ilo-org/react:test: index: 0,
|
|
60
|
+
@ilo-org/react:test: ref: null,
|
|
61
|
+
@ilo-org/react:test: pendingProps: {
|
|
62
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
63
|
+
@ilo-org/react:test: 'aria-expanded': false,
|
|
64
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
65
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
66
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
67
|
+
@ilo-org/react:test: children: 'Item1'
|
|
68
|
+
@ilo-org/react:test: },
|
|
69
|
+
@ilo-org/react:test: memoizedProps: {
|
|
70
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
71
|
+
@ilo-org/react:test: 'aria-expanded': false,
|
|
72
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
73
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
74
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
75
|
+
@ilo-org/react:test: children: 'Item1'
|
|
76
|
+
@ilo-org/react:test: },
|
|
77
|
+
@ilo-org/react:test: updateQueue: null,
|
|
78
|
+
@ilo-org/react:test: memoizedState: null,
|
|
79
|
+
@ilo-org/react:test: dependencies: null,
|
|
80
|
+
@ilo-org/react:test: mode: 0,
|
|
81
|
+
@ilo-org/react:test: flags: 0,
|
|
82
|
+
@ilo-org/react:test: nextEffect: null,
|
|
83
|
+
@ilo-org/react:test: firstEffect: null,
|
|
84
|
+
@ilo-org/react:test: lastEffect: null,
|
|
85
|
+
@ilo-org/react:test: lanes: 0,
|
|
86
|
+
@ilo-org/react:test: childLanes: 0,
|
|
87
|
+
@ilo-org/react:test: alternate: FiberNode {
|
|
88
|
+
@ilo-org/react:test: tag: 5,
|
|
89
|
+
@ilo-org/react:test: key: null,
|
|
90
|
+
@ilo-org/react:test: elementType: 'button',
|
|
91
|
+
@ilo-org/react:test: type: 'button',
|
|
92
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
93
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
94
|
+
@ilo-org/react:test: child: null,
|
|
95
|
+
@ilo-org/react:test: sibling: null,
|
|
96
|
+
@ilo-org/react:test: index: 0,
|
|
97
|
+
@ilo-org/react:test: ref: null,
|
|
98
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
99
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
100
|
+
@ilo-org/react:test: updateQueue: null,
|
|
101
|
+
@ilo-org/react:test: memoizedState: null,
|
|
102
|
+
@ilo-org/react:test: dependencies: null,
|
|
103
|
+
@ilo-org/react:test: mode: 0,
|
|
104
|
+
@ilo-org/react:test: flags: 4,
|
|
105
|
+
@ilo-org/react:test: nextEffect: null,
|
|
106
|
+
@ilo-org/react:test: firstEffect: null,
|
|
107
|
+
@ilo-org/react:test: lastEffect: null,
|
|
108
|
+
@ilo-org/react:test: lanes: 0,
|
|
109
|
+
@ilo-org/react:test: childLanes: 0,
|
|
110
|
+
@ilo-org/react:test: alternate: [Circular *2],
|
|
111
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
112
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
113
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
114
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
115
|
+
@ilo-org/react:test: _debugID: 32,
|
|
116
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
117
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
118
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
119
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
120
|
+
@ilo-org/react:test: },
|
|
121
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
122
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
123
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
124
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
125
|
+
@ilo-org/react:test: _debugID: 32,
|
|
126
|
+
@ilo-org/react:test: _debugSource: {
|
|
127
|
+
@ilo-org/react:test: fileName: '/home/runner/work/designsystem/designsystem/packages/react/src/components/Accordion/AccordionButton.tsx',
|
|
128
|
+
@ilo-org/react:test: lineNumber: 46,
|
|
129
|
+
@ilo-org/react:test: columnNumber: 7
|
|
130
|
+
@ilo-org/react:test: },
|
|
131
|
+
@ilo-org/react:test: _debugOwner: FiberNode {
|
|
132
|
+
@ilo-org/react:test: tag: 0,
|
|
133
|
+
@ilo-org/react:test: key: null,
|
|
134
|
+
@ilo-org/react:test: elementType: [Function: AccordionButton],
|
|
135
|
+
@ilo-org/react:test: type: [Function: AccordionButton],
|
|
136
|
+
@ilo-org/react:test: stateNode: null,
|
|
137
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
138
|
+
@ilo-org/react:test: child: [FiberNode],
|
|
139
|
+
@ilo-org/react:test: sibling: [FiberNode],
|
|
140
|
+
@ilo-org/react:test: index: 0,
|
|
141
|
+
@ilo-org/react:test: ref: null,
|
|
142
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
143
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
144
|
+
@ilo-org/react:test: updateQueue: null,
|
|
145
|
+
@ilo-org/react:test: memoizedState: null,
|
|
146
|
+
@ilo-org/react:test: dependencies: [Object],
|
|
147
|
+
@ilo-org/react:test: mode: 0,
|
|
148
|
+
@ilo-org/react:test: flags: 0,
|
|
149
|
+
@ilo-org/react:test: nextEffect: null,
|
|
150
|
+
@ilo-org/react:test: firstEffect: null,
|
|
151
|
+
@ilo-org/react:test: lastEffect: null,
|
|
152
|
+
@ilo-org/react:test: lanes: 0,
|
|
153
|
+
@ilo-org/react:test: childLanes: 0,
|
|
154
|
+
@ilo-org/react:test: alternate: [FiberNode],
|
|
155
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
156
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
157
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
158
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
159
|
+
@ilo-org/react:test: _debugID: 27,
|
|
160
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
161
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
162
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
163
|
+
@ilo-org/react:test: _debugHookTypes: [Array]
|
|
164
|
+
@ilo-org/react:test: },
|
|
165
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
166
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
167
|
+
@ilo-org/react:test: },
|
|
168
|
+
@ilo-org/react:test: '__reactProps$wo9k3xm96r': {
|
|
169
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
170
|
+
@ilo-org/react:test: 'aria-expanded': true,
|
|
171
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
172
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
173
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
174
|
+
@ilo-org/react:test: children: 'Item1'
|
|
175
|
+
@ilo-org/react:test: }
|
|
176
|
+
@ilo-org/react:test: }
|
|
177
|
+
@ilo-org/react:test:
|
|
178
|
+
@ilo-org/react:test: at onButtonClick (src/components/Accordion/Accordion.args.ts:5:13)
|
|
179
|
+
@ilo-org/react:test:
|
|
180
|
+
@ilo-org/react:test: console.log
|
|
181
|
+
@ilo-org/react:test: <ref *1> HTMLButtonElement {
|
|
182
|
+
@ilo-org/react:test: '__reactFiber$wo9k3xm96r': <ref *2> FiberNode {
|
|
183
|
+
@ilo-org/react:test: tag: 5,
|
|
184
|
+
@ilo-org/react:test: key: null,
|
|
185
|
+
@ilo-org/react:test: elementType: 'button',
|
|
186
|
+
@ilo-org/react:test: type: 'button',
|
|
187
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
188
|
+
@ilo-org/react:test: return: FiberNode {
|
|
189
|
+
@ilo-org/react:test: tag: 5,
|
|
190
|
+
@ilo-org/react:test: key: null,
|
|
191
|
+
@ilo-org/react:test: elementType: 'div',
|
|
192
|
+
@ilo-org/react:test: type: 'div',
|
|
193
|
+
@ilo-org/react:test: stateNode: [HTMLDivElement],
|
|
194
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
195
|
+
@ilo-org/react:test: child: [Circular *2],
|
|
196
|
+
@ilo-org/react:test: sibling: null,
|
|
197
|
+
@ilo-org/react:test: index: 0,
|
|
198
|
+
@ilo-org/react:test: ref: null,
|
|
199
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
200
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
201
|
+
@ilo-org/react:test: updateQueue: null,
|
|
202
|
+
@ilo-org/react:test: memoizedState: null,
|
|
203
|
+
@ilo-org/react:test: dependencies: null,
|
|
204
|
+
@ilo-org/react:test: mode: 0,
|
|
205
|
+
@ilo-org/react:test: flags: 0,
|
|
206
|
+
@ilo-org/react:test: nextEffect: null,
|
|
207
|
+
@ilo-org/react:test: firstEffect: null,
|
|
208
|
+
@ilo-org/react:test: lastEffect: null,
|
|
209
|
+
@ilo-org/react:test: lanes: 0,
|
|
210
|
+
@ilo-org/react:test: childLanes: 0,
|
|
211
|
+
@ilo-org/react:test: alternate: [FiberNode],
|
|
212
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
213
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
214
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
215
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
216
|
+
@ilo-org/react:test: _debugID: 259,
|
|
217
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
218
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
219
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
220
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
221
|
+
@ilo-org/react:test: },
|
|
222
|
+
@ilo-org/react:test: child: null,
|
|
223
|
+
@ilo-org/react:test: sibling: null,
|
|
224
|
+
@ilo-org/react:test: index: 0,
|
|
225
|
+
@ilo-org/react:test: ref: null,
|
|
226
|
+
@ilo-org/react:test: pendingProps: {
|
|
227
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
228
|
+
@ilo-org/react:test: 'aria-expanded': false,
|
|
229
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
230
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
231
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
232
|
+
@ilo-org/react:test: children: 'Item1'
|
|
233
|
+
@ilo-org/react:test: },
|
|
234
|
+
@ilo-org/react:test: memoizedProps: {
|
|
235
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
236
|
+
@ilo-org/react:test: 'aria-expanded': false,
|
|
237
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
238
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
239
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
240
|
+
@ilo-org/react:test: children: 'Item1'
|
|
241
|
+
@ilo-org/react:test: },
|
|
242
|
+
@ilo-org/react:test: updateQueue: null,
|
|
243
|
+
@ilo-org/react:test: memoizedState: null,
|
|
244
|
+
@ilo-org/react:test: dependencies: null,
|
|
245
|
+
@ilo-org/react:test: mode: 0,
|
|
246
|
+
@ilo-org/react:test: flags: 0,
|
|
247
|
+
@ilo-org/react:test: nextEffect: null,
|
|
248
|
+
@ilo-org/react:test: firstEffect: null,
|
|
249
|
+
@ilo-org/react:test: lastEffect: null,
|
|
250
|
+
@ilo-org/react:test: lanes: 0,
|
|
251
|
+
@ilo-org/react:test: childLanes: 0,
|
|
252
|
+
@ilo-org/react:test: alternate: FiberNode {
|
|
253
|
+
@ilo-org/react:test: tag: 5,
|
|
254
|
+
@ilo-org/react:test: key: null,
|
|
255
|
+
@ilo-org/react:test: elementType: 'button',
|
|
256
|
+
@ilo-org/react:test: type: 'button',
|
|
257
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
258
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
259
|
+
@ilo-org/react:test: child: null,
|
|
260
|
+
@ilo-org/react:test: sibling: null,
|
|
261
|
+
@ilo-org/react:test: index: 0,
|
|
262
|
+
@ilo-org/react:test: ref: null,
|
|
263
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
264
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
265
|
+
@ilo-org/react:test: updateQueue: null,
|
|
266
|
+
@ilo-org/react:test: memoizedState: null,
|
|
267
|
+
@ilo-org/react:test: dependencies: null,
|
|
268
|
+
@ilo-org/react:test: mode: 0,
|
|
269
|
+
@ilo-org/react:test: flags: 4,
|
|
270
|
+
@ilo-org/react:test: nextEffect: null,
|
|
271
|
+
@ilo-org/react:test: firstEffect: null,
|
|
272
|
+
@ilo-org/react:test: lastEffect: null,
|
|
273
|
+
@ilo-org/react:test: lanes: 0,
|
|
274
|
+
@ilo-org/react:test: childLanes: 0,
|
|
275
|
+
@ilo-org/react:test: alternate: [Circular *2],
|
|
276
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
277
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
278
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
279
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
280
|
+
@ilo-org/react:test: _debugID: 261,
|
|
281
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
282
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
283
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
284
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
285
|
+
@ilo-org/react:test: },
|
|
286
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
287
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
288
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
289
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
290
|
+
@ilo-org/react:test: _debugID: 261,
|
|
291
|
+
@ilo-org/react:test: _debugSource: {
|
|
292
|
+
@ilo-org/react:test: fileName: '/home/runner/work/designsystem/designsystem/packages/react/src/components/Accordion/AccordionButton.tsx',
|
|
293
|
+
@ilo-org/react:test: lineNumber: 46,
|
|
294
|
+
@ilo-org/react:test: columnNumber: 7
|
|
295
|
+
@ilo-org/react:test: },
|
|
296
|
+
@ilo-org/react:test: _debugOwner: FiberNode {
|
|
297
|
+
@ilo-org/react:test: tag: 0,
|
|
298
|
+
@ilo-org/react:test: key: null,
|
|
299
|
+
@ilo-org/react:test: elementType: [Function: AccordionButton],
|
|
300
|
+
@ilo-org/react:test: type: [Function: AccordionButton],
|
|
301
|
+
@ilo-org/react:test: stateNode: null,
|
|
302
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
303
|
+
@ilo-org/react:test: child: [FiberNode],
|
|
304
|
+
@ilo-org/react:test: sibling: [FiberNode],
|
|
305
|
+
@ilo-org/react:test: index: 0,
|
|
306
|
+
@ilo-org/react:test: ref: null,
|
|
307
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
308
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
309
|
+
@ilo-org/react:test: updateQueue: null,
|
|
310
|
+
@ilo-org/react:test: memoizedState: null,
|
|
311
|
+
@ilo-org/react:test: dependencies: [Object],
|
|
312
|
+
@ilo-org/react:test: mode: 0,
|
|
313
|
+
@ilo-org/react:test: flags: 0,
|
|
314
|
+
@ilo-org/react:test: nextEffect: null,
|
|
315
|
+
@ilo-org/react:test: firstEffect: null,
|
|
316
|
+
@ilo-org/react:test: lastEffect: null,
|
|
317
|
+
@ilo-org/react:test: lanes: 0,
|
|
318
|
+
@ilo-org/react:test: childLanes: 0,
|
|
319
|
+
@ilo-org/react:test: alternate: [FiberNode],
|
|
320
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
321
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
322
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
323
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
324
|
+
@ilo-org/react:test: _debugID: 256,
|
|
325
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
326
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
327
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
328
|
+
@ilo-org/react:test: _debugHookTypes: [Array]
|
|
329
|
+
@ilo-org/react:test: },
|
|
330
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
331
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
332
|
+
@ilo-org/react:test: },
|
|
333
|
+
@ilo-org/react:test: '__reactProps$wo9k3xm96r': {
|
|
334
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
335
|
+
@ilo-org/react:test: 'aria-expanded': true,
|
|
336
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
337
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
338
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
339
|
+
@ilo-org/react:test: children: 'Item1'
|
|
340
|
+
@ilo-org/react:test: }
|
|
341
|
+
@ilo-org/react:test: }
|
|
342
|
+
@ilo-org/react:test:
|
|
343
|
+
@ilo-org/react:test: at onButtonClick (src/components/Accordion/Accordion.args.ts:5:13)
|
|
344
|
+
@ilo-org/react:test:
|
|
345
|
+
@ilo-org/react:test: console.log
|
|
346
|
+
@ilo-org/react:test: <ref *1> HTMLButtonElement {
|
|
347
|
+
@ilo-org/react:test: '__reactFiber$wo9k3xm96r': <ref *2> FiberNode {
|
|
348
|
+
@ilo-org/react:test: tag: 5,
|
|
349
|
+
@ilo-org/react:test: key: null,
|
|
350
|
+
@ilo-org/react:test: elementType: 'button',
|
|
351
|
+
@ilo-org/react:test: type: 'button',
|
|
352
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
353
|
+
@ilo-org/react:test: return: FiberNode {
|
|
354
|
+
@ilo-org/react:test: tag: 5,
|
|
355
|
+
@ilo-org/react:test: key: null,
|
|
356
|
+
@ilo-org/react:test: elementType: 'div',
|
|
357
|
+
@ilo-org/react:test: type: 'div',
|
|
358
|
+
@ilo-org/react:test: stateNode: [HTMLDivElement],
|
|
359
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
360
|
+
@ilo-org/react:test: child: [Circular *2],
|
|
361
|
+
@ilo-org/react:test: sibling: null,
|
|
362
|
+
@ilo-org/react:test: index: 0,
|
|
363
|
+
@ilo-org/react:test: ref: null,
|
|
364
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
365
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
366
|
+
@ilo-org/react:test: updateQueue: null,
|
|
367
|
+
@ilo-org/react:test: memoizedState: null,
|
|
368
|
+
@ilo-org/react:test: dependencies: null,
|
|
369
|
+
@ilo-org/react:test: mode: 0,
|
|
370
|
+
@ilo-org/react:test: flags: 0,
|
|
371
|
+
@ilo-org/react:test: nextEffect: null,
|
|
372
|
+
@ilo-org/react:test: firstEffect: null,
|
|
373
|
+
@ilo-org/react:test: lastEffect: null,
|
|
374
|
+
@ilo-org/react:test: lanes: 0,
|
|
375
|
+
@ilo-org/react:test: childLanes: 0,
|
|
376
|
+
@ilo-org/react:test: alternate: [FiberNode],
|
|
377
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
378
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
379
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
380
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
381
|
+
@ilo-org/react:test: _debugID: 488,
|
|
382
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
383
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
384
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
385
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
386
|
+
@ilo-org/react:test: },
|
|
387
|
+
@ilo-org/react:test: child: null,
|
|
388
|
+
@ilo-org/react:test: sibling: null,
|
|
389
|
+
@ilo-org/react:test: index: 0,
|
|
390
|
+
@ilo-org/react:test: ref: null,
|
|
391
|
+
@ilo-org/react:test: pendingProps: {
|
|
392
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
393
|
+
@ilo-org/react:test: 'aria-expanded': false,
|
|
394
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
395
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
396
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
397
|
+
@ilo-org/react:test: children: 'Item1'
|
|
398
|
+
@ilo-org/react:test: },
|
|
399
|
+
@ilo-org/react:test: memoizedProps: {
|
|
400
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
401
|
+
@ilo-org/react:test: 'aria-expanded': false,
|
|
402
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
403
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
404
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
405
|
+
@ilo-org/react:test: children: 'Item1'
|
|
406
|
+
@ilo-org/react:test: },
|
|
407
|
+
@ilo-org/react:test: updateQueue: null,
|
|
408
|
+
@ilo-org/react:test: memoizedState: null,
|
|
409
|
+
@ilo-org/react:test: dependencies: null,
|
|
410
|
+
@ilo-org/react:test: mode: 0,
|
|
411
|
+
@ilo-org/react:test: flags: 0,
|
|
412
|
+
@ilo-org/react:test: nextEffect: null,
|
|
413
|
+
@ilo-org/react:test: firstEffect: null,
|
|
414
|
+
@ilo-org/react:test: lastEffect: null,
|
|
415
|
+
@ilo-org/react:test: lanes: 0,
|
|
416
|
+
@ilo-org/react:test: childLanes: 0,
|
|
417
|
+
@ilo-org/react:test: alternate: FiberNode {
|
|
418
|
+
@ilo-org/react:test: tag: 5,
|
|
419
|
+
@ilo-org/react:test: key: null,
|
|
420
|
+
@ilo-org/react:test: elementType: 'button',
|
|
421
|
+
@ilo-org/react:test: type: 'button',
|
|
422
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
423
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
424
|
+
@ilo-org/react:test: child: null,
|
|
425
|
+
@ilo-org/react:test: sibling: null,
|
|
426
|
+
@ilo-org/react:test: index: 0,
|
|
427
|
+
@ilo-org/react:test: ref: null,
|
|
428
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
429
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
430
|
+
@ilo-org/react:test: updateQueue: null,
|
|
431
|
+
@ilo-org/react:test: memoizedState: null,
|
|
432
|
+
@ilo-org/react:test: dependencies: null,
|
|
433
|
+
@ilo-org/react:test: mode: 0,
|
|
434
|
+
@ilo-org/react:test: flags: 4,
|
|
435
|
+
@ilo-org/react:test: nextEffect: null,
|
|
436
|
+
@ilo-org/react:test: firstEffect: null,
|
|
437
|
+
@ilo-org/react:test: lastEffect: null,
|
|
438
|
+
@ilo-org/react:test: lanes: 0,
|
|
439
|
+
@ilo-org/react:test: childLanes: 0,
|
|
440
|
+
@ilo-org/react:test: alternate: [Circular *2],
|
|
441
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
442
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
443
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
444
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
445
|
+
@ilo-org/react:test: _debugID: 490,
|
|
446
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
447
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
448
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
449
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
450
|
+
@ilo-org/react:test: },
|
|
451
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
452
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
453
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
454
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
455
|
+
@ilo-org/react:test: _debugID: 490,
|
|
456
|
+
@ilo-org/react:test: _debugSource: {
|
|
457
|
+
@ilo-org/react:test: fileName: '/home/runner/work/designsystem/designsystem/packages/react/src/components/Accordion/AccordionButton.tsx',
|
|
458
|
+
@ilo-org/react:test: lineNumber: 46,
|
|
459
|
+
@ilo-org/react:test: columnNumber: 7
|
|
460
|
+
@ilo-org/react:test: },
|
|
461
|
+
@ilo-org/react:test: _debugOwner: FiberNode {
|
|
462
|
+
@ilo-org/react:test: tag: 0,
|
|
463
|
+
@ilo-org/react:test: key: null,
|
|
464
|
+
@ilo-org/react:test: elementType: [Function: AccordionButton],
|
|
465
|
+
@ilo-org/react:test: type: [Function: AccordionButton],
|
|
466
|
+
@ilo-org/react:test: stateNode: null,
|
|
467
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
468
|
+
@ilo-org/react:test: child: [FiberNode],
|
|
469
|
+
@ilo-org/react:test: sibling: [FiberNode],
|
|
470
|
+
@ilo-org/react:test: index: 0,
|
|
471
|
+
@ilo-org/react:test: ref: null,
|
|
472
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
473
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
474
|
+
@ilo-org/react:test: updateQueue: null,
|
|
475
|
+
@ilo-org/react:test: memoizedState: null,
|
|
476
|
+
@ilo-org/react:test: dependencies: [Object],
|
|
477
|
+
@ilo-org/react:test: mode: 0,
|
|
478
|
+
@ilo-org/react:test: flags: 0,
|
|
479
|
+
@ilo-org/react:test: nextEffect: null,
|
|
480
|
+
@ilo-org/react:test: firstEffect: null,
|
|
481
|
+
@ilo-org/react:test: lastEffect: null,
|
|
482
|
+
@ilo-org/react:test: lanes: 0,
|
|
483
|
+
@ilo-org/react:test: childLanes: 0,
|
|
484
|
+
@ilo-org/react:test: alternate: [FiberNode],
|
|
485
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
486
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
487
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
488
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
489
|
+
@ilo-org/react:test: _debugID: 485,
|
|
490
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
491
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
492
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
493
|
+
@ilo-org/react:test: _debugHookTypes: [Array]
|
|
494
|
+
@ilo-org/react:test: },
|
|
495
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
496
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
497
|
+
@ilo-org/react:test: },
|
|
498
|
+
@ilo-org/react:test: '__reactProps$wo9k3xm96r': {
|
|
499
|
+
@ilo-org/react:test: className: 'ilo--accordion--button',
|
|
500
|
+
@ilo-org/react:test: 'aria-expanded': true,
|
|
501
|
+
@ilo-org/react:test: onClick: [Function: onClick],
|
|
502
|
+
@ilo-org/react:test: 'aria-controls': 'panel-l1',
|
|
503
|
+
@ilo-org/react:test: id: 'button-l1',
|
|
504
|
+
@ilo-org/react:test: children: 'Item1'
|
|
505
|
+
@ilo-org/react:test: }
|
|
506
|
+
@ilo-org/react:test: }
|
|
507
|
+
@ilo-org/react:test:
|
|
508
|
+
@ilo-org/react:test: at onButtonClick (src/components/Accordion/Accordion.args.ts:5:13)
|
|
509
|
+
@ilo-org/react:test:
|
|
510
|
+
@ilo-org/react:test: PASS src/__tests__/Callout.test.tsx
|
|
511
|
+
@ilo-org/react:test: ● Console
|
|
512
|
+
@ilo-org/react:test:
|
|
513
|
+
@ilo-org/react:test: console.log
|
|
514
|
+
@ilo-org/react:test: <ref *1> HTMLHeadingElement {
|
|
515
|
+
@ilo-org/react:test: '__reactFiber$50o4iso0mq2': <ref *2> FiberNode {
|
|
516
|
+
@ilo-org/react:test: tag: 5,
|
|
517
|
+
@ilo-org/react:test: key: null,
|
|
518
|
+
@ilo-org/react:test: elementType: 'h5',
|
|
519
|
+
@ilo-org/react:test: type: 'h5',
|
|
520
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
521
|
+
@ilo-org/react:test: return: FiberNode {
|
|
522
|
+
@ilo-org/react:test: tag: 5,
|
|
523
|
+
@ilo-org/react:test: key: null,
|
|
524
|
+
@ilo-org/react:test: elementType: 'div',
|
|
525
|
+
@ilo-org/react:test: type: 'div',
|
|
526
|
+
@ilo-org/react:test: stateNode: [HTMLDivElement],
|
|
527
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
528
|
+
@ilo-org/react:test: child: [Circular *2],
|
|
529
|
+
@ilo-org/react:test: sibling: [FiberNode],
|
|
530
|
+
@ilo-org/react:test: index: 0,
|
|
531
|
+
@ilo-org/react:test: ref: null,
|
|
532
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
533
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
534
|
+
@ilo-org/react:test: updateQueue: null,
|
|
535
|
+
@ilo-org/react:test: memoizedState: null,
|
|
536
|
+
@ilo-org/react:test: dependencies: null,
|
|
537
|
+
@ilo-org/react:test: mode: 0,
|
|
538
|
+
@ilo-org/react:test: flags: 0,
|
|
539
|
+
@ilo-org/react:test: nextEffect: null,
|
|
540
|
+
@ilo-org/react:test: firstEffect: null,
|
|
541
|
+
@ilo-org/react:test: lastEffect: null,
|
|
542
|
+
@ilo-org/react:test: lanes: 0,
|
|
543
|
+
@ilo-org/react:test: childLanes: 0,
|
|
544
|
+
@ilo-org/react:test: alternate: null,
|
|
545
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
546
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
547
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
548
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
549
|
+
@ilo-org/react:test: _debugID: 14,
|
|
550
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
551
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
552
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
553
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
554
|
+
@ilo-org/react:test: },
|
|
555
|
+
@ilo-org/react:test: child: null,
|
|
556
|
+
@ilo-org/react:test: sibling: FiberNode {
|
|
557
|
+
@ilo-org/react:test: tag: 5,
|
|
558
|
+
@ilo-org/react:test: key: null,
|
|
559
|
+
@ilo-org/react:test: elementType: 'button',
|
|
560
|
+
@ilo-org/react:test: type: 'button',
|
|
561
|
+
@ilo-org/react:test: stateNode: [HTMLButtonElement],
|
|
562
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
563
|
+
@ilo-org/react:test: child: [FiberNode],
|
|
564
|
+
@ilo-org/react:test: sibling: null,
|
|
565
|
+
@ilo-org/react:test: index: 1,
|
|
566
|
+
@ilo-org/react:test: ref: null,
|
|
567
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
568
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
569
|
+
@ilo-org/react:test: updateQueue: null,
|
|
570
|
+
@ilo-org/react:test: memoizedState: null,
|
|
571
|
+
@ilo-org/react:test: dependencies: null,
|
|
572
|
+
@ilo-org/react:test: mode: 0,
|
|
573
|
+
@ilo-org/react:test: flags: 0,
|
|
574
|
+
@ilo-org/react:test: nextEffect: null,
|
|
575
|
+
@ilo-org/react:test: firstEffect: null,
|
|
576
|
+
@ilo-org/react:test: lastEffect: null,
|
|
577
|
+
@ilo-org/react:test: lanes: 0,
|
|
578
|
+
@ilo-org/react:test: childLanes: 0,
|
|
579
|
+
@ilo-org/react:test: alternate: null,
|
|
580
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
581
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
582
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
583
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
584
|
+
@ilo-org/react:test: _debugID: 19,
|
|
585
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
586
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
587
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
588
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
589
|
+
@ilo-org/react:test: },
|
|
590
|
+
@ilo-org/react:test: index: 0,
|
|
591
|
+
@ilo-org/react:test: ref: null,
|
|
592
|
+
@ilo-org/react:test: pendingProps: { className: 'undefined--callout--headline', children: 'With CTA' },
|
|
593
|
+
@ilo-org/react:test: memoizedProps: { className: 'undefined--callout--headline', children: 'With CTA' },
|
|
594
|
+
@ilo-org/react:test: updateQueue: null,
|
|
595
|
+
@ilo-org/react:test: memoizedState: null,
|
|
596
|
+
@ilo-org/react:test: dependencies: null,
|
|
597
|
+
@ilo-org/react:test: mode: 0,
|
|
598
|
+
@ilo-org/react:test: flags: 0,
|
|
599
|
+
@ilo-org/react:test: nextEffect: null,
|
|
600
|
+
@ilo-org/react:test: firstEffect: null,
|
|
601
|
+
@ilo-org/react:test: lastEffect: null,
|
|
602
|
+
@ilo-org/react:test: lanes: 0,
|
|
603
|
+
@ilo-org/react:test: childLanes: 0,
|
|
604
|
+
@ilo-org/react:test: alternate: null,
|
|
605
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
606
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
607
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
608
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
609
|
+
@ilo-org/react:test: _debugID: 18,
|
|
610
|
+
@ilo-org/react:test: _debugSource: {
|
|
611
|
+
@ilo-org/react:test: fileName: '/home/runner/work/designsystem/designsystem/packages/react/src/components/Callout/Callout.tsx',
|
|
612
|
+
@ilo-org/react:test: lineNumber: 61,
|
|
613
|
+
@ilo-org/react:test: columnNumber: 11
|
|
614
|
+
@ilo-org/react:test: },
|
|
615
|
+
@ilo-org/react:test: _debugOwner: FiberNode {
|
|
616
|
+
@ilo-org/react:test: tag: 0,
|
|
617
|
+
@ilo-org/react:test: key: null,
|
|
618
|
+
@ilo-org/react:test: elementType: [Function: Callout],
|
|
619
|
+
@ilo-org/react:test: type: [Function: Callout],
|
|
620
|
+
@ilo-org/react:test: stateNode: null,
|
|
621
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
622
|
+
@ilo-org/react:test: child: [FiberNode],
|
|
623
|
+
@ilo-org/react:test: sibling: null,
|
|
624
|
+
@ilo-org/react:test: index: 0,
|
|
625
|
+
@ilo-org/react:test: ref: null,
|
|
626
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
627
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
628
|
+
@ilo-org/react:test: updateQueue: [Object],
|
|
629
|
+
@ilo-org/react:test: memoizedState: [Object],
|
|
630
|
+
@ilo-org/react:test: dependencies: [Object],
|
|
631
|
+
@ilo-org/react:test: mode: 0,
|
|
632
|
+
@ilo-org/react:test: flags: 517,
|
|
633
|
+
@ilo-org/react:test: nextEffect: null,
|
|
634
|
+
@ilo-org/react:test: firstEffect: null,
|
|
635
|
+
@ilo-org/react:test: lastEffect: null,
|
|
636
|
+
@ilo-org/react:test: lanes: 0,
|
|
637
|
+
@ilo-org/react:test: childLanes: 0,
|
|
638
|
+
@ilo-org/react:test: alternate: null,
|
|
639
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
640
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
641
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
642
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
643
|
+
@ilo-org/react:test: _debugID: 4,
|
|
644
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
645
|
+
@ilo-org/react:test: _debugOwner: null,
|
|
646
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
647
|
+
@ilo-org/react:test: _debugHookTypes: [Array]
|
|
648
|
+
@ilo-org/react:test: },
|
|
649
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
650
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
651
|
+
@ilo-org/react:test: },
|
|
652
|
+
@ilo-org/react:test: '__reactProps$50o4iso0mq2': { className: 'undefined--callout--headline', children: 'With CTA' }
|
|
653
|
+
@ilo-org/react:test: }
|
|
654
|
+
@ilo-org/react:test:
|
|
655
|
+
@ilo-org/react:test: at Object.<anonymous> (src/__tests__/Callout.test.tsx:14:13)
|
|
656
|
+
@ilo-org/react:test:
|
|
657
|
+
@ilo-org/react:test: PASS src/__tests__/Notification.test.tsx
|
|
658
|
+
@ilo-org/react:test: ● Console
|
|
659
|
+
@ilo-org/react:test:
|
|
660
|
+
@ilo-org/react:test: console.log
|
|
661
|
+
@ilo-org/react:test: <ref *1> HTMLHeadingElement {
|
|
662
|
+
@ilo-org/react:test: '__reactFiber$5o1ukvofdyr': <ref *2> FiberNode {
|
|
663
|
+
@ilo-org/react:test: tag: 5,
|
|
664
|
+
@ilo-org/react:test: key: null,
|
|
665
|
+
@ilo-org/react:test: elementType: 'h2',
|
|
666
|
+
@ilo-org/react:test: type: 'h2',
|
|
667
|
+
@ilo-org/react:test: stateNode: [Circular *1],
|
|
668
|
+
@ilo-org/react:test: return: FiberNode {
|
|
669
|
+
@ilo-org/react:test: tag: 5,
|
|
670
|
+
@ilo-org/react:test: key: null,
|
|
671
|
+
@ilo-org/react:test: elementType: 'div',
|
|
672
|
+
@ilo-org/react:test: type: 'div',
|
|
673
|
+
@ilo-org/react:test: stateNode: [HTMLDivElement],
|
|
674
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
675
|
+
@ilo-org/react:test: child: [Circular *2],
|
|
676
|
+
@ilo-org/react:test: sibling: [FiberNode],
|
|
677
|
+
@ilo-org/react:test: index: 0,
|
|
678
|
+
@ilo-org/react:test: ref: null,
|
|
679
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
680
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
681
|
+
@ilo-org/react:test: updateQueue: null,
|
|
682
|
+
@ilo-org/react:test: memoizedState: null,
|
|
683
|
+
@ilo-org/react:test: dependencies: null,
|
|
684
|
+
@ilo-org/react:test: mode: 0,
|
|
685
|
+
@ilo-org/react:test: flags: 0,
|
|
686
|
+
@ilo-org/react:test: nextEffect: null,
|
|
687
|
+
@ilo-org/react:test: firstEffect: null,
|
|
688
|
+
@ilo-org/react:test: lastEffect: null,
|
|
689
|
+
@ilo-org/react:test: lanes: 0,
|
|
690
|
+
@ilo-org/react:test: childLanes: 0,
|
|
691
|
+
@ilo-org/react:test: alternate: null,
|
|
692
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
693
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
694
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
695
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
696
|
+
@ilo-org/react:test: _debugID: 8,
|
|
697
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
698
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
699
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
700
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
701
|
+
@ilo-org/react:test: },
|
|
702
|
+
@ilo-org/react:test: child: null,
|
|
703
|
+
@ilo-org/react:test: sibling: FiberNode {
|
|
704
|
+
@ilo-org/react:test: tag: 5,
|
|
705
|
+
@ilo-org/react:test: key: null,
|
|
706
|
+
@ilo-org/react:test: elementType: 'p',
|
|
707
|
+
@ilo-org/react:test: type: 'p',
|
|
708
|
+
@ilo-org/react:test: stateNode: [HTMLParagraphElement],
|
|
709
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
710
|
+
@ilo-org/react:test: child: null,
|
|
711
|
+
@ilo-org/react:test: sibling: [FiberNode],
|
|
712
|
+
@ilo-org/react:test: index: 1,
|
|
713
|
+
@ilo-org/react:test: ref: null,
|
|
714
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
715
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
716
|
+
@ilo-org/react:test: updateQueue: null,
|
|
717
|
+
@ilo-org/react:test: memoizedState: null,
|
|
718
|
+
@ilo-org/react:test: dependencies: null,
|
|
719
|
+
@ilo-org/react:test: mode: 0,
|
|
720
|
+
@ilo-org/react:test: flags: 0,
|
|
721
|
+
@ilo-org/react:test: nextEffect: null,
|
|
722
|
+
@ilo-org/react:test: firstEffect: null,
|
|
723
|
+
@ilo-org/react:test: lastEffect: null,
|
|
724
|
+
@ilo-org/react:test: lanes: 0,
|
|
725
|
+
@ilo-org/react:test: childLanes: 0,
|
|
726
|
+
@ilo-org/react:test: alternate: null,
|
|
727
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
728
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
729
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
730
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
731
|
+
@ilo-org/react:test: _debugID: 12,
|
|
732
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
733
|
+
@ilo-org/react:test: _debugOwner: [FiberNode],
|
|
734
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
735
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
736
|
+
@ilo-org/react:test: },
|
|
737
|
+
@ilo-org/react:test: index: 0,
|
|
738
|
+
@ilo-org/react:test: ref: null,
|
|
739
|
+
@ilo-org/react:test: pendingProps: {
|
|
740
|
+
@ilo-org/react:test: className: 'undefined--notification--headline',
|
|
741
|
+
@ilo-org/react:test: children: 'With CTA'
|
|
742
|
+
@ilo-org/react:test: },
|
|
743
|
+
@ilo-org/react:test: memoizedProps: {
|
|
744
|
+
@ilo-org/react:test: className: 'undefined--notification--headline',
|
|
745
|
+
@ilo-org/react:test: children: 'With CTA'
|
|
746
|
+
@ilo-org/react:test: },
|
|
747
|
+
@ilo-org/react:test: updateQueue: null,
|
|
748
|
+
@ilo-org/react:test: memoizedState: null,
|
|
749
|
+
@ilo-org/react:test: dependencies: null,
|
|
750
|
+
@ilo-org/react:test: mode: 0,
|
|
751
|
+
@ilo-org/react:test: flags: 0,
|
|
752
|
+
@ilo-org/react:test: nextEffect: null,
|
|
753
|
+
@ilo-org/react:test: firstEffect: null,
|
|
754
|
+
@ilo-org/react:test: lastEffect: null,
|
|
755
|
+
@ilo-org/react:test: lanes: 0,
|
|
756
|
+
@ilo-org/react:test: childLanes: 0,
|
|
757
|
+
@ilo-org/react:test: alternate: null,
|
|
758
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
759
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
760
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
761
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
762
|
+
@ilo-org/react:test: _debugID: 11,
|
|
763
|
+
@ilo-org/react:test: _debugSource: {
|
|
764
|
+
@ilo-org/react:test: fileName: '/home/runner/work/designsystem/designsystem/packages/react/src/components/Notification/Notification.tsx',
|
|
765
|
+
@ilo-org/react:test: lineNumber: 56,
|
|
766
|
+
@ilo-org/react:test: columnNumber: 13
|
|
767
|
+
@ilo-org/react:test: },
|
|
768
|
+
@ilo-org/react:test: _debugOwner: FiberNode {
|
|
769
|
+
@ilo-org/react:test: tag: 0,
|
|
770
|
+
@ilo-org/react:test: key: null,
|
|
771
|
+
@ilo-org/react:test: elementType: [Function: Notification],
|
|
772
|
+
@ilo-org/react:test: type: [Function: Notification],
|
|
773
|
+
@ilo-org/react:test: stateNode: null,
|
|
774
|
+
@ilo-org/react:test: return: [FiberNode],
|
|
775
|
+
@ilo-org/react:test: child: [FiberNode],
|
|
776
|
+
@ilo-org/react:test: sibling: null,
|
|
777
|
+
@ilo-org/react:test: index: 0,
|
|
778
|
+
@ilo-org/react:test: ref: null,
|
|
779
|
+
@ilo-org/react:test: pendingProps: [Object],
|
|
780
|
+
@ilo-org/react:test: memoizedProps: [Object],
|
|
781
|
+
@ilo-org/react:test: updateQueue: null,
|
|
782
|
+
@ilo-org/react:test: memoizedState: [Object],
|
|
783
|
+
@ilo-org/react:test: dependencies: [Object],
|
|
784
|
+
@ilo-org/react:test: mode: 0,
|
|
785
|
+
@ilo-org/react:test: flags: 1,
|
|
786
|
+
@ilo-org/react:test: nextEffect: null,
|
|
787
|
+
@ilo-org/react:test: firstEffect: null,
|
|
788
|
+
@ilo-org/react:test: lastEffect: null,
|
|
789
|
+
@ilo-org/react:test: lanes: 0,
|
|
790
|
+
@ilo-org/react:test: childLanes: 0,
|
|
791
|
+
@ilo-org/react:test: alternate: null,
|
|
792
|
+
@ilo-org/react:test: actualDuration: 0,
|
|
793
|
+
@ilo-org/react:test: actualStartTime: -1,
|
|
794
|
+
@ilo-org/react:test: selfBaseDuration: 0,
|
|
795
|
+
@ilo-org/react:test: treeBaseDuration: 0,
|
|
796
|
+
@ilo-org/react:test: _debugID: 4,
|
|
797
|
+
@ilo-org/react:test: _debugSource: [Object],
|
|
798
|
+
@ilo-org/react:test: _debugOwner: null,
|
|
799
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
800
|
+
@ilo-org/react:test: _debugHookTypes: [Array]
|
|
801
|
+
@ilo-org/react:test: },
|
|
802
|
+
@ilo-org/react:test: _debugNeedsRemount: false,
|
|
803
|
+
@ilo-org/react:test: _debugHookTypes: null
|
|
804
|
+
@ilo-org/react:test: },
|
|
805
|
+
@ilo-org/react:test: '__reactProps$5o1ukvofdyr': {
|
|
806
|
+
@ilo-org/react:test: className: 'undefined--notification--headline',
|
|
807
|
+
@ilo-org/react:test: children: 'With CTA'
|
|
808
|
+
@ilo-org/react:test: }
|
|
809
|
+
@ilo-org/react:test: }
|
|
810
|
+
@ilo-org/react:test:
|
|
811
|
+
@ilo-org/react:test: at Object.<anonymous> (src/__tests__/Notification.test.tsx:11:13)
|
|
812
|
+
@ilo-org/react:test:
|
|
813
|
+
@ilo-org/react:test: PASS src/__tests__/ReadMore.test.tsx
|
|
814
|
+
@ilo-org/react:test: PASS src/__tests__/List.test.tsx
|
|
815
|
+
@ilo-org/react:test: PASS src/__tests__/Dropdown.test.tsx
|
|
816
|
+
@ilo-org/react:test: PASS src/__tests__/SearchField.test.tsx
|
|
817
|
+
@ilo-org/react:test: ● Console
|
|
818
|
+
@ilo-org/react:test:
|
|
819
|
+
@ilo-org/react:test: console.error
|
|
820
|
+
@ilo-org/react:test: Error: Not implemented: HTMLFormElement.prototype.submit
|
|
821
|
+
@ilo-org/react:test: at module.exports (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
|
|
822
|
+
@ilo-org/react:test: at HTMLFormElementImpl.submit (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:88:5)
|
|
823
|
+
@ilo-org/react:test: at HTMLFormElementImpl._doSubmit (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:80:10)
|
|
824
|
+
@ilo-org/react:test: at HTMLInputElementImpl._activationBehavior (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js:204:12)
|
|
825
|
+
@ilo-org/react:test: at HTMLInputElementImpl._dispatch (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:240:26)
|
|
826
|
+
@ilo-org/react:test: at HTMLInputElementImpl.dispatchEvent (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:94:17)
|
|
827
|
+
@ilo-org/react:test: at HTMLInputElement.dispatchEvent (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:231:34)
|
|
828
|
+
@ilo-org/react:test: at /home/runner/work/designsystem/designsystem/node_modules/.pnpm/@testing-library+dom@8.13.0/node_modules/@testing-library/dom/dist/events.js:25:20
|
|
829
|
+
@ilo-org/react:test: at /home/runner/work/designsystem/designsystem/node_modules/.pnpm/@testing-library+react@12.1.5_react-dom@17.0.2+react@17.0.2/node_modules/@testing-library/react/dist/pure.js:66:16
|
|
830
|
+
@ilo-org/react:test: at batchedUpdates$1 (/home/runner/work/designsystem/designsystem/node_modules/.pnpm/react-dom@17.0.2_react@17.0.2/node_modules/react-dom/cjs/react-dom.development.js:22380:12) undefined
|
|
831
|
+
@ilo-org/react:test:
|
|
832
|
+
@ilo-org/react:test: at VirtualConsole.<anonymous> (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/virtual-console.js:29:45)
|
|
833
|
+
@ilo-org/react:test: at module.exports (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:12:26)
|
|
834
|
+
@ilo-org/react:test: at HTMLFormElementImpl.submit (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:88:5)
|
|
835
|
+
@ilo-org/react:test: at HTMLFormElementImpl._doSubmit (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:80:10)
|
|
836
|
+
@ilo-org/react:test: at HTMLInputElementImpl._activationBehavior (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js:204:12)
|
|
837
|
+
@ilo-org/react:test: at HTMLInputElementImpl._dispatch (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:240:26)
|
|
838
|
+
@ilo-org/react:test: at HTMLInputElementImpl.dispatchEvent (../../node_modules/.pnpm/jsdom@16.7.0/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:94:17)
|
|
839
|
+
@ilo-org/react:test:
|
|
840
|
+
@ilo-org/react:test: PASS src/__tests__/Form.test.tsx
|
|
841
|
+
@ilo-org/react:test: ● Console
|
|
842
|
+
@ilo-org/react:test:
|
|
843
|
+
@ilo-org/react:test: console.log
|
|
844
|
+
@ilo-org/react:test: {
|
|
845
|
+
@ilo-org/react:test: callback: '',
|
|
846
|
+
@ilo-org/react:test: disabled: false,
|
|
847
|
+
@ilo-org/react:test: error: false,
|
|
848
|
+
@ilo-org/react:test: grouped: true,
|
|
849
|
+
@ilo-org/react:test: helper: false,
|
|
850
|
+
@ilo-org/react:test: label: 'Checkbox 0',
|
|
851
|
+
@ilo-org/react:test: name: 'fgcheckbox0',
|
|
852
|
+
@ilo-org/react:test: required: false,
|
|
853
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
854
|
+
@ilo-org/react:test: id: 'fgcheckbox0'
|
|
855
|
+
@ilo-org/react:test: }
|
|
856
|
+
@ilo-org/react:test:
|
|
857
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
858
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
859
|
+
@ilo-org/react:test:
|
|
860
|
+
@ilo-org/react:test: console.log
|
|
861
|
+
@ilo-org/react:test: {
|
|
862
|
+
@ilo-org/react:test: callback: '',
|
|
863
|
+
@ilo-org/react:test: disabled: false,
|
|
864
|
+
@ilo-org/react:test: error: false,
|
|
865
|
+
@ilo-org/react:test: grouped: true,
|
|
866
|
+
@ilo-org/react:test: helper: false,
|
|
867
|
+
@ilo-org/react:test: label: 'Checkbox 1',
|
|
868
|
+
@ilo-org/react:test: name: 'fgcheckbox1',
|
|
869
|
+
@ilo-org/react:test: required: false,
|
|
870
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
871
|
+
@ilo-org/react:test: id: 'fgcheckbox1'
|
|
872
|
+
@ilo-org/react:test: }
|
|
873
|
+
@ilo-org/react:test:
|
|
874
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
875
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
876
|
+
@ilo-org/react:test:
|
|
877
|
+
@ilo-org/react:test: console.log
|
|
878
|
+
@ilo-org/react:test: {
|
|
879
|
+
@ilo-org/react:test: callback: '',
|
|
880
|
+
@ilo-org/react:test: disabled: false,
|
|
881
|
+
@ilo-org/react:test: error: false,
|
|
882
|
+
@ilo-org/react:test: grouped: true,
|
|
883
|
+
@ilo-org/react:test: helper: false,
|
|
884
|
+
@ilo-org/react:test: label: 'Checkbox 2',
|
|
885
|
+
@ilo-org/react:test: name: 'fgcheckbox2',
|
|
886
|
+
@ilo-org/react:test: required: false,
|
|
887
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
888
|
+
@ilo-org/react:test: id: 'fgcheckbox2'
|
|
889
|
+
@ilo-org/react:test: }
|
|
890
|
+
@ilo-org/react:test:
|
|
891
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
892
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
893
|
+
@ilo-org/react:test:
|
|
894
|
+
@ilo-org/react:test: console.log
|
|
895
|
+
@ilo-org/react:test: {
|
|
896
|
+
@ilo-org/react:test: callback: '',
|
|
897
|
+
@ilo-org/react:test: disabled: false,
|
|
898
|
+
@ilo-org/react:test: error: false,
|
|
899
|
+
@ilo-org/react:test: grouped: true,
|
|
900
|
+
@ilo-org/react:test: helper: false,
|
|
901
|
+
@ilo-org/react:test: label: 'Checkbox 3',
|
|
902
|
+
@ilo-org/react:test: name: 'fgcheckbox3',
|
|
903
|
+
@ilo-org/react:test: required: false,
|
|
904
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
905
|
+
@ilo-org/react:test: id: 'fgcheckbox3'
|
|
906
|
+
@ilo-org/react:test: }
|
|
907
|
+
@ilo-org/react:test:
|
|
908
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
909
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
910
|
+
@ilo-org/react:test:
|
|
911
|
+
@ilo-org/react:test: console.log
|
|
912
|
+
@ilo-org/react:test: {
|
|
913
|
+
@ilo-org/react:test: callback: '',
|
|
914
|
+
@ilo-org/react:test: disabled: false,
|
|
915
|
+
@ilo-org/react:test: error: false,
|
|
916
|
+
@ilo-org/react:test: grouped: true,
|
|
917
|
+
@ilo-org/react:test: helper: false,
|
|
918
|
+
@ilo-org/react:test: label: 'Checkbox 4',
|
|
919
|
+
@ilo-org/react:test: name: 'fgcheckbox4',
|
|
920
|
+
@ilo-org/react:test: required: false,
|
|
921
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
922
|
+
@ilo-org/react:test: id: 'fgcheckbox4'
|
|
923
|
+
@ilo-org/react:test: }
|
|
924
|
+
@ilo-org/react:test:
|
|
925
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
926
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
927
|
+
@ilo-org/react:test:
|
|
928
|
+
@ilo-org/react:test: console.log
|
|
929
|
+
@ilo-org/react:test: {
|
|
930
|
+
@ilo-org/react:test: callback: '',
|
|
931
|
+
@ilo-org/react:test: disabled: false,
|
|
932
|
+
@ilo-org/react:test: error: false,
|
|
933
|
+
@ilo-org/react:test: helper: false,
|
|
934
|
+
@ilo-org/react:test: label: 'Radio 0',
|
|
935
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
936
|
+
@ilo-org/react:test: required: false,
|
|
937
|
+
@ilo-org/react:test: type: 'radio',
|
|
938
|
+
@ilo-org/react:test: value: 'fgradio0',
|
|
939
|
+
@ilo-org/react:test: id: 'fgradio0'
|
|
940
|
+
@ilo-org/react:test: }
|
|
941
|
+
@ilo-org/react:test:
|
|
942
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
943
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
944
|
+
@ilo-org/react:test:
|
|
945
|
+
@ilo-org/react:test: console.log
|
|
946
|
+
@ilo-org/react:test: {
|
|
947
|
+
@ilo-org/react:test: callback: '',
|
|
948
|
+
@ilo-org/react:test: disabled: false,
|
|
949
|
+
@ilo-org/react:test: error: false,
|
|
950
|
+
@ilo-org/react:test: helper: false,
|
|
951
|
+
@ilo-org/react:test: label: 'Radio 1',
|
|
952
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
953
|
+
@ilo-org/react:test: required: false,
|
|
954
|
+
@ilo-org/react:test: type: 'radio',
|
|
955
|
+
@ilo-org/react:test: value: 'fgradio1',
|
|
956
|
+
@ilo-org/react:test: id: 'fgradio1'
|
|
957
|
+
@ilo-org/react:test: }
|
|
958
|
+
@ilo-org/react:test:
|
|
959
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
960
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
961
|
+
@ilo-org/react:test:
|
|
962
|
+
@ilo-org/react:test: console.log
|
|
963
|
+
@ilo-org/react:test: {
|
|
964
|
+
@ilo-org/react:test: callback: '',
|
|
965
|
+
@ilo-org/react:test: disabled: false,
|
|
966
|
+
@ilo-org/react:test: error: false,
|
|
967
|
+
@ilo-org/react:test: helper: false,
|
|
968
|
+
@ilo-org/react:test: label: 'Radio 2',
|
|
969
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
970
|
+
@ilo-org/react:test: required: false,
|
|
971
|
+
@ilo-org/react:test: type: 'radio',
|
|
972
|
+
@ilo-org/react:test: value: 'fgradio2',
|
|
973
|
+
@ilo-org/react:test: id: 'fgradio2'
|
|
974
|
+
@ilo-org/react:test: }
|
|
975
|
+
@ilo-org/react:test:
|
|
976
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
977
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
978
|
+
@ilo-org/react:test:
|
|
979
|
+
@ilo-org/react:test: console.log
|
|
980
|
+
@ilo-org/react:test: {
|
|
981
|
+
@ilo-org/react:test: callback: '',
|
|
982
|
+
@ilo-org/react:test: disabled: false,
|
|
983
|
+
@ilo-org/react:test: error: false,
|
|
984
|
+
@ilo-org/react:test: helper: false,
|
|
985
|
+
@ilo-org/react:test: label: 'Radio 3',
|
|
986
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
987
|
+
@ilo-org/react:test: required: false,
|
|
988
|
+
@ilo-org/react:test: type: 'radio',
|
|
989
|
+
@ilo-org/react:test: value: 'fgradio3',
|
|
990
|
+
@ilo-org/react:test: id: 'fgradio3'
|
|
991
|
+
@ilo-org/react:test: }
|
|
992
|
+
@ilo-org/react:test:
|
|
993
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
994
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
995
|
+
@ilo-org/react:test:
|
|
996
|
+
@ilo-org/react:test: console.log
|
|
997
|
+
@ilo-org/react:test: {
|
|
998
|
+
@ilo-org/react:test: callback: '',
|
|
999
|
+
@ilo-org/react:test: disabled: false,
|
|
1000
|
+
@ilo-org/react:test: error: false,
|
|
1001
|
+
@ilo-org/react:test: helper: false,
|
|
1002
|
+
@ilo-org/react:test: label: 'Radio 4',
|
|
1003
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
1004
|
+
@ilo-org/react:test: required: false,
|
|
1005
|
+
@ilo-org/react:test: type: 'radio',
|
|
1006
|
+
@ilo-org/react:test: value: 'fgradio4',
|
|
1007
|
+
@ilo-org/react:test: id: 'fgradio4'
|
|
1008
|
+
@ilo-org/react:test: }
|
|
1009
|
+
@ilo-org/react:test:
|
|
1010
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1011
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1012
|
+
@ilo-org/react:test:
|
|
1013
|
+
@ilo-org/react:test: console.log
|
|
1014
|
+
@ilo-org/react:test: {
|
|
1015
|
+
@ilo-org/react:test: callback: '',
|
|
1016
|
+
@ilo-org/react:test: disabled: false,
|
|
1017
|
+
@ilo-org/react:test: error: false,
|
|
1018
|
+
@ilo-org/react:test: grouped: true,
|
|
1019
|
+
@ilo-org/react:test: helper: false,
|
|
1020
|
+
@ilo-org/react:test: label: 'Checkbox 0',
|
|
1021
|
+
@ilo-org/react:test: name: 'checkbox0',
|
|
1022
|
+
@ilo-org/react:test: required: false,
|
|
1023
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1024
|
+
@ilo-org/react:test: }
|
|
1025
|
+
@ilo-org/react:test:
|
|
1026
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1027
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1028
|
+
@ilo-org/react:test:
|
|
1029
|
+
@ilo-org/react:test: console.log
|
|
1030
|
+
@ilo-org/react:test: {
|
|
1031
|
+
@ilo-org/react:test: callback: '',
|
|
1032
|
+
@ilo-org/react:test: disabled: false,
|
|
1033
|
+
@ilo-org/react:test: error: false,
|
|
1034
|
+
@ilo-org/react:test: grouped: true,
|
|
1035
|
+
@ilo-org/react:test: helper: false,
|
|
1036
|
+
@ilo-org/react:test: label: 'Checkbox 1',
|
|
1037
|
+
@ilo-org/react:test: name: 'checkbox1',
|
|
1038
|
+
@ilo-org/react:test: required: false,
|
|
1039
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1040
|
+
@ilo-org/react:test: }
|
|
1041
|
+
@ilo-org/react:test:
|
|
1042
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1043
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1044
|
+
@ilo-org/react:test:
|
|
1045
|
+
@ilo-org/react:test: console.log
|
|
1046
|
+
@ilo-org/react:test: {
|
|
1047
|
+
@ilo-org/react:test: callback: '',
|
|
1048
|
+
@ilo-org/react:test: disabled: false,
|
|
1049
|
+
@ilo-org/react:test: error: false,
|
|
1050
|
+
@ilo-org/react:test: grouped: true,
|
|
1051
|
+
@ilo-org/react:test: helper: false,
|
|
1052
|
+
@ilo-org/react:test: label: 'Checkbox 2',
|
|
1053
|
+
@ilo-org/react:test: name: 'checkbox2',
|
|
1054
|
+
@ilo-org/react:test: required: false,
|
|
1055
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1056
|
+
@ilo-org/react:test: }
|
|
1057
|
+
@ilo-org/react:test:
|
|
1058
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1059
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1060
|
+
@ilo-org/react:test:
|
|
1061
|
+
@ilo-org/react:test: console.log
|
|
1062
|
+
@ilo-org/react:test: {
|
|
1063
|
+
@ilo-org/react:test: callback: '',
|
|
1064
|
+
@ilo-org/react:test: disabled: false,
|
|
1065
|
+
@ilo-org/react:test: error: false,
|
|
1066
|
+
@ilo-org/react:test: grouped: true,
|
|
1067
|
+
@ilo-org/react:test: helper: false,
|
|
1068
|
+
@ilo-org/react:test: label: 'Checkbox 3',
|
|
1069
|
+
@ilo-org/react:test: name: 'checkbox3',
|
|
1070
|
+
@ilo-org/react:test: required: false,
|
|
1071
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1072
|
+
@ilo-org/react:test: }
|
|
1073
|
+
@ilo-org/react:test:
|
|
1074
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1075
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1076
|
+
@ilo-org/react:test:
|
|
1077
|
+
@ilo-org/react:test: console.log
|
|
1078
|
+
@ilo-org/react:test: {
|
|
1079
|
+
@ilo-org/react:test: callback: '',
|
|
1080
|
+
@ilo-org/react:test: disabled: false,
|
|
1081
|
+
@ilo-org/react:test: error: false,
|
|
1082
|
+
@ilo-org/react:test: grouped: true,
|
|
1083
|
+
@ilo-org/react:test: helper: false,
|
|
1084
|
+
@ilo-org/react:test: label: 'Checkbox 4',
|
|
1085
|
+
@ilo-org/react:test: name: 'checkbox4',
|
|
1086
|
+
@ilo-org/react:test: required: false,
|
|
1087
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1088
|
+
@ilo-org/react:test: }
|
|
1089
|
+
@ilo-org/react:test:
|
|
1090
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1091
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1092
|
+
@ilo-org/react:test:
|
|
1093
|
+
@ilo-org/react:test: console.log
|
|
1094
|
+
@ilo-org/react:test: {
|
|
1095
|
+
@ilo-org/react:test: callback: '',
|
|
1096
|
+
@ilo-org/react:test: disabled: false,
|
|
1097
|
+
@ilo-org/react:test: error: false,
|
|
1098
|
+
@ilo-org/react:test: helper: false,
|
|
1099
|
+
@ilo-org/react:test: label: 'Radio 0',
|
|
1100
|
+
@ilo-org/react:test: name: 'radio0',
|
|
1101
|
+
@ilo-org/react:test: required: false,
|
|
1102
|
+
@ilo-org/react:test: type: 'radio',
|
|
1103
|
+
@ilo-org/react:test: value: 'radio'
|
|
1104
|
+
@ilo-org/react:test: }
|
|
1105
|
+
@ilo-org/react:test:
|
|
1106
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1107
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1108
|
+
@ilo-org/react:test:
|
|
1109
|
+
@ilo-org/react:test: console.log
|
|
1110
|
+
@ilo-org/react:test: {
|
|
1111
|
+
@ilo-org/react:test: callback: '',
|
|
1112
|
+
@ilo-org/react:test: disabled: false,
|
|
1113
|
+
@ilo-org/react:test: error: false,
|
|
1114
|
+
@ilo-org/react:test: helper: false,
|
|
1115
|
+
@ilo-org/react:test: label: 'Radio 1',
|
|
1116
|
+
@ilo-org/react:test: name: 'radio1',
|
|
1117
|
+
@ilo-org/react:test: required: false,
|
|
1118
|
+
@ilo-org/react:test: type: 'radio',
|
|
1119
|
+
@ilo-org/react:test: value: 'radio'
|
|
1120
|
+
@ilo-org/react:test: }
|
|
1121
|
+
@ilo-org/react:test:
|
|
1122
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1123
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1124
|
+
@ilo-org/react:test:
|
|
1125
|
+
@ilo-org/react:test: console.log
|
|
1126
|
+
@ilo-org/react:test: {
|
|
1127
|
+
@ilo-org/react:test: callback: '',
|
|
1128
|
+
@ilo-org/react:test: disabled: false,
|
|
1129
|
+
@ilo-org/react:test: error: false,
|
|
1130
|
+
@ilo-org/react:test: helper: false,
|
|
1131
|
+
@ilo-org/react:test: label: 'Radio 2',
|
|
1132
|
+
@ilo-org/react:test: name: 'radio2',
|
|
1133
|
+
@ilo-org/react:test: required: false,
|
|
1134
|
+
@ilo-org/react:test: type: 'radio',
|
|
1135
|
+
@ilo-org/react:test: value: 'radio'
|
|
1136
|
+
@ilo-org/react:test: }
|
|
1137
|
+
@ilo-org/react:test:
|
|
1138
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1139
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1140
|
+
@ilo-org/react:test:
|
|
1141
|
+
@ilo-org/react:test: console.log
|
|
1142
|
+
@ilo-org/react:test: {
|
|
1143
|
+
@ilo-org/react:test: callback: '',
|
|
1144
|
+
@ilo-org/react:test: disabled: false,
|
|
1145
|
+
@ilo-org/react:test: error: false,
|
|
1146
|
+
@ilo-org/react:test: helper: false,
|
|
1147
|
+
@ilo-org/react:test: label: 'Radio 3',
|
|
1148
|
+
@ilo-org/react:test: name: 'radio3',
|
|
1149
|
+
@ilo-org/react:test: required: false,
|
|
1150
|
+
@ilo-org/react:test: type: 'radio',
|
|
1151
|
+
@ilo-org/react:test: value: 'radio'
|
|
1152
|
+
@ilo-org/react:test: }
|
|
1153
|
+
@ilo-org/react:test:
|
|
1154
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1155
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1156
|
+
@ilo-org/react:test:
|
|
1157
|
+
@ilo-org/react:test: console.log
|
|
1158
|
+
@ilo-org/react:test: {
|
|
1159
|
+
@ilo-org/react:test: callback: '',
|
|
1160
|
+
@ilo-org/react:test: disabled: false,
|
|
1161
|
+
@ilo-org/react:test: error: false,
|
|
1162
|
+
@ilo-org/react:test: helper: false,
|
|
1163
|
+
@ilo-org/react:test: label: 'Radio 4',
|
|
1164
|
+
@ilo-org/react:test: name: 'radio4',
|
|
1165
|
+
@ilo-org/react:test: required: false,
|
|
1166
|
+
@ilo-org/react:test: type: 'radio',
|
|
1167
|
+
@ilo-org/react:test: value: 'radio'
|
|
1168
|
+
@ilo-org/react:test: }
|
|
1169
|
+
@ilo-org/react:test:
|
|
1170
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1171
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1172
|
+
@ilo-org/react:test:
|
|
1173
|
+
@ilo-org/react:test: console.log
|
|
1174
|
+
@ilo-org/react:test: {
|
|
1175
|
+
@ilo-org/react:test: callback: '',
|
|
1176
|
+
@ilo-org/react:test: disabled: false,
|
|
1177
|
+
@ilo-org/react:test: error: false,
|
|
1178
|
+
@ilo-org/react:test: grouped: true,
|
|
1179
|
+
@ilo-org/react:test: helper: false,
|
|
1180
|
+
@ilo-org/react:test: label: 'Checkbox 0',
|
|
1181
|
+
@ilo-org/react:test: name: 'fgcheckbox0',
|
|
1182
|
+
@ilo-org/react:test: required: false,
|
|
1183
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
1184
|
+
@ilo-org/react:test: id: 'fgcheckbox0'
|
|
1185
|
+
@ilo-org/react:test: }
|
|
1186
|
+
@ilo-org/react:test:
|
|
1187
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1188
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1189
|
+
@ilo-org/react:test:
|
|
1190
|
+
@ilo-org/react:test: console.log
|
|
1191
|
+
@ilo-org/react:test: {
|
|
1192
|
+
@ilo-org/react:test: callback: '',
|
|
1193
|
+
@ilo-org/react:test: disabled: false,
|
|
1194
|
+
@ilo-org/react:test: error: false,
|
|
1195
|
+
@ilo-org/react:test: grouped: true,
|
|
1196
|
+
@ilo-org/react:test: helper: false,
|
|
1197
|
+
@ilo-org/react:test: label: 'Checkbox 1',
|
|
1198
|
+
@ilo-org/react:test: name: 'fgcheckbox1',
|
|
1199
|
+
@ilo-org/react:test: required: false,
|
|
1200
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
1201
|
+
@ilo-org/react:test: id: 'fgcheckbox1'
|
|
1202
|
+
@ilo-org/react:test: }
|
|
1203
|
+
@ilo-org/react:test:
|
|
1204
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1205
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1206
|
+
@ilo-org/react:test:
|
|
1207
|
+
@ilo-org/react:test: console.log
|
|
1208
|
+
@ilo-org/react:test: {
|
|
1209
|
+
@ilo-org/react:test: callback: '',
|
|
1210
|
+
@ilo-org/react:test: disabled: false,
|
|
1211
|
+
@ilo-org/react:test: error: false,
|
|
1212
|
+
@ilo-org/react:test: grouped: true,
|
|
1213
|
+
@ilo-org/react:test: helper: false,
|
|
1214
|
+
@ilo-org/react:test: label: 'Checkbox 2',
|
|
1215
|
+
@ilo-org/react:test: name: 'fgcheckbox2',
|
|
1216
|
+
@ilo-org/react:test: required: false,
|
|
1217
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
1218
|
+
@ilo-org/react:test: id: 'fgcheckbox2'
|
|
1219
|
+
@ilo-org/react:test: }
|
|
1220
|
+
@ilo-org/react:test:
|
|
1221
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1222
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1223
|
+
@ilo-org/react:test:
|
|
1224
|
+
@ilo-org/react:test: console.log
|
|
1225
|
+
@ilo-org/react:test: {
|
|
1226
|
+
@ilo-org/react:test: callback: '',
|
|
1227
|
+
@ilo-org/react:test: disabled: false,
|
|
1228
|
+
@ilo-org/react:test: error: false,
|
|
1229
|
+
@ilo-org/react:test: grouped: true,
|
|
1230
|
+
@ilo-org/react:test: helper: false,
|
|
1231
|
+
@ilo-org/react:test: label: 'Checkbox 3',
|
|
1232
|
+
@ilo-org/react:test: name: 'fgcheckbox3',
|
|
1233
|
+
@ilo-org/react:test: required: false,
|
|
1234
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
1235
|
+
@ilo-org/react:test: id: 'fgcheckbox3'
|
|
1236
|
+
@ilo-org/react:test: }
|
|
1237
|
+
@ilo-org/react:test:
|
|
1238
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1239
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1240
|
+
@ilo-org/react:test:
|
|
1241
|
+
@ilo-org/react:test: console.log
|
|
1242
|
+
@ilo-org/react:test: {
|
|
1243
|
+
@ilo-org/react:test: callback: '',
|
|
1244
|
+
@ilo-org/react:test: disabled: false,
|
|
1245
|
+
@ilo-org/react:test: error: false,
|
|
1246
|
+
@ilo-org/react:test: grouped: true,
|
|
1247
|
+
@ilo-org/react:test: helper: false,
|
|
1248
|
+
@ilo-org/react:test: label: 'Checkbox 4',
|
|
1249
|
+
@ilo-org/react:test: name: 'fgcheckbox4',
|
|
1250
|
+
@ilo-org/react:test: required: false,
|
|
1251
|
+
@ilo-org/react:test: type: 'checkbox',
|
|
1252
|
+
@ilo-org/react:test: id: 'fgcheckbox4'
|
|
1253
|
+
@ilo-org/react:test: }
|
|
1254
|
+
@ilo-org/react:test:
|
|
1255
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1256
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1257
|
+
@ilo-org/react:test:
|
|
1258
|
+
@ilo-org/react:test: console.log
|
|
1259
|
+
@ilo-org/react:test: {
|
|
1260
|
+
@ilo-org/react:test: callback: '',
|
|
1261
|
+
@ilo-org/react:test: disabled: false,
|
|
1262
|
+
@ilo-org/react:test: error: false,
|
|
1263
|
+
@ilo-org/react:test: helper: false,
|
|
1264
|
+
@ilo-org/react:test: label: 'Radio 0',
|
|
1265
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
1266
|
+
@ilo-org/react:test: required: false,
|
|
1267
|
+
@ilo-org/react:test: type: 'radio',
|
|
1268
|
+
@ilo-org/react:test: value: 'fgradio0',
|
|
1269
|
+
@ilo-org/react:test: id: 'fgradio0'
|
|
1270
|
+
@ilo-org/react:test: }
|
|
1271
|
+
@ilo-org/react:test:
|
|
1272
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1273
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1274
|
+
@ilo-org/react:test:
|
|
1275
|
+
@ilo-org/react:test: console.log
|
|
1276
|
+
@ilo-org/react:test: {
|
|
1277
|
+
@ilo-org/react:test: callback: '',
|
|
1278
|
+
@ilo-org/react:test: disabled: false,
|
|
1279
|
+
@ilo-org/react:test: error: false,
|
|
1280
|
+
@ilo-org/react:test: helper: false,
|
|
1281
|
+
@ilo-org/react:test: label: 'Radio 1',
|
|
1282
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
1283
|
+
@ilo-org/react:test: required: false,
|
|
1284
|
+
@ilo-org/react:test: type: 'radio',
|
|
1285
|
+
@ilo-org/react:test: value: 'fgradio1',
|
|
1286
|
+
@ilo-org/react:test: id: 'fgradio1'
|
|
1287
|
+
@ilo-org/react:test: }
|
|
1288
|
+
@ilo-org/react:test:
|
|
1289
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1290
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1291
|
+
@ilo-org/react:test:
|
|
1292
|
+
@ilo-org/react:test: console.log
|
|
1293
|
+
@ilo-org/react:test: {
|
|
1294
|
+
@ilo-org/react:test: callback: '',
|
|
1295
|
+
@ilo-org/react:test: disabled: false,
|
|
1296
|
+
@ilo-org/react:test: error: false,
|
|
1297
|
+
@ilo-org/react:test: helper: false,
|
|
1298
|
+
@ilo-org/react:test: label: 'Radio 2',
|
|
1299
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
1300
|
+
@ilo-org/react:test: required: false,
|
|
1301
|
+
@ilo-org/react:test: type: 'radio',
|
|
1302
|
+
@ilo-org/react:test: value: 'fgradio2',
|
|
1303
|
+
@ilo-org/react:test: id: 'fgradio2'
|
|
1304
|
+
@ilo-org/react:test: }
|
|
1305
|
+
@ilo-org/react:test:
|
|
1306
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1307
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1308
|
+
@ilo-org/react:test:
|
|
1309
|
+
@ilo-org/react:test: console.log
|
|
1310
|
+
@ilo-org/react:test: {
|
|
1311
|
+
@ilo-org/react:test: callback: '',
|
|
1312
|
+
@ilo-org/react:test: disabled: false,
|
|
1313
|
+
@ilo-org/react:test: error: false,
|
|
1314
|
+
@ilo-org/react:test: helper: false,
|
|
1315
|
+
@ilo-org/react:test: label: 'Radio 3',
|
|
1316
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
1317
|
+
@ilo-org/react:test: required: false,
|
|
1318
|
+
@ilo-org/react:test: type: 'radio',
|
|
1319
|
+
@ilo-org/react:test: value: 'fgradio3',
|
|
1320
|
+
@ilo-org/react:test: id: 'fgradio3'
|
|
1321
|
+
@ilo-org/react:test: }
|
|
1322
|
+
@ilo-org/react:test:
|
|
1323
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1324
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1325
|
+
@ilo-org/react:test:
|
|
1326
|
+
@ilo-org/react:test: console.log
|
|
1327
|
+
@ilo-org/react:test: {
|
|
1328
|
+
@ilo-org/react:test: callback: '',
|
|
1329
|
+
@ilo-org/react:test: disabled: false,
|
|
1330
|
+
@ilo-org/react:test: error: false,
|
|
1331
|
+
@ilo-org/react:test: helper: false,
|
|
1332
|
+
@ilo-org/react:test: label: 'Radio 4',
|
|
1333
|
+
@ilo-org/react:test: name: 'fgradio',
|
|
1334
|
+
@ilo-org/react:test: required: false,
|
|
1335
|
+
@ilo-org/react:test: type: 'radio',
|
|
1336
|
+
@ilo-org/react:test: value: 'fgradio4',
|
|
1337
|
+
@ilo-org/react:test: id: 'fgradio4'
|
|
1338
|
+
@ilo-org/react:test: }
|
|
1339
|
+
@ilo-org/react:test:
|
|
1340
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1341
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1342
|
+
@ilo-org/react:test:
|
|
1343
|
+
@ilo-org/react:test: console.log
|
|
1344
|
+
@ilo-org/react:test: {
|
|
1345
|
+
@ilo-org/react:test: callback: '',
|
|
1346
|
+
@ilo-org/react:test: disabled: false,
|
|
1347
|
+
@ilo-org/react:test: error: false,
|
|
1348
|
+
@ilo-org/react:test: grouped: true,
|
|
1349
|
+
@ilo-org/react:test: helper: false,
|
|
1350
|
+
@ilo-org/react:test: label: 'Checkbox 0',
|
|
1351
|
+
@ilo-org/react:test: name: 'checkbox0',
|
|
1352
|
+
@ilo-org/react:test: required: false,
|
|
1353
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1354
|
+
@ilo-org/react:test: }
|
|
1355
|
+
@ilo-org/react:test:
|
|
1356
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1357
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1358
|
+
@ilo-org/react:test:
|
|
1359
|
+
@ilo-org/react:test: console.log
|
|
1360
|
+
@ilo-org/react:test: {
|
|
1361
|
+
@ilo-org/react:test: callback: '',
|
|
1362
|
+
@ilo-org/react:test: disabled: false,
|
|
1363
|
+
@ilo-org/react:test: error: false,
|
|
1364
|
+
@ilo-org/react:test: grouped: true,
|
|
1365
|
+
@ilo-org/react:test: helper: false,
|
|
1366
|
+
@ilo-org/react:test: label: 'Checkbox 1',
|
|
1367
|
+
@ilo-org/react:test: name: 'checkbox1',
|
|
1368
|
+
@ilo-org/react:test: required: false,
|
|
1369
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1370
|
+
@ilo-org/react:test: }
|
|
1371
|
+
@ilo-org/react:test:
|
|
1372
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1373
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1374
|
+
@ilo-org/react:test:
|
|
1375
|
+
@ilo-org/react:test: console.log
|
|
1376
|
+
@ilo-org/react:test: {
|
|
1377
|
+
@ilo-org/react:test: callback: '',
|
|
1378
|
+
@ilo-org/react:test: disabled: false,
|
|
1379
|
+
@ilo-org/react:test: error: false,
|
|
1380
|
+
@ilo-org/react:test: grouped: true,
|
|
1381
|
+
@ilo-org/react:test: helper: false,
|
|
1382
|
+
@ilo-org/react:test: label: 'Checkbox 2',
|
|
1383
|
+
@ilo-org/react:test: name: 'checkbox2',
|
|
1384
|
+
@ilo-org/react:test: required: false,
|
|
1385
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1386
|
+
@ilo-org/react:test: }
|
|
1387
|
+
@ilo-org/react:test:
|
|
1388
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1389
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1390
|
+
@ilo-org/react:test:
|
|
1391
|
+
@ilo-org/react:test: console.log
|
|
1392
|
+
@ilo-org/react:test: {
|
|
1393
|
+
@ilo-org/react:test: callback: '',
|
|
1394
|
+
@ilo-org/react:test: disabled: false,
|
|
1395
|
+
@ilo-org/react:test: error: false,
|
|
1396
|
+
@ilo-org/react:test: grouped: true,
|
|
1397
|
+
@ilo-org/react:test: helper: false,
|
|
1398
|
+
@ilo-org/react:test: label: 'Checkbox 3',
|
|
1399
|
+
@ilo-org/react:test: name: 'checkbox3',
|
|
1400
|
+
@ilo-org/react:test: required: false,
|
|
1401
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1402
|
+
@ilo-org/react:test: }
|
|
1403
|
+
@ilo-org/react:test:
|
|
1404
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1405
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1406
|
+
@ilo-org/react:test:
|
|
1407
|
+
@ilo-org/react:test: console.log
|
|
1408
|
+
@ilo-org/react:test: {
|
|
1409
|
+
@ilo-org/react:test: callback: '',
|
|
1410
|
+
@ilo-org/react:test: disabled: false,
|
|
1411
|
+
@ilo-org/react:test: error: false,
|
|
1412
|
+
@ilo-org/react:test: grouped: true,
|
|
1413
|
+
@ilo-org/react:test: helper: false,
|
|
1414
|
+
@ilo-org/react:test: label: 'Checkbox 4',
|
|
1415
|
+
@ilo-org/react:test: name: 'checkbox4',
|
|
1416
|
+
@ilo-org/react:test: required: false,
|
|
1417
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1418
|
+
@ilo-org/react:test: }
|
|
1419
|
+
@ilo-org/react:test:
|
|
1420
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1421
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1422
|
+
@ilo-org/react:test:
|
|
1423
|
+
@ilo-org/react:test: console.log
|
|
1424
|
+
@ilo-org/react:test: {
|
|
1425
|
+
@ilo-org/react:test: callback: '',
|
|
1426
|
+
@ilo-org/react:test: disabled: false,
|
|
1427
|
+
@ilo-org/react:test: error: false,
|
|
1428
|
+
@ilo-org/react:test: helper: false,
|
|
1429
|
+
@ilo-org/react:test: label: 'Radio 0',
|
|
1430
|
+
@ilo-org/react:test: name: 'radio0',
|
|
1431
|
+
@ilo-org/react:test: required: false,
|
|
1432
|
+
@ilo-org/react:test: type: 'radio',
|
|
1433
|
+
@ilo-org/react:test: value: 'radio'
|
|
1434
|
+
@ilo-org/react:test: }
|
|
1435
|
+
@ilo-org/react:test:
|
|
1436
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1437
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1438
|
+
@ilo-org/react:test:
|
|
1439
|
+
@ilo-org/react:test: console.log
|
|
1440
|
+
@ilo-org/react:test: {
|
|
1441
|
+
@ilo-org/react:test: callback: '',
|
|
1442
|
+
@ilo-org/react:test: disabled: false,
|
|
1443
|
+
@ilo-org/react:test: error: false,
|
|
1444
|
+
@ilo-org/react:test: helper: false,
|
|
1445
|
+
@ilo-org/react:test: label: 'Radio 1',
|
|
1446
|
+
@ilo-org/react:test: name: 'radio1',
|
|
1447
|
+
@ilo-org/react:test: required: false,
|
|
1448
|
+
@ilo-org/react:test: type: 'radio',
|
|
1449
|
+
@ilo-org/react:test: value: 'radio'
|
|
1450
|
+
@ilo-org/react:test: }
|
|
1451
|
+
@ilo-org/react:test:
|
|
1452
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1453
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1454
|
+
@ilo-org/react:test:
|
|
1455
|
+
@ilo-org/react:test: console.log
|
|
1456
|
+
@ilo-org/react:test: {
|
|
1457
|
+
@ilo-org/react:test: callback: '',
|
|
1458
|
+
@ilo-org/react:test: disabled: false,
|
|
1459
|
+
@ilo-org/react:test: error: false,
|
|
1460
|
+
@ilo-org/react:test: helper: false,
|
|
1461
|
+
@ilo-org/react:test: label: 'Radio 2',
|
|
1462
|
+
@ilo-org/react:test: name: 'radio2',
|
|
1463
|
+
@ilo-org/react:test: required: false,
|
|
1464
|
+
@ilo-org/react:test: type: 'radio',
|
|
1465
|
+
@ilo-org/react:test: value: 'radio'
|
|
1466
|
+
@ilo-org/react:test: }
|
|
1467
|
+
@ilo-org/react:test:
|
|
1468
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1469
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1470
|
+
@ilo-org/react:test:
|
|
1471
|
+
@ilo-org/react:test: console.log
|
|
1472
|
+
@ilo-org/react:test: {
|
|
1473
|
+
@ilo-org/react:test: callback: '',
|
|
1474
|
+
@ilo-org/react:test: disabled: false,
|
|
1475
|
+
@ilo-org/react:test: error: false,
|
|
1476
|
+
@ilo-org/react:test: helper: false,
|
|
1477
|
+
@ilo-org/react:test: label: 'Radio 3',
|
|
1478
|
+
@ilo-org/react:test: name: 'radio3',
|
|
1479
|
+
@ilo-org/react:test: required: false,
|
|
1480
|
+
@ilo-org/react:test: type: 'radio',
|
|
1481
|
+
@ilo-org/react:test: value: 'radio'
|
|
1482
|
+
@ilo-org/react:test: }
|
|
1483
|
+
@ilo-org/react:test:
|
|
1484
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1485
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1486
|
+
@ilo-org/react:test:
|
|
1487
|
+
@ilo-org/react:test: console.log
|
|
1488
|
+
@ilo-org/react:test: {
|
|
1489
|
+
@ilo-org/react:test: callback: '',
|
|
1490
|
+
@ilo-org/react:test: disabled: false,
|
|
1491
|
+
@ilo-org/react:test: error: false,
|
|
1492
|
+
@ilo-org/react:test: helper: false,
|
|
1493
|
+
@ilo-org/react:test: label: 'Radio 4',
|
|
1494
|
+
@ilo-org/react:test: name: 'radio4',
|
|
1495
|
+
@ilo-org/react:test: required: false,
|
|
1496
|
+
@ilo-org/react:test: type: 'radio',
|
|
1497
|
+
@ilo-org/react:test: value: 'radio'
|
|
1498
|
+
@ilo-org/react:test: }
|
|
1499
|
+
@ilo-org/react:test:
|
|
1500
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1501
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1502
|
+
@ilo-org/react:test:
|
|
1503
|
+
@ilo-org/react:test: console.log
|
|
1504
|
+
@ilo-org/react:test: {
|
|
1505
|
+
@ilo-org/react:test: callback: '',
|
|
1506
|
+
@ilo-org/react:test: disabled: false,
|
|
1507
|
+
@ilo-org/react:test: error: false,
|
|
1508
|
+
@ilo-org/react:test: grouped: true,
|
|
1509
|
+
@ilo-org/react:test: helper: false,
|
|
1510
|
+
@ilo-org/react:test: label: 'Checkbox 0',
|
|
1511
|
+
@ilo-org/react:test: name: 'checkbox0',
|
|
1512
|
+
@ilo-org/react:test: required: false,
|
|
1513
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1514
|
+
@ilo-org/react:test: }
|
|
1515
|
+
@ilo-org/react:test:
|
|
1516
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1517
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1518
|
+
@ilo-org/react:test:
|
|
1519
|
+
@ilo-org/react:test: console.log
|
|
1520
|
+
@ilo-org/react:test: {
|
|
1521
|
+
@ilo-org/react:test: callback: '',
|
|
1522
|
+
@ilo-org/react:test: disabled: false,
|
|
1523
|
+
@ilo-org/react:test: error: false,
|
|
1524
|
+
@ilo-org/react:test: grouped: true,
|
|
1525
|
+
@ilo-org/react:test: helper: false,
|
|
1526
|
+
@ilo-org/react:test: label: 'Checkbox 1',
|
|
1527
|
+
@ilo-org/react:test: name: 'checkbox1',
|
|
1528
|
+
@ilo-org/react:test: required: false,
|
|
1529
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1530
|
+
@ilo-org/react:test: }
|
|
1531
|
+
@ilo-org/react:test:
|
|
1532
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1533
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1534
|
+
@ilo-org/react:test:
|
|
1535
|
+
@ilo-org/react:test: console.log
|
|
1536
|
+
@ilo-org/react:test: {
|
|
1537
|
+
@ilo-org/react:test: callback: '',
|
|
1538
|
+
@ilo-org/react:test: disabled: false,
|
|
1539
|
+
@ilo-org/react:test: error: false,
|
|
1540
|
+
@ilo-org/react:test: grouped: true,
|
|
1541
|
+
@ilo-org/react:test: helper: false,
|
|
1542
|
+
@ilo-org/react:test: label: 'Checkbox 2',
|
|
1543
|
+
@ilo-org/react:test: name: 'checkbox2',
|
|
1544
|
+
@ilo-org/react:test: required: false,
|
|
1545
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1546
|
+
@ilo-org/react:test: }
|
|
1547
|
+
@ilo-org/react:test:
|
|
1548
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1549
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1550
|
+
@ilo-org/react:test:
|
|
1551
|
+
@ilo-org/react:test: console.log
|
|
1552
|
+
@ilo-org/react:test: {
|
|
1553
|
+
@ilo-org/react:test: callback: '',
|
|
1554
|
+
@ilo-org/react:test: disabled: false,
|
|
1555
|
+
@ilo-org/react:test: error: false,
|
|
1556
|
+
@ilo-org/react:test: grouped: true,
|
|
1557
|
+
@ilo-org/react:test: helper: false,
|
|
1558
|
+
@ilo-org/react:test: label: 'Checkbox 3',
|
|
1559
|
+
@ilo-org/react:test: name: 'checkbox3',
|
|
1560
|
+
@ilo-org/react:test: required: false,
|
|
1561
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1562
|
+
@ilo-org/react:test: }
|
|
1563
|
+
@ilo-org/react:test:
|
|
1564
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1565
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1566
|
+
@ilo-org/react:test:
|
|
1567
|
+
@ilo-org/react:test: console.log
|
|
1568
|
+
@ilo-org/react:test: {
|
|
1569
|
+
@ilo-org/react:test: callback: '',
|
|
1570
|
+
@ilo-org/react:test: disabled: false,
|
|
1571
|
+
@ilo-org/react:test: error: false,
|
|
1572
|
+
@ilo-org/react:test: grouped: true,
|
|
1573
|
+
@ilo-org/react:test: helper: false,
|
|
1574
|
+
@ilo-org/react:test: label: 'Checkbox 4',
|
|
1575
|
+
@ilo-org/react:test: name: 'checkbox4',
|
|
1576
|
+
@ilo-org/react:test: required: false,
|
|
1577
|
+
@ilo-org/react:test: type: 'checkbox'
|
|
1578
|
+
@ilo-org/react:test: }
|
|
1579
|
+
@ilo-org/react:test:
|
|
1580
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1581
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1582
|
+
@ilo-org/react:test:
|
|
1583
|
+
@ilo-org/react:test: console.log
|
|
1584
|
+
@ilo-org/react:test: {
|
|
1585
|
+
@ilo-org/react:test: callback: '',
|
|
1586
|
+
@ilo-org/react:test: disabled: false,
|
|
1587
|
+
@ilo-org/react:test: error: false,
|
|
1588
|
+
@ilo-org/react:test: helper: false,
|
|
1589
|
+
@ilo-org/react:test: label: 'Radio 0',
|
|
1590
|
+
@ilo-org/react:test: name: 'radio0',
|
|
1591
|
+
@ilo-org/react:test: required: false,
|
|
1592
|
+
@ilo-org/react:test: type: 'radio',
|
|
1593
|
+
@ilo-org/react:test: value: 'radio'
|
|
1594
|
+
@ilo-org/react:test: }
|
|
1595
|
+
@ilo-org/react:test:
|
|
1596
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1597
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1598
|
+
@ilo-org/react:test:
|
|
1599
|
+
@ilo-org/react:test: console.log
|
|
1600
|
+
@ilo-org/react:test: {
|
|
1601
|
+
@ilo-org/react:test: callback: '',
|
|
1602
|
+
@ilo-org/react:test: disabled: false,
|
|
1603
|
+
@ilo-org/react:test: error: false,
|
|
1604
|
+
@ilo-org/react:test: helper: false,
|
|
1605
|
+
@ilo-org/react:test: label: 'Radio 1',
|
|
1606
|
+
@ilo-org/react:test: name: 'radio1',
|
|
1607
|
+
@ilo-org/react:test: required: false,
|
|
1608
|
+
@ilo-org/react:test: type: 'radio',
|
|
1609
|
+
@ilo-org/react:test: value: 'radio'
|
|
1610
|
+
@ilo-org/react:test: }
|
|
1611
|
+
@ilo-org/react:test:
|
|
1612
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1613
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1614
|
+
@ilo-org/react:test:
|
|
1615
|
+
@ilo-org/react:test: console.log
|
|
1616
|
+
@ilo-org/react:test: {
|
|
1617
|
+
@ilo-org/react:test: callback: '',
|
|
1618
|
+
@ilo-org/react:test: disabled: false,
|
|
1619
|
+
@ilo-org/react:test: error: false,
|
|
1620
|
+
@ilo-org/react:test: helper: false,
|
|
1621
|
+
@ilo-org/react:test: label: 'Radio 2',
|
|
1622
|
+
@ilo-org/react:test: name: 'radio2',
|
|
1623
|
+
@ilo-org/react:test: required: false,
|
|
1624
|
+
@ilo-org/react:test: type: 'radio',
|
|
1625
|
+
@ilo-org/react:test: value: 'radio'
|
|
1626
|
+
@ilo-org/react:test: }
|
|
1627
|
+
@ilo-org/react:test:
|
|
1628
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1629
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1630
|
+
@ilo-org/react:test:
|
|
1631
|
+
@ilo-org/react:test: console.log
|
|
1632
|
+
@ilo-org/react:test: {
|
|
1633
|
+
@ilo-org/react:test: callback: '',
|
|
1634
|
+
@ilo-org/react:test: disabled: false,
|
|
1635
|
+
@ilo-org/react:test: error: false,
|
|
1636
|
+
@ilo-org/react:test: helper: false,
|
|
1637
|
+
@ilo-org/react:test: label: 'Radio 3',
|
|
1638
|
+
@ilo-org/react:test: name: 'radio3',
|
|
1639
|
+
@ilo-org/react:test: required: false,
|
|
1640
|
+
@ilo-org/react:test: type: 'radio',
|
|
1641
|
+
@ilo-org/react:test: value: 'radio'
|
|
1642
|
+
@ilo-org/react:test: }
|
|
1643
|
+
@ilo-org/react:test:
|
|
1644
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1645
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1646
|
+
@ilo-org/react:test:
|
|
1647
|
+
@ilo-org/react:test: console.log
|
|
1648
|
+
@ilo-org/react:test: {
|
|
1649
|
+
@ilo-org/react:test: callback: '',
|
|
1650
|
+
@ilo-org/react:test: disabled: false,
|
|
1651
|
+
@ilo-org/react:test: error: false,
|
|
1652
|
+
@ilo-org/react:test: helper: false,
|
|
1653
|
+
@ilo-org/react:test: label: 'Radio 4',
|
|
1654
|
+
@ilo-org/react:test: name: 'radio4',
|
|
1655
|
+
@ilo-org/react:test: required: false,
|
|
1656
|
+
@ilo-org/react:test: type: 'radio',
|
|
1657
|
+
@ilo-org/react:test: value: 'radio'
|
|
1658
|
+
@ilo-org/react:test: }
|
|
1659
|
+
@ilo-org/react:test:
|
|
1660
|
+
@ilo-org/react:test: at map (src/components/ChoiceGroup/ChoiceGroup.tsx:29:17)
|
|
1661
|
+
@ilo-org/react:test: at Array.map (<anonymous>)
|
|
1662
|
+
@ilo-org/react:test:
|
|
1663
|
+
@ilo-org/react:test: PASS src/__tests__/Loading.text.tsx
|
|
1664
|
+
@ilo-org/react:test: PASS src/__tests__/Hero.test.tsx
|
|
1665
|
+
@ilo-org/react:test: PASS src/__tests__/ContextMenu.test.tsx
|
|
1666
|
+
@ilo-org/react:test: PASS src/__tests__/Image.test.tsx
|
|
1667
|
+
@ilo-org/react:test: PASS src/__tests__/LinkList.test.tsx
|
|
1668
|
+
@ilo-org/react:test: PASS src/__tests__/RichText.test.tsx
|
|
1669
|
+
@ilo-org/react:test: PASS src/__tests__/TableOfContents.test.tsx
|
|
1670
|
+
@ilo-org/react:test: PASS src/__tests__/Tag.test.tsx
|
|
1671
|
+
@ilo-org/react:test:
|
|
1672
|
+
@ilo-org/react:test: Test Suites: 20 passed, 20 total
|
|
1673
|
+
@ilo-org/react:test: Tests: 66 passed, 66 total
|
|
1674
|
+
@ilo-org/react:test: Snapshots: 0 total
|
|
1675
|
+
@ilo-org/react:test: Time: 13.498 s
|
|
1676
|
+
@ilo-org/react:test: Ran all test suites.
|