supernav-test 2.2.14 → 2.2.18
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/dist/App.css +38 -0
- package/dist/App.test.d.ts +1 -0
- package/dist/App.test.js +9 -0
- package/dist/LsacContainer.d.ts +4 -0
- package/dist/LsacContainer.js +29 -0
- package/dist/components/lsac-supernavbar/AuthWrapper.d.ts +4 -0
- package/dist/components/lsac-supernavbar/AuthWrapper.js +95 -0
- package/dist/components/lsac-supernavbar/LsacSidebar.d.ts +44 -0
- package/dist/components/lsac-supernavbar/LsacSidebar.js +48 -0
- package/dist/components/lsac-supernavbar/Store.d.ts +3 -0
- package/dist/components/lsac-supernavbar/Store.js +22 -0
- package/dist/components/lsac-supernavbar/actions/AuthActions.d.ts +8 -0
- package/dist/components/lsac-supernavbar/actions/AuthActions.js +29 -0
- package/dist/components/lsac-supernavbar/actions/SidebarActions.d.ts +23 -0
- package/dist/components/lsac-supernavbar/actions/SidebarActions.js +95 -0
- package/dist/components/lsac-supernavbar/components/Sidebar.d.ts +13 -0
- package/dist/components/lsac-supernavbar/components/Sidebar.js +317 -0
- package/dist/components/lsac-supernavbar/components/SidebarForm.d.ts +5 -0
- package/dist/components/lsac-supernavbar/components/SidebarForm.js +21 -0
- package/dist/components/lsac-supernavbar/components/SidebarMainLink.d.ts +14 -0
- package/dist/components/lsac-supernavbar/components/SidebarMainLink.js +124 -0
- package/dist/components/lsac-supernavbar/components/SidebarOption.d.ts +4 -0
- package/dist/components/lsac-supernavbar/components/SidebarOption.js +22 -0
- package/dist/components/lsac-supernavbar/components/SidebarSubMenu.d.ts +5 -0
- package/dist/components/lsac-supernavbar/components/SidebarSubMenu.js +154 -0
- package/dist/components/lsac-supernavbar/components/SidebarTab.d.ts +1 -0
- package/dist/components/lsac-supernavbar/components/SidebarTab.js +69 -0
- package/dist/components/lsac-supernavbar/components/Topnav.d.ts +14 -0
- package/dist/components/lsac-supernavbar/components/Topnav.js +173 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.d.ts +9 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.js +104 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.d.ts +5 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.js +19 -0
- package/dist/components/lsac-supernavbar/constants/SidebarConstants.d.ts +8 -0
- package/dist/components/lsac-supernavbar/constants/SidebarConstants.js +17 -0
- package/dist/components/lsac-supernavbar/constants/UtilityConstants.d.ts +15 -0
- package/dist/components/lsac-supernavbar/constants/UtilityConstants.js +32 -0
- package/dist/components/lsac-supernavbar/interfaces/Models.d.ts +65 -0
- package/dist/components/lsac-supernavbar/interfaces/Models.js +17 -0
- package/dist/components/lsac-supernavbar/interfaces/Redux.d.ts +7 -0
- package/dist/components/lsac-supernavbar/interfaces/Redux.js +5 -0
- package/dist/components/lsac-supernavbar/reducers/AuthReducer.d.ts +7 -0
- package/dist/components/lsac-supernavbar/reducers/AuthReducer.js +41 -0
- package/dist/components/lsac-supernavbar/reducers/RootReducer.d.ts +5 -0
- package/dist/components/lsac-supernavbar/reducers/RootReducer.js +19 -0
- package/dist/components/lsac-supernavbar/reducers/SidebarReducer.d.ts +17 -0
- package/dist/components/lsac-supernavbar/reducers/SidebarReducer.js +96 -0
- package/dist/components/lsac-supernavbar/resources/icomoon-library.json +1 -0
- package/dist/components/lsac-supernavbar/static/images/close-hamburger-icon.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/hamburger-icon.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/icon-user.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/saama_logo.png +0 -0
- package/dist/components/lsac-supernavbar/static/images/saama_logo.svg +26 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_down.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_left.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_right.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_up.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/glyph1_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/management_icon.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/marketplace_icon.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/my_apps.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/rbqm-triangle.svg +31 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/rightIcon.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/space_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/triangle-exclamation.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A32_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A36_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$A1_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$E$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$F0_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$B_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$D_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E002_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E070_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E086_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E092_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$A_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$F_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B5_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$C8_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$C_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$F_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D5_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D6_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D9_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F$E_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$C_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$D_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$E_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$F_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E101_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E110_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E115_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E123_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E138_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E14$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E150_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E185_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E186_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E187_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A7_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A9_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$B7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$C$F_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$C_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$D_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$F$F_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E20$B_comprehend.svg +10 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E201_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E204_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E23$A_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E250_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E279_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E28$E_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E29$C_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A8_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$B3_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D3_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D4_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E301_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$A_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$E_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E36$E_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E362_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E37$A_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E370_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E2_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E4_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E5_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E7_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E418_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$E_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$F_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$A_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E430_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E431_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E445_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E465_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E475_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E481_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$A_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$B_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$C_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$D_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$E_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$F_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E600_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E601_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E602_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E603_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E604_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E605_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E606_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E607_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E608_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E609_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$A_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$C_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$F_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E610_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E611_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E612_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E613_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E614_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E615_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E616_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E617_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E618_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E619_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E620_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E621_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E622_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E623_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E624_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E625_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E626_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$A_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$C_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$D_comprehend.svg +14 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$E_comprehend.svg +10 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$F_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E900_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E901_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E902_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E903_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E904_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E905_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E907_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E908_comprehend.svg +16 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E909_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$A_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$C_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$E_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$F_comprehend.svg +16 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E910_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E911_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E912_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E913_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E914_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E915_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E917_comprehend.svg +34 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E918_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E919_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E920_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E921_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E93$D_comprehend.svg +13 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni0001_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/stylesheets/LsacSidebar.css +73 -0
- package/dist/components/lsac-supernavbar/stylesheets/font-face.scss +12 -0
- package/dist/components/lsac-supernavbar/stylesheets/font-sizer.scss +4 -0
- package/dist/components/lsac-supernavbar/stylesheets/fontIcons.css +540 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.eot +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.svg +3521 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.ttf +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff2 +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.eot +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.svg +190 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.ttf +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.woff +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/form.scss +16 -0
- package/dist/components/lsac-supernavbar/stylesheets/sidebar-main-link.scss +72 -0
- package/dist/components/lsac-supernavbar/stylesheets/sidebar.scss +222 -0
- package/dist/components/lsac-supernavbar/stylesheets/study-filter.scss +358 -0
- package/dist/components/lsac-supernavbar/stylesheets/topnav.scss +371 -0
- package/dist/components/lsac-supernavbar/test/App.test.d.ts +1 -0
- package/dist/components/lsac-supernavbar/test/App.test.js +28 -0
- package/dist/components/lsac-supernavbar/util/SubmenuUtil.d.ts +9 -0
- package/dist/components/lsac-supernavbar/util/SubmenuUtil.js +208 -0
- package/dist/components/lsac-supernavbar/util/Util.d.ts +4 -0
- package/dist/components/lsac-supernavbar/util/Util.js +51 -0
- package/dist/index.css +13 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +22 -67
- package/dist/logo.svg +1 -0
- package/dist/react-app-env.d.js +2 -0
- package/dist/reportWebVitals.d.ts +3 -0
- package/dist/reportWebVitals.js +34 -0
- package/dist/setupTests.d.ts +1 -0
- package/dist/setupTests.js +3 -0
- package/package.json +11 -4
- package/src/App.css +38 -0
- package/src/App.test.tsx +8 -0
- package/src/LsacContainer.tsx +17 -0
- package/src/components/lsac-supernavbar/AuthWrapper.tsx +63 -0
- package/src/components/lsac-supernavbar/LsacSidebar.tsx +60 -0
- package/src/components/lsac-supernavbar/Store.ts +8 -0
- package/src/components/lsac-supernavbar/actions/AuthActions.ts +21 -0
- package/src/components/lsac-supernavbar/actions/SidebarActions.ts +81 -0
- package/src/components/lsac-supernavbar/components/Sidebar.tsx +235 -0
- package/src/components/lsac-supernavbar/components/SidebarForm.tsx +15 -0
- package/src/components/lsac-supernavbar/components/SidebarMainLink.tsx +86 -0
- package/src/components/lsac-supernavbar/components/SidebarOption.tsx +13 -0
- package/src/components/lsac-supernavbar/components/SidebarSubMenu.tsx +82 -0
- package/src/components/lsac-supernavbar/components/SidebarTab.jsx +56 -0
- package/src/components/lsac-supernavbar/components/Topnav.tsx +140 -0
- package/src/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.tsx +69 -0
- package/src/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.tsx +13 -0
- package/src/components/lsac-supernavbar/constants/SidebarConstants.ts +8 -0
- package/src/components/lsac-supernavbar/constants/UtilityConstants.ts +17 -0
- package/src/components/lsac-supernavbar/interfaces/Models.ts +71 -0
- package/src/components/lsac-supernavbar/interfaces/Redux.ts +9 -0
- package/src/components/lsac-supernavbar/reducers/AuthReducer.ts +24 -0
- package/src/components/lsac-supernavbar/reducers/RootReducer.ts +13 -0
- package/src/components/lsac-supernavbar/reducers/SidebarReducer.ts +73 -0
- package/src/components/lsac-supernavbar/resources/icomoon-library.json +1 -0
- package/src/components/lsac-supernavbar/static/images/close-hamburger-icon.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/hamburger-icon.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/icon-user.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/saama_logo.png +0 -0
- package/src/components/lsac-supernavbar/static/images/saama_logo.svg +26 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_down.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_left.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_right.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_up.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/glyph1_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/management_icon.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/marketplace_icon.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/my_apps.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/rbqm-triangle.svg +31 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/rightIcon.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/space_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/triangle-exclamation.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A32_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A36_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$A1_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$E$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$F0_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$B_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$D_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E002_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E070_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E086_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E092_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$A_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$F_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B5_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$C8_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$C_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$F_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D5_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D6_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D9_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F$E_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$C_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$D_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$E_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$F_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E101_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E110_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E115_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E123_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E138_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E14$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E150_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E185_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E186_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E187_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A7_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A9_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$B7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$C$F_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$C_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$D_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$F$F_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E20$B_comprehend.svg +10 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E201_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E204_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E23$A_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E250_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E279_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E28$E_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E29$C_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A8_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$B3_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D3_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D4_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E301_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$A_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$E_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E36$E_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E362_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E37$A_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E370_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E2_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E4_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E5_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E7_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E418_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$E_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$F_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$A_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E430_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E431_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E445_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E465_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E475_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E481_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$A_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$B_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$C_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$D_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$E_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$F_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E600_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E601_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E602_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E603_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E604_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E605_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E606_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E607_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E608_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E609_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$A_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$C_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$F_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E610_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E611_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E612_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E613_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E614_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E615_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E616_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E617_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E618_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E619_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E620_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E621_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E622_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E623_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E624_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E625_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E626_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$A_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$C_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$D_comprehend.svg +14 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$E_comprehend.svg +10 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$F_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E900_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E901_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E902_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E903_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E904_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E905_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E907_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E908_comprehend.svg +16 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E909_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$A_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$C_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$E_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$F_comprehend.svg +16 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E910_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E911_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E912_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E913_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E914_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E915_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E917_comprehend.svg +34 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E918_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E919_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E920_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E921_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E93$D_comprehend.svg +13 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni0001_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/stylesheets/LsacSidebar.css +73 -0
- package/src/components/lsac-supernavbar/stylesheets/font-face.scss +12 -0
- package/src/components/lsac-supernavbar/stylesheets/font-sizer.scss +4 -0
- package/src/components/lsac-supernavbar/stylesheets/fontIcons.css +540 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.eot +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.svg +3521 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.ttf +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff2 +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.eot +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.svg +190 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.ttf +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.woff +0 -0
- package/src/components/lsac-supernavbar/stylesheets/form.scss +16 -0
- package/src/components/lsac-supernavbar/stylesheets/sidebar-main-link.scss +72 -0
- package/src/components/lsac-supernavbar/stylesheets/sidebar.scss +222 -0
- package/src/components/lsac-supernavbar/stylesheets/study-filter.scss +358 -0
- package/src/components/lsac-supernavbar/stylesheets/topnav.scss +371 -0
- package/src/components/lsac-supernavbar/test/App.test.js +20 -0
- package/src/components/lsac-supernavbar/util/SubmenuUtil.tsx +153 -0
- package/src/components/lsac-supernavbar/util/Util.ts +24 -0
- package/src/index.css +13 -0
- package/src/index.tsx +18 -0
- package/src/logo.svg +1 -0
- package/src/react-app-env.d.ts +1 -0
- package/src/reportWebVitals.ts +15 -0
- package/src/setupTests.ts +5 -0
- package/dist/1.index.js +0 -1
- package/dist/caf68d0a64d31f733320266312e3a2ca.svg +0 -1
- package/dist/index.html +0 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 64v896h1024v-896h-1024zM384 640v-192h256v192h-256zM640 704v192h-256v-192h256zM640 192v192h-256v-192h256zM320 192v192h-256v-192h256zM64 448h256v192h-256v-192zM704 448h256v192h-256v-192zM704 384v-192h256v192h-256zM64 704h256v192h-256v-192zM704 896
|
|
6
|
+
v-192h256v192h-256z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 64h1024v128h-1024v-128zM0 320h640v128h-640v-128zM0 832h640v128h-640v-128zM0 576h1024v128h-1024v-128z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 64v896h1024v-896h-1024zM960 896h-896v-768h896v768zM896 192h-768v640h768v-640zM448 512h-64v64h-64v64h-64v-64h64v-64h64v-64h-64v-64h-64v-64h64v64h64v64h64v64zM704 640h-192v-64h192v64z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M947 239h-170v742h-140v-742h-171l239 -239l242 239v0zM60 785h170v-748h140v742h170l-238 245l-242 -239v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M899 202q13 13 23 28.5t17 36.5q8 17 12.5 37t4.5 34v606q0 17 -7 30.5t-16 26.5q-11 11 -25 17t-29 6h-734q-17 0 -30.5 -7t-26.5 -16q-10 -10 -16.5 -24.5t-6.5 -29.5v-865q0 -17 7.5 -30.5t15.5 -25.5q9 -11 24 -18.5t30 -7.5h481q17 0 35.5 4.5t35.5 12.5
|
|
6
|
+
q17 9 33.5 18t29.5 22l142 145v0zM893 336q0 -2 -0.5 -7.5t-2.5 -9.5h-253v-251q-2 0 -7.5 -1.5t-9.5 -1.5h-475q-8 0 -12.5 4.5t-4.5 12.5v862q0 9 4.5 13t12.5 4h734q8 0 12.5 -4t4.5 -13v-608h-3v0zM714 105l-4.5 -4.5l-6.5 -6.5v162h162q-2 -2 -3.5 -4.5t-8.5 -6.5
|
|
7
|
+
l-139 -140v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 811 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 527l162 -124l156 124h-120v379h-72v-379h-126zM791 797l-158 124l-162 -124h125v-380h71v380h124zM513 587l-174 44v-262l-277 -262h698l-247 262v218v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 801 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M231 886l-187 -189h132v-581h110v581h132l-187 189v0zM469 776h259v110h-259v-110v0zM469 556h194v110h-194v-110v0zM469 336h130v110h-130v-110v0zM469 116h97v110h-97v-110v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 801 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M231 886l-187 -189h132v-581h110v581h132l-187 189v0zM469 116h259v110h-259v-110v0zM469 336h194v110h-194v-110v0zM469 556h130v110h-130v-110v0zM469 776h97v110h-97v-110v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M984 313q-19 -46 -46.5 -87t-63.5 -76q-35 -35 -76 -63t-87 -47q-47 -20 -97 -30t-102 -10t-102 10t-97 30q-46 19 -87 47t-76 63t-62.5 76t-47.5 87q-20 47 -30 97t-10 102t10.5 102t30.5 97q19 46 46.5 87t62.5 76t76 62.5t87 47.5q47 20 97 30t102 10t102 -10t98 -30
|
|
6
|
+
q45 -19 86 -47t76 -63q36 -35 63.5 -76t46.5 -87q20 -47 30 -97t10 -102t-10 -102t-30 -97v0zM512 941q-43 0 -84 -9q-42 -8 -80.5 -24t-73.5 -39q-35 -24 -65 -54q-31 -30 -54 -65t-39 -73.5t-24 -80.5q-9 -41 -9 -84q0 -75 24.5 -144t71.5 -126l293 293l-86 86l-127 -127
|
|
7
|
+
l-91 91l218 218l176 -177l220 219q-57 47 -126 71.5t-144 24.5zM846 781l-220 -219l185 -185l-91 -90l-184 184l-293 -293q57 -46 126 -70.5t143 -24.5q43 0 84 8q42 9 80.5 24.5t73.5 39.5q35 23 65 54q31 30 54 65t39 73.5t25 80.5q8 41 8 84q0 74 -24.5 143t-70.5 126v0z
|
|
8
|
+
" />
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M150 365h672l-336 336l-336 -336v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M326 867v-672l336 336z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M730 797l-250 -253l250 -253l25 26l-230 227l230 227zM515 797l-249 -253l249 -253l26 26l-231 227l231 227z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M643 797l-249 -253l249 -253l26 26l-231 227l231 227z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M429 797l-26 -26l231 -227l-231 -227l26 -26l249 253z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M301 797l-26 -26l231 -227l-231 -227l26 -26l249 253zM515 797l-25 -26l230 -227l-230 -227l25 -26l250 253z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M990 34v956h-956v-956h956zM1024 0h-1024v1024h1024v-1024zM580 580h205v205h-205v-205zM239 580h205v205h-205v-205zM580 239h205v205h-205v-205zM239 239h205v205h-205v-205z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M617 589l188 190l-94 94l-190 -187l-191 187l-94 -94l188 -190l-188 -191l94 -94l191 188l190 -188l94 94l-188 191v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M990 34v956h-956v-956h956zM1024 0h-1024v1024h1024v-1024zM239 580h546v205h-546v-205zM239 239h546v205h-546v-205z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M299 0l241 245h-170v751h-142v-751h-171l242 -245v0zM708 1024l-244 -245h170v-751h140v751h170l-236 245v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 0q-106 0 -199 40q-94 40 -163.5 109.5t-109.5 163.5q-40 93 -40 199t40 199q40 94 109.5 163.5t163.5 109.5q93 40 199 40t199 -40q94 -40 163.5 -109.5t109.5 -163.5q40 -93 40 -199t-40 -199q-40 -94 -109.5 -163.5t-163.5 -109.5q-93 -40 -199 -40zM512 896
|
|
6
|
+
q-79 0 -149 -30t-122.5 -82.5t-82.5 -122.5q-30 -69 -30 -149q0 -79 30 -149t82.5 -122.5t122.5 -82.5q69 -30 149 -30q79 0 149 30t122.5 82.5t82.5 122.5q30 69 30 149q0 79 -30 149t-82.5 122.5t-122.5 82.5q-69 30 -149 30zM720 325l-262 263l-123 -123l-88 88l211 210
|
|
7
|
+
l350 -351z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M755 704v-128h-185v192h121l-179 250l-179 -250h121v-192h-185v128l-243 -192l243 -192v128h179v-192h-115l179 -250l179 250h-121v192h179v-128l243 192z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 211q19 0 33.5 5.5t24.5 20.5q14 14 19.5 29.5t5.5 34.5l-25 256h-116l-25 -256q0 -19 5.5 -33.5t19.5 -24.5q10 -14 24.5 -23t33.5 -9v0zM429 723q0 -19 5.5 -33.5t19.5 -23.5q10 -15 24.5 -20.5t33.5 -5.5t33.5 5.5t24.5 20.5q14 14 19.5 28.5t5.5 28.5
|
|
6
|
+
q0 15 -5.5 32.5t-19.5 31.5q-15 15 -29.5 20.5t-28.5 5.5q-19 0 -33.5 -5.5t-24.5 -20.5q-14 -14 -19.5 -29.5t-5.5 -34.5v0zM512 115q82 0 154 32q72 31 126 85t85 126q32 72 32 154t-32 154q-31 72 -85 126t-126 85q-72 32 -154 32t-154 -32q-72 -31 -126 -85t-85 -126
|
|
7
|
+
q-32 -72 -32 -154t32 -154q31 -72 85 -126t126 -85q72 -32 154 -32v0zM512 0q-106 0 -199 40q-93 41 -162.5 110.5t-110.5 162.5q-40 93 -40 199t40 199q41 93 110.5 162.5t162.5 110.5q93 40 199 40t199 -40q93 -41 162.5 -110.5t110.5 -162.5q40 -93 40 -199t-40 -199
|
|
8
|
+
q-41 -93 -110.5 -162.5t-162.5 -110.5q-93 -40 -199 -40v0z" />
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M960 3h64v446q0 13 -4.5 24.5t-13.5 20.5q-10 9 -21 13.5t-25 4.5q-13 0 -24.5 -4.5t-20.5 -13.5t-13.5 -20.5t-4.5 -24.5v-228l-478 474q-4 5 -9.5 8.5t-11.5 5.5t-12 3t-11 1q-6 0 -12 -1t-12 -3t-11.5 -5.5t-9.5 -8.5q-10 -9 -14.5 -20.5t-4.5 -24.5q0 -14 4.5 -25
|
|
6
|
+
t14.5 -20l476 -475h-228q-13 0 -24.5 -4.5t-20.5 -13.5q-9 -10 -14 -21t-5 -25q0 -13 5 -24.5t14 -20.5t20.5 -13.5t24.5 -4.5h382v0zM758 1030h-558q-41 0 -78 -16q-36 -16 -63 -43t-43 -64q-16 -36 -16 -77v-558q0 -42 16 -78q16 -37 43 -64t63 -43q37 -15 78 -15h184
|
|
7
|
+
q23 0 39 16t16 38q0 23 -16 39t-39 16h-184q-37 0 -64 26.5t-27 64.5v558q0 37 27 64t64 27h558q38 0 64.5 -27t26.5 -64v-175q0 -23 16 -39t39 -16q22 0 38 16t16 39v175q0 41 -16 77q-15 37 -42.5 64t-63.5 43q-37 16 -78 16z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1172 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 64h1152v128h-1152v-128zM0 448h1152v128h-1152v-128zM0 832h1152v128h-1152v-128z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 811 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M791 569h-791v-576h791v576zM49 223h198v-99h-198v99v0zM247 371v-98h-198v98h198zM247 519v-98h-198v98h198zM297 223h198v-99h-198v99zM495 273h-198v98h198v-98v0zM297 519h198v-98h-198v98zM742 124h-198v99h198v-99zM742 371v-98h-198v98h198zM742 421h-198v98h198
|
|
6
|
+
v-98zM791 1024h-482v-352h482v352zM339 813h120v-61h-120v61zM459 903v-60h-120v60h120zM459 994v-61h-120v61h120zM490 813h120v-61h-120v61v0zM610 843h-120v60h120v-60zM490 994h120v-61h-120v61v0zM761 752h-120v61h120v-61zM761 903v-60h-120v60h120zM761 933h-120v61
|
|
7
|
+
h120v-61zM145 822h166v52h-166v-52v0zM103 538h52v336h-52v-336v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 801 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M603 539v155h12q17 0 28 11t11 27v130q0 16 -11 27.5t-28 11.5h-129q-16 0 -27.5 -11.5t-11.5 -27.5v-130q0 -16 11.5 -27t27.5 -11h13v-155h-207v155h13q17 0 28 11t11 27v130q0 16 -11 27.5t-28 11.5h-129q-17 0 -28 -11.5t-11 -27.5v-130q0 -16 11 -27t28 -11h13v-168
|
|
6
|
+
q0 -37 26.5 -64t63.5 -27h220v-103h-13q-16 0 -27.5 -11.5t-11.5 -27.5v-129q0 -17 11.5 -28t27.5 -11h129q17 0 28 11t11 28v129q0 16 -11 27.5t-28 11.5h-12v103v104zM189 745v104h103v-104h-103zM603 176h-104v104h104v-104zM499 745v104h104v-104h-104z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 811 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M97 326q45 15 105.5 23t128.5 8t128.5 -8.5t106.5 -22.5q44 -14 70 -32.5t26 -40.5v-82q0 -22 -26 -40.5t-70 -32.5q-45 -14 -106 -22.5t-129 -8.5t-128.5 8.5t-105.5 22.5t-71 32.5t-26 40.5v83q0 21 26 40t71 32v0zM547 411q30 0 59.5 7.5t55.5 21.5v0v0v-83
|
|
6
|
+
q0 -8 -4 -16t-12 -15q-16 15 -46 28.5t-72 23.5q-42 9 -92.5 14.5t-105.5 5.5q-56 0 -106 -5.5t-92 -14.5q-41 -10 -71.5 -23.5t-45.5 -28.5q-8 7 -11.5 15t-3.5 16v83q0 21 26 40t71 33q44 14 104.5 22t128.5 8q8 -16 19.5 -31.5t24.5 -28.5q35 -35 79.5 -53.5t93.5 -18.5
|
|
7
|
+
v0zM313 584q-51 -1 -96.5 -6t-83.5 -14q-42 -10 -72.5 -23t-45.5 -29q-8 7 -11.5 15t-3.5 16v83q0 21 26 40t71 33q42 13 97.5 21t119.5 9q-6 -18 -9 -36t-3 -37q1 -19 3.5 -37t7.5 -35v0zM720 483q-13 -13 -27.5 -24t-30.5 -19q0 9 -5 18t-15 17q49 26 79 74t30 107
|
|
8
|
+
q0 42 -16 79t-43.5 65t-65.5 44q-37 16 -79 16q-65 0 -117 -37t-74 -94h-12.5h-12.5h-8.5h-8.5q8 28 23.5 53t36.5 46q35 35 79.5 53.5t93.5 18.5t93.5 -18.5t79.5 -53.5q34 -34 52.5 -79t18.5 -93q0 -49 -18.5 -94t-52.5 -79v0zM355 584q4 -11 9.5 -21.5t12.5 -20.5
|
|
9
|
+
q-11 0 -22.5 0.5t-23.5 0.5h-0.5h-0.5q-5 10 -9.5 20.5t-7.5 20.5h8.5h8.5h12.5h12.5v0zM356 729q-7 -17 -10.5 -35.5t-3.5 -37.5t3.5 -37t9.5 -35h-12.5h-12.5h-8.5h-8.5q-5 17 -7.5 35t-2.5 36q0 19 2.5 37.5t8.5 36.5h8.5h8.5h12.5h12.5v0zM377 542q27 -41 72 -66t98 -25
|
|
10
|
+
q26 0 50 6t45 18q10 -9 15 -17.5t5 -17.5q-26 -14 -55.5 -21.5t-59.5 -7.5q-49 0 -93.5 18.5t-79.5 53.5q-13 13 -24.5 28.5t-19.5 31.5h0.5h0.5h23.5t22.5 -1v0zM403 656q0 -16 9 -25t23 -9t23 9.5t9 24.5q0 14 -8.5 24t-23.5 10t-23.5 -10t-8.5 -24zM515 656q0 -16 9 -25
|
|
11
|
+
t23 -9t23 9.5t9 24.5q0 14 -8.5 24t-23.5 10t-23.5 -10t-8.5 -24zM627 656q0 -16 9 -25t23 -9q15 0 23.5 9.5t8.5 24.5q0 14 -8.5 24t-23.5 10t-23.5 -10t-8.5 -24z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M217 445h586v133h-586v-133v0zM1024 1025h-1024v-1024h1024v1024zM77 948h870v-869h-870v869v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1428 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M704 256q53 0 99 20q47 20 82 55t55 82q20 46 20 99t-20 99q-20 47 -55 82t-82 55q-46 20 -99 20t-99 -20q-47 -20 -82 -55t-55 -82q-20 -46 -20 -99t20 -99q20 -47 55 -82t82 -55q46 -20 99 -20zM704 160q-72 0 -136 28t-112 76t-76 112t-28 136t28 136t76 112t112 76
|
|
6
|
+
t136 28t136 -28t112 -76t76 -112t28 -136t-28 -136t-76 -112t-112 -76t-136 -28v0zM781 621l-128 -83v-173h96v121l83 58zM1280 96q14 0 23 9t9 23v768q0 14 -9 23t-23 9h-1152q-14 0 -23 -9t-9 -23v-768q0 -14 9 -23t23 -9h1152zM1280 0h-1152q-53 0 -90.5 37.5t-37.5 90.5
|
|
7
|
+
v768q0 53 37.5 90.5t90.5 37.5h1152q53 0 90.5 -37.5t37.5 -90.5v-768q0 -53 -37.5 -90.5t-90.5 -37.5v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M976 192q20 0 34 -14t14 -34v-96q0 -20 -14 -34t-34 -14h-96q-20 0 -34 14t-14 34v16h-640v-16q0 -20 -14 -34t-34 -14h-96q-20 0 -34 14t-14 34v96q0 20 14 34t34 14h16v640h-16q-20 0 -34 14t-14 34v96q0 20 14 34t34 14h96q20 0 34 -14t14 -34v-16h640v16q0 20 14 34
|
|
6
|
+
t34 14h96q20 0 34 -14t14 -34v-96q0 -20 -14 -34t-34 -14h-16v-640h16zM896 64h64v64h-64v-64zM64 64h64v64h-64v-64zM128 960h-64v-64h64v64zM960 960h-64v-64h64v64zM896 832h-16q-20 0 -34 14t-14 34v16h-640v-16q0 -20 -14 -34t-34 -14h-16v-640h16q20 0 34 -14t14 -34
|
|
7
|
+
v-16h640v16q0 20 14 34t34 14h16v640zM256 256h128v512h-128v-512zM448 512h128v256h-128v-256zM640 384h128v384h-128v-384z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M953 75l-4 -4q-35 -36 -80 -53q-44 -18 -90.5 -18t-91.5 18q-45 17 -80 53l-218 218q-35 35 -53 80q-18 44 -18 90.5t18 91.5t53 80l4 4q6 6 12 11.5t13 10.5l80 -80q-7 -4 -14 -9t-13 -11l-4 -4q-38 -39 -38 -93t38 -93l219 -218q38 -38 92.5 -38t92.5 38l4 4
|
|
6
|
+
q38 38 38 92.5t-38 92.5l-99 99q13 32 19 65.5t6 67.5l152 -153q36 -35 53 -80q18 -45 18 -91.5t-18 -90.5q-17 -45 -53 -80zM631 389q-6 -6 -12 -11.5t-13 -10.5l-80 80q7 4 14 9t13 11l4 4q38 39 38 93t-38 93l-219 218q-38 38 -92.5 38t-92.5 -38l-4 -4
|
|
7
|
+
q-38 -38 -38 -92.5t38 -92.5l99 -99q-13 -32 -19 -65.5t-6 -67.5l-152 153q-36 35 -53 80q-18 45 -18 91.5t18 90.5q17 45 53 80l4 4q35 36 80 53q44 18 90.5 18t91.5 -18q45 -17 80 -53l218 -218q35 -35 53 -80q18 -44 18 -90.5t-18 -91.5t-53 -80l-4 -4v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1214 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M898 510h-85v131h-125v79h125v131h85v-131h125v-79h-125v-131zM899 348v-234h-393l-113 -114h-393v734h516q9 60 39 112t75 89.5t102 59.5q57 21 121 21q70 0 132 -27q63 -26 109 -72t73 -107t27 -129q0 -65 -23 -122q-22 -57 -62 -101t-94 -73t-116 -37v0zM853 931
|
|
6
|
+
q-52 0 -97 -20q-46 -20 -80 -54t-54 -80q-20 -45 -20 -96q0 -52 20 -97q20 -46 54 -80t80 -54q45 -20 97 -20q51 0 96 20q46 20 80 54t54 80q20 45 20 97q2 53 -17 99t-53 79.5t-80 52.5q-47 19 -100 19z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M506 0q33 0 57 10.5t39 34.5q24 24 34 49.5t10 59.5l-44 435h-199l-45 -435q0 -34 10.5 -58t34.5 -38q19 -29 44 -43.5t59 -14.5zM659 877q0 61 -43 104t-104 43t-104 -43t-43 -104t43 -104t104 -43t104 43t43 104z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M448 576v416l-160 -160l-192 192l-96 -96l192 -192l-160 -160h416zM1024 96l-192 192l160 160h-416v-416l160 160l192 -192z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M621 877l320 -320q19 -18 19 -45t-19 -45l-320 -320q-18 -19 -45 -19t-45 19q-19 18 -19 45t19 45l210 211h-613q-27 0 -45.5 18.5t-18.5 45.5t18.5 45.5t45.5 18.5h613l-210 211q-10 9 -14.5 21t-4.5 24t4.5 24t14.5 21q18 19 45 19t45 -19z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M316 404v0q-43 0 -73 -30t-30 -72v0q0 -43 30 -73t73 -30v0q42 0 72 30t30 73v0q0 42 -31 72t-71 30v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M193 848h299l-154 -242z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M569 848h267l-222 -413l-173 214z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M607 489l13 11l-122 149l-13 -10z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M330 677l14 9l-84 129l-14 -10z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M313 40q-48 20 -88.5 47.5t-74.5 61.5v0q-34 34 -61.5 74.5t-47.5 85.5l-1 3q-19 43 -29.5 93t-10.5 103v2v2v0v2v2q0 53 10.5 103t30.5 95l-1 -3q20 46 48 87t62 75.5t74 62.5q41 27 86 47l3 1q43 19 92.5 29.5t102.5 10.5h2h2v0h2h2q53 0 103 -10.5t96 -30.5l-3 1
|
|
6
|
+
q47 -21 88 -48.5t75 -61.5v0q34 -34 61 -74.5t47 -85.5l1 -3q19 -43 29.5 -92.5t10.5 -102.5v-2v-2v0v-2v-2q0 -53 -10.5 -103t-30.5 -96l1 3q-20 -46 -47 -87q-28 -41 -62 -75.5t-74 -61.5q-41 -28 -86 -47l-3 -1q-43 -19 -93 -29.5t-103 -10.5h-2h-2v0h-2h-2
|
|
7
|
+
q-53 0 -103 10.5t-95 30.5l3 -1v0zM363 866q-69 -31 -121.5 -83t-82.5 -120l-1 -2q-14 -32 -22 -69t-8 -77v-1.5v-1.5v0v-1.5v-1.5q0 -40 8 -77.5t23 -71.5l-1 2q16 -35 36.5 -65.5t46.5 -56.5v0q26 -25 56 -45.5t63 -35.5l3 -1q32 -14 69 -22t77 -8h1.5h1.5v0h1.5h1.5
|
|
8
|
+
q39 0 77 8t72 23l-2 -1q69 30 121.5 82t81.5 120l1 2q14 33 22 70t8 77v1.5v1.5v0v1.5v1.5q0 40 -8 77t-23 71l1 -2q-15 36 -36 66t-46 56v0q-26 26 -56 46.5t-64 35.5l-2 1q-33 14 -70 22t-77 8h-2h-1v0h-1.5h-1.5q-40 0 -77 -8t-71 -23l2 1v0zM467 210q8 -8 19.5 -13
|
|
9
|
+
t23.5 -5h1.5h0.5v0h1.5h0.5q26 0 44 18t18 44v0.5v1.5v0v0.5v1.5q0 12 -5 23.5t-13 19.5v0q-9 9 -20.5 14t-24.5 5h-0.5h-0.5v0q-26 0 -45 -19t-19 -45v0v-0.5v-0.5q0 -13 5 -24.5t14 -20.5v0v0zM659 274q8 -8 19.5 -13t23.5 -5h1.5h0.5v0h1.5h0.5q26 0 44 18t18 44v0.5v1.5
|
|
10
|
+
v0v0.5v1.5q0 12 -5 23.5t-13 19.5v0q-9 9 -20.5 14t-24.5 5h-0.5h-0.5v0q-26 0 -45 -19t-19 -45v0v-0.5v-0.5q0 -13 5 -24.5t14 -20.5v0v0zM275 274q8 -8 19.5 -13t23.5 -5h1.5h0.5v0h1.5h0.5q26 0 44 18t18 44v0.5v1.5v0v0.5v1.5q0 12 -5 23.5t-13 19.5v0q-9 9 -20.5 14
|
|
11
|
+
t-24.5 5h-0.5h-0.5v0q-26 0 -45 -19t-19 -45v0v-0.5v-0.5q0 -13 5 -24.5t14 -20.5v0v0zM448 768h128v-64l-64 -320l-64 320v64v0z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1509 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 279h1024v-279h-1024v279zM0 652h1024v-280h-1024v280zM0 1024h1024v-279h-1024v279zM1024 559l233 279l232 -279h-465zM1489 465l-232 -279l-233 279h465z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 990 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M711 0h-711v1024h970v-1024h-259zM65 960v-768h840v768h-840v0zM748 593q0 54 -21 102q-20 48 -56 83.5t-83 56.5q-48 21 -103 21q-54 0 -102 -21t-83.5 -56.5t-56.5 -83.5t-21 -102q0 -55 21 -102q21 -48 56.5 -84t83.5 -56q48 -21 102 -21q55 0 102.5 20.5t83.5 56.5v0
|
|
6
|
+
q36 35 56.5 81.5t20.5 100.5v2v2v0v0zM323 312q-37 22 -66 52q-30 30 -51 66t-32 78q-12 41 -12 86q0 44 11.5 85.5t32.5 77.5l-1 -2q21 37 50.5 66.5t65.5 50.5l2 1q35 20 76 31.5t86 11.5t86.5 -11.5t77.5 -32.5l-1 1q37 -21 66.5 -50.5t49.5 -65.5l1 -2
|
|
7
|
+
q20 -34 31.5 -74.5t11.5 -85.5v-1v-1v0v-0.5v-0.5q0 -27 -4 -53t-13 -51l1 3q-8 -26 -19.5 -48.5t-26.5 -41.5v1q-15 -20 -32.5 -37.5t-36.5 -31.5l-1 -1q-40 -30 -88.5 -46.5t-103.5 -16.5q-44 0 -85.5 11.5t-77.5 32.5l2 -1v0zM445 795h80v-81h-80v81v0zM445 633h80v-242
|
|
8
|
+
h-80v242v0z" />
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M313 40q-48 20 -88.5 47.5t-74.5 61.5v0q-34 34 -61.5 74.5t-47.5 85.5l-1 3q-19 43 -29.5 93t-10.5 103v2v2v0v2v2q0 53 10.5 103t30.5 95l-1 -3q20 46 47 87q28 41 62.5 75.5t74.5 62.5q40 27 85 47l4 1q43 19 92.5 29.5t102.5 10.5h2h2v0h1.5h1.5q54 0 104 -10.5
|
|
6
|
+
t96 -30.5l-3 1q47 -21 87.5 -48.5t75.5 -61.5v0q34 -34 61 -74.5t46 -85.5l2 -3q19 -43 29.5 -92.5t10.5 -102.5v-2v-2v0v-2v-2q0 -53 -11 -103t-31 -96l2 3q-20 -46 -47 -87q-28 -41 -62 -75.5t-75 -61.5q-40 -28 -85 -47l-3 -1q-44 -19 -93.5 -29.5t-102.5 -10.5h-2h-2v0
|
|
7
|
+
h-2h-3q-52 0 -102 10.5t-95 30.5l3 -1v0zM350 895q-38 -16 -71 -39q-33 -22 -61 -50t-50 -60q-23 -33 -38 -69l-1 -3q-16 -36 -24.5 -77t-8.5 -85q0 -43 8 -84q9 -41 24.5 -78.5t38.5 -70.5q22 -34 51 -62v0q28 -28 62 -50q33 -23 70.5 -38.5t78.5 -24.5q41 -8 84 -8
|
|
8
|
+
t84.5 8.5t79.5 24.5l-3 -1q56 24 103 63t81 88.5t52 108.5q19 59 19 124q0 43 -9 84q-8 40 -24 77.5t-38 70.5q-23 34 -51 62v0q-28 28 -62 51q-33 22 -70.5 38t-78.5 25q-41 8 -84 8q-44 0 -85.5 -9t-79.5 -25l3 1v0zM679 473q-4 5 -7 9t-7 8h1q-7 7 -14 13l-14 12v0
|
|
9
|
+
q-9 7 -16 13t-12 10q-1 1 -3 2.5t-4 3.5t-4 3.5t-4 3.5v0q-6 5 -16 15l-4 6q-3 4 -5 8t-3 9v0q-2 3 -2.5 6.5t-0.5 7.5v0q-1 1 -1 3v4v0q-1 5 -3 9.5t-5 7.5v0q-4 4 -8.5 6t-9.5 2h-55q-5 0 -9.5 -2t-7.5 -6v0q-3 -3 -5 -6.5t-2 -7.5q0 -1 0.5 -1.5t0.5 -1.5v0l3 -27
|
|
10
|
+
q1 -11 3 -20.5t5 -18.5v1q3 -8 8 -15t11 -12v0l14 -14q5 -5 17 -15q2 -2 4 -3.5t4 -3.5v0q2 -2 4 -3.5t3 -2.5q8 -6 13 -10q1 -1 2.5 -2t2.5 -2v0l2 -2t3 -2v0q3 -4 6 -7.5t5 -8.5h1q3 -4 6 -9.5t6 -10.5l1 -1l2 -6q1 -4 1.5 -8.5t0.5 -9.5v-0.5v-0.5v0v-0.5v-0.5
|
|
11
|
+
q0 -8 -1 -14.5t-3 -13.5v1q-3 -7 -6.5 -13.5t-7.5 -11.5h1q-5 -6 -11 -10.5t-13 -7.5v0q-8 -3 -17.5 -4.5t-18.5 -1.5h-2h-1v0h-2h-2q-9 0 -17.5 2t-16.5 5h1q-8 4 -14.5 9.5t-11.5 12.5v0q-4 6 -7 12t-5 13v1l-3 12q-1 5 -3.5 9.5t-5.5 7.5v0q-4 3 -9 5t-10 2v0v0h-62h-1.5
|
|
12
|
+
h-0.5q-4 0 -7.5 -2t-5.5 -5v0q-2 -3 -3.5 -6.5t-1.5 -7.5v-1t1 -2v0l12 -55q8 -31 29 -54t51 -33h1l29 -10q13 -4 28 -6.5t31 -2.5h0.5h1.5v0h2h2q21 0 40 2.5t38 8.5l-2 -1q18 6 34.5 14t30.5 18v-1q14 10 24.5 23t17.5 28l1 1q6 16 10 33.5t4 36.5v1.5v0.5v0v1.5v1.5
|
|
13
|
+
q0 11 -2 21.5t-6 20.5l1 -1q-5 13 -7 19q-3 6 -6 11t-7 9h1v0zM563 819q-4 3 -8 5t-9 2v0v0h-67v0h-1q-9 0 -16 -7t-7 -17v0v0v0v-63v0v0q0 -10 7 -17t16 -7h1v0h67v0v0q10 0 17 7t7 17v0v0v0v63v0v0q0 5 -2 9.5t-5 7.5v0v0z" />
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1025 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M698 760q-11 13 -17 29t-6 34q0 41 28.5 69.5t68.5 28.5q3 0 5.5 -0.5t4.5 -0.5v0q20 -1 36.5 -10.5t28.5 -24.5v0q10 -12 16 -28t6 -34v-4.5v-4.5v0q-4 -37 -31.5 -62.5t-65.5 -25.5h-2.5h-2.5v0q-21 1 -38.5 10t-30.5 24v0v0zM29 261q-11 12 -17.5 28.5t-6.5 34.5
|
|
6
|
+
q0 23 10 42.5t26 32.5h1q12 11 27.5 16.5t32.5 5.5h5.5h5.5v0q20 -2 36.5 -11t27.5 -24h1q10 -13 16 -29t6 -33v-5.5v-4.5v1q-4 -38 -31.5 -63.5t-65.5 -25.5h-2.5h-2.5v0q-21 1 -39 10t-30 24v1v0zM23 628q-11 12 -17 28.5t-6 34.5q0 40 28.5 68.5t69.5 28.5h4.5h5.5h-1
|
|
7
|
+
q20 -2 36.5 -11t28.5 -24v0q11 -13 17 -29t6 -33q0 -3 -0.5 -5t-0.5 -5v1q-3 -38 -31 -63.5t-66 -25.5h-2h-2v0q-21 1 -39 10t-31 24v1v0zM318 35q-11 12 -17.5 28.5t-6.5 34.5q0 40 29 68.5t69 28.5h4.5h5.5h-1q20 -2 37 -11t28 -24v0q11 -13 17 -29t6 -33v-5.5t-1 -4.5v1
|
|
8
|
+
q-3 -38 -30.5 -63.5t-65.5 -25.5h-3h-2v0q-21 1 -39 10t-30 24v1v0zM325 863q-11 13 -17 29.5t-6 34.5q0 23 9.5 42.5t26.5 32.5v0q12 11 27.5 16.5t33.5 5.5h5.5h5.5h-1q20 -2 37 -11.5t28 -23.5v0q11 -13 17 -29t6 -33q0 -3 -0.5 -5.5t-0.5 -4.5v0q-3 -37 -31 -62.5
|
|
9
|
+
t-66 -25.5h-2h-2v0q-21 1 -39 10t-31 24v1v-1zM834 427q-11 13 -17.5 29t-6.5 34q0 41 28.5 69.5t69.5 28.5h4.5t5.5 -1h-1q20 -1 37 -10.5t28 -24.5v0q11 -12 17 -28t6 -34v-4.5t-1 -4.5v0q-3 -37 -31 -62.5t-65 -25.5h-3h-2v0q-21 1 -39 10t-30 24v0v0z" />
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1145 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 1024q-106 0 -199 -40q-94 -40 -163 -109.5t-110 -163.5q-40 -93 -40 -199t40 -199q41 -94 110.5 -163.5t162.5 -109.5t199 -40t199 40q94 40 163.5 109.5t109.5 163.5q40 93 40 199q0 77 -22 148.5t-61 131.5l1 -2l2 -3l3 -3q2 4 4 8.5t4 9.5l1 1q12 29 43 77
|
|
6
|
+
t126 116q-25 8 -53 11.5t-58 4.5v0h-4.5h-5.5q-58 0 -110.5 -20.5t-93.5 -56.5v0q-60 42 -133.5 65.5t-153.5 23.5h-0.5h-0.5v0v0zM512 171q-71 0 -133 26q-62 27 -108.5 73.5t-73.5 108.5q-26 62 -26 133t26 133q27 62 73.5 108.5t108.5 73.5q62 26 133 26t133 -26
|
|
7
|
+
q62 -27 108.5 -73.5t73.5 -108.5q26 -62 26 -133v0q0 -71 -27 -133q-26 -62 -72.5 -108.5t-108.5 -72.5q-62 -27 -133 -27v0v0zM510 739q-9 0 -17 -0.5t-16 -1.5h1v-73.5v-149.5v-150t1 -72q7 -1 13.5 -1.5t13.5 -0.5h2.5h2.5q48 0 90.5 18.5t74.5 50.5v0q29 30 45.5 70
|
|
8
|
+
t16.5 85q0 47 -17 88q-18 41 -48.5 71.5t-71.5 47.5q-41 18 -87 18h-2h-2v0v0z" />
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 0q-106 0 -199 40q-93 41 -162.5 110.5t-110.5 162.5q-40 93 -40 199t40 199q41 93 110.5 162.5t162.5 110.5q93 40 199 40t199 -40q93 -41 162.5 -110.5t110.5 -162.5q40 -93 40 -199t-40 -199q-41 -93 -110.5 -162.5t-162.5 -110.5q-93 -40 -199 -40zM448 256h128
|
|
6
|
+
v128h-128v-128zM640 768h-256v-64h64v-192h-64v-64h192v256h64v64z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 456h1024v101h-1024v-101z" />
|
|
6
|
+
</svg>
|