qpp-style 0.0.9 → 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/index.js +4 -4
- package/components/Button/index.js +17 -6
- 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 +49 -75
- package/components/Header/HeaderContainer.jsx +46 -34
- package/components/Header/HeaderLogo.jsx +40 -17
- package/components/Header/HeaderMenuButton.js +38 -12
- package/components/Header/HeaderMenuItem.jsx +204 -64
- package/components/Header/HeaderMenuLink.js +46 -10
- package/components/Header/HeaderMenuSignOutButton.js +46 -10
- package/components/Header/HeaderMobileButton.js +15 -6
- package/components/Header/HeaderUI.jsx +118 -117
- package/components/Header/HelpIcon.jsx +7 -5
- package/components/Header/ImpersonatorBanner.jsx +81 -0
- package/components/Header/header.js +2 -0
- package/components/Header/hooks.js +53 -1
- 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/Modal.jsx +53 -40
- package/components/Modal/index.jsx +11 -11
- 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 +9 -2
- package/components/SideNav/Chart/ScoreChart.jsx +1 -1
- 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 +145 -255
- package/components/SideNav/Content/LevelTwoContent.jsx +12 -10
- 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 +100 -17
- package/components/SideNav/Links/NavLinkInline.jsx +7 -2
- package/components/SideNav/SideNav.md +28 -27
- package/components/SideNav/UI/SideNavUI.jsx +122 -129
- 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 +103 -9
- package/coverage/clover.xml +1465 -41
- package/coverage/coverage-final.json +72 -1
- 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/{SideNav/Links/NavLinkContainer.jsx.html → Header/HeaderLogo.jsx.html} +78 -67
- package/coverage/lcov-report/components/{SideNav/Links/NavItemInline.jsx.html → Header/HeaderMenuButton.js.html} +71 -78
- package/coverage/lcov-report/components/{SideNav/Links/NavLinkDrawer.jsx.html → Header/HeaderMenuItem.jsx.html} +291 -268
- 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/{SideNav/Links/NavLinkToggle.jsx.html → Header/HeaderMobileButton.js.html} +64 -47
- 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/{HeaderUI.jsx.html → components/Modal/Modal.jsx.html} +169 -257
- 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 +401 -21
- 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 +67 -86
- 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} +102 -154
- package/coverage/lcov-report/react/components/Error/Collapsible.jsx.html +26 -21
- package/coverage/lcov-report/react/components/Error/ErrorUI.jsx.html +11 -6
- package/coverage/lcov-report/react/components/Error/error.js.html +8 -3
- package/coverage/lcov-report/react/components/Error/index.html +11 -6
- package/coverage/lcov-report/react/components/Footer/FooterUI.jsx.html +196 -194
- package/coverage/lcov-report/react/components/Footer/LegacyFooterUI.jsx.html +9 -4
- 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 -37
- 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 +81 -154
- package/coverage/lcov-report/react/components/Header/HeaderCancel.jsx.html +15 -10
- package/coverage/lcov-report/react/components/Header/HeaderContainer.jsx.html +91 -50
- package/coverage/lcov-report/react/components/Header/HeaderLogo.jsx.html +105 -31
- package/coverage/lcov-report/react/components/Header/HeaderMenuButton.js.html +109 -26
- package/coverage/lcov-report/react/components/Header/HeaderMenuItem.jsx.html +510 -85
- package/coverage/lcov-report/react/components/Header/HeaderMenuLink.js.html +137 -24
- package/coverage/lcov-report/react/components/Header/HeaderMenuSignOutButton.js.html +134 -21
- package/coverage/lcov-report/react/components/Header/HeaderMobileButton.js.html +56 -24
- package/coverage/lcov-report/react/components/Header/HeaderUI.jsx.html +172 -179
- package/coverage/lcov-report/react/components/Header/HelpIcon.jsx.html +30 -19
- package/coverage/lcov-report/react/components/Header/ImpersonatorBanner.jsx.html +331 -0
- package/coverage/lcov-report/react/components/Header/NavigationButtonIcon.jsx.html +9 -4
- package/coverage/lcov-report/react/components/Header/header.js.html +15 -4
- package/coverage/lcov-report/react/components/Header/hooks.js.html +187 -26
- package/coverage/lcov-report/react/components/Header/index.html +157 -122
- 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 +12 -7
- package/coverage/lcov-report/react/components/{Tabs/tabs.js.html → Infotip/InfotipContent.jsx.html} +83 -48
- package/coverage/lcov-report/react/components/Infotip/InfotipIcon.jsx.html +12 -7
- 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/{components/SideNav/Links/CmsSwitchLink.jsx.html → react/components/NotificationBanner/CollapsedView.js.html} +52 -50
- 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 +56 -21
- 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 +12 -7
- 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 +80 -51
- package/coverage/lcov-report/react/components/SideNav/AnimationGroup/AnimationGroup.jsx.html +38 -12
- package/coverage/lcov-report/react/components/SideNav/AnimationGroup/index.html +18 -13
- package/coverage/lcov-report/react/components/SideNav/Chart/ScoreChart.jsx.html +67 -56
- package/coverage/lcov-report/react/components/SideNav/Chart/index.html +26 -21
- package/coverage/lcov-report/react/components/SideNav/Chart/index.js.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Content/LevelOneContent.jsx.html +189 -514
- package/coverage/lcov-report/react/components/SideNav/Content/LevelTwoContent.jsx.html +28 -17
- 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 +10 -5
- package/coverage/lcov-report/react/components/SideNav/Details/PracticeDetails.jsx.html +26 -9
- 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 +54 -64
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkDrawer.jsx.html +281 -27
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkInline.jsx.html +66 -46
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkToggle.jsx.html +8 -3
- 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 +165 -181
- 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 +967 -26
- 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 +20 -15
- 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 +22 -17
- 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 +221 -132
- package/coverage/lcov-report/react/lib/index.html +32 -27
- package/coverage/lcov-report/react/lib/svg-definitions.svg.html +8 -3
- 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 +122 -18
- package/coverage/lcov-report/react/session/refresh.js.html +12 -7
- package/coverage/lcov-report/react/session/ttl.js.html +9 -4
- 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 +3189 -46
- 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 +139 -132
- package/lib/Chevron.jsx +32 -0
- package/lib/SvgComponents.jsx +197 -49
- package/package.json +60 -78
- 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/_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 +1 -6
- 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 +77 -43
- package/styles/qppds/base/index.scss +3 -6
- package/styles/qppds/components/_alert.scss +101 -0
- package/styles/qppds/components/_breadcrumbs.scss +42 -10
- package/styles/qppds/components/_button.scss +38 -12
- 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 +5 -0
- package/styles/qppds/components/_footer.scss +606 -0
- package/styles/qppds/components/_gov-banner.scss +344 -0
- package/styles/{components → qppds/components}/_header.scss +460 -24
- package/styles/qppds/components/_link.scss +32 -9
- package/styles/qppds/components/_modal.scss +61 -21
- 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 +18 -0
- package/styles/{components → qppds/components}/sidebar/_links.scss +48 -1
- package/styles/qppds/components/sidebar/_select-role-dropdown.scss +21 -0
- package/styles/{components → qppds/components}/sidebar/_sidebar-animation.scss +4 -0
- package/styles/qppds/components/sidebar/_sidebar.scss +146 -0
- package/styles/qppds/settings/_functions.scss +3 -1
- package/styles/qppds/settings/mixins/_borders.scss +6 -0
- package/styles/qppds/settings/mixins/_focus.scss +7 -1
- package/styles/qppds/settings/mixins/_icons.scss +39 -4
- package/styles/qppds/settings/mixins/_index.scss +3 -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 +24 -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/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 +32 -40
- package/test/components/Infotip.test.js +18 -12
- package/test/components/SessionDialogUI.test.js +55 -70
- package/test-setup.js +0 -8
- package/webpack.config.js +29 -39
- package/webpack.config.react.js +7 -18
- package/.storybook/.babelrc +0 -4
- package/.storybook/main.js +0 -88
- package/.storybook/preview-head.html +0 -9
- package/.storybook/preview.js +0 -5
- package/Session.vim +0 -83
- package/components/Accordion/Accordion.stories.js +0 -20
- package/components/Breadcrumb/Breadcrumb.stories.js +0 -58
- package/components/Button/Button.stories.js +0 -125
- package/components/Footer/Footer.stories.js +0 -20
- 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 -50
- package/components/Modal/Modal.stories.js +0 -159
- package/components/NotificationBanner/NotificationBanner.stories.js +0 -22
- package/components/NotificationBanner/NotificationBannerUI.jsx +0 -282
- package/components/SideNav/SideNav.stories.js +0 -397
- 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 -80
- 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/Footer/LegacyFooterUI.jsx.html +0 -668
- 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_backup.scss +0 -574
- 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/test/components/__snapshots__/HeaderUI.test.js.snap +0 -3
- /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/styles/{components → qppds/components}/sidebar/project-specific/_wi.scss +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><title>icon-dot-gov</title><path fill="#2378C3" fill-rule="evenodd" d="M32 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32C14.327 64 0 49.673 0 32 0 14.327 14.327 0 32 0zm0 1.208C14.994 1.208 1.208 14.994 1.208 32S14.994 62.792 32 62.792 62.792 49.006 62.792 32 49.006 1.208 32 1.208zm10.59 38.858a.857.857 0 0 1 .882.822v1.642H18.886v-1.642a.857.857 0 0 1 .882-.822H42.59zM25.443 27.774v9.829h1.642v-9.83h3.273v9.83H32v-9.83h3.272v9.83h1.643v-9.83h3.272v9.83h.76a.857.857 0 0 1 .882.821v.821h-21.3v-.809a.857.857 0 0 1 .88-.82h.762v-9.842h3.272zm5.736-8.188l12.293 4.915v1.642h-1.63a.857.857 0 0 1-.882.822H21.41a.857.857 0 0 1-.882-.822h-1.642v-1.642l12.293-4.915z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><title>icon-https</title><path fill="#719F2A" fill-rule="evenodd" d="M32 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32C14.327 64 0 49.673 0 32 0 14.327 14.327 0 32 0zm0 1.208C14.994 1.208 1.208 14.994 1.208 32S14.994 62.792 32 62.792 62.792 49.006 62.792 32 49.006 1.208 32 1.208zm0 18.886a7.245 7.245 0 0 1 7.245 7.245v3.103h.52c.86 0 1.557.698 1.557 1.558v9.322c0 .86-.697 1.558-1.557 1.558h-15.53c-.86 0-1.557-.697-1.557-1.558V32c0-.86.697-1.558 1.557-1.558h.52V27.34A7.245 7.245 0 0 1 32 20.094zm0 3.103a4.142 4.142 0 0 0-4.142 4.142v3.103h8.284V27.34A4.142 4.142 0 0 0 32 23.197z"/></svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4
|
+
<path d="M0.292893219,0.292893219 C0.683417511,-0.0976310729 1.31658249,-0.0976310729 1.70710678,0.292893219 L1.70710678,0.292893219 L8,6.585 L14.2928932,0.292893219 C14.6834175,-0.0976310729 15.3165825,-0.0976310729 15.7071068,0.292893219 C16.0675907,0.65337718 16.0953203,1.22060824 15.7902954,1.61289944 L15.7071068,1.70710678 L9.415,8 L15.7071068,14.2928932 L15.7902954,14.3871006 C16.0953203,14.7793918 16.0675907,15.3466228 15.7071068,15.7071068 C15.3165825,16.0976311 14.6834175,16.0976311 14.2928932,15.7071068 L14.2928932,15.7071068 L8,9.415 L1.70710678,15.7071068 C1.31658249,16.0976311 0.683417511,16.0976311 0.292893219,15.7071068 C-0.0675907428,15.3466228 -0.0953202783,14.7793918 0.209704612,14.3871006 L0.292893219,14.2928932 L6.585,8 L0.292893219,1.70710678 L0.209704612,1.61289944 C-0.0953202783,1.22060824 -0.0675907428,0.65337718 0.292893219,0.292893219 Z" fill="#242424" fill-rule="nonzero"></path>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M4.875 1.894v8.238m3.561 4.048H1.075m6.023-5.733L4.85 10.694 2.413 8.447" fill-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M.307 1.701A.981.981 0 0 1 .279.303 1.008 1.008 0 0 1 1.693.276l6 5.71a.981.981 0 0 1-.026 1.45l-6 5.312a1.008 1.008 0 0 1-1.412-.077.981.981 0 0 1 .078-1.397L5.53 6.672.307 1.702z"/></svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px">
|
|
2
|
+
<path d="M0 0h24v24H0V0z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M12.167 8.8H8v4h4.167v-4zM11.333 0v1.6H4.667V0H3v1.6h-.833c-.925 0-1.659.72-1.659 1.6L.5 14.4c0 .88.742 1.6 1.667 1.6h11.666c.917 0 1.667-.72 1.667-1.6V3.2c0-.88-.75-1.6-1.667-1.6H13V0h-1.667zm2.5 14.4H2.167V5.6h11.666v8.8z"/></svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(-2.000000, -4.000000)">
|
|
3
|
+
<polygon id="Path-3"
|
|
4
|
+
points="16.0800788 4 18 5.98237353 8.29796681 16 2 9.49716932 3.91992124 7.51479579 8.29796681 12.0352529">
|
|
5
|
+
</polygon>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Icon/Navigation/Expand More</title>
|
|
4
|
+
<g id="Icon/Navigation/Expand-More" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="expand_more">
|
|
6
|
+
<polygon id="Path" points="0 0 24 0 24 24 0 24"></polygon>
|
|
7
|
+
<polygon id="Path" fill="currentColor" fill-rule="nonzero"
|
|
8
|
+
points="16.59 8.59 12 13.17 7.41 8.59 6 10 12 16 18 10"></polygon>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>Icon/Navigation/Chevron Left</title>
|
|
5
|
+
<g id="Icon/Navigation/Chevron-Left" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
6
|
+
<g id="chevron_left">
|
|
7
|
+
<polygon id="Path" points="0 0 24 0 24 24 0 24"></polygon>
|
|
8
|
+
<polygon id="Path" fill="currentColor" fill-rule="nonzero"
|
|
9
|
+
points="15.41 7.41 14 6 8 12 14 18 15.41 16.59 10.83 12"></polygon>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>Icon/Navigation/Chevron Right</title>
|
|
5
|
+
<g id="Icon/Navigation/Chevron-Right" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
6
|
+
<g id="chevron_right">
|
|
7
|
+
<polygon id="Path" points="0 0 24 0 24 24 0 24"></polygon>
|
|
8
|
+
<polygon id="Path" fill="currentColor" fill-rule="evenodd"
|
|
9
|
+
points="10 6 8.59 7.41 13.17 12 8.59 16.59 10 18 16 12"></polygon>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>Icon/Navigation/Expand Less</title>
|
|
5
|
+
<g id="Icon/Navigation/Expand-Less" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
6
|
+
<g id="expand_less">
|
|
7
|
+
<polygon id="Path" points="0 0 24 0 24 24 0 24"></polygon>
|
|
8
|
+
<polygon id="Path" fill="currentColor" fill-rule="nonzero"
|
|
9
|
+
points="12 8 6 14 7.41 15.41 12 10.83 16.59 15.41 18 14"></polygon>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24px" height="27px" viewBox="0 0 24 27" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>icon_clipboard</title><g id="matchup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Left-nav" transform="translate(-367.000000, -98.000000)" fill="currentColor" fill-rule="nonzero"><g id="icon_clipboard" transform="translate(367.000000, 98.000000)"><path d="M21.17,3 L16.49,3 L14.28,3 C14.32,2.82 14.36,2.64 14.36,2.45 C14.36,1.21 13.35,0.2 12.11,0.2 C10.87,0.2 9.86,1.21 9.86,2.45 C9.86,2.64 9.89,2.82 9.94,3 L7.72,3 L3.04,3 C1.7,3 0.61,4.09 0.61,5.44 L0.61,24.57 C0.61,25.91 1.7,27 3.04,27 L21.17,27 C22.51,27 23.61,25.91 23.61,24.56 L23.61,5.44 C23.61,4.09 22.51,3 21.17,3 Z M12.11,1.2 C12.8,1.2 13.36,1.76 13.36,2.45 C13.36,2.68 13.28,2.88 13.18,3.06 C13.1,3.19 13,3.31 12.88,3.41 C12.82,3.46 12.75,3.51 12.68,3.55 C12.63,3.57 12.59,3.6 12.54,3.62 C12.4,3.66 12.26,3.7 12.11,3.7 C11.96,3.7 11.82,3.66 11.69,3.61 C11.64,3.59 11.6,3.57 11.55,3.54 C11.48,3.5 11.41,3.45 11.35,3.4 C11.22,3.3 11.12,3.17 11.04,3.03 C10.94,2.85 10.87,2.66 10.87,2.44 C10.86,1.76 11.42,1.2 12.11,1.2 Z M22.61,24.56 C22.61,25.35 21.97,26 21.17,26 L3.04,26 C2.25,26 1.6,25.36 1.6,24.56 L1.6,5.44 C1.61,4.64 2.25,4 3.04,4 L7.72,4 L7.72,4.9 C7.72,5.51 8.21,6 8.82,6 L15.4,6 C16.01,6 16.5,5.51 16.5,4.9 L16.5,4 L21.18,4 C21.97,4 22.62,4.64 22.62,5.44 L22.62,24.56 L22.61,24.56 L22.61,24.56 Z" id="Shape"></path><g id="Group" transform="translate(5.000000, 11.000000)"><rect id="Rectangle" x="4.09" y="7.24" width="9.3" height="1"></rect><rect id="Rectangle" x="0.99" y="7.24" width="1.6" height="1"></rect><rect id="Rectangle" x="7.59" y="2.17" width="5.8" height="1"></rect><polygon id="Path" points="2.49 4.04 0.47 2.01 1.18 1.31 2.49 2.62 4.71 0.41 5.42 1.11"></polygon></g></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16"><path d="M.293.293a1 1 0 0 1 1.414 0L8 6.585 14.293.293a1 1 0 0 1 1.497 1.32l-.083.094L9.415 8l6.292 6.293.083.094a1 1 0 0 1-1.497 1.32L8 9.415l-6.293 6.292a1 1 0 0 1-1.497-1.32l.083-.094L6.585 8 .293 1.707.21 1.613A1 1 0 0 1 .293.293z"/></svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: none;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<path
|
|
11
|
+
d="m4.91,18.3c-.39,0-.71-.12-.96-.35-.25-.23-.38-.54-.38-.93v-1.98c0-.39.13-.7.38-.93.25-.23.57-.35.96-.35h22.19c.43,0,.76.12.99.35s.35.54.35.93v1.98c0,.39-.12.7-.35.93-.23.23-.56.35-.99.35H4.91Zm9.23-9.55c-.39,0-.71-.13-.96-.38-.25-.25-.38-.57-.38-.96v-3.49c0-.43.13-.77.38-1.02s.57-.38.96-.38h3.68c.39,0,.71.13.96.38.25.25.38.59.38,1.02v3.49c0,.39-.13.71-.38.96-.25.25-.58.38-.96.38h-3.68Zm0,20.73c-.39,0-.71-.12-.96-.35-.25-.23-.38-.56-.38-.99v-3.5c0-.39.13-.72.38-.99.25-.27.57-.41.96-.41h3.68c.39,0,.71.14.96.41.25.27.38.6.38.99v3.5c0,.43-.13.76-.38.99-.25.23-.58.35-.96.35h-3.68Z" />
|
|
12
|
+
<rect id="_Slice_" data-name="&lt;Slice&gt;" class="cls-1" width="32" height="32" />
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 25" style="enable-background:new 0 0 25 25;" xml:space="preserve"><style type="text/css">
|
|
2
|
+
.st0{fill-rule:evenodd;clip-rule:evenodd;}
|
|
3
|
+
</style><g id="APP-Subgroup-Exploration"><g id="APP-Subgroup-Account-Home" transform="translate(-380.000000, -669.000000)"><g id="_xD83D__xDDBC__xFE0F_-Icon" transform="translate(380.880952, 669.153319)"><path id="_xD83C__xDFA8_-Color" class="st0" d="M19.2,0c2.2,0,3.8,1.8,4,3.9v17.1c0,2.1-1.7,3.9-3.8,3.9H3.8
|
|
4
|
+
c-2,0-3.8-1.7-3.8-3.9V3.9C0,1.8,1.7,0,3.8,0H19.2z M19.5,1H3.7C2.2,1,1.1,2.2,1.1,3.7v17.5c0,1.5,1.2,2.6,2.6,2.6h15.7
|
|
5
|
+
c1.4,0,2.7-1.2,2.7-2.6V3.7C22.1,2.2,20.9,1,19.5,1z M13.4,5.7c0.3,0,0.5,0.2,0.5,0.6c0,0.3-0.2,0.6-0.5,0.6h-0.9
|
|
6
|
+
c-0.1,0-0.2,0.1-0.2,0.2v4.5c0,1.3,1,2.3,2.3,2.3s2.3-1.1,2.3-2.3V7c0-0.1-0.1-0.2-0.2-0.2h-0.9c-0.3,0-0.5-0.2-0.5-0.6
|
|
7
|
+
c0-0.3,0.2-0.6,0.5-0.6h0.9C17.5,5.7,18,6.3,18,7v4.4c0,1.8-1.2,3.2-2.8,3.4c-0.1,2.9-1.5,4.4-3.9,4.4H11c-2.7,0-4.3-2.3-4.3-4.5
|
|
8
|
+
v-0.9c-1.3-0.2-2.3-1.3-2.3-2.6c0-1.4,1.3-2.6,2.7-2.6s2.6,1.2,2.5,2.6c0,1.2-0.8,2.2-1.9,2.5v1c0,1.3,0.9,3.4,3.2,3.4h0.2
|
|
9
|
+
c1.7,0,2.7-1.1,2.8-3.2c-1.6-0.3-2.8-1.8-2.8-3.4V7c0-0.8,0.7-1.3,1.3-1.3H13.4z M7.1,9.9c-0.7,0-1.3,0.6-1.3,1.3
|
|
10
|
+
c0,0.8,0.8,1.4,1.4,1.4s1.2-0.8,1.2-1.4C8.4,10.5,7.8,9.9,7.1,9.9z"></path></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M9 14a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2h8zM5 0a1 1 0 0 1 1 1l-.001 8.585 2.294-2.292a1 1 0 0 1 1.414 1.414l-4 4a1.006 1.006 0 0 1-.09.08l.09-.08a1.008 1.008 0 0 1-.675.292L5 13h-.033l-.052-.004L5 13a1.008 1.008 0 0 1-.617-.213 1.016 1.016 0 0 1-.09-.08l-4-4a1 1 0 0 1 1.414-1.414L4 9.584V1a1 1 0 0 1 1-1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="-2 -3 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M10.232 7.64a1 1 0 1 0 1.536-1.28l-5-6a1 1 0 0 0-1.536 0l-5 6a1 1 0 0 0 1.536 1.28L6 2.562l4.232 5.078Z"/></svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: none;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<path
|
|
11
|
+
d="m4.85,10.99c-.39,0-.7-.12-.93-.35s-.35-.54-.35-.93v-1.98c0-.39.12-.7.35-.93s.55-.35.93-.35h22.24c.39,0,.71.12.96.35.25.23.38.54.38.93v1.98c0,.39-.13.7-.38.93-.25.23-.58.35-.96.35H4.85Zm0,14.56c-.39,0-.7-.12-.93-.35-.23-.23-.35-.54-.35-.93v-1.98c0-.39.12-.7.35-.93s.55-.35.93-.35h22.24c.39,0,.71.12.96.35.25.23.38.54.38.93v1.98c0,.39-.13.7-.38.93-.25.23-.58.35-.96.35H4.85Z" />
|
|
12
|
+
<rect id="_Slice_" data-name="&lt;Slice&gt;" class="cls-1" width="32" height="32" />
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<g id="matchup" stroke="none" stroke-width="1">
|
|
5
|
+
<g id="wi/Icons/Alert/-Red">
|
|
6
|
+
<path
|
|
7
|
+
d="M4.97395865,1.34114527 C6.51042457,0.447043339 8.18575523,0 10,0 C11.8142457,0 13.4874054,0.447043339 15.0195313,1.34114527 C16.5516573,2.23524721 17.7647528,3.44834274 18.6588547,4.98046865 C19.5529558,6.51259457 20,8.18575434 20,10 C20,11.8142448 19.5529558,13.4874054 18.6588547,15.0195313 C17.7647528,16.5516564 16.5516573,17.7647519 15.0195313,18.6588538 C13.4874054,19.5529558 11.8142457,20 10,20 C8.18575523,20 6.51259457,19.5529558 4.98046865,18.6588538 C3.44834274,17.7647519 2.23524721,16.5516564 1.34114617,15.0195313 C0.447044237,13.4874054 0,11.8142448 0,10 C0,8.18575434 0.447044237,6.51259457 1.34114617,4.98046865 C2.23524721,3.44834274 3.44617274,2.23524721 4.97395865,1.34114527 Z M11.6666668,16.2369785 L11.6666668,13.7630206 C11.6666668,13.6414925 11.627605,13.5394971 11.5494796,13.4570308 C11.4713542,13.3745654 11.3758689,13.3333327 11.2630208,13.3333327 L8.76302101,13.3333327 C8.65017293,13.3333327 8.55034755,13.3767354 8.46354216,13.4635417 C8.37673588,13.5503471 8.33333318,13.6501725 8.33333318,13.7630206 L8.33333318,16.2369785 C8.33333318,16.3498266 8.37673588,16.449652 8.46354216,16.5364583 C8.55034755,16.6232646 8.65017293,16.6666664 8.76302101,16.6666664 L11.2630208,16.6666664 C11.3758689,16.6666664 11.4713542,16.6254346 11.5494796,16.5429683 C11.627605,16.4605029 11.6666668,16.3585075 11.6666668,16.2369785 Z M11.640625,11.7578122 L11.8750003,3.67187428 C11.8750003,3.5677071 11.8315976,3.48958351 11.7447922,3.43749992 C11.6579859,3.36805453 11.5538205,3.33333274 11.4322916,3.33333274 L8.56770844,3.33333274 C8.44618036,3.33333274 8.34201408,3.36805453 8.2552087,3.43749992 C8.16840241,3.48958351 8.12499972,3.5677071 8.12499972,3.67187428 L8.34635408,11.7578122 C8.34635408,11.8446185 8.38975677,11.9205721 8.47656216,11.9856766 C8.56336844,12.0507811 8.66753383,12.0833328 8.7890628,12.0833328 L11.1979172,12.0833328 C11.3194453,12.0833328 11.4214407,12.0507811 11.503906,11.9856766 C11.5863723,11.9205721 11.6319441,11.8446185 11.640625,11.7578122 Z"
|
|
8
|
+
id=""></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 14 12" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 8.648a.247.247 0 0 0 .18-.078l5.093-5.093 1.375 1.375A.48.48 0 0 0 13.5 5a.48.48 0 0 0 .352-.148A.48.48 0 0 0 14 4.5v-4a.48.48 0 0 0-.148-.352A.48.48 0 0 0 13.5 0h-4a.48.48 0 0 0-.352.148A.48.48 0 0 0 9 .5c0 .135.05.253.148.352l1.375 1.375L5.43 7.32a.247.247 0 0 0 0 .36l.89.89a.247.247 0 0 0 .18.078zM8.75 12c.62 0 1.15-.22 1.59-.66.44-.44.66-.97.66-1.59v-2.5a.243.243 0 0 0-.07-.18.243.243 0 0 0-.18-.07h-.5a.243.243 0 0 0-.18.07.243.243 0 0 0-.07.18v2.5c0 .344-.122.638-.367.883S9.093 11 8.75 11h-6.5c-.344 0-.638-.122-.883-.367A1.204 1.204 0 0 1 1 9.75v-6.5c0-.344.122-.638.367-.883S1.907 2 2.25 2h5.5a.243.243 0 0 0 .18-.07.243.243 0 0 0 .07-.18v-.5a.243.243 0 0 0-.07-.18.243.243 0 0 0-.18-.07h-5.5c-.62 0-1.15.22-1.59.66C.22 2.1 0 2.63 0 3.25v6.5c0 .62.22 1.15.66 1.59.44.44.97.66 1.59.66h6.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><g><rect fill="none"/></g><g><path d="M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M17,11l-1.41-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5 L17,11z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g transform="translate(1 1)" stroke-width="2" fill="none" fill-rule="evenodd"><circle stroke="currentColor" cx="22.5" cy="22.5" r="22.5"/><path d="M22.259 14.341v16.98m6.731-11.318L22.21 12.8l-6.412 7.204" stroke="currentColor" stroke-linecap="square"/></g></svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="25px" height="25px" viewBox="0 0 25 25" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>help-support</title>
|
|
5
|
+
<g id="matchup" stroke="none" stroke-width="1">
|
|
6
|
+
<g id="front-end" transform="translate(-369.000000, -46.000000)">
|
|
7
|
+
<g id="Group" transform="translate(369.000000, 46.000000)">
|
|
8
|
+
<path
|
|
9
|
+
d="M12.5,0.3 C5.8,0.3 0.3,5.8 0.3,12.5 C0.3,19.2 5.8,24.7 12.5,24.7 C19.2,24.7 24.7,19.2 24.7,12.5 C24.7,5.8 19.2,0.3 12.5,0.3 Z M12.5,23.8 C6.3,23.8 1.2,18.7 1.2,12.5 C1.2,6.3 6.3,1.2 12.5,1.2 C18.7,1.2 23.8,6.3 23.8,12.5 C23.8,18.7 18.7,23.8 12.5,23.8 Z"
|
|
10
|
+
id="Shape"></path>
|
|
11
|
+
<path
|
|
12
|
+
d="M12.5,10.7 L12.1,10.7 C12,10.7 11.8,10.7 11.8,10.8 C11.7,10.9 11.7,11 11.7,11.1 L11.7,19.1 C11.7,19.2 11.7,19.4 11.8,19.4 C11.9,19.5 12,19.5 12.1,19.5 L12.5,19.5 C12.6,19.5 12.8,19.5 12.8,19.4 C12.9,19.3 12.9,19.2 12.9,19.1 L12.9,11.1 C12.9,11 12.9,10.8 12.8,10.8 C12.8,10.7 12.7,10.7 12.5,10.7 Z"
|
|
13
|
+
id="Path"></path>
|
|
14
|
+
<path
|
|
15
|
+
d="M12.6,6.7 L12.1,6.7 C12,6.7 11.8,6.7 11.7,6.8 C11.6,6.9 11.6,7.1 11.6,7.2 L11.6,7.7 C11.6,7.8 11.6,8 11.7,8 C11.8,8.1 11.9,8.1 12,8.1 L12.5,8.1 C12.6,8.1 12.8,8.1 12.9,8 C13,7.9 13,7.8 13,7.6 L13,7.2 C13,7.1 13,6.9 12.9,6.8 C12.8,6.7 12.7,6.7 12.6,6.7 Z"
|
|
16
|
+
id="Path"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 25" style="enable-background:new 0 0 25 25;" xml:space="preserve"><style type="text/css">
|
|
2
|
+
.st0{fill-rule:evenodd;clip-rule:evenodd;}
|
|
3
|
+
</style><g id="APP-Subgroup-Exploration"><g id="APP-Subgroup-Account-Home" transform="translate(-380.000000, -1037.000000)"><g id="Group-7" transform="translate(340.000000, 996.000000)"><g id="_xD83D__xDDBC__xFE0F_-Icon" transform="translate(40.200000, 41.200000)"><path id="_xD83C__xDFA8_-Color" class="st0" d="M4.2,10.6V0H3.4v10.7C1.5,10.9,0,12.5,0,14.5s1.5,3.6,3.4,3.8v6.4h0.9v-6.4
|
|
4
|
+
c1.9-0.2,3.4-1.8,3.4-3.8S6.1,10.9,4.2,10.6z M3.8,17.4c-1.6,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S5.4,17.4,3.8,17.4z M12.7,2.1V0
|
|
5
|
+
h-0.9v2.2C9.9,2.4,8.4,4,8.4,6s1.5,3.6,3.4,3.8v14.9h0.9v-15c1.9-0.2,3.4-1.8,3.4-3.8C16.1,4,14.6,2.4,12.7,2.1z M12.3,8.9
|
|
6
|
+
c-1.6,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S13.9,8.9,12.3,8.9z M24.6,18.7c0-2-1.5-3.6-3.4-3.8V0h-0.9v14.9
|
|
7
|
+
c-1.9,0.2-3.4,1.8-3.4,3.8s1.5,3.6,3.4,3.8v2.2h0.9v-2.2C23.1,22.2,24.6,20.6,24.6,18.7z M20.8,21.6c-1.6,0-3-1.3-3-3
|
|
8
|
+
c0-1.6,1.3-3,3-3c1.7,0,3,1.3,3,3C23.8,20.3,22.4,21.6,20.8,21.6z"></path></g></g></g></g></svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: none;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<path d="m5.49,28.35l-1.87-1.86c-.27-.27-.41-.58-.41-.93s.14-.66.41-.93l8.58-8.56L3.62,7.44c-.27-.27-.41-.58-.41-.93s.14-.66.41-.93l1.87-1.92c.27-.27.58-.41.93-.41s.66.14.93.41l8.58,8.62L24.58,3.71c.27-.31.58-.47.93-.47s.66.16.93.47l1.93,1.86c.27.27.41.58.41.93s-.14.66-.41.93l-8.64,8.62,8.64,8.56c.27.27.41.58.41.93s-.14.66-.41.93l-1.93,1.86c-.27.27-.58.41-.93.41s-.66-.14-.93-.41l-8.64-8.56-8.58,8.56c-.27.27-.58.41-.93.41s-.66-.14-.93-.41Z"/>
|
|
11
|
+
<rect id="_Slice_" data-name="&lt;Slice&gt;" class="cls-1" width="32" height="32"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="25px" height="25px" viewBox="0 0 25 25" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>star-icon</title><g id="matchup" stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><g id="Left-nav" transform="translate(-203.000000, -100.000000)" fill="currentColor" fill-rule="nonzero"><g id="star-icon" transform="translate(203.000000, 100.000000)"><path d="M24.7,9.4 C24.6,9.3 24.5,9.3 24.4,9.2 L16.6,8 L13,0.9 C12.9,0.8 12.8,0.7 12.7,0.6 C12.6,0.6 12.4,0.6 12.3,0.6 C12.3,0.6 12.1,0.7 12.1,0.8 L8.4,8 L0.6,9.2 C0.3,9.2 0.1,9.5 0.1,9.8 C0.1,9.9 0.2,10 0.3,10.1 L6,15.7 L4.7,23.6 C4.6,23.9 4.8,24.2 5.1,24.3 L5.2,24.3 C5.3,24.3 5.4,24.3 5.5,24.2 L12.5,20.5 L19.5,24.2 C19.6,24.2 19.7,24.3 19.8,24.3 C20.1,24.3 20.4,24 20.4,23.7 L20.4,23.6 L19.1,15.7 L24.7,10.1 C24.9,10 24.9,9.6 24.7,9.4 Z M7.1,15.8 C7.1,15.6 7.1,15.4 6.9,15.3 L1.8,10.2 L8.8,9.1 C9,9.1 9.1,9 9.2,8.8 L12.4,2.4 L15.6,8.8 C15.7,9 15.8,9.1 16,9.1 L23,10.2 L18.1,15.2 C18,15.3 17.8,15.6 17.8,15.8 L19.2,22.8 L12.5,19.6 C12.3,19.5 12.1,19.5 12,19.6 L5.7,22.9 L7.1,15.8 Z" id="Shape"></path></g></g></g></svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: none;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<path d="m14.95,31.55c-.39,0-.71-.13-.96-.38-.25-.25-.38-.57-.38-.96v-12.11H1.64c-.39,0-.71-.13-.96-.38-.25-.25-.38-.57-.38-.96v-1.86c0-.39.12-.71.38-.96.25-.25.57-.38.96-.38h11.97V1.79c0-.39.12-.71.38-.96s.57-.38.96-.38h2.04c.39,0,.71.13.96.38.25.25.38.57.38.96v11.76h12.03c.39,0,.71.13.96.38.25.25.38.57.38.96v1.86c0,.39-.13.71-.38.96-.25.25-.57.38-.96.38h-12.03v12.11c0,.39-.13.71-.38.96s-.58.38-.96.38h-2.04Z"/>
|
|
11
|
+
<rect id="_Slice_" data-name="&lt;Slice&gt;" class="cls-1" width="32" height="32"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="25px" height="26px" viewBox="0 0 25 26" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>facility-based-preview-icon</title>
|
|
5
|
+
<g id="matchup" stroke="none" stroke-width="1">
|
|
6
|
+
<g id="front-end" transform="translate(-114.000000, -46.000000)">
|
|
7
|
+
<g id="Group" transform="translate(114.000000, 46.000000)">
|
|
8
|
+
<path
|
|
9
|
+
d="M24.498,23.234 L19.139,17.972 C19.566,17.182 19.79,16.3 19.79,15.397 C19.79,13.549 18.831,11.815 17.269,10.801 L17.269,4.792 C17.2686151,4.65412813 17.21275,4.52221451 17.114,4.426 L12.762,0.152 C12.6623335,0.0544967057 12.5284285,-1.58073825e-05 12.389,-1.58073825e-05 L0.547,-1.58073825e-05 C0.258538759,-0.0022193714 0.0227492997,0.229543323 0.02,0.518 L0.02,22.672 C0.02,22.958 0.256,23.189 0.547,23.189 L16.741,23.189 C17.0294639,23.1917767 17.2657039,22.9604584 17.269,22.672 L17.269,20.718 L22.165,25.525 C22.476,25.831 22.891,26 23.331,26 C23.772,26 24.186,25.831 24.498,25.525 C24.8062306,25.2237667 24.9799933,24.8109845 24.9799933,24.38 C24.9799933,23.9490155 24.8062306,23.5362333 24.498,23.235 L24.498,23.234 Z M15.468,4.274 L12.916,4.274 L12.916,1.768 L14.192,3.021 L15.468,4.274 L15.468,4.274 Z M16.214,20.529 L16.214,22.154 L1.074,22.154 L1.074,1.036 L11.861,1.036 L11.861,4.792 C11.861,5.078 12.097,5.31 12.389,5.31 L16.214,5.31 L16.214,10.265 C15.5656393,10.0182788 14.8777167,9.89187723 14.184,9.892 C11.093,9.892 8.578,12.362 8.578,15.397 C8.578,18.433 11.093,20.902 14.184,20.902 C14.881,20.902 15.57,20.774 16.214,20.529 L16.214,20.529 Z M16.611,19.179 L16.475,19.259 C15.7773791,19.657884 14.9876063,19.8674788 14.184,19.8670008 C11.674,19.8670008 9.633,17.862 9.633,15.397 C9.633,12.933 11.674,10.927 14.184,10.927 C14.99,10.927 15.783,11.137 16.475,11.535 C17.869,12.335 18.735,13.815 18.735,15.397 C18.735,16.244 18.493,17.068 18.035,17.781 C17.6692298,18.3460359 17.1829334,18.8231118 16.611,19.178 L16.611,19.179 Z M23.752,24.793 C23.6399402,24.9030224 23.4890418,24.9644597 23.332,24.9640083 C23.1745914,24.9648321 23.0232454,24.9033591 22.911,24.793 L17.705,19.681 C18.0131182,19.435431 18.2946555,19.1582508 18.545,18.854 L18.546,18.854 L23.752,23.967 C23.8633,24.0755887 23.9260608,24.2245033 23.9260608,24.38 C23.9260608,24.5354967 23.8633,24.6844113 23.752,24.793 L23.752,24.793 Z"
|
|
10
|
+
id="Shape"></path>
|
|
11
|
+
<path
|
|
12
|
+
d="M12.28,12.348 C11.2021756,12.9858888 10.5413535,14.1455595 10.5419995,15.398 C10.5419995,15.683 10.778,15.9150242 11.069,15.9150242 C11.2077101,15.9163324 11.3412677,15.8625047 11.4402882,15.7653594 C11.5393088,15.6682142 11.5956802,15.5357102 11.597,15.397 C11.597,14.507 12.059,13.697 12.832,13.23 C12.9506001,13.159651 13.0358849,13.0445174 13.0686206,12.9105646 C13.1013563,12.7766118 13.078786,12.6351203 13.006,12.518 C12.8505047,12.2733219 12.527961,12.1977952 12.28,12.348 L12.28,12.348 Z M16.018,12.307 C15.4594585,11.9879601 14.8272377,11.820425 14.184,11.821 C14.0452899,11.8196676 13.9117323,11.8734953 13.8127118,11.9706406 C13.7136912,12.0677858 13.6573198,12.2002898 13.656,12.339 C13.656,12.625 13.893,12.857 14.184,12.857 C14.642,12.857 15.093,12.976 15.486,13.202 C15.7372045,13.346645 16.0579517,13.2640148 16.208,13.016 C16.2784852,12.8971737 16.298062,12.7549402 16.2622996,12.6214902 C16.2265373,12.4880403 16.1384594,12.3746563 16.018,12.307 L16.018,12.307 Z"
|
|
13
|
+
id="Shape"></path>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 55.9 45.8" xmlns="http://www.w3.org/2000/svg"><path d="M54.3 7.3h-9.6V1.6c0-.8-.7-1.5-1.5-1.5H12.5c-.8 0-1.5.7-1.5 1.5v5.7H1.5C.7 7.3 0 8 0 8.8v20.3c0 .8.7 1.5 1.5 1.5h9.8v13.6c0 .8.7 1.5 1.5 1.5H43c.8 0 1.5-.7 1.5-1.5V30.5h9.8c.8 0 1.5-.7 1.5-1.5V8.8c-.1-.8-.7-1.5-1.5-1.5zM13.9 3h27.9v4.3H13.9V3zm27.6 39.7H14.2V21.9h27.4l-.1 20.8zm11.3-15.1h-8.4v-7.2c0-.8-.7-1.5-1.5-1.5H12.7c-.8 0-1.5.7-1.5 1.5v7.2H2.9V10.2h49.9v17.4zm-33.5 2.7h17.2c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5H19.3c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5zm0 6.9h17.2c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5H19.3c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5z"/></svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http: //www.w3.org/2000/svg" viewBox="0 0 26 26">
|
|
2
|
+
<g stroke="currentColor" stroke-width="1.167" fill="none" fill-rule="evenodd" stroke-linecap="round"
|
|
3
|
+
stroke-linejoin="round">
|
|
4
|
+
<path
|
|
5
|
+
d="M11.5 3.475H3.333A2.333 2.333 0 0 0 1 5.808v16.334a2.333 2.333 0 0 0 2.333 2.333h16.334A2.333 2.333 0 0 0 22 22.142v-8.167" />
|
|
6
|
+
<path d="M20.25 1.725a2.475 2.475 0 0 1 3.5 3.5L12.667 16.308 8 17.475l1.167-4.667L20.25 1.725Z" />
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="25px" height="25px" viewBox="0 0 25 25" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>dashboard</title>
|
|
5
|
+
<g id="matchup" stroke="none" stroke-width="1">
|
|
6
|
+
<g id="front-end" transform="translate(-468.000000, -46.000000)">
|
|
7
|
+
<g id="Group" transform="translate(468.000000, 46.000000)">
|
|
8
|
+
<path
|
|
9
|
+
d="M22.2,12.8 L12.1,12.8 L12.1,2.8 C12.1,2.5 11.9,2.3 11.6,2.3 L11.5,2.3 C5.3,2.3 0.3,7.3 0.3,13.5 C0.3,19.7 5.3,24.7 11.5,24.7 C17.7,24.7 22.7,19.7 22.7,13.5 L22.7,13.4 C22.7,13.1 22.5,12.8 22.2,12.8 Z M11.6,13.9 L21.6,13.9 C21.4,19.3 16.9,23.6 11.5,23.6 C5.9,23.6 1.3,19 1.3,13.4 C1.3,8 5.6,3.5 11,3.3 L11,13.3 C11.1,13.7 11.3,13.9 11.6,13.9 Z"
|
|
10
|
+
id="Shape"></path>
|
|
11
|
+
<path
|
|
12
|
+
d="M24.7,9.9 L24.7,9.8 C24,4.9 20.1,1 15.2,0.3 L15.1,0.3 L15.1,0.3 C15,0.3 14.8,0.3 14.7,0.4 C14.6,0.5 14.5,0.6 14.5,0.8 L14.5,10 C14.5,10.3 14.7,10.5 15,10.5 L24.2,10.5 C24.4,10.5 24.5,10.4 24.6,10.3 C24.7,10.2 24.7,10.1 24.7,9.9 Z M23.5,9.5 L15.5,9.5 L15.5,1.5 C19.5,2.2 22.8,5.5 23.5,9.5 Z"
|
|
13
|
+
id="Shape"></path>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36">
|
|
3
|
+
<path
|
|
4
|
+
d="m36,7.85v25.15c0,.8-.3,1.5-.9,2.1-.6.6-1.3.9-2.1.9H3c-.8,0-1.5-.3-2.1-.9-.6-.6-.9-1.3-.9-2.1V3c0-.8.3-1.5.9-2.1.6-.6,1.3-.9,2.1-.9h25.15l7.85,7.85Zm-3,1.35l-6.2-6.2H3v30h30V9.2Zm-15,20.55c1.43,0,2.66-.51,3.67-1.53s1.52-2.24,1.53-3.67-.51-2.66-1.52-3.67-2.24-1.52-3.68-1.52-2.66.51-3.67,1.52-1.52,2.24-1.53,3.67c0,1.43.51,2.66,1.52,3.67s2.24,1.52,3.68,1.53ZM5.65,12.8h17.9v-7.15H5.65v7.15Zm-2.65-3.6v23.8V3v6.2Z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 18" xmlns="http://www.w3.org/2000/svg"><g transform="translate(1 1)" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"><circle cx="5.988" cy="5.988" r="5.988"/><path d="m13.474 15.233-3.256-3.256"/></g></svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 27.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
|
4
|
+
y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: none;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
|
|
11
|
+
<g>
|
|
12
|
+
<path d="M2.6,18.3c-0.4,0-0.7-0.1-0.9-0.4s-0.3-0.6-0.3-1v-1.9c0-0.4,0.1-0.7,0.3-1c0.2-0.3,0.5-0.4,0.9-0.4h26.7
|
|
13
|
+
c0.4,0,0.7,0.1,1,0.4c0.2,0.3,0.4,0.6,0.4,1v1.9c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H2.6z" />
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
|
2
|
+
y="0px" viewBox="0 0 25 25" style="enable-background:new 0 0 25 25;" xml:space="preserve"><style type="text/css">
|
|
3
|
+
.st0{fill:none;stroke:currentColor;stroke-linecap:round;}
|
|
4
|
+
.st1{fill:none;stroke:currentColor;}
|
|
5
|
+
</style>
|
|
6
|
+
<g id="APP-Subgroup-Exploration"><g id="APP-Subgroup-Account-Home" transform="translate(-380.000000, -867.000000)"><g id="targeted-review" transform="translate(380.500000, 867.500000)"><path id="Path" class="st0" d="M15.7,13.6c-0.7,1.6-2.4,2.6-4.2,2.4s-3.2-1.6-3.4-3.4C7.9,10.8,8.8,9,10.5,8.3"></path><path
|
|
7
|
+
id="Path_00000027571648427195646570000011868500836898771608_" class="st0" d="M19.9,12.5c-0.3,4.2-3.9,7.5-8.1,7.4
|
|
8
|
+
c-4.2-0.1-7.7-3.5-7.8-7.8S7.3,4.3,11.5,4"></path><path
|
|
9
|
+
id="Path_00000129202242662526046020000010927129556798749087_" class="st0" d="M24,11c0,0.3,0,0.7,0,1
|
|
10
|
+
c0,4.9-2.9,9.2-7.4,11.1s-9.6,0.8-13.1-2.6s-4.4-8.6-2.6-13.1S7.2,0,12,0c0.1,0,0.5,0,0.6,0"></path><path
|
|
11
|
+
id="Path_00000128480838134987877980000004453203355427016362_" class="st1" d="M19.7,9.1L16.6,8c-0.3-0.1-0.5-0.3-0.5-0.6
|
|
12
|
+
l-1.1-3.1c-0.1-0.4-0.1-0.8,0.2-1l2.9-3C18.3,0.1,18.7,0,19,0s0.6,0.3,0.7,0.6l0.8,2.2c0.1,0.3,0.3,0.5,0.6,0.6l2.4,0.9
|
|
13
|
+
C23.7,4.5,23.9,4.7,24,5c0.1,0.3,0,0.6-0.3,0.9l-3,3C20.5,9.1,20.1,9.2,19.7,9.1z"></path><line
|
|
14
|
+
id="Path_00000069396797286236720220000003938637629774922154_" class="st0" x1="12" y1="12" x2="16.2"
|
|
15
|
+
y2="7.8"></line></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><path d="M6 0C2.691 0 0 2.691 0 6s2.691 6 6 6 6-2.691 6-6-2.691-6-6-6z"/><path d="M6.045 8.535c.246 0 .474.153.474.4v.3c0 .248-.228.4-.474.4-.246 0-.475-.152-.475-.4v-.3c0-.247.229-.4.475-.4zM6.07 2.5c1.098.015 2.004.878 2.02 1.933a1.933 1.933 0 0 1-.942 1.679 1.365 1.365 0 0 0-.629 1.162v.608a.47.47 0 0 1-.474.464.469.469 0 0 1-.475-.464v-.608c0-.805.401-1.535 1.072-1.947.32-.196.504-.525.499-.881-.008-.538-.504-1.01-1.083-1.018a1.11 1.11 0 0 0-.787.301.995.995 0 0 0-.322.732.468.468 0 0 1-.475.463A.469.469 0 0 1 4 4.461c0-.531.219-1.03.613-1.4A2.077 2.077 0 0 1 6.06 2.5h.01z" fill="#FFF"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M3.39 4.48v9.6h2.228v-9.6H3.389zm-1.95 0H0V2.56h13v1.92h-1.3V16H1.44V4.48zm8.356 0H7.568v9.6h2.228v-9.6zM9.146 0v1.92H4.04V0h5.107z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M5.5 13a1 1 0 0 0 1-1l-.001-8.585 2.294 2.292a1 1 0 0 0 1.414-1.414l-4-4a1.006 1.006 0 0 0-.09-.08l.09.08A1.008 1.008 0 0 0 5.532 0h-.065l-.052.004L5.5 0a1.008 1.008 0 0 0-.617.213 1.016 1.016 0 0 0-.09.08l-4 4a1 1 0 0 0 1.414 1.414L4.5 3.415V12a1 1 0 0 0 1 1zm4 3a1 1 0 1 0 0-2h-8a1 1 0 1 0 0 2h8z"/></svg>
|
|
Binary file
|
package/index.js
CHANGED
|
@@ -2,6 +2,7 @@ import ErrorPage from './components/Error/error';
|
|
|
2
2
|
import Footer from './components/Footer/footer';
|
|
3
3
|
import Header from './components/Header/header';
|
|
4
4
|
import SideNav from './components/SideNav';
|
|
5
|
+
import SessionDialog from './components/SessionDialog/sessionDialog';
|
|
5
6
|
|
|
6
7
|
import 'what-input';
|
|
7
8
|
|
|
@@ -21,6 +22,10 @@ const QppStyleComponents = {
|
|
|
21
22
|
sideNav(options) {
|
|
22
23
|
return SideNav(options);
|
|
23
24
|
},
|
|
25
|
+
|
|
26
|
+
SessionDialog(options) {
|
|
27
|
+
return new SessionDialog(options);
|
|
28
|
+
},
|
|
24
29
|
};
|
|
25
30
|
|
|
26
31
|
export default QppStyleComponents;
|