qpp-style 0.0.8 → 0.0.10
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 +28 -28
- package/.husky/pre-commit +5 -0
- package/README.md +45 -0
- package/components/Accordion/index.jsx +35 -43
- package/components/Alert/index.js +53 -0
- package/components/Breadcrumb/Breadcrumb.md +28 -0
- package/components/Breadcrumb/index.js +69 -11
- package/components/Button/index.js +90 -0
- package/components/CalloutBox/index.js +109 -0
- package/components/Card/index.js +137 -0
- package/components/Details/DetailsIcons.js +50 -0
- package/components/Details/index.js +53 -0
- package/components/Dropdown/index.js +85 -0
- package/components/DropdownButton/Menu.js +25 -0
- package/components/DropdownButton/MenuButton.js +41 -0
- package/components/DropdownButton/MenuItem.js +25 -0
- package/components/DropdownButton/MenuItemLink.js +27 -0
- package/components/Error/Collapsible.jsx +2 -2
- package/components/Footer/FooterUI.jsx +175 -177
- package/components/Footer/footer.js +2 -12
- package/components/GovBanner/index.js +117 -0
- package/components/Header/HeaderAccountMenu.jsx +63 -234
- package/components/Header/HeaderCancel.jsx +5 -10
- package/components/Header/HeaderContainer.jsx +74 -0
- package/components/Header/HeaderLogo.jsx +42 -0
- package/components/Header/HeaderMenuButton.js +50 -0
- package/components/Header/HeaderMenuItem.jsx +239 -0
- package/components/Header/HeaderMenuLink.js +56 -0
- package/components/Header/HeaderMenuSignOutButton.js +62 -0
- package/components/Header/HeaderMobileButton.js +37 -0
- package/components/Header/HeaderUI.jsx +130 -361
- package/components/Header/HelpIcon.jsx +32 -0
- package/components/Header/ImpersonatorBanner.jsx +81 -0
- package/components/Header/default-content.json +158 -87
- package/components/Header/header.js +2 -0
- package/components/Header/hooks.js +66 -0
- package/components/Header/utag-helpers.js +9 -0
- package/components/Infotip/Infotip.jsx +6 -10
- package/components/Infotip/InfotipContent.jsx +46 -0
- package/components/Infotip/InfotipIcon.jsx +3 -3
- package/components/Link/index.js +61 -0
- package/components/Modal/LegacyModal.jsx +72 -0
- package/components/Modal/Modal.jsx +140 -0
- package/components/Modal/index.jsx +13 -63
- package/components/NotificationBanner/CollapsedView.js +39 -0
- package/components/NotificationBanner/ExpandedView.js +45 -0
- package/components/NotificationBanner/index.js +219 -30
- package/components/Search/index.js +98 -0
- package/components/SessionDialog/sessionDialog.js +26 -0
- package/components/SessionDialogUI.jsx +34 -26
- package/components/SideNav/AnimationGroup/AnimationGroup.jsx +10 -4
- package/components/SideNav/Chart/ScoreChart.jsx +81 -109
- package/components/SideNav/Chart/__tests__/ScoreChart.test.js +3 -12
- package/components/SideNav/Chart/__tests__/__snapshots__/ScoreChart.test.js.snap +144 -35
- package/components/SideNav/Chart/index.js +1 -1
- package/components/SideNav/Content/LevelOneContent.jsx +146 -258
- package/components/SideNav/Content/LevelTwoContent.jsx +6 -4
- package/components/SideNav/Content/SelectRole/index.js +77 -0
- package/components/SideNav/Content/SelectRole/utils.js +140 -0
- package/components/SideNav/Details/PracticeDetails.jsx +4 -0
- package/components/SideNav/Links/CmsSwitchLink.jsx +1 -1
- package/components/SideNav/Links/NavLinkContainer.jsx +29 -34
- package/components/SideNav/Links/NavLinkDrawer.jsx +192 -124
- package/components/SideNav/Links/NavLinkInline.jsx +7 -2
- package/components/SideNav/Links/NavLinkToggle.jsx +1 -1
- package/components/SideNav/SideNav.md +28 -27
- package/components/SideNav/UI/SideNavUI.jsx +198 -268
- package/components/SideNav/UI/default-content.json +117 -0
- package/components/SideNav/helpers.js +316 -4
- package/components/Tabs/TabPanel.js +5 -0
- package/components/Tabs/Tabs.js +73 -0
- package/components/TextInput/index.js +137 -0
- package/components/hooks/useGetConfig.js +75 -0
- package/components/index.js +106 -9
- package/coverage/clover.xml +1194 -748
- package/coverage/coverage-final.json +72 -50
- package/coverage/lcov-report/block-navigation.js +8 -0
- package/coverage/lcov-report/components/Accordion/index.html +26 -21
- package/coverage/lcov-report/components/Accordion/index.jsx.html +106 -131
- package/coverage/lcov-report/{SideNav/Chart → components/Button}/index.html +29 -24
- package/coverage/lcov-report/{Error/Collapsible.jsx.html → components/Button/index.js.html} +125 -114
- package/coverage/lcov-report/components/Error/Collapsible.jsx.html +92 -87
- package/coverage/lcov-report/components/Error/ErrorUI.jsx.html +32 -33
- package/coverage/lcov-report/components/Error/index.html +11 -6
- package/coverage/lcov-report/components/Footer/FooterUI.jsx.html +200 -189
- package/coverage/lcov-report/components/Footer/SocialLinks.jsx.html +24 -61
- package/coverage/lcov-report/components/Footer/Subscribe.jsx.html +18 -13
- package/coverage/lcov-report/components/Footer/index.html +35 -45
- package/coverage/lcov-report/components/{InfoModal → GovBanner}/index.html +27 -22
- package/coverage/lcov-report/components/{InfoModal/index.jsx.html → GovBanner/index.js.html} +157 -122
- package/coverage/lcov-report/components/Header/HeaderAccountMenu.jsx.html +93 -520
- package/coverage/lcov-report/components/Header/HeaderCancel.jsx.html +19 -23
- package/coverage/lcov-report/components/Header/HeaderContainer.jsx.html +280 -0
- package/coverage/lcov-report/components/Header/HeaderLogo.jsx.html +211 -0
- package/coverage/lcov-report/components/Header/HeaderMenuButton.js.html +235 -0
- package/coverage/lcov-report/components/{Footer/LegacyFooterUI.jsx.html → Header/HeaderMenuItem.jsx.html} +334 -200
- package/coverage/lcov-report/components/Header/HeaderMenuLink.js.html +253 -0
- package/coverage/lcov-report/components/Header/HeaderMenuSignOutButton.js.html +271 -0
- package/coverage/lcov-report/components/Header/HeaderMobileButton.js.html +196 -0
- package/coverage/lcov-report/components/Header/HeaderUI.jsx.html +176 -756
- package/coverage/lcov-report/components/Header/HelpIcon.jsx.html +181 -0
- package/coverage/lcov-report/{Accordion/index.jsx.html → components/Header/ImpersonatorBanner.jsx.html} +109 -167
- package/coverage/lcov-report/components/Header/NavigationButtonIcon.jsx.html +24 -19
- package/coverage/lcov-report/components/Header/hooks.js.html +283 -0
- package/coverage/lcov-report/components/Header/index.html +203 -33
- package/coverage/lcov-report/components/{SideNav/Links/index.js.html → Header/utag-helpers.js.html} +35 -42
- package/coverage/lcov-report/components/Infotip/Infotip.jsx.html +53 -48
- package/coverage/lcov-report/components/Infotip/InfotipIcon.jsx.html +37 -32
- package/coverage/lcov-report/components/Infotip/index.html +8 -3
- package/coverage/lcov-report/components/Infotip/index.js.html +8 -3
- package/coverage/lcov-report/components/Modal/LegacyModal.jsx.html +301 -0
- package/coverage/lcov-report/components/Modal/Modal.jsx.html +505 -0
- package/coverage/lcov-report/components/Modal/index.html +146 -0
- package/coverage/lcov-report/components/{SideNav/Details/IndividualDetails.jsx.html → Modal/index.jsx.html} +50 -42
- package/coverage/lcov-report/components/NotificationBanner/CollapsedView.js.html +202 -0
- package/coverage/lcov-report/components/NotificationBanner/ExpandedView.js.html +220 -0
- package/coverage/lcov-report/components/NotificationBanner/index.html +58 -23
- package/coverage/lcov-report/components/{SideNav/Content/LevelTwoContent.jsx.html → NotificationBanner/index.js.html} +292 -272
- package/coverage/lcov-report/components/SanitizedContent/index.html +8 -3
- package/coverage/lcov-report/components/SanitizedContent/index.jsx.html +475 -50
- package/coverage/lcov-report/components/SessionDialogUI.jsx.html +248 -255
- package/coverage/lcov-report/components/SideNav/Chart/ScoreChart.jsx.html +272 -408
- package/coverage/lcov-report/components/SideNav/Chart/index.html +28 -38
- package/coverage/lcov-report/components/SideNav/Content/SelectRole/index.html +116 -0
- package/coverage/lcov-report/components/SideNav/Content/SelectRole/utils.js.html +505 -0
- package/coverage/lcov-report/components/SideNav/helpers.js.html +987 -46
- package/coverage/lcov-report/components/SideNav/index.html +24 -19
- package/coverage/lcov-report/components/Tooltip/Tooltip.jsx.html +70 -65
- package/coverage/lcov-report/components/Tooltip/index.html +8 -3
- package/coverage/lcov-report/components/Tooltip/index.js.html +8 -3
- package/coverage/lcov-report/components/Tooltip/position.js.html +57 -64
- package/coverage/lcov-report/components/hooks/index.html +116 -0
- package/coverage/lcov-report/components/hooks/useGetConfig.js.html +310 -0
- package/coverage/lcov-report/components/index.html +10 -5
- package/coverage/lcov-report/index.html +249 -154
- package/coverage/lcov-report/{Error/ErrorUI.jsx.html → lib/Chevron.jsx.html} +44 -42
- package/coverage/lcov-report/lib/SvgComponents.jsx.html +1840 -0
- package/coverage/lcov-report/lib/index.html +34 -14
- package/coverage/lcov-report/react/components/Accordion/index.html +26 -21
- package/coverage/lcov-report/react/components/Accordion/index.jsx.html +106 -131
- package/coverage/lcov-report/react/components/{FlashNotification → Button}/index.html +23 -33
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkInline.jsx.html → react/components/Button/index.js.html} +119 -120
- package/coverage/lcov-report/react/components/{Tabs → Dropdown}/index.html +23 -33
- package/coverage/lcov-report/react/components/{InfoModal/index.jsx.html → Dropdown/index.js.html} +103 -155
- package/coverage/lcov-report/react/components/Error/Collapsible.jsx.html +92 -87
- package/coverage/lcov-report/react/components/Error/ErrorUI.jsx.html +32 -33
- package/coverage/lcov-report/react/components/Error/error.js.html +25 -20
- package/coverage/lcov-report/react/components/Error/index.html +11 -6
- package/coverage/lcov-report/react/components/Footer/FooterUI.jsx.html +200 -189
- package/coverage/lcov-report/react/components/Footer/LegacyFooterUI.jsx.html +14 -15
- package/coverage/lcov-report/react/components/Footer/SocialLinks.jsx.html +18 -13
- package/coverage/lcov-report/react/components/Footer/Subscribe.jsx.html +18 -13
- package/coverage/lcov-report/react/components/Footer/footer.js.html +12 -34
- package/coverage/lcov-report/react/components/Footer/index.html +35 -45
- package/coverage/lcov-report/react/components/{InfoModal → GovBanner}/index.html +27 -22
- package/coverage/lcov-report/react/components/{Tabs/TabsUI.jsx.html → GovBanner/index.js.html} +146 -153
- package/coverage/lcov-report/react/components/Header/HeaderAccountMenu.jsx.html +93 -520
- package/coverage/lcov-report/react/components/Header/HeaderCancel.jsx.html +19 -23
- package/coverage/lcov-report/react/components/Header/HeaderContainer.jsx.html +307 -0
- package/coverage/lcov-report/{components/SideNav/Links/CmsSwitchLink.jsx.html → react/components/Header/HeaderLogo.jsx.html} +64 -53
- package/coverage/lcov-report/{components/SideNav/Links/NavItemInline.jsx.html → react/components/Header/HeaderMenuButton.js.html} +64 -71
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkDrawer.jsx.html → react/components/Header/HeaderMenuItem.jsx.html} +284 -261
- package/coverage/lcov-report/react/components/Header/HeaderMenuLink.js.html +253 -0
- package/coverage/lcov-report/react/components/Header/HeaderMenuSignOutButton.js.html +271 -0
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkToggle.jsx.html → react/components/Header/HeaderMobileButton.js.html} +58 -41
- package/coverage/lcov-report/react/components/Header/HeaderUI.jsx.html +189 -745
- package/coverage/lcov-report/react/components/Header/HelpIcon.jsx.html +181 -0
- package/coverage/lcov-report/react/components/Header/ImpersonatorBanner.jsx.html +331 -0
- package/coverage/lcov-report/react/components/Header/NavigationButtonIcon.jsx.html +18 -13
- package/coverage/lcov-report/react/components/Header/header.js.html +18 -4
- package/coverage/lcov-report/react/components/Header/hooks.js.html +283 -0
- package/coverage/lcov-report/react/components/Header/index.html +205 -35
- package/coverage/lcov-report/react/components/{Spinner/index.js.html → Header/utag-helpers.js.html} +26 -21
- package/coverage/lcov-report/react/components/Infotip/Infotip.jsx.html +53 -48
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkContainer.jsx.html → react/components/Infotip/InfotipContent.jsx.html} +83 -60
- package/coverage/lcov-report/react/components/Infotip/InfotipIcon.jsx.html +37 -32
- package/coverage/lcov-report/react/components/Infotip/index.html +8 -3
- package/coverage/lcov-report/react/components/Infotip/index.js.html +8 -3
- package/coverage/lcov-report/react/components/{FlashNotification/FlashNotificationUI.jsx.html → Modal/LegacyModal.jsx.html} +89 -84
- package/coverage/lcov-report/react/components/Modal/Modal.jsx.html +505 -0
- package/coverage/lcov-report/react/components/Modal/index.html +52 -17
- package/coverage/lcov-report/react/components/Modal/index.jsx.html +38 -201
- package/coverage/lcov-report/react/components/{Tabs/tabs.js.html → NotificationBanner/CollapsedView.js.html} +61 -47
- package/coverage/lcov-report/{components/SideNav/Details/PracticeDetails.jsx.html → react/components/NotificationBanner/ExpandedView.js.html} +74 -57
- package/coverage/lcov-report/react/components/NotificationBanner/index.html +58 -23
- package/coverage/lcov-report/react/components/NotificationBanner/index.js.html +615 -43
- package/coverage/lcov-report/react/components/SanitizedContent/index.html +8 -3
- package/coverage/lcov-report/react/components/SanitizedContent/index.jsx.html +478 -53
- package/coverage/lcov-report/react/components/{Spinner → SessionDialog}/index.html +11 -6
- package/coverage/lcov-report/react/components/{FlashNotification/index.js.html → SessionDialog/sessionDialog.js.html} +35 -42
- package/coverage/lcov-report/react/components/SessionDialogUI.jsx.html +248 -255
- package/coverage/lcov-report/react/components/SideNav/AnimationGroup/AnimationGroup.jsx.html +53 -18
- package/coverage/lcov-report/react/components/SideNav/AnimationGroup/index.html +18 -13
- package/coverage/lcov-report/react/components/SideNav/Chart/ScoreChart.jsx.html +272 -402
- package/coverage/lcov-report/react/components/SideNav/Chart/index.html +28 -23
- package/coverage/lcov-report/react/components/SideNav/Chart/index.js.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Content/LevelOneContent.jsx.html +190 -521
- package/coverage/lcov-report/react/components/SideNav/Content/LevelTwoContent.jsx.html +23 -12
- package/coverage/lcov-report/{components/SideNav/Details → react/components/SideNav/Content/SelectRole}/index.html +42 -52
- package/coverage/lcov-report/react/components/SideNav/Content/SelectRole/index.js.html +316 -0
- package/coverage/lcov-report/react/components/SideNav/Content/SelectRole/utils.js.html +505 -0
- package/coverage/lcov-report/react/components/SideNav/Content/index.html +32 -27
- package/coverage/lcov-report/react/components/SideNav/Content/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/Details/IndividualDetails.jsx.html +20 -24
- package/coverage/lcov-report/react/components/SideNav/Details/PracticeDetails.jsx.html +54 -37
- package/coverage/lcov-report/react/components/SideNav/Details/index.html +23 -18
- package/coverage/lcov-report/react/components/SideNav/Details/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/Links/CmsSwitchLink.jsx.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Links/NavItemInline.jsx.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkContainer.jsx.html +56 -57
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkDrawer.jsx.html +351 -142
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkInline.jsx.html +60 -40
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkToggle.jsx.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Links/index.html +44 -39
- package/coverage/lcov-report/react/components/SideNav/Links/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/UI/SideNavUI.jsx.html +243 -433
- package/coverage/lcov-report/react/components/SideNav/UI/index.html +28 -23
- package/coverage/lcov-report/react/components/SideNav/UI/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/helpers.js.html +958 -17
- package/coverage/lcov-report/react/components/SideNav/index.html +27 -22
- package/coverage/lcov-report/react/components/SideNav/index.js.html +8 -3
- package/coverage/lcov-report/react/components/Tooltip/Tooltip.jsx.html +70 -65
- package/coverage/lcov-report/react/components/Tooltip/index.html +8 -3
- package/coverage/lcov-report/react/components/Tooltip/index.js.html +8 -3
- package/coverage/lcov-report/react/components/Tooltip/position.js.html +57 -64
- package/coverage/lcov-report/{components/SideNav/AnimationGroup → react/components/hooks}/index.html +29 -24
- package/coverage/lcov-report/react/components/hooks/useGetConfig.js.html +310 -0
- package/coverage/lcov-report/react/components/index.html +10 -5
- package/coverage/lcov-report/react/index.html +20 -15
- package/coverage/lcov-report/react/index.js.html +29 -9
- package/coverage/lcov-report/react/lib/Chevron.jsx.html +181 -0
- package/coverage/lcov-report/react/lib/SvgComponents.jsx.html +195 -106
- package/coverage/lcov-report/react/lib/index.html +37 -17
- package/coverage/lcov-report/react/lib/svg-definitions.svg.html +57 -916
- package/coverage/lcov-report/react/session/index.html +32 -27
- package/coverage/lcov-report/react/session/index.js.html +8 -3
- package/coverage/lcov-report/react/session/logout.js.html +121 -17
- package/coverage/lcov-report/react/session/refresh.js.html +11 -6
- package/coverage/lcov-report/react/session/ttl.js.html +8 -3
- package/coverage/lcov-report/session/index.html +50 -45
- package/coverage/lcov-report/session/index.js.html +8 -3
- package/coverage/lcov-report/session/logout.js.html +144 -49
- package/coverage/lcov-report/session/refresh.js.html +41 -36
- package/coverage/lcov-report/session/ttl.js.html +34 -29
- package/coverage/lcov-report/sorter.js +26 -0
- package/coverage/lcov.info +2427 -1491
- package/dist/browser.js +1 -1
- package/dist/browser.js.LICENSE.txt +1 -7
- package/dist/browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -7
- package/dist/index.js.map +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.LICENSE.txt +16 -16
- package/dist/react/index.js.map +1 -1
- package/fonts/PublicSans-Black.ttf +0 -0
- package/fonts/PublicSans-BlackItalic.ttf +0 -0
- package/fonts/PublicSans-Bold.ttf +0 -0
- package/fonts/PublicSans-BoldItalic.ttf +0 -0
- package/fonts/PublicSans-ExtraBold.ttf +0 -0
- package/fonts/PublicSans-ExtraBoldItalic.ttf +0 -0
- package/fonts/PublicSans-ExtraLight.ttf +0 -0
- package/fonts/PublicSans-ExtraLightItalic.ttf +0 -0
- package/fonts/PublicSans-Italic.ttf +0 -0
- package/fonts/PublicSans-Light.ttf +0 -0
- package/fonts/PublicSans-LightItalic.ttf +0 -0
- package/fonts/PublicSans-Medium.ttf +0 -0
- package/fonts/PublicSans-MediumItalic.ttf +0 -0
- package/fonts/PublicSans-Regular.ttf +0 -0
- package/fonts/PublicSans-SemiBold.ttf +0 -0
- package/fonts/PublicSans-SemiBoldItalic.ttf +0 -0
- package/fonts/PublicSans-Thin.ttf +0 -0
- package/fonts/PublicSans-ThinItalic.ttf +0 -0
- package/images/icon-dot-gov.svg +1 -0
- package/images/icon-https.svg +1 -0
- package/images/icons/close-x.svg +6 -0
- package/images/icons/svg/arrow-down.svg +3 -0
- package/images/icons/svg/arrow-download.svg +1 -0
- package/images/icons/svg/arrow-right.svg +1 -0
- package/images/icons/svg/arrow-up.svg +3 -0
- package/images/icons/svg/block.svg +5 -0
- package/images/icons/svg/calendar.svg +1 -0
- package/images/icons/svg/check-circle.svg +5 -0
- package/images/icons/svg/checkmark.svg +7 -0
- package/images/icons/svg/chevron-down.svg +11 -0
- package/images/icons/svg/chevron-left.svg +12 -0
- package/images/icons/svg/chevron-right.svg +12 -0
- package/images/icons/svg/chevron-up.svg +12 -0
- package/images/icons/svg/clipboard.svg +1 -0
- package/images/icons/svg/close.svg +1 -0
- package/images/icons/svg/divide.svg +13 -0
- package/images/icons/svg/doctors-and-clinicians-preview.svg +10 -0
- package/images/icons/svg/download.svg +1 -0
- package/images/icons/svg/dropdown-arrow.svg +1 -0
- package/images/icons/svg/equals.svg +13 -0
- package/images/icons/svg/exclamation.svg +11 -0
- package/images/icons/svg/external.svg +1 -0
- package/images/icons/svg/file-download.svg +1 -0
- package/images/icons/svg/file-upload.svg +1 -0
- package/images/icons/svg/info.svg +20 -0
- package/images/icons/svg/manage-user-access.svg +8 -0
- package/images/icons/svg/multiply.svg +12 -0
- package/images/icons/svg/performance-feedback.svg +1 -0
- package/images/icons/svg/plus.svg +12 -0
- package/images/icons/svg/preview.svg +17 -0
- package/images/icons/svg/print.svg +1 -0
- package/images/icons/svg/registration.svg +8 -0
- package/images/icons/svg/reporting.svg +17 -0
- package/images/icons/svg/save-disk.svg +5 -0
- package/images/icons/svg/search.svg +1 -0
- package/images/icons/svg/subtract.svg +15 -0
- package/images/icons/svg/targeted-review.svg +15 -0
- package/images/icons/svg/tooltip-question.svg +1 -0
- package/images/icons/svg/trash.svg +1 -0
- package/images/icons/svg/upload.svg +1 -0
- package/images/us_flag_small.png +0 -0
- package/index.js +5 -0
- package/jest.config.js +138 -134
- package/lib/Chevron.jsx +32 -0
- package/lib/SvgComponents.jsx +197 -49
- package/package.json +62 -77
- package/session/logout.js +35 -2
- package/styles/_global.scss +63 -62
- package/styles/_main.scss +6 -0
- package/styles/_qpp-style.scss +0 -3
- package/styles/components/_accordion.scss +249 -246
- package/styles/components/_autocomplete.scss +0 -3
- package/styles/components/_modals.scss +9 -9
- package/styles/components/_spinner.scss +0 -2
- package/styles/components/_tables.scss +77 -67
- package/styles/components/_text.scss +102 -102
- package/styles/components/_variables.scss +12 -12
- package/styles/qppds/base/_backgrounds.scss +7 -0
- package/styles/qppds/base/_fonts.scss +24 -0
- package/styles/qppds/base/_icon.scss +31 -0
- package/styles/qppds/base/_layout.scss +5 -0
- package/styles/qppds/base/_typography.scss +78 -44
- package/styles/qppds/base/index.scss +4 -5
- package/styles/qppds/components/_alert.scss +101 -0
- package/styles/qppds/components/_breadcrumbs.scss +42 -6
- package/styles/qppds/components/_button.scss +129 -11
- package/styles/qppds/components/_card.scss +175 -0
- package/styles/qppds/components/_checkbox.scss +199 -0
- package/styles/qppds/components/_circular-loader.scss +47 -0
- package/styles/qppds/components/_details.scss +90 -0
- package/styles/qppds/components/_dropdown-menu.scss +125 -0
- package/styles/qppds/components/_dropdown.scss +7 -1
- package/styles/qppds/components/_footer.scss +606 -0
- package/styles/qppds/components/_gov-banner.scss +344 -0
- package/styles/qppds/components/_header.scss +913 -0
- package/styles/qppds/components/_link.scss +52 -0
- package/styles/qppds/components/_modal.scss +118 -0
- package/styles/qppds/components/_page-header.scss +65 -2
- package/styles/qppds/components/_pagination.scss +227 -0
- package/styles/qppds/components/_process-list.scss +104 -0
- package/styles/qppds/components/_radio-button.scss +184 -0
- package/styles/qppds/components/_search.scss +118 -0
- package/styles/{components → qppds/components}/_sidebar.scss +2 -0
- package/styles/qppds/components/_step-indicator.scss +190 -0
- package/styles/qppds/components/_table.scss +157 -0
- package/styles/qppds/components/_tabs.scss +197 -0
- package/styles/qppds/components/_text-input.scss +60 -0
- package/styles/qppds/components/index.scss +20 -0
- package/styles/{components → qppds/components}/sidebar/_links.scss +48 -1
- package/styles/qppds/components/sidebar/_select-role-dropdown.scss +21 -0
- package/styles/qppds/components/sidebar/_sidebar-animation.scss +125 -0
- package/styles/qppds/components/sidebar/_sidebar.scss +146 -0
- package/styles/{components → qppds/components}/sidebar/project-specific/_wi.scss +1 -37
- package/styles/qppds/settings/_functions.scss +3 -1
- package/styles/qppds/settings/mixins/_borders.scss +6 -0
- package/styles/qppds/settings/mixins/_focus.scss +28 -0
- package/styles/qppds/settings/mixins/_icons.scss +39 -4
- package/styles/qppds/settings/mixins/_index.scss +4 -0
- package/styles/qppds/settings/mixins/_layout.scss +46 -7
- package/styles/qppds/settings/mixins/_table.scss +91 -0
- package/styles/qppds/settings/mixins/_type.scss +89 -0
- package/styles/qppds/settings/variables/_color.scss +47 -1
- package/styles/qppds/settings/variables/_index.scss +2 -1
- package/styles/qppds/settings/variables/_layout.scss +34 -9
- package/styles/qppds/settings/variables/_type.scss +41 -0
- package/styles/qppds/settings/variables/_z-index.scss +8 -0
- package/styles/qppds/utilities/_background-color.scss +4 -0
- package/styles/qppds/utilities/_color.scss +28 -0
- package/styles/qppds/utilities/{_display-visability.scss → _display-visibility.scss} +8 -0
- package/styles/qppds/utilities/_flexbox.scss +113 -0
- package/styles/qppds/utilities/_font-family.scss +4 -0
- package/styles/qppds/utilities/_gap.scss +38 -0
- package/styles/qppds/utilities/_height.scss +79 -0
- package/styles/qppds/utilities/_list-style.scss +18 -0
- package/styles/qppds/utilities/_position.scss +24 -0
- package/styles/qppds/utilities/_text-align.scss +40 -0
- package/styles/qppds/utilities/_text-transform.scss +7 -0
- package/styles/qppds/utilities/_truncate.scss +5 -5
- package/styles/qppds/utilities/_vertical-align.scss +72 -0
- package/styles/qppds/utilities/_width.scss +38 -1
- package/styles/qppds/utilities/index.scss +8 -2
- package/styles/third-party/legacy-bootstrap/_dropdowns.scss +0 -1
- package/svgo.config.js +14 -0
- package/test/components/Accordion.test.js +4 -13
- package/test/components/ErrorUI.test.js +10 -46
- package/test/components/FooterUI.test.js +0 -30
- package/test/components/HeaderUI.test.js +33 -15
- package/test/components/Infotip.test.js +18 -12
- package/test/components/SessionDialogUI.test.js +55 -70
- package/test/components/SideNavUI.test.js +6 -13
- package/test-setup.js +1 -3
- package/webpack.config.js +29 -39
- package/webpack.config.react.js +7 -18
- package/.storybook/.babelrc +0 -4
- package/.storybook/main.js +0 -89
- package/.storybook/preview-head.html +0 -9
- package/.storybook/preview.js +0 -16
- package/components/Accordion/Accordion.stories.js +0 -20
- package/components/Breadcrumb/Breadcrumb.js +0 -58
- package/components/Breadcrumb/Breadcrumb.stories.js +0 -62
- package/components/Breadcrumb/LegacyBreadcrumb.js +0 -46
- package/components/Footer/Footer.stories.js +0 -22
- package/components/Footer/LegacyFooterUI.jsx +0 -194
- package/components/Header/Header.stories.js +0 -32
- package/components/InfoModal/InfoModal.stories.js +0 -98
- package/components/InfoModal/index.jsx +0 -104
- package/components/Infotip/Infotip.stories.js +0 -58
- package/components/NotificationBanner/NotificationBanner.stories.js +0 -24
- package/components/NotificationBanner/NotificationBannerUI.jsx +0 -282
- package/components/SideNav/SideNav.stories.js +0 -320
- package/components/Spinner/index.js +0 -9
- package/components/Tabs/TabsUI.jsx +0 -118
- package/components/Tabs/tabs.js +0 -36
- package/components/Tooltip/Tooltip.jsx +0 -88
- package/components/Tooltip/Tooltip.stories.js +0 -90
- package/components/Tooltip/index.js +0 -3
- package/components/Tooltip/position.js +0 -68
- package/components/UnwrappedSpinner/index.js +0 -8
- package/components/UnwrappedTabs/TabPanelUI.jsx +0 -16
- package/components/UnwrappedTabs/TabsUI.jsx +0 -82
- package/coverage/lcov-report/Accordion/index.html +0 -111
- package/coverage/lcov-report/Error/index.html +0 -126
- package/coverage/lcov-report/ScoreChart.jsx.html +0 -1025
- package/coverage/lcov-report/SideNav/Chart/ScoreChart.jsx.html +0 -1025
- package/coverage/lcov-report/components/NotificationBanner/NotificationBannerUI.jsx.html +0 -1010
- package/coverage/lcov-report/components/SideNav/AnimationGroup/AnimationGroup.jsx.html +0 -131
- package/coverage/lcov-report/components/SideNav/Chart/index.js.html +0 -89
- package/coverage/lcov-report/components/SideNav/Content/LevelOneContent.jsx.html +0 -1007
- package/coverage/lcov-report/components/SideNav/Content/index.html +0 -141
- package/coverage/lcov-report/components/SideNav/Content/index.js.html +0 -92
- package/coverage/lcov-report/components/SideNav/Details/index.js.html +0 -92
- package/coverage/lcov-report/components/SideNav/Links/index.html +0 -201
- package/coverage/lcov-report/components/SideNav/UI/SideNavUI.jsx.html +0 -1298
- package/coverage/lcov-report/components/SideNav/UI/index.html +0 -126
- package/coverage/lcov-report/components/SideNav/UI/index.js.html +0 -89
- package/coverage/lcov-report/lib/svg-definitions.svg.html +0 -1319
- package/coverage/lcov-report/react/components/NotificationBanner/NotificationBannerUI.jsx.html +0 -926
- package/styles/components/_footer.scss +0 -593
- package/styles/components/_header.scss +0 -526
- package/styles/components/sidebar/_sidebar-animation.scss +0 -85
- package/styles/components/sidebar/_sidebar.scss +0 -141
- package/test/components/Tooltip.test.js +0 -147
- package/test/components/__snapshots__/Accordion.test.js.snap +0 -11439
- /package/styles/{components → qppds/components}/sidebar/_animations.scss +0 -0
- /package/styles/{components → qppds/components}/sidebar/_cms.scss +0 -0
- /package/styles/{components → qppds/components}/sidebar/_details.scss +0 -0
- /package/styles/{components → qppds/components}/sidebar/_sidebar-tooltip.scss +0 -0
package/coverage/clover.xml
CHANGED
|
@@ -1,289 +1,476 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1678142992657" clover="3.2.0">
|
|
3
|
+
<project timestamp="1678142992657" name="All files">
|
|
4
|
+
<metrics statements="1168" coveredstatements="641" conditionals="740" coveredconditionals="187" methods="335" coveredmethods="122" elements="2243" coveredelements="950" complexity="0" loc="1168" ncloc="1168" packages="26" files="72" classes="72"/>
|
|
5
5
|
<package name="react">
|
|
6
|
-
<metrics statements="
|
|
7
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
8
|
-
<metrics statements="
|
|
9
|
-
<line num="
|
|
10
|
-
<line num="
|
|
11
|
-
<line num="
|
|
12
|
-
<line num="
|
|
13
|
-
<line num="
|
|
6
|
+
<metrics statements="6" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
7
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/index.js">
|
|
8
|
+
<metrics statements="6" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
9
|
+
<line num="9" count="1" type="stmt"/>
|
|
10
|
+
<line num="11" count="0" type="stmt"/>
|
|
11
|
+
<line num="15" count="0" type="stmt"/>
|
|
12
|
+
<line num="19" count="0" type="stmt"/>
|
|
13
|
+
<line num="23" count="0" type="stmt"/>
|
|
14
|
+
<line num="27" count="0" type="stmt"/>
|
|
14
15
|
</file>
|
|
15
16
|
</package>
|
|
16
17
|
<package name="react.components">
|
|
17
18
|
<metrics statements="60" coveredstatements="47" conditionals="28" coveredconditionals="19" methods="16" coveredmethods="14"/>
|
|
18
|
-
<file name="SessionDialogUI.jsx" path="/Users/rodrigomunoz/
|
|
19
|
+
<file name="SessionDialogUI.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SessionDialogUI.jsx">
|
|
19
20
|
<metrics statements="60" coveredstatements="47" conditionals="28" coveredconditionals="19" methods="16" coveredmethods="14"/>
|
|
20
|
-
<line num="
|
|
21
|
-
<line num="
|
|
22
|
-
<line num="
|
|
23
|
-
<line num="
|
|
24
|
-
<line num="
|
|
25
|
-
<line num="
|
|
26
|
-
<line num="
|
|
27
|
-
<line num="
|
|
28
|
-
<line num="
|
|
29
|
-
<line num="
|
|
30
|
-
<line num="
|
|
31
|
-
<line num="
|
|
32
|
-
<line num="
|
|
33
|
-
<line num="
|
|
34
|
-
<line num="
|
|
35
|
-
<line num="
|
|
36
|
-
<line num="
|
|
37
|
-
<line num="
|
|
38
|
-
<line num="
|
|
39
|
-
<line num="
|
|
40
|
-
<line num="
|
|
41
|
-
<line num="
|
|
21
|
+
<line num="12" count="3" type="stmt"/>
|
|
22
|
+
<line num="20" count="19" type="stmt"/>
|
|
23
|
+
<line num="22" count="19" type="stmt"/>
|
|
24
|
+
<line num="23" count="19" type="stmt"/>
|
|
25
|
+
<line num="24" count="19" type="stmt"/>
|
|
26
|
+
<line num="25" count="19" type="stmt"/>
|
|
27
|
+
<line num="26" count="19" type="stmt"/>
|
|
28
|
+
<line num="27" count="19" type="stmt"/>
|
|
29
|
+
<line num="28" count="19" type="stmt"/>
|
|
30
|
+
<line num="29" count="19" type="stmt"/>
|
|
31
|
+
<line num="30" count="19" type="stmt"/>
|
|
32
|
+
<line num="31" count="19" type="stmt"/>
|
|
33
|
+
<line num="33" count="19" type="cond" truecount="2" falsecount="0"/>
|
|
34
|
+
<line num="34" count="8" type="stmt"/>
|
|
35
|
+
<line num="39" count="11" type="stmt"/>
|
|
36
|
+
<line num="44" count="11" type="stmt"/>
|
|
37
|
+
<line num="54" count="2" type="stmt"/>
|
|
38
|
+
<line num="56" count="2" type="cond" truecount="4" falsecount="0"/>
|
|
39
|
+
<line num="60" count="1" type="stmt"/>
|
|
40
|
+
<line num="61" count="1" type="stmt"/>
|
|
41
|
+
<line num="64" count="2" type="stmt"/>
|
|
42
|
+
<line num="68" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
43
|
+
<line num="69" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
44
|
+
<line num="70" count="0" type="stmt"/>
|
|
42
45
|
<line num="71" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
43
46
|
<line num="72" count="0" type="stmt"/>
|
|
44
|
-
<line num="73" count="0" type="
|
|
45
|
-
<line num="
|
|
46
|
-
<line num="
|
|
47
|
-
<line num="
|
|
48
|
-
<line num="
|
|
49
|
-
<line num="
|
|
50
|
-
<line num="
|
|
51
|
-
<line num="
|
|
52
|
-
<line num="97" count="
|
|
53
|
-
<line num="
|
|
47
|
+
<line num="73" count="0" type="stmt"/>
|
|
48
|
+
<line num="76" count="0" type="stmt"/>
|
|
49
|
+
<line num="81" count="78" type="stmt"/>
|
|
50
|
+
<line num="83" count="78" type="cond" truecount="4" falsecount="0"/>
|
|
51
|
+
<line num="84" count="76" type="stmt"/>
|
|
52
|
+
<line num="91" count="76" type="stmt"/>
|
|
53
|
+
<line num="92" count="76" type="stmt"/>
|
|
54
|
+
<line num="95" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
55
|
+
<line num="97" count="0" type="stmt"/>
|
|
56
|
+
<line num="99" count="0" type="stmt"/>
|
|
57
|
+
<line num="101" count="0" type="stmt"/>
|
|
54
58
|
<line num="102" count="0" type="stmt"/>
|
|
55
|
-
<line num="
|
|
56
|
-
<line num="
|
|
57
|
-
<line num="
|
|
58
|
-
<line num="
|
|
59
|
-
<line num="
|
|
60
|
-
<line num="
|
|
61
|
-
<line num="
|
|
62
|
-
<line num="
|
|
63
|
-
<line num="
|
|
64
|
-
<line num="
|
|
65
|
-
<line num="
|
|
66
|
-
<line num="
|
|
67
|
-
<line num="
|
|
68
|
-
<line num="
|
|
69
|
-
<line num="
|
|
70
|
-
<line num="
|
|
71
|
-
<line num="
|
|
59
|
+
<line num="117" count="14" type="stmt"/>
|
|
60
|
+
<line num="119" count="14" type="stmt"/>
|
|
61
|
+
<line num="128" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
62
|
+
<line num="129" count="5" type="stmt"/>
|
|
63
|
+
<line num="131" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
64
|
+
<line num="133" count="5" type="stmt"/>
|
|
65
|
+
<line num="146" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
66
|
+
<line num="147" count="4" type="stmt"/>
|
|
67
|
+
<line num="149" count="2" type="stmt"/>
|
|
68
|
+
<line num="159" count="8" type="stmt"/>
|
|
69
|
+
<line num="166" count="1" type="stmt"/>
|
|
70
|
+
<line num="176" count="2" type="stmt"/>
|
|
71
|
+
<line num="186" count="1" type="stmt"/>
|
|
72
|
+
<line num="189" count="1" type="stmt"/>
|
|
73
|
+
<line num="193" count="1" type="stmt"/>
|
|
74
|
+
<line num="200" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
75
|
+
<line num="201" count="0" type="stmt"/>
|
|
76
|
+
<line num="203" count="1" type="stmt"/>
|
|
72
77
|
<line num="204" count="1" type="stmt"/>
|
|
73
|
-
<line num="
|
|
74
|
-
<line num="
|
|
75
|
-
<line num="
|
|
76
|
-
<line num="215" count="1" type="stmt"/>
|
|
77
|
-
<line num="223" count="23" type="stmt"/>
|
|
78
|
-
<line num="255" count="3" type="stmt"/>
|
|
79
|
-
<line num="261" count="3" type="stmt"/>
|
|
78
|
+
<line num="208" count="22" type="stmt"/>
|
|
79
|
+
<line num="251" count="3" type="stmt"/>
|
|
80
|
+
<line num="257" count="3" type="stmt"/>
|
|
80
81
|
</file>
|
|
81
82
|
</package>
|
|
82
83
|
<package name="react.components.Accordion">
|
|
83
|
-
<metrics statements="
|
|
84
|
-
<file name="index.jsx" path="/Users/rodrigomunoz/
|
|
85
|
-
<metrics statements="
|
|
86
|
-
<line num="
|
|
87
|
-
<line num="
|
|
88
|
-
<line num="
|
|
89
|
-
<line num="
|
|
90
|
-
<line num="
|
|
84
|
+
<metrics statements="20" coveredstatements="14" conditionals="20" coveredconditionals="8" methods="6" coveredmethods="3"/>
|
|
85
|
+
<file name="index.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Accordion/index.jsx">
|
|
86
|
+
<metrics statements="20" coveredstatements="14" conditionals="20" coveredconditionals="8" methods="6" coveredmethods="3"/>
|
|
87
|
+
<line num="5" count="3" type="stmt"/>
|
|
88
|
+
<line num="6" count="1" type="stmt"/>
|
|
89
|
+
<line num="7" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
90
|
+
<line num="8" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
91
|
+
<line num="9" count="1" type="stmt"/>
|
|
92
|
+
<line num="10" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
93
|
+
<line num="11" count="0" type="stmt"/>
|
|
94
|
+
<line num="13" count="0" type="stmt"/>
|
|
95
|
+
<line num="15" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
96
|
+
<line num="16" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
97
|
+
<line num="19" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
98
|
+
<line num="23" count="0" type="stmt"/>
|
|
99
|
+
<line num="27" count="1" type="stmt"/>
|
|
91
100
|
<line num="30" count="1" type="stmt"/>
|
|
92
|
-
<line num="31" count="1" type="
|
|
93
|
-
<line num="32" count="
|
|
94
|
-
<line num="
|
|
95
|
-
<line num="
|
|
96
|
-
<line num="
|
|
97
|
-
<line num="
|
|
98
|
-
|
|
101
|
+
<line num="31" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
102
|
+
<line num="32" count="0" type="stmt"/>
|
|
103
|
+
<line num="34" count="1" type="stmt"/>
|
|
104
|
+
<line num="38" count="1" type="stmt"/>
|
|
105
|
+
<line num="79" count="3" type="stmt"/>
|
|
106
|
+
<line num="88" count="3" type="stmt"/>
|
|
107
|
+
</file>
|
|
108
|
+
</package>
|
|
109
|
+
<package name="react.components.Button">
|
|
110
|
+
<metrics statements="20" coveredstatements="8" conditionals="13" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
111
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Button/index.js">
|
|
112
|
+
<metrics statements="20" coveredstatements="8" conditionals="13" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
113
|
+
<line num="4" count="2" type="stmt"/>
|
|
114
|
+
<line num="5" count="2" type="stmt"/>
|
|
115
|
+
<line num="7" count="2" type="stmt"/>
|
|
116
|
+
<line num="18" count="0" type="stmt"/>
|
|
117
|
+
<line num="20" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
118
|
+
<line num="21" count="0" type="stmt"/>
|
|
119
|
+
<line num="23" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
120
|
+
<line num="24" count="0" type="stmt"/>
|
|
121
|
+
<line num="26" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
122
|
+
<line num="27" count="0" type="stmt"/>
|
|
123
|
+
<line num="30" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
124
|
+
<line num="31" count="0" type="stmt"/>
|
|
125
|
+
<line num="42" count="0" type="stmt"/>
|
|
126
|
+
<line num="56" count="2" type="stmt"/>
|
|
127
|
+
<line num="67" count="2" type="stmt"/>
|
|
128
|
+
<line num="72" count="0" type="stmt"/>
|
|
129
|
+
<line num="78" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
130
|
+
<line num="79" count="0" type="stmt"/>
|
|
131
|
+
<line num="82" count="2" type="stmt"/>
|
|
132
|
+
<line num="86" count="2" type="stmt"/>
|
|
133
|
+
</file>
|
|
134
|
+
</package>
|
|
135
|
+
<package name="react.components.Dropdown">
|
|
136
|
+
<metrics statements="7" coveredstatements="3" conditionals="4" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
137
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Dropdown/index.js">
|
|
138
|
+
<metrics statements="7" coveredstatements="3" conditionals="4" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
139
|
+
<line num="4" count="2" type="stmt"/>
|
|
140
|
+
<line num="20" count="0" type="stmt"/>
|
|
141
|
+
<line num="28" count="0" type="stmt"/>
|
|
99
142
|
<line num="43" count="0" type="stmt"/>
|
|
100
|
-
<line num="
|
|
101
|
-
<line num="
|
|
102
|
-
<line num="
|
|
143
|
+
<line num="51" count="2" type="stmt"/>
|
|
144
|
+
<line num="69" count="2" type="stmt"/>
|
|
145
|
+
<line num="75" count="0" type="stmt"/>
|
|
103
146
|
</file>
|
|
104
147
|
</package>
|
|
105
148
|
<package name="react.components.Error">
|
|
106
149
|
<metrics statements="21" coveredstatements="18" conditionals="12" coveredconditionals="7" methods="8" coveredmethods="6"/>
|
|
107
|
-
<file name="Collapsible.jsx" path="/Users/rodrigomunoz/
|
|
150
|
+
<file name="Collapsible.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Error/Collapsible.jsx">
|
|
108
151
|
<metrics statements="15" coveredstatements="13" conditionals="8" coveredconditionals="5" methods="6" coveredmethods="5"/>
|
|
109
|
-
<line num="6" count="
|
|
110
|
-
<line num="8" count="
|
|
111
|
-
<line num="12" count="
|
|
112
|
-
<line num="13" count="
|
|
113
|
-
<line num="14" count="
|
|
152
|
+
<line num="6" count="2" type="stmt"/>
|
|
153
|
+
<line num="8" count="2" type="stmt"/>
|
|
154
|
+
<line num="12" count="2" type="stmt"/>
|
|
155
|
+
<line num="13" count="2" type="stmt"/>
|
|
156
|
+
<line num="14" count="2" type="stmt"/>
|
|
114
157
|
<line num="18" count="0" type="stmt"/>
|
|
115
|
-
<line num="24" count="
|
|
116
|
-
<line num="
|
|
117
|
-
<line num="
|
|
118
|
-
<line num="
|
|
119
|
-
<line num="
|
|
120
|
-
<line num="
|
|
121
|
-
<line num="
|
|
122
|
-
<line num="
|
|
123
|
-
<line num="
|
|
158
|
+
<line num="24" count="2" type="stmt"/>
|
|
159
|
+
<line num="30" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
160
|
+
<line num="31" count="2" type="stmt"/>
|
|
161
|
+
<line num="35" count="0" type="stmt"/>
|
|
162
|
+
<line num="40" count="2" type="stmt"/>
|
|
163
|
+
<line num="41" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
164
|
+
<line num="43" count="2" type="stmt"/>
|
|
165
|
+
<line num="59" count="2" type="stmt"/>
|
|
166
|
+
<line num="81" count="2" type="stmt"/>
|
|
124
167
|
</file>
|
|
125
|
-
<file name="ErrorUI.jsx" path="/Users/rodrigomunoz/
|
|
168
|
+
<file name="ErrorUI.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Error/ErrorUI.jsx">
|
|
126
169
|
<metrics statements="5" coveredstatements="5" conditionals="4" coveredconditionals="2" methods="1" coveredmethods="1"/>
|
|
127
170
|
<line num="5" count="2" type="stmt"/>
|
|
128
|
-
<line num="6" count="
|
|
129
|
-
<line num="7" count="
|
|
130
|
-
<line num="9" count="
|
|
131
|
-
<line num="
|
|
171
|
+
<line num="6" count="2" type="cond" truecount="2" falsecount="2"/>
|
|
172
|
+
<line num="7" count="2" type="stmt"/>
|
|
173
|
+
<line num="9" count="2" type="stmt"/>
|
|
174
|
+
<line num="25" count="2" type="stmt"/>
|
|
132
175
|
</file>
|
|
133
|
-
<file name="error.js" path="/Users/rodrigomunoz/
|
|
176
|
+
<file name="error.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Error/error.js">
|
|
134
177
|
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
135
178
|
<line num="17" count="0" type="stmt"/>
|
|
136
179
|
</file>
|
|
137
180
|
</package>
|
|
138
181
|
<package name="react.components.Footer">
|
|
139
|
-
<metrics statements="
|
|
140
|
-
<file name="FooterUI.jsx" path="/Users/rodrigomunoz/
|
|
141
|
-
<metrics statements="
|
|
142
|
-
<line num="
|
|
182
|
+
<metrics statements="11" coveredstatements="8" conditionals="2" coveredconditionals="0" methods="4" coveredmethods="3"/>
|
|
183
|
+
<file name="FooterUI.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Footer/FooterUI.jsx">
|
|
184
|
+
<metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
185
|
+
<line num="10" count="2" type="stmt"/>
|
|
143
186
|
<line num="11" count="2" type="stmt"/>
|
|
144
|
-
<line num="
|
|
145
|
-
<line num="
|
|
146
|
-
<line num="14" count="0" type="stmt"/>
|
|
147
|
-
<line num="196" count="5" type="stmt"/>
|
|
148
|
-
<line num="204" count="2" type="stmt"/>
|
|
149
|
-
</file>
|
|
150
|
-
<file name="LegacyFooterUI.jsx" path="/Users/rodrigomunoz/Projects/qpp-style/react/components/Footer/LegacyFooterUI.jsx">
|
|
151
|
-
<metrics statements="4" coveredstatements="4" conditionals="8" coveredconditionals="8" methods="1" coveredmethods="1"/>
|
|
152
|
-
<line num="6" count="2" type="stmt"/>
|
|
153
|
-
<line num="8" count="2" type="stmt"/>
|
|
154
|
-
<line num="9" count="5" type="stmt"/>
|
|
155
|
-
<line num="191" count="2" type="stmt"/>
|
|
187
|
+
<line num="13" count="2" type="stmt"/>
|
|
188
|
+
<line num="14" count="3" type="stmt"/>
|
|
156
189
|
</file>
|
|
157
|
-
<file name="SocialLinks.jsx" path="/Users/rodrigomunoz/
|
|
158
|
-
<metrics statements="2" coveredstatements="
|
|
190
|
+
<file name="SocialLinks.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Footer/SocialLinks.jsx">
|
|
191
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
159
192
|
<line num="3" count="2" type="stmt"/>
|
|
160
|
-
<line num="4" count="
|
|
193
|
+
<line num="4" count="3" type="stmt"/>
|
|
161
194
|
</file>
|
|
162
|
-
<file name="Subscribe.jsx" path="/Users/rodrigomunoz/
|
|
163
|
-
<metrics statements="2" coveredstatements="
|
|
195
|
+
<file name="Subscribe.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Footer/Subscribe.jsx">
|
|
196
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
164
197
|
<line num="3" count="2" type="stmt"/>
|
|
165
|
-
<line num="4" count="
|
|
198
|
+
<line num="4" count="3" type="stmt"/>
|
|
166
199
|
</file>
|
|
167
|
-
<file name="footer.js" path="/Users/rodrigomunoz/
|
|
200
|
+
<file name="footer.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Footer/footer.js">
|
|
168
201
|
<metrics statements="3" coveredstatements="0" conditionals="2" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
169
|
-
<line num="
|
|
202
|
+
<line num="14" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
203
|
+
<line num="15" count="0" type="stmt"/>
|
|
170
204
|
<line num="17" count="0" type="stmt"/>
|
|
171
|
-
|
|
205
|
+
</file>
|
|
206
|
+
</package>
|
|
207
|
+
<package name="react.components.GovBanner">
|
|
208
|
+
<metrics statements="4" coveredstatements="3" conditionals="2" coveredconditionals="1" methods="2" coveredmethods="1"/>
|
|
209
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/GovBanner/index.js">
|
|
210
|
+
<metrics statements="4" coveredstatements="3" conditionals="2" coveredconditionals="1" methods="2" coveredmethods="1"/>
|
|
211
|
+
<line num="3" count="2" type="stmt"/>
|
|
212
|
+
<line num="4" count="1" type="stmt"/>
|
|
213
|
+
<line num="6" count="1" type="stmt"/>
|
|
214
|
+
<line num="40" count="0" type="stmt"/>
|
|
172
215
|
</file>
|
|
173
216
|
</package>
|
|
174
217
|
<package name="react.components.Header">
|
|
175
|
-
<metrics statements="
|
|
176
|
-
<file name="HeaderAccountMenu.jsx" path="/Users/rodrigomunoz/
|
|
177
|
-
<metrics statements="
|
|
178
|
-
<line num="
|
|
179
|
-
<line num="
|
|
218
|
+
<metrics statements="203" coveredstatements="119" conditionals="102" coveredconditionals="40" methods="70" coveredmethods="26"/>
|
|
219
|
+
<file name="HeaderAccountMenu.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderAccountMenu.jsx">
|
|
220
|
+
<metrics statements="17" coveredstatements="10" conditionals="16" coveredconditionals="7" methods="3" coveredmethods="1"/>
|
|
221
|
+
<line num="8" count="2" type="stmt"/>
|
|
222
|
+
<line num="9" count="1" type="stmt"/>
|
|
223
|
+
<line num="11" count="1" type="stmt"/>
|
|
224
|
+
<line num="13" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
225
|
+
<line num="15" count="1" type="cond" truecount="3" falsecount="1"/>
|
|
226
|
+
<line num="16" count="0" type="stmt"/>
|
|
227
|
+
<line num="20" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
228
|
+
<line num="21" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
180
229
|
<line num="22" count="0" type="stmt"/>
|
|
181
|
-
<line num="
|
|
182
|
-
<line num="
|
|
183
|
-
<line num="
|
|
184
|
-
<line num="
|
|
185
|
-
<line num="
|
|
186
|
-
<line num="
|
|
187
|
-
<line num="
|
|
188
|
-
<line num="90" count="
|
|
189
|
-
<line num="93" count="2" type="stmt"/>
|
|
190
|
-
<line num="94" count="1" type="stmt"/>
|
|
191
|
-
<line num="95" count="1" type="stmt"/>
|
|
192
|
-
<line num="96" count="1" type="stmt"/>
|
|
193
|
-
<line num="97" count="1" type="stmt"/>
|
|
194
|
-
<line num="98" count="1" type="stmt"/>
|
|
195
|
-
<line num="100" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
196
|
-
<line num="101" count="0" type="stmt"/>
|
|
197
|
-
<line num="102" count="0" type="stmt"/>
|
|
198
|
-
<line num="105" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
199
|
-
<line num="106" count="0" type="stmt"/>
|
|
200
|
-
<line num="109" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
201
|
-
<line num="110" count="0" type="stmt"/>
|
|
202
|
-
<line num="113" count="1" type="stmt"/>
|
|
203
|
-
<line num="114" count="0" type="stmt"/>
|
|
204
|
-
<line num="118" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
205
|
-
<line num="119" count="1" type="stmt"/>
|
|
206
|
-
<line num="146" count="0" type="stmt"/>
|
|
207
|
-
<line num="217" count="2" type="stmt"/>
|
|
208
|
-
<line num="227" count="2" type="stmt"/>
|
|
230
|
+
<line num="28" count="0" type="stmt"/>
|
|
231
|
+
<line num="29" count="0" type="stmt"/>
|
|
232
|
+
<line num="44" count="1" type="stmt"/>
|
|
233
|
+
<line num="53" count="0" type="stmt"/>
|
|
234
|
+
<line num="66" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
235
|
+
<line num="67" count="0" type="stmt"/>
|
|
236
|
+
<line num="84" count="2" type="stmt"/>
|
|
237
|
+
<line num="90" count="2" type="stmt"/>
|
|
209
238
|
</file>
|
|
210
|
-
<file name="HeaderCancel.jsx" path="/Users/rodrigomunoz/
|
|
239
|
+
<file name="HeaderCancel.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderCancel.jsx">
|
|
211
240
|
<metrics statements="3" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
241
|
+
<line num="4" count="2" type="stmt"/>
|
|
242
|
+
<line num="5" count="0" type="stmt"/>
|
|
243
|
+
<line num="12" count="2" type="stmt"/>
|
|
244
|
+
</file>
|
|
245
|
+
<file name="HeaderContainer.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderContainer.jsx">
|
|
246
|
+
<metrics statements="11" coveredstatements="7" conditionals="12" coveredconditionals="7" methods="4" coveredmethods="1"/>
|
|
247
|
+
<line num="14" count="0" type="stmt"/>
|
|
248
|
+
<line num="15" count="0" type="stmt"/>
|
|
249
|
+
<line num="18" count="2" type="stmt"/>
|
|
250
|
+
<line num="25" count="1" type="stmt"/>
|
|
251
|
+
<line num="26" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
252
|
+
<line num="28" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
253
|
+
<line num="32" count="1" type="stmt"/>
|
|
254
|
+
<line num="36" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
255
|
+
<line num="44" count="0" type="stmt"/>
|
|
256
|
+
<line num="60" count="2" type="stmt"/>
|
|
257
|
+
<line num="67" count="2" type="stmt"/>
|
|
258
|
+
</file>
|
|
259
|
+
<file name="HeaderLogo.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderLogo.jsx">
|
|
260
|
+
<metrics statements="5" coveredstatements="4" conditionals="2" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
212
261
|
<line num="5" count="2" type="stmt"/>
|
|
213
|
-
<line num="6" count="
|
|
214
|
-
<line num="
|
|
262
|
+
<line num="6" count="1" type="stmt"/>
|
|
263
|
+
<line num="7" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
264
|
+
<line num="8" count="0" type="stmt"/>
|
|
265
|
+
<line num="25" count="1" type="stmt"/>
|
|
215
266
|
</file>
|
|
216
|
-
<file name="
|
|
217
|
-
<metrics statements="
|
|
218
|
-
<line num="
|
|
219
|
-
<line num="
|
|
220
|
-
<line num="
|
|
221
|
-
<line num="
|
|
222
|
-
<line num="
|
|
223
|
-
<line num="
|
|
267
|
+
<file name="HeaderMenuButton.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderMenuButton.js">
|
|
268
|
+
<metrics statements="9" coveredstatements="2" conditionals="2" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
269
|
+
<line num="8" count="2" type="stmt"/>
|
|
270
|
+
<line num="9" count="0" type="stmt"/>
|
|
271
|
+
<line num="10" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
272
|
+
<line num="11" count="0" type="stmt"/>
|
|
273
|
+
<line num="16" count="0" type="stmt"/>
|
|
274
|
+
<line num="17" count="0" type="stmt"/>
|
|
275
|
+
<line num="28" count="0" type="stmt"/>
|
|
276
|
+
<line num="36" count="0" type="stmt"/>
|
|
277
|
+
<line num="45" count="2" type="stmt"/>
|
|
278
|
+
</file>
|
|
279
|
+
<file name="HeaderMenuItem.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderMenuItem.jsx">
|
|
280
|
+
<metrics statements="44" coveredstatements="25" conditionals="36" coveredconditionals="10" methods="13" coveredmethods="5"/>
|
|
281
|
+
<line num="11" count="2" type="stmt"/>
|
|
282
|
+
<line num="18" count="2" type="stmt"/>
|
|
283
|
+
<line num="34" count="2" type="stmt"/>
|
|
284
|
+
<line num="44" count="2" type="stmt"/>
|
|
285
|
+
<line num="45" count="2" type="stmt"/>
|
|
286
|
+
<line num="47" count="2" type="stmt"/>
|
|
287
|
+
<line num="48" count="2" type="stmt"/>
|
|
288
|
+
<line num="49" count="2" type="stmt"/>
|
|
289
|
+
<line num="51" count="2" type="stmt"/>
|
|
290
|
+
<line num="52" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
291
|
+
<line num="54" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
292
|
+
<line num="55" count="2" type="stmt"/>
|
|
293
|
+
<line num="57" count="2" type="stmt"/>
|
|
294
|
+
<line num="58" count="2" type="stmt"/>
|
|
295
|
+
<line num="59" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
296
|
+
<line num="61" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
297
|
+
<line num="64" count="0" type="stmt"/>
|
|
298
|
+
<line num="68" count="2" type="stmt"/>
|
|
299
|
+
<line num="69" count="1" type="stmt"/>
|
|
300
|
+
<line num="70" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
301
|
+
<line num="75" count="0" type="stmt"/>
|
|
302
|
+
<line num="78" count="0" type="stmt"/>
|
|
303
|
+
<line num="80" count="0" type="stmt"/>
|
|
304
|
+
<line num="81" count="0" type="stmt"/>
|
|
305
|
+
<line num="83" count="1" type="stmt"/>
|
|
306
|
+
<line num="84" count="1" type="stmt"/>
|
|
307
|
+
<line num="87" count="2" type="stmt"/>
|
|
308
|
+
<line num="88" count="1" type="cond" truecount="2" falsecount="2"/>
|
|
309
|
+
<line num="89" count="1" type="stmt"/>
|
|
310
|
+
<line num="93" count="2" type="stmt"/>
|
|
311
|
+
<line num="108" count="0" type="stmt"/>
|
|
312
|
+
<line num="128" count="0" type="stmt"/>
|
|
313
|
+
<line num="131" count="0" type="stmt"/>
|
|
314
|
+
<line num="139" count="0" type="stmt"/>
|
|
315
|
+
<line num="140" count="0" type="stmt"/>
|
|
316
|
+
<line num="146" count="0" type="stmt"/>
|
|
317
|
+
<line num="147" count="0" type="stmt"/>
|
|
318
|
+
<line num="172" count="0" type="stmt"/>
|
|
319
|
+
<line num="184" count="0" type="stmt"/>
|
|
320
|
+
<line num="185" count="0" type="stmt"/>
|
|
321
|
+
<line num="192" count="0" type="stmt"/>
|
|
322
|
+
<line num="193" count="0" type="stmt"/>
|
|
323
|
+
<line num="222" count="2" type="stmt"/>
|
|
324
|
+
<line num="232" count="2" type="stmt"/>
|
|
325
|
+
</file>
|
|
326
|
+
<file name="HeaderMenuLink.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderMenuLink.js">
|
|
327
|
+
<metrics statements="13" coveredstatements="3" conditionals="8" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
328
|
+
<line num="8" count="2" type="stmt"/>
|
|
329
|
+
<line num="10" count="2" type="stmt"/>
|
|
330
|
+
<line num="11" count="0" type="stmt"/>
|
|
331
|
+
<line num="12" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
332
|
+
<line num="13" count="0" type="stmt"/>
|
|
333
|
+
<line num="17" count="0" type="stmt"/>
|
|
334
|
+
<line num="18" count="0" type="stmt"/>
|
|
335
|
+
<line num="29" count="0" type="stmt"/>
|
|
336
|
+
<line num="37" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
337
|
+
<line num="38" count="0" type="stmt"/>
|
|
338
|
+
<line num="39" count="0" type="stmt"/>
|
|
339
|
+
<line num="43" count="0" type="stmt"/>
|
|
340
|
+
<line num="51" count="2" type="stmt"/>
|
|
341
|
+
</file>
|
|
342
|
+
<file name="HeaderMenuSignOutButton.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderMenuSignOutButton.js">
|
|
343
|
+
<metrics statements="15" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="7" coveredmethods="0"/>
|
|
344
|
+
<line num="8" count="2" type="stmt"/>
|
|
345
|
+
<line num="9" count="0" type="stmt"/>
|
|
346
|
+
<line num="10" count="0" type="stmt"/>
|
|
347
|
+
<line num="11" count="0" type="stmt"/>
|
|
348
|
+
<line num="12" count="0" type="stmt"/>
|
|
349
|
+
<line num="15" count="2" type="stmt"/>
|
|
350
|
+
<line num="16" count="0" type="stmt"/>
|
|
351
|
+
<line num="17" count="0" type="stmt"/>
|
|
352
|
+
<line num="18" count="0" type="stmt"/>
|
|
224
353
|
<line num="20" count="0" type="stmt"/>
|
|
225
|
-
<line num="
|
|
226
|
-
<line num="
|
|
227
|
-
<line num="
|
|
228
|
-
<line num="
|
|
229
|
-
<line num="
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
<
|
|
233
|
-
<line num="
|
|
234
|
-
<line num="
|
|
235
|
-
<line num="
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
<
|
|
239
|
-
<line num="
|
|
240
|
-
<line num="
|
|
241
|
-
<line num="
|
|
242
|
-
<line num="
|
|
243
|
-
<line num="
|
|
244
|
-
<line num="
|
|
245
|
-
<line num="
|
|
246
|
-
<line num="
|
|
247
|
-
<line num="
|
|
248
|
-
<line num="
|
|
249
|
-
<line num="
|
|
250
|
-
<line num="
|
|
251
|
-
<line num="
|
|
252
|
-
<line num="
|
|
253
|
-
<line num="
|
|
254
|
-
<line num="
|
|
255
|
-
<line num="
|
|
256
|
-
<line num="
|
|
257
|
-
<line num="
|
|
258
|
-
|
|
259
|
-
|
|
354
|
+
<line num="40" count="0" type="stmt"/>
|
|
355
|
+
<line num="41" count="0" type="stmt"/>
|
|
356
|
+
<line num="47" count="0" type="stmt"/>
|
|
357
|
+
<line num="48" count="0" type="stmt"/>
|
|
358
|
+
<line num="58" count="2" type="stmt"/>
|
|
359
|
+
</file>
|
|
360
|
+
<file name="HeaderMobileButton.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderMobileButton.js">
|
|
361
|
+
<metrics statements="3" coveredstatements="3" conditionals="6" coveredconditionals="4" methods="1" coveredmethods="1"/>
|
|
362
|
+
<line num="5" count="2" type="stmt"/>
|
|
363
|
+
<line num="6" count="1" type="stmt"/>
|
|
364
|
+
<line num="32" count="2" type="stmt"/>
|
|
365
|
+
</file>
|
|
366
|
+
<file name="HeaderUI.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HeaderUI.jsx">
|
|
367
|
+
<metrics statements="40" coveredstatements="31" conditionals="10" coveredconditionals="6" methods="16" coveredmethods="9"/>
|
|
368
|
+
<line num="14" count="2" type="stmt"/>
|
|
369
|
+
<line num="24" count="3" type="stmt"/>
|
|
370
|
+
<line num="25" count="3" type="stmt"/>
|
|
371
|
+
<line num="27" count="3" type="stmt"/>
|
|
372
|
+
<line num="29" count="3" type="stmt"/>
|
|
373
|
+
<line num="32" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
374
|
+
<line num="33" count="0" type="stmt"/>
|
|
375
|
+
<line num="34" count="0" type="stmt"/>
|
|
376
|
+
<line num="37" count="0" type="stmt"/>
|
|
377
|
+
<line num="41" count="1" type="stmt"/>
|
|
378
|
+
<line num="46" count="3" type="stmt"/>
|
|
379
|
+
<line num="47" count="2" type="stmt"/>
|
|
380
|
+
<line num="48" count="2" type="stmt"/>
|
|
381
|
+
<line num="51" count="2" type="stmt"/>
|
|
382
|
+
<line num="52" count="2" type="stmt"/>
|
|
383
|
+
<line num="53" count="1" type="stmt"/>
|
|
384
|
+
<line num="55" count="0" type="stmt"/>
|
|
385
|
+
<line num="57" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
386
|
+
<line num="59" count="2" type="stmt"/>
|
|
387
|
+
<line num="60" count="2" type="stmt"/>
|
|
388
|
+
<line num="61" count="2" type="stmt"/>
|
|
389
|
+
<line num="65" count="3" type="stmt"/>
|
|
390
|
+
<line num="67" count="3" type="stmt"/>
|
|
391
|
+
<line num="68" count="0" type="stmt"/>
|
|
392
|
+
<line num="77" count="3" type="stmt"/>
|
|
393
|
+
<line num="78" count="0" type="stmt"/>
|
|
394
|
+
<line num="91" count="3" type="stmt"/>
|
|
395
|
+
<line num="92" count="1" type="stmt"/>
|
|
396
|
+
<line num="100" count="0" type="stmt"/>
|
|
397
|
+
<line num="106" count="1" type="stmt"/>
|
|
398
|
+
<line num="108" count="0" type="stmt"/>
|
|
399
|
+
<line num="116" count="0" type="stmt"/>
|
|
400
|
+
<line num="126" count="3" type="stmt"/>
|
|
401
|
+
<line num="127" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
402
|
+
<line num="128" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
403
|
+
<line num="129" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
404
|
+
<line num="130" count="2" type="stmt"/>
|
|
405
|
+
<line num="133" count="3" type="stmt"/>
|
|
406
|
+
<line num="140" count="2" type="stmt"/>
|
|
407
|
+
<line num="153" count="2" type="stmt"/>
|
|
408
|
+
</file>
|
|
409
|
+
<file name="HelpIcon.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/HelpIcon.jsx">
|
|
260
410
|
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
261
411
|
<line num="3" count="2" type="stmt"/>
|
|
262
|
-
<line num="4" count="
|
|
412
|
+
<line num="4" count="1" type="stmt"/>
|
|
263
413
|
</file>
|
|
264
|
-
<file name="
|
|
414
|
+
<file name="ImpersonatorBanner.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/ImpersonatorBanner.jsx">
|
|
415
|
+
<metrics statements="13" coveredstatements="6" conditionals="6" coveredconditionals="4" methods="4" coveredmethods="1"/>
|
|
416
|
+
<line num="14" count="2" type="stmt"/>
|
|
417
|
+
<line num="15" count="0" type="stmt"/>
|
|
418
|
+
<line num="24" count="2" type="stmt"/>
|
|
419
|
+
<line num="29" count="1" type="stmt"/>
|
|
420
|
+
<line num="31" count="1" type="stmt"/>
|
|
421
|
+
<line num="41" count="1" type="stmt"/>
|
|
422
|
+
<line num="42" count="0" type="stmt"/>
|
|
423
|
+
<line num="43" count="0" type="stmt"/>
|
|
424
|
+
<line num="49" count="0" type="stmt"/>
|
|
425
|
+
<line num="52" count="0" type="stmt"/>
|
|
426
|
+
<line num="53" count="0" type="stmt"/>
|
|
427
|
+
<line num="55" count="0" type="stmt"/>
|
|
428
|
+
<line num="65" count="1" type="stmt"/>
|
|
429
|
+
</file>
|
|
430
|
+
<file name="NavigationButtonIcon.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/NavigationButtonIcon.jsx">
|
|
431
|
+
<metrics statements="2" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
432
|
+
<line num="3" count="2" type="stmt"/>
|
|
433
|
+
<line num="4" count="0" type="stmt"/>
|
|
434
|
+
</file>
|
|
435
|
+
<file name="header.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/header.js">
|
|
265
436
|
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
266
|
-
<line num="
|
|
437
|
+
<line num="20" count="0" type="stmt"/>
|
|
267
438
|
</file>
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
<
|
|
273
|
-
<line num="
|
|
274
|
-
<line num="
|
|
275
|
-
<line num="
|
|
276
|
-
<line num="14" count="
|
|
277
|
-
<line num="
|
|
278
|
-
<line num="
|
|
279
|
-
<line num="
|
|
280
|
-
<line num="
|
|
281
|
-
<line num="
|
|
439
|
+
<file name="hooks.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/hooks.js">
|
|
440
|
+
<metrics statements="23" coveredstatements="19" conditionals="4" coveredconditionals="1" methods="8" coveredmethods="6"/>
|
|
441
|
+
<line num="5" count="2" type="stmt"/>
|
|
442
|
+
<line num="6" count="2" type="stmt"/>
|
|
443
|
+
<line num="8" count="1" type="stmt"/>
|
|
444
|
+
<line num="10" count="1" type="stmt"/>
|
|
445
|
+
<line num="11" count="1" type="stmt"/>
|
|
446
|
+
<line num="12" count="1" type="stmt"/>
|
|
447
|
+
<line num="14" count="2" type="stmt"/>
|
|
448
|
+
<line num="17" count="2" type="stmt"/>
|
|
449
|
+
<line num="19" count="2" type="stmt"/>
|
|
450
|
+
<line num="24" count="3" type="stmt"/>
|
|
451
|
+
<line num="26" count="3" type="stmt"/>
|
|
452
|
+
<line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
453
|
+
<line num="28" count="0" type="stmt"/>
|
|
454
|
+
<line num="30" count="0" type="stmt"/>
|
|
455
|
+
<line num="33" count="3" type="stmt"/>
|
|
456
|
+
<line num="35" count="3" type="stmt"/>
|
|
457
|
+
<line num="50" count="2" type="stmt"/>
|
|
458
|
+
<line num="56" count="2" type="stmt"/>
|
|
459
|
+
<line num="60" count="2" type="stmt"/>
|
|
460
|
+
<line num="61" count="5" type="stmt"/>
|
|
461
|
+
<line num="62" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
462
|
+
<line num="63" count="0" type="stmt"/>
|
|
463
|
+
<line num="65" count="5" type="stmt"/>
|
|
464
|
+
</file>
|
|
465
|
+
<file name="utag-helpers.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Header/utag-helpers.js">
|
|
466
|
+
<metrics statements="2" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
467
|
+
<line num="1" count="2" type="stmt"/>
|
|
468
|
+
<line num="2" count="0" type="stmt"/>
|
|
282
469
|
</file>
|
|
283
470
|
</package>
|
|
284
471
|
<package name="react.components.Infotip">
|
|
285
472
|
<metrics statements="17" coveredstatements="17" conditionals="8" coveredconditionals="8" methods="4" coveredmethods="4"/>
|
|
286
|
-
<file name="Infotip.jsx" path="/Users/rodrigomunoz/
|
|
473
|
+
<file name="Infotip.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Infotip/Infotip.jsx">
|
|
287
474
|
<metrics statements="13" coveredstatements="13" conditionals="2" coveredconditionals="2" methods="3" coveredmethods="3"/>
|
|
288
475
|
<line num="6" count="3" type="stmt"/>
|
|
289
476
|
<line num="8" count="3" type="stmt"/>
|
|
@@ -295,128 +482,253 @@
|
|
|
295
482
|
<line num="34" count="1" type="stmt"/>
|
|
296
483
|
<line num="35" count="1" type="stmt"/>
|
|
297
484
|
<line num="43" count="3" type="stmt"/>
|
|
298
|
-
<line num="44" count="
|
|
485
|
+
<line num="44" count="7" type="stmt"/>
|
|
299
486
|
<line num="62" count="3" type="stmt"/>
|
|
300
487
|
<line num="69" count="3" type="stmt"/>
|
|
301
488
|
</file>
|
|
302
|
-
<file name="InfotipIcon.jsx" path="/Users/rodrigomunoz/
|
|
489
|
+
<file name="InfotipIcon.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Infotip/InfotipIcon.jsx">
|
|
303
490
|
<metrics statements="4" coveredstatements="4" conditionals="6" coveredconditionals="6" methods="1" coveredmethods="1"/>
|
|
304
491
|
<line num="4" count="3" type="stmt"/>
|
|
305
|
-
<line num="5" count="
|
|
492
|
+
<line num="5" count="7" type="stmt"/>
|
|
306
493
|
<line num="35" count="3" type="stmt"/>
|
|
307
494
|
<line num="39" count="3" type="stmt"/>
|
|
308
495
|
</file>
|
|
309
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
496
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Infotip/index.js">
|
|
310
497
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
311
498
|
</file>
|
|
312
499
|
</package>
|
|
313
|
-
<package name="react.components.
|
|
314
|
-
<metrics statements="
|
|
315
|
-
<file name="
|
|
316
|
-
<metrics statements="
|
|
317
|
-
<line num="
|
|
318
|
-
<line num="
|
|
319
|
-
<line num="
|
|
320
|
-
<line num="
|
|
321
|
-
<line num="
|
|
322
|
-
<line num="
|
|
323
|
-
<line num="
|
|
324
|
-
<line num="
|
|
325
|
-
<line num="
|
|
326
|
-
<line num="43" count="0" type="stmt"/>
|
|
327
|
-
<line num="45" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
328
|
-
<line num="46" count="0" type="stmt"/>
|
|
329
|
-
<line num="57" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
330
|
-
<line num="58" count="0" type="stmt"/>
|
|
500
|
+
<package name="react.components.Modal">
|
|
501
|
+
<metrics statements="33" coveredstatements="21" conditionals="23" coveredconditionals="13" methods="11" coveredmethods="4"/>
|
|
502
|
+
<file name="LegacyModal.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Modal/LegacyModal.jsx">
|
|
503
|
+
<metrics statements="12" coveredstatements="2" conditionals="2" coveredconditionals="0" methods="6" coveredmethods="0"/>
|
|
504
|
+
<line num="10" count="0" type="stmt"/>
|
|
505
|
+
<line num="12" count="0" type="stmt"/>
|
|
506
|
+
<line num="16" count="0" type="stmt"/>
|
|
507
|
+
<line num="17" count="0" type="stmt"/>
|
|
508
|
+
<line num="19" count="0" type="stmt"/>
|
|
509
|
+
<line num="23" count="0" type="stmt"/>
|
|
510
|
+
<line num="27" count="0" type="stmt"/>
|
|
511
|
+
<line num="31" count="0" type="stmt"/>
|
|
512
|
+
<line num="37" count="0" type="stmt"/>
|
|
331
513
|
<line num="63" count="3" type="stmt"/>
|
|
332
|
-
<line num="64" count="
|
|
333
|
-
<line num="
|
|
334
|
-
|
|
514
|
+
<line num="64" count="0" type="stmt"/>
|
|
515
|
+
<line num="67" count="3" type="stmt"/>
|
|
516
|
+
</file>
|
|
517
|
+
<file name="Modal.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Modal/Modal.jsx">
|
|
518
|
+
<metrics statements="14" coveredstatements="13" conditionals="19" coveredconditionals="12" methods="4" coveredmethods="3"/>
|
|
519
|
+
<line num="7" count="3" type="stmt"/>
|
|
520
|
+
<line num="17" count="44" type="stmt"/>
|
|
521
|
+
<line num="18" count="44" type="stmt"/>
|
|
522
|
+
<line num="19" count="44" type="stmt"/>
|
|
523
|
+
<line num="21" count="44" type="stmt"/>
|
|
524
|
+
<line num="22" count="38" type="stmt"/>
|
|
525
|
+
<line num="25" count="44" type="stmt"/>
|
|
526
|
+
<line num="35" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
527
|
+
<line num="39" count="0" type="stmt"/>
|
|
528
|
+
<line num="41" count="1" type="stmt"/>
|
|
529
|
+
<line num="45" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
530
|
+
<line num="46" count="1" type="stmt"/>
|
|
531
|
+
<line num="111" count="3" type="stmt"/>
|
|
532
|
+
<line num="131" count="3" type="stmt"/>
|
|
533
|
+
</file>
|
|
534
|
+
<file name="index.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Modal/index.jsx">
|
|
535
|
+
<metrics statements="7" coveredstatements="6" conditionals="2" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
536
|
+
<line num="7" count="3" type="stmt"/>
|
|
537
|
+
<line num="8" count="44" type="cond" truecount="1" falsecount="1"/>
|
|
538
|
+
<line num="9" count="44" type="stmt"/>
|
|
539
|
+
<line num="11" count="0" type="stmt"/>
|
|
540
|
+
<line num="14" count="3" type="stmt"/>
|
|
541
|
+
<line num="17" count="3" type="stmt"/>
|
|
542
|
+
<line num="20" count="3" type="stmt"/>
|
|
543
|
+
</file>
|
|
544
|
+
</package>
|
|
545
|
+
<package name="react.components.NotificationBanner">
|
|
546
|
+
<metrics statements="67" coveredstatements="41" conditionals="33" coveredconditionals="9" methods="16" coveredmethods="8"/>
|
|
547
|
+
<file name="CollapsedView.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/NotificationBanner/CollapsedView.js">
|
|
548
|
+
<metrics statements="4" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
549
|
+
<line num="5" count="2" type="stmt"/>
|
|
550
|
+
<line num="10" count="0" type="stmt"/>
|
|
551
|
+
<line num="32" count="2" type="stmt"/>
|
|
552
|
+
<line num="34" count="2" type="stmt"/>
|
|
553
|
+
</file>
|
|
554
|
+
<file name="ExpandedView.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/NotificationBanner/ExpandedView.js">
|
|
555
|
+
<metrics statements="3" coveredstatements="2" conditionals="5" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
556
|
+
<line num="6" count="2" type="stmt"/>
|
|
557
|
+
<line num="13" count="0" type="stmt"/>
|
|
558
|
+
<line num="37" count="2" type="stmt"/>
|
|
559
|
+
</file>
|
|
560
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/NotificationBanner/index.js">
|
|
561
|
+
<metrics statements="60" coveredstatements="36" conditionals="28" coveredconditionals="9" methods="14" coveredmethods="8"/>
|
|
562
|
+
<line num="9" count="1" type="stmt"/>
|
|
563
|
+
<line num="10" count="0" type="stmt"/>
|
|
564
|
+
<line num="11" count="0" type="stmt"/>
|
|
565
|
+
<line num="12" count="0" type="stmt"/>
|
|
566
|
+
<line num="13" count="0" type="stmt"/>
|
|
567
|
+
<line num="18" count="2" type="stmt"/>
|
|
568
|
+
<line num="25" count="2" type="stmt"/>
|
|
569
|
+
<line num="27" count="2" type="stmt"/>
|
|
570
|
+
<line num="28" count="2" type="stmt"/>
|
|
571
|
+
<line num="29" count="2" type="stmt"/>
|
|
572
|
+
<line num="30" count="2" type="stmt"/>
|
|
573
|
+
<line num="31" count="2" type="stmt"/>
|
|
574
|
+
<line num="32" count="2" type="stmt"/>
|
|
575
|
+
<line num="33" count="2" type="stmt"/>
|
|
576
|
+
<line num="34" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
577
|
+
<line num="36" count="2" type="stmt"/>
|
|
578
|
+
<line num="38" count="1" type="stmt"/>
|
|
579
|
+
<line num="40" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
580
|
+
<line num="41" count="0" type="stmt"/>
|
|
581
|
+
<line num="44" count="1" type="stmt"/>
|
|
582
|
+
<line num="45" count="0" type="stmt"/>
|
|
583
|
+
<line num="48" count="1" type="stmt"/>
|
|
584
|
+
<line num="50" count="1" type="stmt"/>
|
|
585
|
+
<line num="51" count="1" type="stmt"/>
|
|
586
|
+
<line num="55" count="2" type="stmt"/>
|
|
587
|
+
<line num="57" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
588
|
+
<line num="58" count="1" type="stmt"/>
|
|
589
|
+
<line num="62" count="2" type="stmt"/>
|
|
590
|
+
<line num="63" count="1" type="stmt"/>
|
|
591
|
+
<line num="64" count="1" type="stmt"/>
|
|
592
|
+
<line num="66" count="1" type="cond" truecount="2" falsecount="2"/>
|
|
593
|
+
<line num="70" count="1" type="stmt"/>
|
|
594
|
+
<line num="73" count="2" type="stmt"/>
|
|
595
|
+
<line num="74" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
335
596
|
<line num="75" count="0" type="stmt"/>
|
|
336
|
-
<line num="
|
|
337
|
-
<line num="
|
|
338
|
-
<line num="
|
|
339
|
-
<line num="
|
|
340
|
-
<line num="
|
|
341
|
-
<line num="103" count="0" type="
|
|
342
|
-
<line num="
|
|
343
|
-
<line num="
|
|
344
|
-
<line num="
|
|
345
|
-
<line num="113" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
597
|
+
<line num="76" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
598
|
+
<line num="80" count="0" type="stmt"/>
|
|
599
|
+
<line num="93" count="2" type="stmt"/>
|
|
600
|
+
<line num="94" count="2" type="stmt"/>
|
|
601
|
+
<line num="102" count="2" type="stmt"/>
|
|
602
|
+
<line num="103" count="0" type="stmt"/>
|
|
603
|
+
<line num="104" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
604
|
+
<line num="106" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
605
|
+
<line num="107" count="0" type="stmt"/>
|
|
346
606
|
<line num="118" count="0" type="stmt"/>
|
|
347
|
-
<line num="
|
|
348
|
-
<line num="137" count="0" type="stmt"/>
|
|
607
|
+
<line num="137" count="2" type="stmt"/>
|
|
349
608
|
<line num="138" count="0" type="stmt"/>
|
|
350
|
-
<line num="139" count="0" type="
|
|
351
|
-
<line num="
|
|
352
|
-
<line num="
|
|
609
|
+
<line num="139" count="0" type="stmt"/>
|
|
610
|
+
<line num="140" count="0" type="stmt"/>
|
|
611
|
+
<line num="141" count="0" type="stmt"/>
|
|
353
612
|
<line num="143" count="0" type="stmt"/>
|
|
354
|
-
<line num="
|
|
355
|
-
<line num="
|
|
613
|
+
<line num="144" count="0" type="stmt"/>
|
|
614
|
+
<line num="147" count="2" type="stmt"/>
|
|
615
|
+
<line num="148" count="0" type="stmt"/>
|
|
616
|
+
<line num="149" count="0" type="stmt"/>
|
|
617
|
+
<line num="150" count="0" type="stmt"/>
|
|
356
618
|
<line num="151" count="0" type="stmt"/>
|
|
357
|
-
<line num="
|
|
358
|
-
<line num="
|
|
359
|
-
<line num="
|
|
360
|
-
<line num="171" count="0" type="stmt"/>
|
|
361
|
-
<line num="172" count="0" type="stmt"/>
|
|
362
|
-
<line num="179" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
363
|
-
<line num="180" count="0" type="stmt"/>
|
|
364
|
-
<line num="181" count="0" type="stmt"/>
|
|
365
|
-
<line num="194" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
366
|
-
<line num="195" count="0" type="stmt"/>
|
|
367
|
-
<line num="208" count="0" type="stmt"/>
|
|
368
|
-
<line num="218" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
369
|
-
<line num="219" count="3" type="stmt"/>
|
|
370
|
-
<line num="221" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
371
|
-
<line num="222" count="0" type="stmt"/>
|
|
372
|
-
<line num="224" count="0" type="stmt"/>
|
|
373
|
-
<line num="227" count="0" type="stmt"/>
|
|
374
|
-
<line num="231" count="0" type="stmt"/>
|
|
375
|
-
<line num="248" count="0" type="stmt"/>
|
|
376
|
-
<line num="267" count="2" type="stmt"/>
|
|
377
|
-
<line num="276" count="2" type="stmt"/>
|
|
619
|
+
<line num="160" count="2" type="stmt"/>
|
|
620
|
+
<line num="189" count="2" type="stmt"/>
|
|
621
|
+
<line num="203" count="2" type="stmt"/>
|
|
378
622
|
</file>
|
|
379
623
|
</package>
|
|
380
624
|
<package name="react.components.SanitizedContent">
|
|
381
625
|
<metrics statements="9" coveredstatements="4" conditionals="6" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
382
|
-
<file name="index.jsx" path="/Users/rodrigomunoz/
|
|
626
|
+
<file name="index.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SanitizedContent/index.jsx">
|
|
383
627
|
<metrics statements="9" coveredstatements="4" conditionals="6" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
384
|
-
<line num="6" count="
|
|
385
|
-
<line num="
|
|
386
|
-
<line num="
|
|
387
|
-
<line num="
|
|
388
|
-
<line num="
|
|
389
|
-
<line num="
|
|
390
|
-
<line num="
|
|
391
|
-
<line num="
|
|
392
|
-
<line num="
|
|
628
|
+
<line num="6" count="4" type="stmt"/>
|
|
629
|
+
<line num="92" count="4" type="stmt"/>
|
|
630
|
+
<line num="174" count="4" type="stmt"/>
|
|
631
|
+
<line num="180" count="0" type="stmt"/>
|
|
632
|
+
<line num="181" count="0" type="stmt"/>
|
|
633
|
+
<line num="182" count="0" type="stmt"/>
|
|
634
|
+
<line num="184" count="0" type="stmt"/>
|
|
635
|
+
<line num="185" count="0" type="stmt"/>
|
|
636
|
+
<line num="193" count="4" type="stmt"/>
|
|
393
637
|
</file>
|
|
394
638
|
</package>
|
|
395
|
-
<package name="react.components.
|
|
396
|
-
<metrics statements="
|
|
397
|
-
<file name="
|
|
398
|
-
<metrics statements="
|
|
399
|
-
<line num="1" count="3" type="stmt"/>
|
|
400
|
-
<line num="2" count="3" type="stmt"/>
|
|
401
|
-
<line num="3" count="3" type="stmt"/>
|
|
402
|
-
<line num="4" count="3" type="stmt"/>
|
|
403
|
-
<line num="5" count="3" type="stmt"/>
|
|
404
|
-
<line num="6" count="3" type="stmt"/>
|
|
405
|
-
<line num="8" count="3" type="stmt"/>
|
|
406
|
-
<line num="9" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
407
|
-
<line num="10" count="0" type="stmt"/>
|
|
408
|
-
<line num="12" count="0" type="stmt"/>
|
|
409
|
-
<line num="16" count="3" type="stmt"/>
|
|
639
|
+
<package name="react.components.SessionDialog">
|
|
640
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
641
|
+
<file name="sessionDialog.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SessionDialog/sessionDialog.js">
|
|
642
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
410
643
|
<line num="17" count="0" type="stmt"/>
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
<
|
|
644
|
+
</file>
|
|
645
|
+
</package>
|
|
646
|
+
<package name="react.components.SideNav">
|
|
647
|
+
<metrics statements="84" coveredstatements="56" conditionals="32" coveredconditionals="10" methods="18" coveredmethods="8"/>
|
|
648
|
+
<file name="helpers.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/helpers.js">
|
|
649
|
+
<metrics statements="80" coveredstatements="55" conditionals="31" coveredconditionals="10" methods="17" coveredmethods="8"/>
|
|
650
|
+
<line num="22" count="3" type="stmt"/>
|
|
651
|
+
<line num="23" count="3" type="stmt"/>
|
|
652
|
+
<line num="24" count="3" type="stmt"/>
|
|
653
|
+
<line num="25" count="3" type="stmt"/>
|
|
654
|
+
<line num="26" count="3" type="stmt"/>
|
|
655
|
+
<line num="27" count="3" type="stmt"/>
|
|
656
|
+
<line num="28" count="3" type="stmt"/>
|
|
417
657
|
<line num="29" count="3" type="stmt"/>
|
|
658
|
+
<line num="30" count="3" type="stmt"/>
|
|
659
|
+
<line num="31" count="3" type="stmt"/>
|
|
660
|
+
<line num="33" count="3" type="stmt"/>
|
|
661
|
+
<line num="34" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
662
|
+
<line num="35" count="0" type="stmt"/>
|
|
663
|
+
<line num="37" count="0" type="stmt"/>
|
|
664
|
+
<line num="41" count="3" type="stmt"/>
|
|
665
|
+
<line num="42" count="0" type="stmt"/>
|
|
666
|
+
<line num="45" count="3" type="stmt"/>
|
|
667
|
+
<line num="46" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
668
|
+
<line num="47" count="0" type="stmt"/>
|
|
669
|
+
<line num="48" count="0" type="stmt"/>
|
|
670
|
+
<line num="49" count="0" type="stmt"/>
|
|
671
|
+
<line num="50" count="0" type="stmt"/>
|
|
672
|
+
<line num="52" count="0" type="stmt"/>
|
|
673
|
+
<line num="67" count="3" type="stmt"/>
|
|
674
|
+
<line num="68" count="0" type="stmt"/>
|
|
675
|
+
<line num="95" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
676
|
+
<line num="96" count="0" type="stmt"/>
|
|
677
|
+
<line num="99" count="3" type="stmt"/>
|
|
678
|
+
<line num="111" count="3" type="stmt"/>
|
|
679
|
+
<line num="116" count="3" type="stmt"/>
|
|
680
|
+
<line num="117" count="1" type="stmt"/>
|
|
681
|
+
<line num="118" count="1" type="stmt"/>
|
|
682
|
+
<line num="122" count="1" type="stmt"/>
|
|
683
|
+
<line num="134" count="1" type="stmt"/>
|
|
684
|
+
<line num="144" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
685
|
+
<line num="145" count="1" type="stmt"/>
|
|
686
|
+
<line num="146" count="1" type="stmt"/>
|
|
687
|
+
<line num="147" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
688
|
+
<line num="150" count="1" type="stmt"/>
|
|
689
|
+
<line num="151" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
690
|
+
<line num="152" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
691
|
+
<line num="154" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
692
|
+
<line num="162" count="3" type="stmt"/>
|
|
693
|
+
<line num="163" count="1" type="stmt"/>
|
|
694
|
+
<line num="164" count="1" type="stmt"/>
|
|
695
|
+
<line num="174" count="3" type="stmt"/>
|
|
696
|
+
<line num="175" count="1" type="stmt"/>
|
|
697
|
+
<line num="176" count="1" type="stmt"/>
|
|
698
|
+
<line num="177" count="1" type="stmt"/>
|
|
699
|
+
<line num="178" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
700
|
+
<line num="179" count="0" type="stmt"/>
|
|
701
|
+
<line num="182" count="1" type="stmt"/>
|
|
702
|
+
<line num="183" count="0" type="stmt"/>
|
|
703
|
+
<line num="189" count="1" type="stmt"/>
|
|
704
|
+
<line num="190" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
705
|
+
<line num="191" count="0" type="stmt"/>
|
|
706
|
+
<line num="193" count="0" type="stmt"/>
|
|
707
|
+
<line num="196" count="1" type="stmt"/>
|
|
708
|
+
<line num="204" count="3" type="stmt"/>
|
|
709
|
+
<line num="212" count="1" type="stmt"/>
|
|
710
|
+
<line num="213" count="1" type="stmt"/>
|
|
711
|
+
<line num="226" count="3" type="stmt"/>
|
|
712
|
+
<line num="259" count="3" type="stmt"/>
|
|
713
|
+
<line num="260" count="0" type="stmt"/>
|
|
714
|
+
<line num="272" count="3" type="stmt"/>
|
|
715
|
+
<line num="273" count="1" type="stmt"/>
|
|
716
|
+
<line num="274" count="1" type="stmt"/>
|
|
717
|
+
<line num="275" count="1" type="stmt"/>
|
|
718
|
+
<line num="276" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
719
|
+
<line num="278" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
720
|
+
<line num="279" count="0" type="stmt"/>
|
|
721
|
+
<line num="282" count="1" type="stmt"/>
|
|
722
|
+
<line num="290" count="3" type="stmt"/>
|
|
723
|
+
<line num="291" count="1" type="stmt"/>
|
|
724
|
+
<line num="312" count="0" type="stmt"/>
|
|
725
|
+
<line num="325" count="3" type="stmt"/>
|
|
726
|
+
<line num="326" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
727
|
+
<line num="327" count="0" type="stmt"/>
|
|
728
|
+
<line num="328" count="0" type="stmt"/>
|
|
729
|
+
<line num="331" count="3" type="stmt"/>
|
|
418
730
|
</file>
|
|
419
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
731
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/index.js">
|
|
420
732
|
<metrics statements="4" coveredstatements="1" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
421
733
|
<line num="5" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
422
734
|
<line num="25" count="0" type="stmt"/>
|
|
@@ -425,172 +737,169 @@
|
|
|
425
737
|
</file>
|
|
426
738
|
</package>
|
|
427
739
|
<package name="react.components.SideNav.AnimationGroup">
|
|
428
|
-
<metrics statements="
|
|
429
|
-
<file name="AnimationGroup.jsx" path="/Users/rodrigomunoz/
|
|
430
|
-
<metrics statements="
|
|
740
|
+
<metrics statements="5" coveredstatements="5" conditionals="6" coveredconditionals="4" methods="2" coveredmethods="2"/>
|
|
741
|
+
<file name="AnimationGroup.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/AnimationGroup/AnimationGroup.jsx">
|
|
742
|
+
<metrics statements="5" coveredstatements="5" conditionals="6" coveredconditionals="4" methods="2" coveredmethods="2"/>
|
|
431
743
|
<line num="4" count="2" type="stmt"/>
|
|
432
|
-
<line num="5" count="
|
|
433
|
-
<line num="
|
|
744
|
+
<line num="5" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
745
|
+
<line num="8" count="2" type="stmt"/>
|
|
746
|
+
<line num="9" count="1" type="stmt"/>
|
|
747
|
+
<line num="20" count="2" type="stmt"/>
|
|
434
748
|
</file>
|
|
435
749
|
</package>
|
|
436
750
|
<package name="react.components.SideNav.Chart">
|
|
437
|
-
<metrics statements="
|
|
438
|
-
<file name="ScoreChart.jsx" path="/Users/rodrigomunoz/
|
|
439
|
-
<metrics statements="
|
|
751
|
+
<metrics statements="86" coveredstatements="59" conditionals="36" coveredconditionals="17" methods="22" coveredmethods="13"/>
|
|
752
|
+
<file name="ScoreChart.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Chart/ScoreChart.jsx">
|
|
753
|
+
<metrics statements="86" coveredstatements="59" conditionals="36" coveredconditionals="17" methods="22" coveredmethods="13"/>
|
|
440
754
|
<line num="6" count="3" type="stmt"/>
|
|
441
755
|
<line num="7" count="3" type="stmt"/>
|
|
442
756
|
<line num="8" count="3" type="stmt"/>
|
|
443
757
|
<line num="9" count="3" type="stmt"/>
|
|
758
|
+
<line num="11" count="3" type="stmt"/>
|
|
759
|
+
<line num="12" count="1" type="stmt"/>
|
|
444
760
|
<line num="13" count="1" type="stmt"/>
|
|
445
|
-
<line num="
|
|
446
|
-
<line num="
|
|
447
|
-
<line num="
|
|
448
|
-
<line num="
|
|
449
|
-
<line num="
|
|
450
|
-
<line num="
|
|
451
|
-
<line num="
|
|
452
|
-
<line num="
|
|
453
|
-
<line num="38" count="0" type="
|
|
454
|
-
<line num="
|
|
455
|
-
<line num="40" count="0" type="stmt"/>
|
|
456
|
-
<line num="45" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
761
|
+
<line num="21" count="1" type="stmt"/>
|
|
762
|
+
<line num="25" count="1" type="stmt"/>
|
|
763
|
+
<line num="26" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
764
|
+
<line num="27" count="0" type="stmt"/>
|
|
765
|
+
<line num="31" count="1" type="stmt"/>
|
|
766
|
+
<line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
767
|
+
<line num="33" count="0" type="stmt"/>
|
|
768
|
+
<line num="37" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
769
|
+
<line num="38" count="0" type="stmt"/>
|
|
770
|
+
<line num="45" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
457
771
|
<line num="46" count="0" type="stmt"/>
|
|
458
|
-
<line num="
|
|
459
|
-
<line num="
|
|
460
|
-
<line num="
|
|
461
|
-
<line num="
|
|
462
|
-
<line num="
|
|
463
|
-
<line num="
|
|
464
|
-
<line num="
|
|
465
|
-
<line num="
|
|
466
|
-
<line num="
|
|
467
|
-
<line num="
|
|
468
|
-
<line num="
|
|
469
|
-
<line num="
|
|
470
|
-
<line num="
|
|
471
|
-
<line num="
|
|
472
|
-
<line num="
|
|
473
|
-
<line num="
|
|
474
|
-
<line num="
|
|
475
|
-
<line num="
|
|
476
|
-
<line num="
|
|
477
|
-
<line num="
|
|
478
|
-
<line num="
|
|
479
|
-
<line num="
|
|
480
|
-
<line num="
|
|
481
|
-
<line num="
|
|
482
|
-
<line num="
|
|
483
|
-
<line num="
|
|
484
|
-
<line num="
|
|
772
|
+
<line num="48" count="0" type="stmt"/>
|
|
773
|
+
<line num="52" count="1" type="stmt"/>
|
|
774
|
+
<line num="53" count="1" type="stmt"/>
|
|
775
|
+
<line num="56" count="1" type="stmt"/>
|
|
776
|
+
<line num="57" count="3" type="stmt"/>
|
|
777
|
+
<line num="61" count="1" type="stmt"/>
|
|
778
|
+
<line num="62" count="3" type="stmt"/>
|
|
779
|
+
<line num="63" count="2" type="stmt"/>
|
|
780
|
+
<line num="65" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
781
|
+
<line num="66" count="0" type="stmt"/>
|
|
782
|
+
<line num="69" count="1" type="stmt"/>
|
|
783
|
+
<line num="71" count="1" type="stmt"/>
|
|
784
|
+
<line num="75" count="1" type="stmt"/>
|
|
785
|
+
<line num="81" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
786
|
+
<line num="82" count="0" type="stmt"/>
|
|
787
|
+
<line num="83" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
788
|
+
<line num="84" count="0" type="stmt"/>
|
|
789
|
+
<line num="85" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
790
|
+
<line num="87" count="1" type="stmt"/>
|
|
791
|
+
<line num="88" count="3" type="stmt"/>
|
|
792
|
+
<line num="93" count="3" type="stmt"/>
|
|
793
|
+
<line num="96" count="1" type="stmt"/>
|
|
794
|
+
<line num="98" count="1" type="stmt"/>
|
|
795
|
+
<line num="104" count="1" type="stmt"/>
|
|
796
|
+
<line num="114" count="9" type="cond" truecount="2" falsecount="0"/>
|
|
797
|
+
<line num="115" count="3" type="stmt"/>
|
|
798
|
+
<line num="116" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
799
|
+
<line num="117" count="3" type="stmt"/>
|
|
485
800
|
<line num="119" count="3" type="stmt"/>
|
|
486
|
-
<line num="
|
|
487
|
-
<line num="126" count="
|
|
488
|
-
<line num="
|
|
801
|
+
<line num="121" count="9" type="stmt"/>
|
|
802
|
+
<line num="126" count="9" type="stmt"/>
|
|
803
|
+
<line num="127" count="9" type="cond" truecount="2" falsecount="0"/>
|
|
804
|
+
<line num="128" count="3" type="stmt"/>
|
|
805
|
+
<line num="130" count="9" type="stmt"/>
|
|
806
|
+
<line num="134" count="9" type="cond" truecount="2" falsecount="0"/>
|
|
807
|
+
<line num="135" count="3" type="stmt"/>
|
|
808
|
+
<line num="140" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
489
809
|
<line num="141" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
490
810
|
<line num="142" count="0" type="stmt"/>
|
|
491
|
-
<line num="143" count="0" type="
|
|
492
|
-
<line num="144" count="0" type="stmt"/>
|
|
493
|
-
<line num="146" count="0" type="stmt"/>
|
|
811
|
+
<line num="143" count="0" type="stmt"/>
|
|
494
812
|
<line num="148" count="0" type="stmt"/>
|
|
495
|
-
<line num="
|
|
496
|
-
<line num="
|
|
497
|
-
<line num="
|
|
498
|
-
<line num="
|
|
499
|
-
<line num="
|
|
500
|
-
<line num="
|
|
501
|
-
<line num="167" count="0" type="
|
|
502
|
-
<line num="168" count="0" type="
|
|
503
|
-
<line num="
|
|
504
|
-
<line num="
|
|
505
|
-
<line num="
|
|
506
|
-
<line num="
|
|
507
|
-
<line num="
|
|
508
|
-
<line num="
|
|
509
|
-
<line num="
|
|
510
|
-
<line num="
|
|
511
|
-
<line num="
|
|
512
|
-
<line num="
|
|
513
|
-
<line num="
|
|
514
|
-
<line num="
|
|
515
|
-
<line num="
|
|
516
|
-
<line num="
|
|
517
|
-
<line num="
|
|
518
|
-
<line num="
|
|
519
|
-
<line num="
|
|
520
|
-
<line num="
|
|
521
|
-
<line num="
|
|
522
|
-
<line num="242" count="0" type="stmt"/>
|
|
523
|
-
<line num="254" count="0" type="stmt"/>
|
|
524
|
-
<line num="256" count="0" type="stmt"/>
|
|
525
|
-
<line num="260" count="0" type="stmt"/>
|
|
526
|
-
<line num="276" count="1" type="stmt"/>
|
|
527
|
-
<line num="290" count="1" type="stmt"/>
|
|
528
|
-
<line num="311" count="3" type="stmt"/>
|
|
813
|
+
<line num="149" count="0" type="stmt"/>
|
|
814
|
+
<line num="153" count="1" type="stmt"/>
|
|
815
|
+
<line num="154" count="9" type="cond" truecount="2" falsecount="0"/>
|
|
816
|
+
<line num="156" count="3" type="stmt"/>
|
|
817
|
+
<line num="157" count="3" type="stmt"/>
|
|
818
|
+
<line num="161" count="1" type="stmt"/>
|
|
819
|
+
<line num="167" count="0" type="stmt"/>
|
|
820
|
+
<line num="168" count="0" type="stmt"/>
|
|
821
|
+
<line num="174" count="0" type="stmt"/>
|
|
822
|
+
<line num="180" count="0" type="stmt"/>
|
|
823
|
+
<line num="184" count="1" type="stmt"/>
|
|
824
|
+
<line num="190" count="1" type="stmt"/>
|
|
825
|
+
<line num="197" count="1" type="stmt"/>
|
|
826
|
+
<line num="204" count="1" type="stmt"/>
|
|
827
|
+
<line num="205" count="0" type="stmt"/>
|
|
828
|
+
<line num="208" count="1" type="stmt"/>
|
|
829
|
+
<line num="209" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
830
|
+
<line num="210" count="1" type="stmt"/>
|
|
831
|
+
<line num="211" count="1" type="stmt"/>
|
|
832
|
+
<line num="215" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
833
|
+
<line num="216" count="0" type="stmt"/>
|
|
834
|
+
<line num="228" count="0" type="stmt"/>
|
|
835
|
+
<line num="229" count="0" type="stmt"/>
|
|
836
|
+
<line num="231" count="0" type="stmt"/>
|
|
837
|
+
<line num="242" count="1" type="stmt"/>
|
|
838
|
+
<line num="252" count="1" type="stmt"/>
|
|
839
|
+
<line num="264" count="3" type="stmt"/>
|
|
529
840
|
</file>
|
|
530
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
841
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Chart/index.js">
|
|
531
842
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
532
843
|
</file>
|
|
533
844
|
</package>
|
|
534
845
|
<package name="react.components.SideNav.Content">
|
|
535
|
-
<metrics statements="
|
|
536
|
-
<file name="LevelOneContent.jsx" path="/Users/rodrigomunoz/
|
|
537
|
-
<metrics statements="
|
|
538
|
-
<line num="
|
|
846
|
+
<metrics statements="68" coveredstatements="23" conditionals="108" coveredconditionals="5" methods="7" coveredmethods="1"/>
|
|
847
|
+
<file name="LevelOneContent.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Content/LevelOneContent.jsx">
|
|
848
|
+
<metrics statements="51" coveredstatements="20" conditionals="52" coveredconditionals="5" methods="6" coveredmethods="1"/>
|
|
849
|
+
<line num="20" count="2" type="stmt"/>
|
|
850
|
+
<line num="25" count="1" type="stmt"/>
|
|
851
|
+
<line num="27" count="1" type="stmt"/>
|
|
539
852
|
<line num="29" count="1" type="stmt"/>
|
|
540
|
-
<line num="30" count="1" type="
|
|
853
|
+
<line num="30" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
541
854
|
<line num="31" count="1" type="stmt"/>
|
|
542
855
|
<line num="32" count="1" type="stmt"/>
|
|
543
|
-
<line num="
|
|
544
|
-
<line num="
|
|
545
|
-
<line num="35" count="1" type="stmt"/>
|
|
546
|
-
<line num="37" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
856
|
+
<line num="35" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
857
|
+
<line num="37" count="1" type="stmt"/>
|
|
547
858
|
<line num="38" count="1" type="stmt"/>
|
|
548
|
-
<line num="
|
|
549
|
-
<line num="
|
|
550
|
-
<line num="
|
|
551
|
-
<line num="
|
|
552
|
-
<line num="47" count="
|
|
553
|
-
<line num="
|
|
554
|
-
<line num="
|
|
555
|
-
<line num="54" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
859
|
+
<line num="40" count="1" type="stmt"/>
|
|
860
|
+
<line num="41" count="1" type="stmt"/>
|
|
861
|
+
<line num="44" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
862
|
+
<line num="45" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
863
|
+
<line num="47" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
864
|
+
<line num="49" count="1" type="stmt"/>
|
|
865
|
+
<line num="50" count="1" type="stmt"/>
|
|
556
866
|
<line num="55" count="0" type="stmt"/>
|
|
557
|
-
<line num="58" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
558
|
-
<line num="59" count="0" type="stmt"/>
|
|
559
|
-
<line num="63" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
560
867
|
<line num="64" count="1" type="stmt"/>
|
|
561
|
-
<line num="66" count="1" type="
|
|
562
|
-
<line num="
|
|
563
|
-
<line num="
|
|
564
|
-
<line num="
|
|
565
|
-
<line num="
|
|
868
|
+
<line num="66" count="1" type="stmt"/>
|
|
869
|
+
<line num="70" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
870
|
+
<line num="71" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
871
|
+
<line num="72" count="0" type="stmt"/>
|
|
872
|
+
<line num="80" count="0" type="stmt"/>
|
|
873
|
+
<line num="81" count="0" type="stmt"/>
|
|
874
|
+
<line num="83" count="0" type="stmt"/>
|
|
875
|
+
<line num="87" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
876
|
+
<line num="88" count="0" type="stmt"/>
|
|
877
|
+
<line num="90" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
566
878
|
<line num="91" count="0" type="stmt"/>
|
|
879
|
+
<line num="94" count="0" type="stmt"/>
|
|
880
|
+
<line num="97" count="0" type="stmt"/>
|
|
881
|
+
<line num="100" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
567
882
|
<line num="101" count="0" type="stmt"/>
|
|
568
|
-
<line num="
|
|
569
|
-
<line num="
|
|
570
|
-
<line num="
|
|
571
|
-
<line num="
|
|
572
|
-
<line num="
|
|
573
|
-
<line num="
|
|
574
|
-
<line num="
|
|
575
|
-
<line num="
|
|
576
|
-
<line num="
|
|
577
|
-
<line num="
|
|
578
|
-
<line num="
|
|
579
|
-
<line num="
|
|
580
|
-
<line num="
|
|
581
|
-
<line num="
|
|
582
|
-
<line num="
|
|
583
|
-
<line num="
|
|
584
|
-
<line num="
|
|
585
|
-
<line num="238" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
586
|
-
<line num="239" count="0" type="stmt"/>
|
|
587
|
-
<line num="261" count="1" type="stmt"/>
|
|
588
|
-
<line num="273" count="1" type="stmt"/>
|
|
589
|
-
<line num="284" count="1" type="stmt"/>
|
|
590
|
-
<line num="296" count="2" type="stmt"/>
|
|
883
|
+
<line num="105" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
884
|
+
<line num="106" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
885
|
+
<line num="109" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
886
|
+
<line num="110" count="0" type="stmt"/>
|
|
887
|
+
<line num="117" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
888
|
+
<line num="118" count="0" type="stmt"/>
|
|
889
|
+
<line num="121" count="0" type="stmt"/>
|
|
890
|
+
<line num="122" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
891
|
+
<line num="123" count="0" type="stmt"/>
|
|
892
|
+
<line num="127" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
893
|
+
<line num="132" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
894
|
+
<line num="135" count="0" type="stmt"/>
|
|
895
|
+
<line num="150" count="0" type="stmt"/>
|
|
896
|
+
<line num="151" count="0" type="stmt"/>
|
|
897
|
+
<line num="166" count="0" type="stmt"/>
|
|
898
|
+
<line num="169" count="1" type="stmt"/>
|
|
899
|
+
<line num="187" count="2" type="stmt"/>
|
|
591
900
|
</file>
|
|
592
|
-
<file name="LevelTwoContent.jsx" path="/Users/rodrigomunoz/
|
|
593
|
-
<metrics statements="17" coveredstatements="3" conditionals="
|
|
901
|
+
<file name="LevelTwoContent.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Content/LevelTwoContent.jsx">
|
|
902
|
+
<metrics statements="17" coveredstatements="3" conditionals="56" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
594
903
|
<line num="27" count="2" type="stmt"/>
|
|
595
904
|
<line num="29" count="2" type="stmt"/>
|
|
596
905
|
<line num="53" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
@@ -607,49 +916,125 @@
|
|
|
607
916
|
<line num="130" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
608
917
|
<line num="137" count="0" type="stmt"/>
|
|
609
918
|
<line num="156" count="0" type="stmt"/>
|
|
610
|
-
<line num="
|
|
919
|
+
<line num="209" count="2" type="stmt"/>
|
|
611
920
|
</file>
|
|
612
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
921
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Content/index.js">
|
|
613
922
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
614
923
|
</file>
|
|
615
924
|
</package>
|
|
925
|
+
<package name="react.components.SideNav.Content.SelectRole">
|
|
926
|
+
<metrics statements="65" coveredstatements="14" conditionals="24" coveredconditionals="0" methods="16" coveredmethods="0"/>
|
|
927
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Content/SelectRole/index.js">
|
|
928
|
+
<metrics statements="20" coveredstatements="2" conditionals="4" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
929
|
+
<line num="13" count="2" type="stmt"/>
|
|
930
|
+
<line num="18" count="0" type="stmt"/>
|
|
931
|
+
<line num="20" count="0" type="stmt"/>
|
|
932
|
+
<line num="25" count="0" type="stmt"/>
|
|
933
|
+
<line num="26" count="0" type="stmt"/>
|
|
934
|
+
<line num="27" count="0" type="stmt"/>
|
|
935
|
+
<line num="28" count="0" type="stmt"/>
|
|
936
|
+
<line num="29" count="0" type="stmt"/>
|
|
937
|
+
<line num="32" count="0" type="stmt"/>
|
|
938
|
+
<line num="33" count="0" type="stmt"/>
|
|
939
|
+
<line num="34" count="0" type="stmt"/>
|
|
940
|
+
<line num="39" count="0" type="stmt"/>
|
|
941
|
+
<line num="41" count="0" type="stmt"/>
|
|
942
|
+
<line num="42" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
943
|
+
<line num="45" count="0" type="stmt"/>
|
|
944
|
+
<line num="48" count="0" type="stmt"/>
|
|
945
|
+
<line num="51" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
946
|
+
<line num="52" count="0" type="stmt"/>
|
|
947
|
+
<line num="56" count="0" type="stmt"/>
|
|
948
|
+
<line num="72" count="2" type="stmt"/>
|
|
949
|
+
</file>
|
|
950
|
+
<file name="utils.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Content/SelectRole/utils.js">
|
|
951
|
+
<metrics statements="45" coveredstatements="12" conditionals="20" coveredconditionals="0" methods="12" coveredmethods="0"/>
|
|
952
|
+
<line num="6" count="3" type="stmt"/>
|
|
953
|
+
<line num="7" count="0" type="stmt"/>
|
|
954
|
+
<line num="8" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
955
|
+
<line num="11" count="0" type="stmt"/>
|
|
956
|
+
<line num="19" count="3" type="stmt"/>
|
|
957
|
+
<line num="20" count="0" type="stmt"/>
|
|
958
|
+
<line num="27" count="0" type="stmt"/>
|
|
959
|
+
<line num="35" count="3" type="stmt"/>
|
|
960
|
+
<line num="36" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
961
|
+
<line num="37" count="0" type="stmt"/>
|
|
962
|
+
<line num="45" count="3" type="stmt"/>
|
|
963
|
+
<line num="46" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
964
|
+
<line num="47" count="0" type="stmt"/>
|
|
965
|
+
<line num="50" count="3" type="stmt"/>
|
|
966
|
+
<line num="51" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
967
|
+
<line num="52" count="0" type="stmt"/>
|
|
968
|
+
<line num="58" count="0" type="stmt"/>
|
|
969
|
+
<line num="66" count="3" type="stmt"/>
|
|
970
|
+
<line num="67" count="0" type="stmt"/>
|
|
971
|
+
<line num="68" count="0" type="stmt"/>
|
|
972
|
+
<line num="70" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
973
|
+
<line num="71" count="0" type="stmt"/>
|
|
974
|
+
<line num="73" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
975
|
+
<line num="74" count="0" type="stmt"/>
|
|
976
|
+
<line num="76" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
977
|
+
<line num="77" count="0" type="stmt"/>
|
|
978
|
+
<line num="79" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
979
|
+
<line num="80" count="0" type="stmt"/>
|
|
980
|
+
<line num="82" count="0" type="stmt"/>
|
|
981
|
+
<line num="90" count="3" type="stmt"/>
|
|
982
|
+
<line num="91" count="0" type="stmt"/>
|
|
983
|
+
<line num="92" count="0" type="stmt"/>
|
|
984
|
+
<line num="95" count="3" type="stmt"/>
|
|
985
|
+
<line num="107" count="3" type="stmt"/>
|
|
986
|
+
<line num="108" count="0" type="stmt"/>
|
|
987
|
+
<line num="109" count="0" type="stmt"/>
|
|
988
|
+
<line num="110" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
989
|
+
<line num="111" count="0" type="stmt"/>
|
|
990
|
+
<line num="118" count="3" type="stmt"/>
|
|
991
|
+
<line num="127" count="3" type="stmt"/>
|
|
992
|
+
<line num="128" count="0" type="stmt"/>
|
|
993
|
+
<line num="130" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
994
|
+
<line num="131" count="0" type="stmt"/>
|
|
995
|
+
<line num="139" count="3" type="stmt"/>
|
|
996
|
+
<line num="140" count="0" type="stmt"/>
|
|
997
|
+
</file>
|
|
998
|
+
</package>
|
|
616
999
|
<package name="react.components.SideNav.Details">
|
|
617
|
-
<metrics statements="
|
|
618
|
-
<file name="IndividualDetails.jsx" path="/Users/rodrigomunoz/
|
|
1000
|
+
<metrics statements="17" coveredstatements="4" conditionals="12" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
1001
|
+
<file name="IndividualDetails.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Details/IndividualDetails.jsx">
|
|
619
1002
|
<metrics statements="3" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
620
1003
|
<line num="4" count="2" type="stmt"/>
|
|
621
|
-
<line num="
|
|
622
|
-
<line num="
|
|
1004
|
+
<line num="5" count="0" type="stmt"/>
|
|
1005
|
+
<line num="13" count="2" type="stmt"/>
|
|
623
1006
|
</file>
|
|
624
|
-
<file name="PracticeDetails.jsx" path="/Users/rodrigomunoz/
|
|
625
|
-
<metrics statements="
|
|
1007
|
+
<file name="PracticeDetails.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Details/PracticeDetails.jsx">
|
|
1008
|
+
<metrics statements="14" coveredstatements="2" conditionals="12" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
626
1009
|
<line num="4" count="2" type="stmt"/>
|
|
627
|
-
<line num="
|
|
628
|
-
<line num="
|
|
629
|
-
<line num="
|
|
630
|
-
<line num="
|
|
631
|
-
<line num="
|
|
632
|
-
<line num="
|
|
633
|
-
<line num="
|
|
634
|
-
<line num="
|
|
635
|
-
<line num="21" count="0" type="
|
|
636
|
-
<line num="
|
|
637
|
-
<line num="
|
|
1010
|
+
<line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1011
|
+
<line num="14" count="0" type="stmt"/>
|
|
1012
|
+
<line num="15" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1013
|
+
<line num="16" count="0" type="stmt"/>
|
|
1014
|
+
<line num="17" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1015
|
+
<line num="18" count="0" type="stmt"/>
|
|
1016
|
+
<line num="19" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1017
|
+
<line num="20" count="0" type="stmt"/>
|
|
1018
|
+
<line num="21" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1019
|
+
<line num="22" count="0" type="stmt"/>
|
|
1020
|
+
<line num="24" count="0" type="stmt"/>
|
|
1021
|
+
<line num="28" count="0" type="stmt"/>
|
|
1022
|
+
<line num="36" count="2" type="stmt"/>
|
|
638
1023
|
</file>
|
|
639
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
1024
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Details/index.js">
|
|
640
1025
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
641
1026
|
</file>
|
|
642
1027
|
</package>
|
|
643
1028
|
<package name="react.components.SideNav.Links">
|
|
644
|
-
<metrics statements="
|
|
645
|
-
<file name="CmsSwitchLink.jsx" path="/Users/rodrigomunoz/
|
|
1029
|
+
<metrics statements="122" coveredstatements="19" conditionals="165" coveredconditionals="6" methods="33" coveredmethods="2"/>
|
|
1030
|
+
<file name="CmsSwitchLink.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/CmsSwitchLink.jsx">
|
|
646
1031
|
<metrics statements="4" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
647
1032
|
<line num="6" count="2" type="stmt"/>
|
|
648
1033
|
<line num="7" count="0" type="stmt"/>
|
|
649
1034
|
<line num="11" count="0" type="stmt"/>
|
|
650
1035
|
<line num="35" count="2" type="stmt"/>
|
|
651
1036
|
</file>
|
|
652
|
-
<file name="NavItemInline.jsx" path="/Users/rodrigomunoz/
|
|
1037
|
+
<file name="NavItemInline.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/NavItemInline.jsx">
|
|
653
1038
|
<metrics statements="8" coveredstatements="2" conditionals="14" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
654
1039
|
<line num="5" count="2" type="stmt"/>
|
|
655
1040
|
<line num="15" count="0" type="stmt"/>
|
|
@@ -660,74 +1045,22 @@
|
|
|
660
1045
|
<line num="22" count="0" type="stmt"/>
|
|
661
1046
|
<line num="43" count="2" type="stmt"/>
|
|
662
1047
|
</file>
|
|
663
|
-
<file name="NavLinkContainer.jsx" path="/Users/rodrigomunoz/
|
|
664
|
-
<metrics statements="
|
|
665
|
-
<line num="
|
|
1048
|
+
<file name="NavLinkContainer.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/NavLinkContainer.jsx">
|
|
1049
|
+
<metrics statements="10" coveredstatements="6" conditionals="6" coveredconditionals="1" methods="4" coveredmethods="1"/>
|
|
1050
|
+
<line num="4" count="2" type="stmt"/>
|
|
1051
|
+
<line num="5" count="1" type="stmt"/>
|
|
666
1052
|
<line num="7" count="1" type="stmt"/>
|
|
667
|
-
<line num="8" count="
|
|
668
|
-
<line num="14" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
669
|
-
<line num="15" count="0" type="stmt"/>
|
|
670
|
-
<line num="19" count="1" type="stmt"/>
|
|
671
|
-
<line num="20" count="1" type="stmt"/>
|
|
672
|
-
<line num="22" count="1" type="stmt"/>
|
|
673
|
-
<line num="26" count="6" type="stmt"/>
|
|
674
|
-
<line num="27" count="0" type="stmt"/>
|
|
675
|
-
<line num="37" count="2" type="stmt"/>
|
|
676
|
-
</file>
|
|
677
|
-
<file name="NavLinkDrawer.jsx" path="/Users/rodrigomunoz/Projects/qpp-style/react/components/SideNav/Links/NavLinkDrawer.jsx">
|
|
678
|
-
<metrics statements="39" coveredstatements="1" conditionals="69" coveredconditionals="0" methods="14" coveredmethods="0"/>
|
|
679
|
-
<line num="8" count="0" type="stmt"/>
|
|
1053
|
+
<line num="8" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
680
1054
|
<line num="9" count="0" type="stmt"/>
|
|
681
|
-
<line num="
|
|
682
|
-
<line num="
|
|
683
|
-
<line num="
|
|
684
|
-
<line num="
|
|
685
|
-
<line num="
|
|
686
|
-
<line num="22" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
687
|
-
<line num="23" count="0" type="stmt"/>
|
|
688
|
-
<line num="26" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
689
|
-
<line num="27" count="0" type="stmt"/>
|
|
690
|
-
<line num="32" count="0" type="stmt"/>
|
|
691
|
-
<line num="34" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
692
|
-
<line num="35" count="0" type="stmt"/>
|
|
693
|
-
<line num="36" count="0" type="stmt"/>
|
|
694
|
-
<line num="37" count="0" type="stmt"/>
|
|
695
|
-
<line num="40" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
696
|
-
<line num="41" count="0" type="stmt"/>
|
|
697
|
-
<line num="46" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
698
|
-
<line num="47" count="0" type="stmt"/>
|
|
699
|
-
<line num="50" count="0" type="stmt"/>
|
|
700
|
-
<line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
701
|
-
<line num="56" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
702
|
-
<line num="57" count="0" type="stmt"/>
|
|
703
|
-
<line num="60" count="0" type="stmt"/>
|
|
704
|
-
<line num="61" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
705
|
-
<line num="68" count="0" type="stmt"/>
|
|
706
|
-
<line num="69" count="0" type="stmt"/>
|
|
707
|
-
<line num="71" count="0" type="stmt"/>
|
|
708
|
-
<line num="74" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
709
|
-
<line num="75" count="0" type="stmt"/>
|
|
710
|
-
<line num="82" count="0" type="stmt"/>
|
|
711
|
-
<line num="94" count="0" type="stmt"/>
|
|
712
|
-
<line num="130" count="0" type="stmt"/>
|
|
713
|
-
<line num="131" count="0" type="stmt"/>
|
|
714
|
-
<line num="134" count="0" type="stmt"/>
|
|
715
|
-
<line num="135" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
716
|
-
<line num="137" count="0" type="stmt"/>
|
|
717
|
-
<line num="194" count="2" type="stmt"/>
|
|
1055
|
+
<line num="12" count="1" type="stmt"/>
|
|
1056
|
+
<line num="16" count="0" type="stmt"/>
|
|
1057
|
+
<line num="18" count="0" type="stmt"/>
|
|
1058
|
+
<line num="28" count="2" type="stmt"/>
|
|
1059
|
+
<line num="33" count="2" type="stmt"/>
|
|
718
1060
|
</file>
|
|
719
|
-
<file name="
|
|
720
|
-
<metrics statements="
|
|
721
|
-
<line num="
|
|
722
|
-
<line num="19" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
723
|
-
<line num="20" count="6" type="stmt"/>
|
|
724
|
-
<line num="21" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
725
|
-
<line num="22" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
726
|
-
<line num="23" count="6" type="stmt"/>
|
|
727
|
-
<line num="24" count="6" type="stmt"/>
|
|
728
|
-
<line num="25" count="6" type="stmt"/>
|
|
729
|
-
<line num="27" count="6" type="stmt"/>
|
|
730
|
-
<line num="28" count="0" type="cond" truecount="0" falsecount="5"/>
|
|
1061
|
+
<file name="NavLinkDrawer.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/NavLinkDrawer.jsx">
|
|
1062
|
+
<metrics statements="65" coveredstatements="2" conditionals="96" coveredconditionals="0" methods="20" coveredmethods="0"/>
|
|
1063
|
+
<line num="7" count="2" type="stmt"/>
|
|
731
1064
|
<line num="29" count="0" type="stmt"/>
|
|
732
1065
|
<line num="30" count="0" type="stmt"/>
|
|
733
1066
|
<line num="32" count="0" type="stmt"/>
|
|
@@ -735,21 +1068,98 @@
|
|
|
735
1068
|
<line num="34" count="0" type="stmt"/>
|
|
736
1069
|
<line num="35" count="0" type="stmt"/>
|
|
737
1070
|
<line num="36" count="0" type="stmt"/>
|
|
738
|
-
<line num="
|
|
739
|
-
<line num="
|
|
1071
|
+
<line num="39" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1072
|
+
<line num="40" count="0" type="stmt"/>
|
|
740
1073
|
<line num="43" count="0" type="stmt"/>
|
|
741
|
-
<line num="
|
|
742
|
-
<line num="45" count="0" type="stmt"/>
|
|
1074
|
+
<line num="46" count="0" type="stmt"/>
|
|
743
1075
|
<line num="47" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
744
1076
|
<line num="48" count="0" type="stmt"/>
|
|
745
|
-
<line num="
|
|
1077
|
+
<line num="52" count="0" type="stmt"/>
|
|
746
1078
|
<line num="53" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
747
1079
|
<line num="54" count="0" type="stmt"/>
|
|
748
|
-
<line num="
|
|
1080
|
+
<line num="56" count="0" type="stmt"/>
|
|
1081
|
+
<line num="59" count="0" type="stmt"/>
|
|
1082
|
+
<line num="60" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1083
|
+
<line num="61" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
749
1084
|
<line num="62" count="0" type="stmt"/>
|
|
750
|
-
<line num="
|
|
1085
|
+
<line num="64" count="0" type="stmt"/>
|
|
1086
|
+
<line num="66" count="0" type="stmt"/>
|
|
1087
|
+
<line num="70" count="0" type="stmt"/>
|
|
1088
|
+
<line num="71" count="0" type="stmt"/>
|
|
1089
|
+
<line num="73" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1090
|
+
<line num="74" count="0" type="stmt"/>
|
|
1091
|
+
<line num="77" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1092
|
+
<line num="78" count="0" type="stmt"/>
|
|
1093
|
+
<line num="81" count="0" type="stmt"/>
|
|
1094
|
+
<line num="85" count="0" type="stmt"/>
|
|
1095
|
+
<line num="89" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1096
|
+
<line num="91" count="0" type="stmt"/>
|
|
1097
|
+
<line num="92" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1098
|
+
<line num="93" count="0" type="stmt"/>
|
|
1099
|
+
<line num="105" count="0" type="stmt"/>
|
|
1100
|
+
<line num="106" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1101
|
+
<line num="109" count="0" type="stmt"/>
|
|
1102
|
+
<line num="110" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1103
|
+
<line num="113" count="0" type="stmt"/>
|
|
1104
|
+
<line num="114" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1105
|
+
<line num="117" count="0" type="stmt"/>
|
|
1106
|
+
<line num="118" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1107
|
+
<line num="121" count="0" type="stmt"/>
|
|
1108
|
+
<line num="122" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1109
|
+
<line num="125" count="0" type="stmt"/>
|
|
1110
|
+
<line num="126" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1111
|
+
<line num="129" count="0" type="stmt"/>
|
|
1112
|
+
<line num="130" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1113
|
+
<line num="133" count="0" type="stmt"/>
|
|
1114
|
+
<line num="134" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1115
|
+
<line num="137" count="0" type="stmt"/>
|
|
1116
|
+
<line num="138" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1117
|
+
<line num="139" count="0" type="stmt"/>
|
|
1118
|
+
<line num="141" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1119
|
+
<line num="142" count="0" type="stmt"/>
|
|
1120
|
+
<line num="148" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1121
|
+
<line num="149" count="0" type="stmt"/>
|
|
1122
|
+
<line num="152" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1123
|
+
<line num="153" count="0" type="stmt"/>
|
|
1124
|
+
<line num="160" count="0" type="stmt"/>
|
|
1125
|
+
<line num="172" count="0" type="stmt"/>
|
|
1126
|
+
<line num="197" count="0" type="stmt"/>
|
|
1127
|
+
<line num="253" count="2" type="stmt"/>
|
|
1128
|
+
</file>
|
|
1129
|
+
<file name="NavLinkInline.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/NavLinkInline.jsx">
|
|
1130
|
+
<metrics statements="30" coveredstatements="2" conditionals="39" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
1131
|
+
<line num="6" count="2" type="stmt"/>
|
|
1132
|
+
<line num="20" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1133
|
+
<line num="21" count="0" type="stmt"/>
|
|
1134
|
+
<line num="22" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1135
|
+
<line num="23" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1136
|
+
<line num="24" count="0" type="stmt"/>
|
|
1137
|
+
<line num="25" count="0" type="stmt"/>
|
|
1138
|
+
<line num="26" count="0" type="stmt"/>
|
|
1139
|
+
<line num="28" count="0" type="stmt"/>
|
|
1140
|
+
<line num="29" count="0" type="cond" truecount="0" falsecount="5"/>
|
|
1141
|
+
<line num="30" count="0" type="stmt"/>
|
|
1142
|
+
<line num="31" count="0" type="stmt"/>
|
|
1143
|
+
<line num="33" count="0" type="stmt"/>
|
|
1144
|
+
<line num="34" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1145
|
+
<line num="35" count="0" type="stmt"/>
|
|
1146
|
+
<line num="36" count="0" type="stmt"/>
|
|
1147
|
+
<line num="37" count="0" type="stmt"/>
|
|
1148
|
+
<line num="39" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1149
|
+
<line num="40" count="0" type="stmt"/>
|
|
1150
|
+
<line num="44" count="0" type="stmt"/>
|
|
1151
|
+
<line num="45" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1152
|
+
<line num="46" count="0" type="stmt"/>
|
|
1153
|
+
<line num="48" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1154
|
+
<line num="49" count="0" type="stmt"/>
|
|
1155
|
+
<line num="52" count="0" type="stmt"/>
|
|
1156
|
+
<line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1157
|
+
<line num="55" count="0" type="stmt"/>
|
|
1158
|
+
<line num="59" count="0" type="stmt"/>
|
|
1159
|
+
<line num="63" count="0" type="stmt"/>
|
|
1160
|
+
<line num="97" count="2" type="stmt"/>
|
|
751
1161
|
</file>
|
|
752
|
-
<file name="NavLinkToggle.jsx" path="/Users/rodrigomunoz/
|
|
1162
|
+
<file name="NavLinkToggle.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/NavLinkToggle.jsx">
|
|
753
1163
|
<metrics statements="5" coveredstatements="5" conditionals="10" coveredconditionals="5" methods="1" coveredmethods="1"/>
|
|
754
1164
|
<line num="5" count="2" type="stmt"/>
|
|
755
1165
|
<line num="6" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
@@ -757,239 +1167,275 @@
|
|
|
757
1167
|
<line num="9" count="1" type="stmt"/>
|
|
758
1168
|
<line num="27" count="2" type="stmt"/>
|
|
759
1169
|
</file>
|
|
760
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
1170
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/Links/index.js">
|
|
761
1171
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
762
1172
|
</file>
|
|
763
1173
|
</package>
|
|
764
1174
|
<package name="react.components.SideNav.UI">
|
|
765
|
-
<metrics statements="
|
|
766
|
-
<file name="SideNavUI.jsx" path="/Users/rodrigomunoz/
|
|
767
|
-
<metrics statements="
|
|
768
|
-
<line num="
|
|
769
|
-
<line num="20" count="1" type="stmt"/>
|
|
770
|
-
<line num="26" count="1" type="stmt"/>
|
|
771
|
-
<line num="29" count="1" type="stmt"/>
|
|
772
|
-
<line num="30" count="1" type="stmt"/>
|
|
773
|
-
<line num="31" count="1" type="stmt"/>
|
|
774
|
-
<line num="32" count="1" type="stmt"/>
|
|
1175
|
+
<metrics statements="42" coveredstatements="21" conditionals="40" coveredconditionals="4" methods="14" coveredmethods="5"/>
|
|
1176
|
+
<file name="SideNavUI.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/UI/SideNavUI.jsx">
|
|
1177
|
+
<metrics statements="42" coveredstatements="21" conditionals="40" coveredconditionals="4" methods="14" coveredmethods="5"/>
|
|
1178
|
+
<line num="20" count="2" type="stmt"/>
|
|
775
1179
|
<line num="33" count="1" type="stmt"/>
|
|
776
1180
|
<line num="34" count="1" type="stmt"/>
|
|
777
|
-
<line num="
|
|
778
|
-
<line num="
|
|
779
|
-
<line num="
|
|
780
|
-
<line num="
|
|
781
|
-
<line num="
|
|
782
|
-
<line num="
|
|
783
|
-
<line num="
|
|
784
|
-
<line num="
|
|
785
|
-
<line num="
|
|
786
|
-
<line num="
|
|
787
|
-
<line num="
|
|
788
|
-
<line num="
|
|
789
|
-
<line num="
|
|
790
|
-
<line num="
|
|
791
|
-
<line num="
|
|
1181
|
+
<line num="35" count="1" type="stmt"/>
|
|
1182
|
+
<line num="37" count="1" type="stmt"/>
|
|
1183
|
+
<line num="39" count="1" type="stmt"/>
|
|
1184
|
+
<line num="40" count="0" type="stmt"/>
|
|
1185
|
+
<line num="41" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1186
|
+
<line num="42" count="0" type="stmt"/>
|
|
1187
|
+
<line num="46" count="1" type="stmt"/>
|
|
1188
|
+
<line num="47" count="0" type="stmt"/>
|
|
1189
|
+
<line num="48" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1190
|
+
<line num="49" count="0" type="stmt"/>
|
|
1191
|
+
<line num="53" count="1" type="stmt"/>
|
|
1192
|
+
<line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1193
|
+
<line num="57" count="1" type="stmt"/>
|
|
1194
|
+
<line num="58" count="1" type="stmt"/>
|
|
1195
|
+
<line num="78" count="1" type="stmt"/>
|
|
792
1196
|
<line num="80" count="0" type="stmt"/>
|
|
793
1197
|
<line num="81" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
794
|
-
<line num="82" count="0" type="
|
|
795
|
-
<line num="
|
|
796
|
-
<line num="
|
|
797
|
-
<line num="
|
|
1198
|
+
<line num="82" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1199
|
+
<line num="84" count="0" type="stmt"/>
|
|
1200
|
+
<line num="85" count="0" type="stmt"/>
|
|
1201
|
+
<line num="86" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1202
|
+
<line num="89" count="0" type="stmt"/>
|
|
1203
|
+
<line num="90" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1204
|
+
<line num="93" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1205
|
+
<line num="94" count="0" type="stmt"/>
|
|
798
1206
|
<line num="95" count="0" type="stmt"/>
|
|
799
|
-
<line num="
|
|
800
|
-
<line num="
|
|
801
|
-
<line num="
|
|
802
|
-
<line num="
|
|
803
|
-
<line num="
|
|
804
|
-
<line num="
|
|
805
|
-
<line num="
|
|
806
|
-
<line num="
|
|
807
|
-
<line num="
|
|
808
|
-
<line num="
|
|
809
|
-
<line num="
|
|
810
|
-
<line num="
|
|
811
|
-
<line num="
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
<line num="176" count="0" type="stmt"/>
|
|
815
|
-
<line num="177" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
816
|
-
<line num="178" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
817
|
-
<line num="180" count="0" type="stmt"/>
|
|
818
|
-
<line num="181" count="0" type="cond" truecount="0" falsecount="11"/>
|
|
819
|
-
<line num="183" count="0" type="stmt"/>
|
|
820
|
-
<line num="189" count="0" type="stmt"/>
|
|
821
|
-
<line num="191" count="0" type="stmt"/>
|
|
822
|
-
<line num="205" count="0" type="stmt"/>
|
|
823
|
-
<line num="219" count="0" type="stmt"/>
|
|
824
|
-
<line num="235" count="0" type="stmt"/>
|
|
825
|
-
<line num="244" count="0" type="stmt"/>
|
|
826
|
-
<line num="261" count="0" type="stmt"/>
|
|
827
|
-
<line num="270" count="0" type="stmt"/>
|
|
828
|
-
<line num="280" count="0" type="stmt"/>
|
|
829
|
-
<line num="290" count="0" type="stmt"/>
|
|
830
|
-
<line num="306" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
831
|
-
<line num="307" count="0" type="stmt"/>
|
|
832
|
-
<line num="321" count="0" type="stmt"/>
|
|
833
|
-
<line num="326" count="1" type="stmt"/>
|
|
834
|
-
<line num="327" count="1" type="stmt"/>
|
|
835
|
-
<line num="328" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
836
|
-
<line num="335" count="1" type="stmt"/>
|
|
837
|
-
<line num="355" count="2" type="stmt"/>
|
|
838
|
-
<line num="378" count="2" type="stmt"/>
|
|
839
|
-
</file>
|
|
840
|
-
<file name="index.js" path="/Users/rodrigomunoz/Projects/qpp-style/react/components/SideNav/UI/index.js">
|
|
1207
|
+
<line num="230" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1208
|
+
<line num="231" count="0" type="stmt"/>
|
|
1209
|
+
<line num="243" count="0" type="stmt"/>
|
|
1210
|
+
<line num="247" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
1211
|
+
<line num="254" count="1" type="stmt"/>
|
|
1212
|
+
<line num="255" count="1" type="stmt"/>
|
|
1213
|
+
<line num="258" count="1" type="stmt"/>
|
|
1214
|
+
<line num="259" count="1" type="stmt"/>
|
|
1215
|
+
<line num="262" count="1" type="stmt"/>
|
|
1216
|
+
<line num="263" count="1" type="stmt"/>
|
|
1217
|
+
<line num="266" count="1" type="stmt"/>
|
|
1218
|
+
<line num="285" count="2" type="stmt"/>
|
|
1219
|
+
<line num="307" count="2" type="stmt"/>
|
|
1220
|
+
</file>
|
|
1221
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/SideNav/UI/index.js">
|
|
841
1222
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
842
1223
|
</file>
|
|
843
1224
|
</package>
|
|
844
1225
|
<package name="react.components.Tooltip">
|
|
845
1226
|
<metrics statements="37" coveredstatements="37" conditionals="19" coveredconditionals="19" methods="5" coveredmethods="5"/>
|
|
846
|
-
<file name="Tooltip.jsx" path="/Users/rodrigomunoz/
|
|
1227
|
+
<file name="Tooltip.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Tooltip/Tooltip.jsx">
|
|
847
1228
|
<metrics statements="16" coveredstatements="16" conditionals="7" coveredconditionals="7" methods="2" coveredmethods="2"/>
|
|
848
1229
|
<line num="9" count="4" type="stmt"/>
|
|
849
1230
|
<line num="10" count="4" type="stmt"/>
|
|
850
1231
|
<line num="19" count="4" type="stmt"/>
|
|
851
|
-
<line num="20" count="
|
|
852
|
-
<line num="21" count="
|
|
853
|
-
<line num="22" count="
|
|
854
|
-
<line num="23" count="
|
|
855
|
-
<line num="25" count="
|
|
856
|
-
<line num="30" count="
|
|
857
|
-
<line num="31" count="
|
|
858
|
-
<line num="32" count="
|
|
859
|
-
<line num="33" count="
|
|
860
|
-
<line num="42" count="
|
|
861
|
-
<line num="46" count="
|
|
1232
|
+
<line num="20" count="35" type="stmt"/>
|
|
1233
|
+
<line num="21" count="35" type="stmt"/>
|
|
1234
|
+
<line num="22" count="35" type="stmt"/>
|
|
1235
|
+
<line num="23" count="35" type="stmt"/>
|
|
1236
|
+
<line num="25" count="35" type="stmt"/>
|
|
1237
|
+
<line num="30" count="32" type="cond" truecount="5" falsecount="0"/>
|
|
1238
|
+
<line num="31" count="3" type="stmt"/>
|
|
1239
|
+
<line num="32" count="3" type="stmt"/>
|
|
1240
|
+
<line num="33" count="3" type="stmt"/>
|
|
1241
|
+
<line num="42" count="3" type="stmt"/>
|
|
1242
|
+
<line num="46" count="35" type="stmt"/>
|
|
862
1243
|
<line num="76" count="4" type="stmt"/>
|
|
863
1244
|
<line num="83" count="4" type="stmt"/>
|
|
864
1245
|
</file>
|
|
865
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
1246
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Tooltip/index.js">
|
|
866
1247
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
867
1248
|
</file>
|
|
868
|
-
<file name="position.js" path="/Users/rodrigomunoz/
|
|
1249
|
+
<file name="position.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/Tooltip/position.js">
|
|
869
1250
|
<metrics statements="21" coveredstatements="21" conditionals="12" coveredconditionals="12" methods="3" coveredmethods="3"/>
|
|
870
1251
|
<line num="1" count="4" type="stmt"/>
|
|
871
1252
|
<line num="2" count="4" type="stmt"/>
|
|
872
1253
|
<line num="3" count="4" type="stmt"/>
|
|
873
1254
|
<line num="5" count="4" type="stmt"/>
|
|
874
|
-
<line num="6" count="
|
|
875
|
-
<line num="
|
|
876
|
-
<line num="
|
|
877
|
-
<line num="
|
|
878
|
-
<line num="
|
|
879
|
-
<line num="
|
|
880
|
-
<line num="
|
|
881
|
-
<line num="
|
|
882
|
-
<line num="
|
|
883
|
-
<line num="
|
|
884
|
-
<line num="
|
|
885
|
-
<line num="
|
|
886
|
-
<line num="
|
|
887
|
-
<line num="
|
|
888
|
-
<line num="
|
|
889
|
-
<line num="
|
|
890
|
-
<line num="
|
|
1255
|
+
<line num="6" count="10" type="stmt"/>
|
|
1256
|
+
<line num="12" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
1257
|
+
<line num="18" count="4" type="stmt"/>
|
|
1258
|
+
<line num="19" count="6" type="cond" truecount="4" falsecount="0"/>
|
|
1259
|
+
<line num="20" count="1" type="stmt"/>
|
|
1260
|
+
<line num="23" count="5" type="stmt"/>
|
|
1261
|
+
<line num="24" count="5" type="stmt"/>
|
|
1262
|
+
<line num="25" count="5" type="stmt"/>
|
|
1263
|
+
<line num="26" count="5" type="stmt"/>
|
|
1264
|
+
<line num="28" count="5" type="stmt"/>
|
|
1265
|
+
<line num="30" count="5" type="stmt"/>
|
|
1266
|
+
<line num="48" count="4" type="stmt"/>
|
|
1267
|
+
<line num="49" count="5" type="stmt"/>
|
|
1268
|
+
<line num="50" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
1269
|
+
<line num="55" count="5" type="stmt"/>
|
|
1270
|
+
<line num="57" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
1271
|
+
<line num="61" count="5" type="stmt"/>
|
|
1272
|
+
</file>
|
|
1273
|
+
</package>
|
|
1274
|
+
<package name="react.components.hooks">
|
|
1275
|
+
<metrics statements="26" coveredstatements="13" conditionals="20" coveredconditionals="6" methods="7" coveredmethods="4"/>
|
|
1276
|
+
<file name="useGetConfig.js" path="/Users/rodrigomunoz/projects/qpp-style/react/components/hooks/useGetConfig.js">
|
|
1277
|
+
<metrics statements="26" coveredstatements="13" conditionals="20" coveredconditionals="6" methods="7" coveredmethods="4"/>
|
|
1278
|
+
<line num="10" count="3" type="stmt"/>
|
|
1279
|
+
<line num="17" count="2" type="stmt"/>
|
|
1280
|
+
<line num="19" count="2" type="cond" truecount="3" falsecount="1"/>
|
|
1281
|
+
<line num="20" count="0" type="stmt"/>
|
|
1282
|
+
<line num="23" count="2" type="stmt"/>
|
|
1283
|
+
<line num="24" count="2" type="stmt"/>
|
|
1284
|
+
<line num="25" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
1285
|
+
<line num="29" count="0" type="stmt"/>
|
|
1286
|
+
<line num="31" count="2" type="stmt"/>
|
|
1287
|
+
<line num="32" count="2" type="stmt"/>
|
|
1288
|
+
<line num="35" count="0" type="stmt"/>
|
|
1289
|
+
<line num="36" count="0" type="stmt"/>
|
|
1290
|
+
<line num="40" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1291
|
+
<line num="44" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1292
|
+
<line num="45" count="0" type="stmt"/>
|
|
1293
|
+
<line num="47" count="0" type="stmt"/>
|
|
1294
|
+
<line num="50" count="0" type="stmt"/>
|
|
1295
|
+
<line num="52" count="0" type="stmt"/>
|
|
1296
|
+
<line num="55" count="0" type="stmt"/>
|
|
1297
|
+
<line num="56" count="0" type="stmt"/>
|
|
1298
|
+
<line num="59" count="0" type="stmt"/>
|
|
1299
|
+
<line num="64" count="2" type="stmt"/>
|
|
1300
|
+
<line num="67" count="3" type="stmt"/>
|
|
1301
|
+
<line num="69" count="2" type="stmt"/>
|
|
1302
|
+
<line num="70" count="2" type="stmt"/>
|
|
1303
|
+
<line num="72" count="4" type="stmt"/>
|
|
891
1304
|
</file>
|
|
892
1305
|
</package>
|
|
893
1306
|
<package name="react.lib">
|
|
894
|
-
<metrics statements="
|
|
895
|
-
<file name="
|
|
896
|
-
<metrics statements="
|
|
897
|
-
<line num="
|
|
898
|
-
<line num="
|
|
899
|
-
<line num="
|
|
900
|
-
<line num="
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
<
|
|
904
|
-
<line num="
|
|
905
|
-
<line num="
|
|
906
|
-
<line num="
|
|
907
|
-
<line num="
|
|
908
|
-
<line num="
|
|
909
|
-
<line num="
|
|
910
|
-
<line num="
|
|
911
|
-
<line num="
|
|
912
|
-
<line num="
|
|
913
|
-
<line num="
|
|
914
|
-
<line num="
|
|
915
|
-
<line num="
|
|
916
|
-
<line num="
|
|
917
|
-
<line num="
|
|
918
|
-
<line num="
|
|
919
|
-
<line num="
|
|
920
|
-
<line num="
|
|
921
|
-
<line num="
|
|
922
|
-
<line num="
|
|
923
|
-
<line num="
|
|
924
|
-
<line num="
|
|
925
|
-
<line num="
|
|
926
|
-
<line num="
|
|
927
|
-
<line num="
|
|
928
|
-
<line num="
|
|
1307
|
+
<metrics statements="89" coveredstatements="49" conditionals="0" coveredconditionals="0" methods="43" coveredmethods="3"/>
|
|
1308
|
+
<file name="Chevron.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/lib/Chevron.jsx">
|
|
1309
|
+
<metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1310
|
+
<line num="4" count="3" type="stmt"/>
|
|
1311
|
+
<line num="5" count="3" type="stmt"/>
|
|
1312
|
+
<line num="26" count="3" type="stmt"/>
|
|
1313
|
+
<line num="30" count="3" type="stmt"/>
|
|
1314
|
+
</file>
|
|
1315
|
+
<file name="SvgComponents.jsx" path="/Users/rodrigomunoz/projects/qpp-style/react/lib/SvgComponents.jsx">
|
|
1316
|
+
<metrics statements="85" coveredstatements="45" conditionals="0" coveredconditionals="0" methods="42" coveredmethods="2"/>
|
|
1317
|
+
<line num="4" count="4" type="stmt"/>
|
|
1318
|
+
<line num="5" count="0" type="stmt"/>
|
|
1319
|
+
<line num="16" count="4" type="stmt"/>
|
|
1320
|
+
<line num="17" count="0" type="stmt"/>
|
|
1321
|
+
<line num="32" count="4" type="stmt"/>
|
|
1322
|
+
<line num="33" count="0" type="stmt"/>
|
|
1323
|
+
<line num="39" count="4" type="stmt"/>
|
|
1324
|
+
<line num="40" count="0" type="stmt"/>
|
|
1325
|
+
<line num="54" count="4" type="stmt"/>
|
|
1326
|
+
<line num="55" count="0" type="stmt"/>
|
|
1327
|
+
<line num="73" count="4" type="stmt"/>
|
|
1328
|
+
<line num="74" count="0" type="stmt"/>
|
|
1329
|
+
<line num="79" count="4" type="stmt"/>
|
|
1330
|
+
<line num="80" count="0" type="stmt"/>
|
|
1331
|
+
<line num="88" count="4" type="stmt"/>
|
|
1332
|
+
<line num="89" count="0" type="stmt"/>
|
|
1333
|
+
<line num="96" count="4" type="stmt"/>
|
|
1334
|
+
<line num="97" count="0" type="stmt"/>
|
|
1335
|
+
<line num="107" count="4" type="stmt"/>
|
|
1336
|
+
<line num="108" count="0" type="stmt"/>
|
|
1337
|
+
<line num="123" count="4" type="stmt"/>
|
|
1338
|
+
<line num="124" count="0" type="stmt"/>
|
|
1339
|
+
<line num="156" count="4" type="stmt"/>
|
|
1340
|
+
<line num="157" count="0" type="stmt"/>
|
|
1341
|
+
<line num="164" count="4" type="stmt"/>
|
|
1342
|
+
<line num="165" count="0" type="stmt"/>
|
|
1343
|
+
<line num="183" count="4" type="stmt"/>
|
|
1344
|
+
<line num="184" count="0" type="stmt"/>
|
|
1345
|
+
<line num="199" count="4" type="stmt"/>
|
|
1346
|
+
<line num="200" count="0" type="stmt"/>
|
|
1347
|
+
<line num="225" count="4" type="stmt"/>
|
|
1348
|
+
<line num="226" count="0" type="stmt"/>
|
|
1349
|
+
<line num="243" count="4" type="stmt"/>
|
|
1350
|
+
<line num="244" count="0" type="stmt"/>
|
|
1351
|
+
<line num="255" count="4" type="stmt"/>
|
|
1352
|
+
<line num="256" count="0" type="stmt"/>
|
|
1353
|
+
<line num="262" count="4" type="stmt"/>
|
|
1354
|
+
<line num="263" count="0" type="stmt"/>
|
|
929
1355
|
<line num="270" count="4" type="stmt"/>
|
|
930
|
-
<line num="271" count="
|
|
931
|
-
<line num="
|
|
932
|
-
<line num="
|
|
933
|
-
<line num="290" count="4" type="stmt"/>
|
|
934
|
-
<line num="291" count="0" type="stmt"/>
|
|
1356
|
+
<line num="271" count="0" type="stmt"/>
|
|
1357
|
+
<line num="291" count="4" type="stmt"/>
|
|
1358
|
+
<line num="292" count="0" type="stmt"/>
|
|
935
1359
|
<line num="311" count="4" type="stmt"/>
|
|
936
1360
|
<line num="312" count="0" type="stmt"/>
|
|
937
|
-
<line num="
|
|
938
|
-
<line num="
|
|
939
|
-
<line num="
|
|
940
|
-
<line num="
|
|
941
|
-
<line num="
|
|
942
|
-
<line num="
|
|
943
|
-
<line num="
|
|
944
|
-
<line num="
|
|
945
|
-
<line num="
|
|
946
|
-
<line num="
|
|
947
|
-
<line num="
|
|
948
|
-
<line num="
|
|
1361
|
+
<line num="320" count="4" type="stmt"/>
|
|
1362
|
+
<line num="321" count="0" type="stmt"/>
|
|
1363
|
+
<line num="329" count="4" type="stmt"/>
|
|
1364
|
+
<line num="330" count="0" type="stmt"/>
|
|
1365
|
+
<line num="338" count="4" type="stmt"/>
|
|
1366
|
+
<line num="339" count="0" type="stmt"/>
|
|
1367
|
+
<line num="356" count="4" type="stmt"/>
|
|
1368
|
+
<line num="357" count="0" type="stmt"/>
|
|
1369
|
+
<line num="368" count="4" type="stmt"/>
|
|
1370
|
+
<line num="369" count="0" type="stmt"/>
|
|
1371
|
+
<line num="390" count="4" type="stmt"/>
|
|
1372
|
+
<line num="391" count="1" type="stmt"/>
|
|
1373
|
+
<line num="400" count="4" type="stmt"/>
|
|
1374
|
+
<line num="401" count="0" type="stmt"/>
|
|
949
1375
|
<line num="410" count="4" type="stmt"/>
|
|
950
|
-
<line num="411" count="
|
|
951
|
-
<line num="
|
|
952
|
-
<line num="
|
|
1376
|
+
<line num="411" count="0" type="stmt"/>
|
|
1377
|
+
<line num="418" count="4" type="stmt"/>
|
|
1378
|
+
<line num="419" count="11" type="stmt"/>
|
|
953
1379
|
<line num="430" count="4" type="stmt"/>
|
|
954
|
-
<line num="431" count="
|
|
955
|
-
<line num="
|
|
956
|
-
<line num="
|
|
957
|
-
<line num="
|
|
958
|
-
<line num="
|
|
959
|
-
<line num="
|
|
960
|
-
<line num="
|
|
961
|
-
<line num="
|
|
962
|
-
<line num="
|
|
963
|
-
<line num="
|
|
964
|
-
<line num="
|
|
965
|
-
<line num="
|
|
966
|
-
<line num="
|
|
967
|
-
<line num="
|
|
968
|
-
<line num="
|
|
1380
|
+
<line num="431" count="0" type="stmt"/>
|
|
1381
|
+
<line num="436" count="4" type="stmt"/>
|
|
1382
|
+
<line num="437" count="0" type="stmt"/>
|
|
1383
|
+
<line num="453" count="4" type="stmt"/>
|
|
1384
|
+
<line num="454" count="0" type="stmt"/>
|
|
1385
|
+
<line num="472" count="4" type="stmt"/>
|
|
1386
|
+
<line num="473" count="0" type="stmt"/>
|
|
1387
|
+
<line num="493" count="4" type="stmt"/>
|
|
1388
|
+
<line num="494" count="0" type="stmt"/>
|
|
1389
|
+
<line num="514" count="4" type="stmt"/>
|
|
1390
|
+
<line num="515" count="0" type="stmt"/>
|
|
1391
|
+
<line num="527" count="4" type="stmt"/>
|
|
1392
|
+
<line num="528" count="0" type="stmt"/>
|
|
1393
|
+
<line num="539" count="4" type="stmt"/>
|
|
1394
|
+
<line num="540" count="0" type="stmt"/>
|
|
969
1395
|
<line num="549" count="4" type="stmt"/>
|
|
970
1396
|
<line num="550" count="0" type="stmt"/>
|
|
1397
|
+
<line num="567" count="4" type="stmt"/>
|
|
1398
|
+
<line num="571" count="4" type="stmt"/>
|
|
1399
|
+
<line num="572" count="0" type="stmt"/>
|
|
1400
|
+
<line num="579" count="4" type="stmt"/>
|
|
1401
|
+
<line num="580" count="0" type="stmt"/>
|
|
971
1402
|
</file>
|
|
972
1403
|
</package>
|
|
973
1404
|
<package name="react.session">
|
|
974
|
-
<metrics statements="
|
|
975
|
-
<file name="index.js" path="/Users/rodrigomunoz/
|
|
1405
|
+
<metrics statements="48" coveredstatements="37" conditionals="25" coveredconditionals="11" methods="14" coveredmethods="10"/>
|
|
1406
|
+
<file name="index.js" path="/Users/rodrigomunoz/projects/qpp-style/react/session/index.js">
|
|
976
1407
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
977
1408
|
</file>
|
|
978
|
-
<file name="logout.js" path="/Users/rodrigomunoz/
|
|
979
|
-
<metrics statements="
|
|
980
|
-
<line num="
|
|
981
|
-
<line num="
|
|
982
|
-
<line num="
|
|
983
|
-
<line num="
|
|
984
|
-
<line num="
|
|
985
|
-
<line num="16" count="
|
|
986
|
-
<line num="
|
|
987
|
-
<line num="
|
|
988
|
-
<line num="
|
|
989
|
-
<line num="
|
|
990
|
-
<line num="
|
|
1409
|
+
<file name="logout.js" path="/Users/rodrigomunoz/projects/qpp-style/react/session/logout.js">
|
|
1410
|
+
<metrics statements="26" coveredstatements="16" conditionals="12" coveredconditionals="3" methods="7" coveredmethods="4"/>
|
|
1411
|
+
<line num="4" count="4" type="stmt"/>
|
|
1412
|
+
<line num="5" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
1413
|
+
<line num="6" count="0" type="stmt"/>
|
|
1414
|
+
<line num="10" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
1415
|
+
<line num="11" count="0" type="stmt"/>
|
|
1416
|
+
<line num="16" count="4" type="stmt"/>
|
|
1417
|
+
<line num="17" count="0" type="stmt"/>
|
|
1418
|
+
<line num="19" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1419
|
+
<line num="20" count="0" type="stmt"/>
|
|
1420
|
+
<line num="24" count="4" type="stmt"/>
|
|
1421
|
+
<line num="25" count="0" type="stmt"/>
|
|
1422
|
+
<line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1423
|
+
<line num="29" count="0" type="stmt"/>
|
|
1424
|
+
<line num="40" count="4" type="stmt"/>
|
|
1425
|
+
<line num="41" count="5" type="stmt"/>
|
|
1426
|
+
<line num="42" count="5" type="stmt"/>
|
|
1427
|
+
<line num="44" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
1428
|
+
<line num="45" count="5" type="stmt"/>
|
|
1429
|
+
<line num="47" count="1" type="stmt"/>
|
|
1430
|
+
<line num="48" count="1" type="stmt"/>
|
|
1431
|
+
<line num="51" count="5" type="stmt"/>
|
|
1432
|
+
<line num="53" count="2" type="stmt"/>
|
|
1433
|
+
<line num="54" count="2" type="stmt"/>
|
|
1434
|
+
<line num="57" count="5" type="stmt"/>
|
|
1435
|
+
<line num="67" count="0" type="stmt"/>
|
|
1436
|
+
<line num="70" count="0" type="stmt"/>
|
|
991
1437
|
</file>
|
|
992
|
-
<file name="refresh.js" path="/Users/rodrigomunoz/
|
|
1438
|
+
<file name="refresh.js" path="/Users/rodrigomunoz/projects/qpp-style/react/session/refresh.js">
|
|
993
1439
|
<metrics statements="13" coveredstatements="12" conditionals="7" coveredconditionals="3" methods="4" coveredmethods="3"/>
|
|
994
1440
|
<line num="13" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
995
1441
|
<line num="14" count="3" type="stmt"/>
|
|
@@ -1005,7 +1451,7 @@
|
|
|
1005
1451
|
<line num="41" count="3" type="stmt"/>
|
|
1006
1452
|
<line num="44" count="0" type="stmt"/>
|
|
1007
1453
|
</file>
|
|
1008
|
-
<file name="ttl.js" path="/Users/rodrigomunoz/
|
|
1454
|
+
<file name="ttl.js" path="/Users/rodrigomunoz/projects/qpp-style/react/session/ttl.js">
|
|
1009
1455
|
<metrics statements="9" coveredstatements="9" conditionals="6" coveredconditionals="5" methods="3" coveredmethods="3"/>
|
|
1010
1456
|
<line num="3" count="4" type="stmt"/>
|
|
1011
1457
|
<line num="4" count="79" type="stmt"/>
|