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,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="M509 0l515 509l-509 515l-515 -509l509 -515v0z" />
|
|
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 1048 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M960 64v896h-896v-896h896zM1024 0h-1024v1024h1024v-1024zM55 343l640 628l-45 45l-640 -627l45 -46v0zM388 11l640 627l-45 45l-640 -627l45 -45v0z" />
|
|
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="M1024 544h-256v-64h256v64zM640 544h-256v-64h256v64zM256 544h-256v-64h256v64z" />
|
|
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 1209 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1004 622q-17 -27 -45.5 -43t-62.5 -16h-0.5h-0.5v0q-2 0 -5 -0.5t-6 -0.5q-2 0 -5 0.5t-6 0.5h1h-6q-25 3 -40 4.5t-24 2.5q-10 0 -24.5 -2t-39.5 -5h-6q-3 0 -5.5 -0.5t-5.5 -0.5t-6 0.5t-5 0.5v0h-0.5h-0.5q-34 0 -62.5 16t-45.5 43v0q-19 23 -29.5 52t-10.5 62
|
|
6
|
+
q0 4 0.5 8.5t0.5 8.5v-1v29q1 53 76 80.5t164 26.5h5q88 0 160 -27t74 -80q0 -3 0.5 -7t0.5 -8q0 -3 -0.5 -7t-0.5 -8v1q1 -4 1 -8.5v-8.5q0 -33 -10.5 -61.5t-29.5 -52.5v1v0zM802 540q52 0 89 -37t37 -89v-66q0 -52 -37 -89t-89 -37t-89 37t-37 89v0v66q0 52 37 89t89 37
|
|
7
|
+
v0zM1188 719q1 -4 1 -8v-8q0 -25 -6 -48.5t-18 -44.5l1 1q-7 -20 -24 -33t-39 -15v0h-4h-2h-2h-2h-2v0h-4l-15 2l-22 4l-21 -4l-16 -2h-3h-2h-3h-2h-2v0h-11q25 4 43.5 19.5t27.5 38.5v0q13 25 21 54t8 60q0 5 -0.5 9t-0.5 9v-1v14.5v14.5q0 14 -4.5 26.5t-12.5 22.5h1
|
|
8
|
+
q22 -2 42 -9t38 -18h-1q16 -9 25.5 -25t10.5 -35v-1v-12v-11v0zM621 563h-9h-2h-2h-2h-2v0h-4l-15 3l-22 3l-21 -3l-15 -2h-4h-2h-2h-2.5h-2.5v0h-4l-8 2t-7 2v0v-347h70v-221h-565v221h71v587v0v0q0 44 16 83q17 39 46 68t67 46q39 18 83 18v0q43 -1 80 -17t65.5 -43
|
|
9
|
+
t45.5 -64q17 -36 20 -78v0q9 3 20.5 5.5t23.5 3.5v0q-7 -10 -11.5 -22.5t-4.5 -26.5v0v-14.5v-14.5q-1 -4 -1 -8.5v-9.5q0 -31 7.5 -59.5t21.5 -54.5l-1 2q9 -24 28 -39.5t44 -19.5v0v0zM283 957q-61 -1 -103.5 -44.5t-42.5 -104.5v-0.5v-0.5v0v-609l2 -43h-73v-89h433v89
|
|
10
|
+
h-72v507q-2 9 -3 19.5t-1 22.5v0v0v0h-55v50h59q1 3 1.5 5.5t1.5 5.5v-1v44v0v1q0 61 -43 104t-104 44v0v0zM551 442q0 41 29 70t70 29v0q15 0 28 -4t24 -11v0q-30 -16 -48 -45.5t-18 -65.5v0v0v0v-66q0 -19 5.5 -36.5t14.5 -32.5v1h-6q-41 0 -70 29t-29 70v0v62zM908 525
|
|
11
|
+
q11 7 24 11t28 4v0q41 0 70 -29t29 -70v0v-62q0 -41 -29 -70t-70 -29v0h-6q9 14 14.5 31.5t5.5 36.5v0v0v0v65v0.5v0.5q0 36 -18 65t-47 45l-1 1v0zM368 239h61v50h-61v-50zM368 471h61v50h-61v-50v0zM325 355h104v50h-104v-50zM325 588h104v50h-104v-50z" />
|
|
12
|
+
</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 1209 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M264 1024v0v0q-73 0 -128 -47t-67 -117v-1h-3v-694h-66v-165h529v165h-67v430h67v132h-67v66h727v99h-738q-21 58 -71.5 95t-115.5 37v0v0zM33 40v89h83v719h2q9 53 50 88.5t96 36.5v0q55 -1 96 -36.5t50 -87.5v-1h3v-719h82v-89h-462zM1024 727h-99v-562h99v562z
|
|
6
|
+
M859 727h-99v-232h99v232zM694 727h-99v-397h99v397z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
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 1469 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M151 66q-10 -1 -18.5 -4.5t-15.5 -9.5v0l-27 -14l-26 29q-8 7 -14 14.5t-12 15.5l-1 1q4 9 7 17t7 15l-1 -1q5 8 7.5 16.5t2.5 18.5v0q-6 6 -14 10t-17 6v0l-29 11v84l27 9q5 3 11.5 5.5t12.5 4.5h2q2 1 3.5 2.5t2.5 3.5v0q1 2 1 3.5v3.5v1.5v1.5v0q-3 9 -6 16t-6 13v-1
|
|
6
|
+
l-13 33l26 28l27 30l27 -15q7 -5 15 -8.5t17 -4.5v-1q7 10 12 22t7 24v1l6 20h26l1 255v256l5 10q3 5 6.5 10t7.5 9v0q4 4 8.5 7t10.5 5v0q28 5 587 5h134q345 0 403 -2q3 0 6.5 0.5t6.5 0.5q15 0 28.5 -3.5t25.5 -9.5l-1 1q1 -2 2 -3t2 -1q4 -4 7 -9l6 -10v0l5 -10v-371
|
|
7
|
+
q0 -272 -1 -322v-5.5v-5.5q0 -12 -1 -24.5t-2 -24.5v2q-5 -9 -11.5 -16.5t-15.5 -11.5v0q-32 -4 -68 -5.5t-73 -1.5h-23.5t-22.5 1h2h-177v-45q0 -2 0.5 -5t0.5 -6q0 -11 -1.5 -21.5t-3.5 -21.5l1 2q-3 -6 -6.5 -11t-8.5 -9v0q-4 -4 -8.5 -7t-10.5 -6v0q-8 -2 -195 -2h-17
|
|
8
|
+
q-137 0 -161 2v0v0q-10 0 -19 3t-16 9v0l-1 2q-5 5 -8.5 11t-6.5 13v0q-2 11 -3 22.5t-1 24.5v0v0v0v45h-172l-26 -11q-9 -2 -16.5 -6t-13.5 -10v0q1 -9 3.5 -17t7.5 -15h-1q6 -14 9.5 -22t4.5 -10q-5 -10 -11 -18.5t-13 -14.5v0q-7 -8 -13.5 -15t-14.5 -13v0q-8 3 -15 6.5
|
|
9
|
+
t-13 7.5h1q-6 5 -13 7.5t-14 2.5h-4h-4v0q-4 -8 -7.5 -16t-5.5 -17v-1l-10 -31h-75l-10 31q-1 10 -5 19t-9 16v0v0zM297 182l4 10h-27h-3h-3q-8 0 -15.5 1t-15.5 2h1q-11 4 -19.5 11.5t-12.5 17.5v1l-7 12v52l-2 52l-7 -1q-13 -4 -23.5 -10.5t-19.5 -15.5v0
|
|
10
|
+
q-12 -11 -19.5 -26t-10.5 -32v0q-1 -5 -1.5 -10.5t-0.5 -11.5q0 -12 2.5 -23.5t7.5 -22.5v1q7 -21 22.5 -35.5t36.5 -21.5v-1q6 -2 12 -3t12 -1q2 0 4 0.5t4 0.5h-1h0.5h0.5q9 0 18.5 2.5t17.5 6.5h-1q15 7 26.5 18.5t18.5 25.5l1 1v0zM990 192h-333v-58h333v58v0zM920 375
|
|
11
|
+
q22 12 40.5 26.5t33.5 33.5v0q15 18 26.5 38.5t18.5 43.5l1 2q6 21 10 44.5t4 48.5v0.5v0.5v0q0 25 -5 49.5t-14 47.5l1 -2q-9 24 -22.5 44.5t-30.5 37.5v0q-23 27 -54.5 44.5t-66.5 24.5l-2 1q-7 1 -14.5 1.5t-16.5 0.5h-8.5t-8.5 -1l1 1q-13 -1 -25 -2.5t-24 -4.5h2
|
|
12
|
+
q-12 -4 -23 -8.5t-20 -10.5l1 1q-11 -5 -20.5 -11.5t-18.5 -13.5h1q-32 -27 -54 -63t-31 -78v-1q-3 -13 -4.5 -26.5t-1.5 -27.5v-3v-2v0v-3.5v-3.5q0 -12 0.5 -24t1.5 -24v2q7 -41 25.5 -76t46.5 -63v0q25 -26 58 -43.5t71 -22.5h1q6 -1 12 -1.5t12 -0.5t12.5 0.5t12.5 1.5
|
|
13
|
+
h-1q20 3 38.5 8.5t35.5 14.5l-1 -1v0zM803 436q-4 4 -6 8t-4 9v0q-1 11 -2 23t-1 25q0 4 0.5 8t0.5 8v-1v56l-55 1h-37q-6 1 -10.5 1.5t-9.5 1.5h1q-3 1 -6 2.5t-5 3.5v0q-1 1 -2.5 4t-3.5 8q-2 4 -3 8t-1 9q0 10 4.5 18t12.5 13v0q10 3 21 4.5t23 1.5q4 0 8 -0.5t8 -0.5v0
|
|
14
|
+
l55 1v55q0 4 -0.5 8t-0.5 8q0 13 1 25.5t2 25.5v-2q2 9 8.5 16t15.5 9v0q2 1 4.5 1.5t4.5 0.5q7 0 13 -3t10 -8v0q4 -4 7 -9t3 -11v0q1 -10 1.5 -22t0.5 -24v-6.5v-6.5v0v-57h53q3 0 7 0.5t8 0.5q12 0 24 -1.5t23 -4.5h-1q8 -5 13 -13.5t5 -19.5v-0.5v-0.5v0v-1.5v-1.5
|
|
15
|
+
q0 -10 -5 -17.5t-13 -12.5v0q-11 -2 -22.5 -3t-24.5 -1h-7t-8 1h1h-53v-59q0 -4 0.5 -8t0.5 -8q0 -14 -1.5 -27.5t-4.5 -26.5v2q-2 -6 -6.5 -10.5t-9.5 -7.5v0q-4 -2 -7.5 -3t-7.5 -1q-3 0 -5 0.5t-4 1.5v-1q-4 2 -7.5 5t-5.5 6v0v0z" />
|
|
16
|
+
</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 1456 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M711 1024v-160h-711v160h711zM315 803v-255h-159v255h159zM551 803v-567h-159v567h159zM793 803v-331h-159v331h159zM1023 0h-159v714l159 -166v-548zM750 1024h118l445 -446l-122 -122l-442 442zM1411 481q10 -10 16.5 -23t8.5 -28v-1v-3v-5q0 -11 -4 -21t-12 -18v0
|
|
6
|
+
l-33 -33q-8 -7 -18 -11.5t-21 -4.5h-4t-4 1v-1q-15 2 -28.5 8.5t-23.5 16.5v0l-58 59l122 122z" />
|
|
7
|
+
</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 954 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 1024v-922v-2v-2q0 -39 27 -67.5t66 -30.5h1h747q39 2 66 30.5t27 67.5v2.5v2.5v-1v615v2v2q0 39 -27 67.5t-66 30.5v0h-654zM130 49q-30 1 -51 22.5t-21 52.5v0.5v0.5v0v787l145 -152h605q30 -1 51.5 -22.5t21.5 -51.5v-1.5v-0.5v0v-561v-0.5v-1.5q0 -30 -21.5 -51.5
|
|
6
|
+
t-51.5 -22.5v0zM497 573h-64v-63h64v63zM497 479h-62q0 -74 46.5 -91t46.5 -64q0 -25 -18 -43t-44 -18v0v0v0q-25 0 -43 18.5t-19 43.5v0h-62q3 -49 39 -83t85 -34q50 0 86 34t38 83h1q0 58 -47 81t-47 74v-1z" />
|
|
7
|
+
</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 1171 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M928 965q9 -1 14.5 -6.5t5.5 -13.5v-543h123h0.5h0.5q7 0 12 -4t6 -10v0q1 -1 1 -2.5v-3.5q0 -5 -2.5 -9.5t-7.5 -6.5v0l-495 -303q-2 -2 -5 -2.5t-5 -0.5q-3 0 -6 0.5t-5 2.5v0l-495 303q-4 2 -6.5 6.5t-2.5 9.5q0 8 5.5 14t13.5 6h123v542q0 8 6 13.5t14 5.5v0h705v2z
|
|
6
|
+
M928 1023h-706q-33 0 -56 -23t-23 -56v0v-482h-63q-33 -1 -55.5 -24t-22.5 -56q0 -21 10.5 -39t26.5 -28h1l495 -303q9 -6 19.5 -9t21.5 -3q12 0 22.5 3.5t19.5 8.5v0l495 303q17 10 27.5 28t10.5 39q0 33 -22.5 56t-55.5 24v0h-65v482q0 33 -23.5 56t-56.5 23v0v0z
|
|
7
|
+
M654 1023h-159q-33 0 -56.5 -23t-23.5 -56v0v-359q0 -33 23.5 -56.5t56.5 -23.5v0h159q33 0 56.5 23.5t23.5 56.5v0v359q0 33 -23.5 56t-56.5 23v0v0zM495 565q-8 0 -14 6t-6 14v0v359q0 8 6 13.5t14 5.5v0h159q9 0 14.5 -5.5t5.5 -13.5v0v-359q0 -8 -5.5 -14t-14.5 -6v0
|
|
8
|
+
h-159z" />
|
|
9
|
+
</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="-11 0 1080 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M530 967q45 0 87 -9.5t80 -27.5l-2 1q38 -18 71 -41.5t60 -53.5v0l21 -23l29 5q4 1 9 1.5t10 0.5v0v0v0q46 0 78 -32t32 -77q0 -29 -13.5 -52.5t-35.5 -38.5v0l-25 -17v-30v-4v-4v-0.5v-0.5q0 -64 -19.5 -123t-54.5 -108l1 1q-35 -49 -81.5 -86t-102.5 -59l-2 -1l-30 -11
|
|
6
|
+
l-5 -31q-6 -40 -36.5 -66.5t-71.5 -26.5t-71.5 26.5t-36.5 65.5v1l-5 31l-30 11q-58 23 -105 60t-80 85l-1 1q-35 48 -54 107t-19 123v0.5v0.5v0v4v4v30l-25 17q-22 14 -35.5 38t-13.5 53q0 45 32 77t77 32h1v0v0q5 0 9.5 -0.5t9.5 -1.5h-1l30 -5l20 23q28 29 60.5 53
|
|
7
|
+
t68.5 41l3 1q36 17 78 26.5t86 9.5h1h2zM528 1022h-1v0q-50 0 -97 -10q-47 -11 -89.5 -30t-80.5 -46q-38 -28 -69 -62v0q-6 1 -13 1.5t-14 0.5h-0.5h-0.5v0q-68 0 -116 -48t-48 -116q0 -43 19.5 -78.5t52.5 -58.5h1v-4.5v-4.5q0 -73 21 -139q22 -66 60.5 -121.5t91.5 -98.5
|
|
8
|
+
q54 -42 118 -67l3 -1q9 -59 55 -99t107 -40t107 40t55 98v1q66 25 120 68q54 42 93 97.5t61 122.5q22 66 22 139v0v4.5v4.5q33 22 53 58t20 79q0 68 -48 116t-116 48v0h-0.5h-0.5q-7 0 -14 -0.5t-14 -2.5l1 1q-32 34 -69 61q-38 27 -80.5 46.5t-89.5 29.5t-97 10h-0.5h-0.5
|
|
9
|
+
v0zM530 328q-68 0 -116.5 -48t-48.5 -116t48.5 -116.5t116.5 -48.5t116 48.5t48 116.5v0q0 68 -48 116t-116 48v0zM530 54q-46 0 -78 32t-32 78q0 45 32 77t78 32q45 0 77 -32t32 -77v0q0 -46 -32 -77.5t-77 -31.5v0v0v0v-1zM895 875q-68 0 -116.5 -48t-48.5 -116t48.5 -116
|
|
10
|
+
t116.5 -48t116 48t48 116v0q0 68 -48 116t-116 48v0zM895 602q-46 0 -78 32t-32 77q0 46 32 78t78 32q45 0 77 -32t32 -78v0q0 -45 -32 -77t-77 -32v0v0v0v0zM165 875q-68 0 -116.5 -48t-48.5 -116t48.5 -116t116.5 -48t116 48t48 116v0q0 68 -48 116t-116 48v0v0zM165 602
|
|
11
|
+
q-46 0 -78 32t-32 77q0 46 32 78t78 32q45 0 77 -32t32 -78v0q0 -45 -32 -77t-77 -32v0v0v0v0z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
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="-12 0 1363 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M830 501q0 96 -26 181q-26 84 -70.5 147t-104.5 100q-60 36 -128 36t-128 -36q-60 -37 -104.5 -100t-70.5 -147q-26 -85 -26 -181t26 -180q26 -85 70.5 -148t104.5 -99q60 -37 128 -37t128 37q60 36 104.5 99t70.5 148q26 84 26 180zM501 2q-75 0 -142 39t-117 107.5
|
|
6
|
+
t-78 159.5q-29 91 -29 195q0 103 28 195q29 91 79 159t117 107q66 40 142 40t143 -40q66 -39 116 -107t79 -159q29 -92 29 -195q0 -104 -29 -195t-79 -159.5t-116 -107.5q-67 -39 -143 -39zM642 501q0 103 -13 188t-33 146.5t-45 95.5t-50 34t-50 -34t-45 -95.5t-33 -146.5
|
|
7
|
+
q-12 -85 -12 -188q0 -102 12 -188q13 -85 33.5 -146.5t45.5 -95.5t49 -34t49 34t45.5 95.5t33.5 146.5q13 86 13 188zM501 2q-43 0 -76 44q-34 44 -56.5 115t-33.5 161q-12 90 -12 181t12 181q11 89 33.5 160.5t56.5 115.5q33 44 76 44t77 -45q33 -44 55 -115.5t34 -161.5
|
|
8
|
+
q11 -90 11 -181t-11 -180q-12 -90 -34 -161t-56 -114q-33 -44 -76 -44v0zM965 501q0 96 -36 181q-37 84 -100 147t-147 100q-85 36 -181 36t-181 -36q-84 -37 -147 -100t-99 -147q-37 -85 -37 -181t37 -181q36 -84 99 -147t147 -99q85 -37 181 -37v0q96 0 181 37
|
|
9
|
+
q84 36 147 99t99 148q37 84 37 180v0zM501 2h-0.5h-0.5q-104 0 -196 39q-91 39 -159 107t-107 160q-40 91 -40 195t40 195q39 91 107 159t159 107q92 40 196 40q103 0 195 -40q91 -39 159 -107t107 -159q40 -91 40 -195v-1.5v-0.5v0q-1 -103 -40 -194q-40 -91 -107.5 -158.5
|
|
10
|
+
t-158.5 -106.5q-91 -40 -194 -40v0v0zM23 497h955v38h-955v-38zM85 247h832v37h-832v-37zM85 748h832v37h-832v-37zM1341 703q0 -19 -13 -32t-31 -13v0h-6q-21 0 -37.5 -11t-24.5 -29v0v-7q-2 -5 -3 -11t-1 -13v0v0v-1q0 -13 5.5 -25.5t14.5 -21.5v0q6 -6 10 -14.5t5 -18.5
|
|
11
|
+
v0v0v0q0 -9 -3.5 -17t-9.5 -14v0q-6 -6 -14 -9.5t-18 -3.5v0v0v0q-9 0 -17 3.5t-14 9.5v0q-9 9 -22 15t-28 6v0q-28 0 -48 -20t-20 -48v0q0 -19 -13.5 -32.5t-32.5 -13.5v0q-18 0 -31 13t-13 32v0v0v5q-1 21 -12.5 37.5t-29.5 23.5h-1h-6q-5 3 -11 4t-13 1v0v0v0h-0.5h-0.5
|
|
12
|
+
q-14 0 -26 -5t-21 -14v0q-6 -7 -15 -11t-19 -5v0q-18 1 -31 14t-13 31v0q0 9 3.5 17.5t9.5 14.5v0l2 3q9 8 14.5 20t5.5 25v1v0v0q0 8 -2 15t-5 14v-1q-7 19 -24 31t-38 13v0h-2q-19 0 -32 13t-14 32v0q0 18 13 31t32 13v0v0h6q13 1 25.5 6t21.5 14v0q9 9 14.5 21.5
|
|
13
|
+
t6.5 26.5v0v0v0q0 14 -5.5 26.5t-14.5 21.5v0q-7 6 -11 15t-4 19v0v0v0q0 10 3.5 18t9.5 14v0q6 5 14 8.5t17 4.5v0q10 0 18 -3.5t14 -9.5v0q10 -10 23 -16t27 -6h0.5h0.5v0q28 1 48 20.5t22 46.5v1v2v0v0q0 19 13 32t32 14v0q18 0 31 -13.5t13 -31.5v0v0v-5v0v0
|
|
14
|
+
q0 -14 5.5 -26.5t14.5 -21.5v0q9 -9 21.5 -14.5t26.5 -5.5t26.5 5.5t21.5 14.5h1q6 7 14 10.5t18 3.5v0q19 0 32 -13t13 -32q0 -9 -3.5 -17t-8.5 -14v0q-10 -9 -15.5 -21.5t-5.5 -27.5v0v0v0q0 -28 19.5 -48t47.5 -21h3v0v0q18 0 31 -12t14 -30v0v-3zM1019 799
|
|
15
|
+
q-38 0 -64.5 -26.5t-26.5 -64.5t26.5 -65t64.5 -27v0q38 0 65 27t27 65t-27 64.5t-65 26.5v0v0z" />
|
|
16
|
+
</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 1104 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 964v-301h-964v301h964zM1024 361v-301h-964v301h964zM1084 1024h-1084v-422h1084v422zM1084 422h-1084v-422h1084v422z" />
|
|
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 1045 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M428 1q-21 7 -22.5 29t18.5 31l6 4h40v87h-3q-2 0 -5.5 0.5t-6.5 1.5q-43 7 -84 24.5t-77 43.5l-6 5l-61 -62l13 -13q13 -14 16.5 -21.5t1.5 -18.5q-4 -15 -18 -21.5t-28 0.5q-3 1 -22 19l-40.5 40.5t-39.5 40.5t-19 22q-7 16 2.5 30.5t26.5 14.5q9 0 14.5 -3t17.5 -15
|
|
6
|
+
l14 -14l30 31q13 12 22 21.5l9 9.5l-1.5 2t-3.5 5q-26 35 -44.5 78.5t-24.5 86.5l-1 9h-87v-20q0 -15 -0.5 -18.5t-2.5 -6.5q-10 -21 -32 -19t-28 23q-2 7 -2 85t2 84q6 18 26 21t31 -13q4 -5 5 -10.5t1 -20.5v-19h87l2 9q5 43 23.5 86.5t44.5 78.5q2 3 3.5 5l1.5 2
|
|
7
|
+
q0 1 -9 10t-22 21l-30 31l-14 -14q-13 -12 -18 -15t-15 -2q-17 0 -26 14.5t-2 30.5q2 3 20 22t39.5 40.5t40.5 39.5q19 19 22 20q20 9 36 -7t7 -36q-2 -3 -5 -7t-11 -11l-13 -14l62 -61l6 4q38 29 79.5 45.5t92.5 24.5l3 1v86l-40 1l-6 3q-18 9 -18 29t18 29l5 3h167l4 -2
|
|
8
|
+
q18 -9 19 -27.5t-15 -29.5q-4 -3 -10.5 -4t-20.5 -1h-17v-87h3q1 -1 4.5 -1.5t7.5 -0.5q41 -7 80.5 -23.5t74.5 -41.5l11 -8l62 62l-14 13q-12 12 -15 17.5t-3 14.5q0 18 15 27.5t32 1.5q6 -3 62 -59t58 -62q3 -5 3 -14t-3 -14q-5 -9 -12 -13.5t-17 -4.5t-15 3t-17 15
|
|
9
|
+
l-13 13l-62 -62l4 -4q25 -33 43.5 -75t25.5 -86l2 -15h87v19q0 17 1.5 22.5t6.5 11.5q12 13 30 10t25 -20l2 -5v-162l-3 -7q-6 -15 -23 -19t-29 8q-7 6 -8 11.5t-2 22.5v20h-87l-2 -15q-8 -43 -26 -86t-43 -74l-4 -5l61 -61l13 12q13 12 18 15t15 3q15 0 23 -8.5t8 -22.5
|
|
10
|
+
q0 -12 -6 -19.5t-54 -56.5q-49 -48 -57.5 -55t-19.5 -7q-14 0 -23 9t-9 23q0 9 3 14.5t15 17.5l13 13l-61 62l-9 -7q-34 -25 -74.5 -42t-81.5 -23q-5 -1 -9.5 -2l-4.5 -1h-2v-87h17q10 0 15 -0.5t8 -1.5q21 -6 23 -27.5t-17 -32.5l-6 -3h-82q-50 0 -67 0.5t-19 0.5v0z
|
|
11
|
+
M413 280q42 11 53.5 52.5t-19.5 71.5q-30 30 -70.5 19.5t-52.5 -51.5t18 -71.5t71 -20.5v0zM652 621q21 7 28 27.5t-6 38.5q-18 23 -46 14.5t-30 -38.5q0 -22 16.5 -35t37.5 -7v0z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
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="M980 696q16 -20 23.5 -41.5t6.5 -43.5q-1 -24 -10 -43t-18 -31q10 -26 8.5 -62.5t-35.5 -68.5q-26 -23 -69 -33.5t-103 -7.5q-43 2 -73.5 7.5t-32.5 5.5v0q-8 2 -16.5 3.5t-17.5 3.5q0 -10 4 -38.5t23 -85.5q23 -69 21.5 -121t-26.5 -87q-27 -37 -62 -45t-47 -8t-23 5
|
|
6
|
+
t-19 14q-18 21 -19 52.5t1 49.5q-10 28 -29 74q-20 45 -43.5 91.5t-50.5 87.5q-26 41 -51 60q-1 1 -2 1.5t-2 1.5q-14 16 -24.5 32t-17.5 31q-9 -5 -19.5 -7.5t-22.5 -2.5h-131q-37 0 -63 26t-26 63v348q0 37 26.5 63t62.5 26h131q14 0 27 -4.5t24 -12.5l51 6q3 1 28 4
|
|
7
|
+
t64.5 6t89.5 5t103 1q19 1 37 2t35 1q29 0 54 -2t45 -7q50 -10 83 -31t50 -52q13 -23 15 -45t0 -37q32 -29 41 -58.5t8 -52.5q-1 -13 -3.5 -24t-5.5 -19v0zM103 958q-13 0 -22 -9.5t-9 -21.5v-349q0 -13 9.5 -22t21.5 -9h131q13 0 22 9.5t9 21.5v348q0 13 -9 22.5t-22 9.5
|
|
8
|
+
h-131v0v0zM925 671q-7 7 -8 17t4 18l4.5 10t5.5 26q1 21 -9 39.5t-31 34.5q-8 6 -10.5 15t0.5 18l2.5 17.5t-8.5 37.5q-11 19 -34.5 33t-60.5 21q-29 7 -68 8t-88 -3h-1h-2q-51 1 -101 -1t-89 -5t-63 -6t-25 -3v0l-22 -3q1 -4 1.5 -9t0.5 -9v-349q0 -7 -1 -13.5t-3 -12.5
|
|
9
|
+
q3 -11 12 -32t28 -42q36 -28 70 -84t61 -112.5t45 -99.5q17 -44 18 -48t1.5 -7.5t-0.5 -7.5q-2 -18 -1.5 -36.5t4.5 -25.5q9 1 28 5.5t33 23.5q16 23 15.5 62.5t-18.5 93.5q-27 82 -29.5 127.5t18.5 64.5q11 9 24 10.5t23 -2.5q10 -2 19.5 -4t17.5 -4h2h1
|
|
10
|
+
q49 -11 121.5 -12.5t103.5 26.5q26 24 17.5 49.5t-10.5 28.5q-6 9 -4.5 19.5t9.5 17.5q0 1 11.5 15t12.5 35q0 15 -6.5 29.5t-20.5 28.5v0z" />
|
|
11
|
+
</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="M980 696q16 -20 23.5 -41.5t6.5 -43.5q-1 -24 -10 -43t-18 -31q10 -26 8.5 -62.5t-35.5 -68.5q-26 -23 -69 -33.5t-103 -7.5q-43 2 -73.5 7.5t-32.5 5.5v0q-8 2 -16.5 3.5t-17.5 3.5q0 -10 4 -38.5t23 -85.5q23 -69 21.5 -121t-26.5 -87q-27 -37 -62 -45t-47 -8t-23 5
|
|
6
|
+
t-19 14q-17 21 -18.5 52.5t0.5 49.5q-10 28 -29 74q-20 45 -43.5 91.5t-50.5 87.5q-26 41 -51 60q-1 1 -2 1.5t-2 1.5q-14 16 -24.5 32t-17.5 31q-9 -5 -19.5 -7.5t-22.5 -2.5h-131q-37 0 -63 26t-26 63v348q0 37 26.5 63t62.5 26h131q14 0 27.5 -4.5t23.5 -12.5l51 6
|
|
7
|
+
q3 1 28 4t64.5 6t89.5 5t103 1q19 1 37 2t35 1q29 0 54 -2t46 -7q49 -10 82 -31t50 -52q14 -23 15.5 -45t-0.5 -37q32 -29 41 -58.5t8 -52.5q-1 -13 -3.5 -24t-5.5 -19v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
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="M44 328q-16 20 -23.5 41.5t-6.5 43.5q1 24 10 43t18 31q-10 26 -8.5 62.5t35.5 68.5q26 23 69 33.5t103 7.5q43 -2 73.5 -7.5t32.5 -5.5v0q8 -2 16.5 -3.5t17.5 -3.5q0 10 -4 38.5t-23 85.5q-23 69 -21.5 121t26.5 87q27 37 62 45t47 8t23 -5t19 -14q18 -21 19 -52.5
|
|
6
|
+
t-1 -49.5q10 -28 29 -74q20 -45 43.5 -91.5t50.5 -87.5q26 -41 51 -60q1 -1 2 -1.5t2 -1.5q14 -16 24.5 -32t17.5 -31q9 5 19.5 7.5t22.5 2.5h131q37 0 63 -26t26 -63v-348q0 -37 -26.5 -63t-62.5 -26h-131q-14 0 -27 4.5t-24 12.5l-51 -6q-3 -1 -28 -4t-64.5 -6t-89.5 -5
|
|
7
|
+
t-103 -1q-19 -1 -37 -2t-35 -1q-29 0 -54 2t-45 7q-50 10 -83 31t-50 52q-13 23 -15 45t0 37q-32 29 -41 58.5t-8 52.5q1 13 3.5 24t5.5 19v0zM921 66q13 0 22 9.5t9 21.5v349q0 13 -9.5 22t-21.5 9h-131q-13 0 -22 -9.5t-9 -21.5v-348q0 -13 9 -22.5t22 -9.5h131v0zM99 353
|
|
8
|
+
q7 -7 8 -17t-4 -18l-4.5 -10t-5.5 -26q-1 -21 9 -39.5t31 -34.5q8 -6 10.5 -15t-0.5 -18l-2.5 -17.5t8.5 -37.5q11 -19 34.5 -33t60.5 -21q29 -7 68 -8t88 3h1h2q51 -1 101 1t89 5t63 6t25 3v0l22 3q-1 4 -1.5 9t-0.5 9v349q0 7 1 13.5t3 12.5q-3 11 -12 32t-28 42
|
|
9
|
+
q-36 28 -70 84t-61 112.5t-45 99.5q-17 44 -18 48t-1.5 7.5t0.5 7.5q2 18 1.5 36.5t-4.5 25.5q-9 -1 -28 -5.5t-33 -23.5q-16 -23 -15.5 -62.5t18.5 -93.5q27 -82 29.5 -127.5t-18.5 -64.5q-11 -9 -24 -10.5t-23 2.5q-10 2 -19.5 4t-17.5 4h-2h-1q-49 11 -121.5 12.5
|
|
10
|
+
t-103.5 -26.5q-26 -24 -17.5 -49.5t10.5 -28.5q6 -9 4.5 -19.5t-9.5 -17.5q0 -1 -11.5 -15t-12.5 -35q0 -15 6.5 -29.5t20.5 -28.5v0z" />
|
|
11
|
+
</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="M44 328q-16 20 -23.5 41.5t-6.5 43.5q1 24 10 43t18 31q-10 26 -8.5 62.5t35.5 68.5q26 23 69 33.5t103 7.5q43 -2 73.5 -7.5t32.5 -5.5v0q8 -2 16.5 -3.5t17.5 -3.5q0 10 -4 38.5t-23 85.5q-23 69 -21.5 121t26.5 87q27 37 62 45t47 8t23 -5t19 -14q17 -21 18.5 -52.5
|
|
6
|
+
t-0.5 -49.5q10 -28 29 -74q20 -45 43.5 -91.5t50.5 -87.5q26 -41 51 -60q1 -1 2 -1.5t2 -1.5q14 -16 24.5 -32t17.5 -31q9 5 19.5 7.5t22.5 2.5h131q37 0 63 -26t26 -63v-348q0 -37 -26.5 -63t-62.5 -26h-131q-14 0 -27.5 4.5t-23.5 12.5l-51 -6q-3 -1 -28 -4t-64.5 -6
|
|
7
|
+
t-89.5 -5t-103 -1q-19 -1 -37 -2t-35 -1q-29 0 -54 2t-46 7q-49 10 -82 31t-51 52q-13 23 -14.5 45t0.5 37q-32 29 -41 58.5t-8 52.5q1 13 3.5 24t5.5 19v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
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 1158 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M856 957v-58h54h1h1h1.5h0.5v0l31 -34l10 2q6 1 13.5 1.5t14.5 0.5v0q64 0 109 -45t46 -109v0v-0.5v-0.5q0 -13 -2.5 -25t-6.5 -23l1 1q-16 -47 -55.5 -76.5t-89.5 -29.5h-1v0v0q-13 0 -25 2t-24 6h1q-46 15 -76 55t-30 91q0 13 2.5 25.5t6.5 23.5l-1 -1l3 11l-167 165
|
|
6
|
+
v0.5v1.5v0.5v0.5v0v77q0 2 1.5 3.5t3.5 1.5v0h109q2 0 3 -1.5t1 -3.5v0v0v0v-58h58v0h1q2 0 3 -1t2 -3v0v0zM1031 602q27 0 46 19t19 46t-19 46.5t-46 19.5q-28 0 -47 -19.5t-19 -46.5v0v0v0v-1v0q0 -27 19 -46t46 -19v0h1v0v1zM707 144q-6 -26 -31 -50q-26 -24 -70 -43
|
|
7
|
+
t-106 -30q-62 -12 -141 -12t-141 12q-62 11 -106 30t-70 43q-25 24 -31 50q-1 1 -1.5 3t-0.5 5v585v2v2v1.5v1.5v0q6 29 36 54q29 25 75.5 43t107.5 28q61 11 129 11q69 0 130 -11q61 -10 107.5 -28t75.5 -42q29 -25 36 -54q1 -2 1.5 -3.5t0.5 -3.5v-0.5v-0.5v0v-585v-2v-1
|
|
8
|
+
v-3t-1 -2v0v0zM680 547q0 1 -0.5 2.5t-1.5 3.5v0q0 1 -0.5 2t-1.5 2v0l-3 6q-1 1 -1.5 2.5t-1.5 2.5v0l-2.5 2.5t-2.5 3.5l-4 3l-7 7l-3 3q-3 2 -5.5 3.5t-4.5 3.5h-1h-2l-14 8h-2l-16 8q-26 12 -56 20.5t-61 13.5h-3q-7 2 -14 3l-14 2h-6l-25 2h-133l-26 -2h-5l-28 -5
|
|
9
|
+
q-34 -5 -64.5 -13.5t-58.5 -21.5l3 1q-5 -2 -9 -4l-8 -4v0h-2q-4 -2 -7 -4l-6 -4v0h-3q-3 -2 -5.5 -3.5t-4.5 -3.5v0q-1 -1 -2 -1.5t-2 -1.5v0l-3.5 -3.5l-3.5 -3.5v0l-3 -3q-2 -2 -3 -3.5t-2 -2.5h-1l-3 -5l-5 -5q-1 -1 -1.5 -2.5t-0.5 -2.5v0q-1 -3 -2 -6.5t-1 -7.5v-2.5
|
|
10
|
+
v-2.5v0q1 0 1 -1v-2v-2t-1 -2v0v-118v0v0l10 9q20 17 49 32q30 14 69 25t87 17q49 6 106 6q58 0 106 -6t87 -17t68 -26q30 -14 49 -30l12 -11v117v2v2v2v1v0q0 2 0.5 3.5t0.5 3.5t-0.5 3.5t-0.5 3.5v-1v2zM680 220v118v1.5v1.5v2v2v0v2.5v2.5v2v2v2v2v0q0 1 -0.5 2.5
|
|
11
|
+
t-1.5 3.5v0q0 1 -0.5 2t-1.5 2v0l-3 6l-3 4l-5 7q-1 0 -2 1t-1 2h-1l-7 7q-1 1 -2 1.5t-1 1.5v0l-11 7h-2l-14 8h-2l-16 8q-26 12 -56 20.5t-61 13.5l-3 1l-28 4h-6l-25 2h-101h-10h-10h-12l-26 -2h-5l-28 -4q-34 -5 -64.5 -14t-58.5 -22l3 1l-17 -8h-1l-14 -8l-3 -2
|
|
12
|
+
q-3 -2 -5.5 -3.5t-4.5 -3.5v0l-4 -3l-7 -7l-3 -3q-3 -2 -4.5 -3.5l-3.5 -3.5v0q-1 -1 -1.5 -2t-1.5 -2v0q-1 -1 -1.5 -2.5t-1.5 -3.5v0l-2 -5q-1 0 -1 -1v-1v-2t1 -2v1q-1 -2 -1 -3.5v-3.5v-3.5t1 -3.5v1v-2v-2v-2v-1v0v-116q0 1 2 2t3 3l3 3q3 2 6.5 5t7.5 5l16 11l5 3
|
|
13
|
+
l16 9h3q5 2 10 4.5t11 4.5l6 3l18 6q1 0 2.5 0.5t3.5 1.5v0q5 2 11.5 3.5t12.5 3.5h2h4l24 6h8l25 4h6l32 3h9l27 2h6h19h18h18.5h17.5h10l27 -2h9l32 -3h6l25 -4h9l24 -6h3q7 -2 13.5 -3.5t12.5 -3.5l6 -2l18 -6l6 -3l21 -9h3l16 -9l5 -3l13 -8l3 -3q4 -2 7.5 -5t6.5 -5
|
|
14
|
+
q1 -1 1.5 -2t1.5 -1v0l6 -5h2zM358 41q71 0 130 11t102 28t66 38q24 21 24 42t-24 42q-23 21 -65.5 38t-102.5 28q-59 11 -130 11q-72 0 -131 -11t-101 -28t-66 -39q-23 -21 -23 -42q0 -22 24 -43q23 -21 65.5 -38t102.5 -27q59 -10 130 -10h-1zM680 733v0.5v0.5v0.5v0.5v0
|
|
15
|
+
q-3 20 -28 41q-24 20 -66.5 36t-100.5 26q-57 10 -126 10q-68 0 -126 -10t-100.5 -26t-67.5 -37q-25 -20 -28 -41h0.5h0.5q0 -1 -0.5 -1h-0.5v0v-134l10 10q20 16 49 31q30 15 69 25.5t87 17.5q48 6 106 6q57 0 105 -7q49 -6 87.5 -17t68.5 -25q30 -15 49 -31q4 -3 6.5 -5.5
|
|
16
|
+
l5.5 -5.5v0v135zM359 889q-71 0 -133 -11q-63 -11 -110.5 -30t-77.5 -45t-36 -57q-1 -1 -1.5 -3.5t-0.5 -4.5v-0.5v-0.5v0v-585v-0.5v-0.5q0 -3 0.5 -5.5t2.5 -4.5v0q6 -26 31 -51q26 -25 70.5 -45t108.5 -33q63 -12 146 -12t146 12q64 13 108.5 33t70.5 45q25 25 32 51
|
|
17
|
+
q1 2 1.5 4.5t0.5 5.5v0v0v0v588v0v1q0 3 -0.5 5.5t-1.5 5.5v0q-7 29 -37 54q-30 26 -77.5 44.5t-109.5 28.5q-62 11 -133 11v0zM359 18q-80 0 -140 11q-61 11 -103.5 29.5t-66.5 41.5t-29 46v2v0.5v0.5v1.5v0.5v0v586v1.5v1.5q6 28 35 52t74.5 41.5t104.5 27.5t126 10
|
|
18
|
+
t126 -10t104.5 -27t74.5 -40q28 -24 35 -51v-1.5v-1.5v-1.5v-1.5v0v-585v-1.5v-0.5v-1.5v-0.5v0v-2q-7 -23 -31 -45q-24 -23 -66.5 -41.5t-103.5 -29.5q-61 -12 -140 -12v0zM359 857q-65 0 -123 -10q-58 -9 -103 -25.5t-73 -38.5t-32 -47v-158l26 25q22 18 53 33
|
|
19
|
+
q31 14 70.5 24t84.5 15q46 6 97 6t97 -5q46 -6 85 -16t70 -24t53 -33l11 -10l16 -16v158l-9 -2l8 3q-4 25 -32 47t-72.5 38.5t-103.5 26.5q-58 9 -123 9v0zM46 731v2q3 19 27 37q25 19 66.5 34.5t97.5 24.5q56 10 122 10q65 0 121 -10q56 -9 97.5 -24.5t66.5 -34.5
|
|
20
|
+
q25 -18 27 -37v-113q-23 19 -56 33q-32 15 -72 25t-87 16q-46 5 -98 5q-51 0 -98 -5q-46 -6 -86 -16t-73 -25q-32 -14 -56 -33zM359 667h-67l-26 -3h-5l-29 -4q-34 -6 -65.5 -15.5t-60.5 -22.5l4 2l-18 -9h-2l-14 -8l-3 -2l-11 -11l-4 -3q-2 -2 -4 -3.5t-4 -3.5v-1l-3 -3
|
|
21
|
+
l-3.5 -3.5t-2.5 -3.5v0l-4 -5q-1 -2 -1.5 -3.5t-1.5 -3.5v0q-1 -1 -2 -1.5t-2 -1.5v0v-2v-2v-1.5v-1.5v0q0 -2 -0.5 -4t-0.5 -5q0 -2 0.5 -4t0.5 -4v0v-0.5v-0.5v-1v-1v0v-143l16 15q2 3 4.5 5t5.5 4v1q22 18 53 33q31 14 70 24t85 15q46 6 97 6t97 -6q46 -5 85 -15t70 -24
|
|
22
|
+
t53 -33l11 -10l15 -16v142v1.5v0.5v0.5v1.5v0v3v3t0.5 2.5t0.5 2.5t-0.5 2.5t-0.5 2.5v0v2v1v2v2v0l-9 5l-4 7l-1.5 3t-1.5 2v0q-2 2 -3 3.5t-3 3.5v0l-2 2l-2 2v0l-7 7l-3 3l-12 8l-3 2l-14 8h-2l-17 8q-26 12 -56.5 21.5t-62.5 14.5l-3 1l-30 4h-5l-26 2h-18l-14 4h-34z
|
|
23
|
+
M86 588l12 8l18 9q26 11 55.5 19.5t60.5 13.5l2 1l29 4h5l26 2h31h34h34h32h12.5t12.5 -2h5l28 -4q34 -6 64 -14.5t58 -20.5l-3 1l16 -8q4 -3 8 -5t7 -4h-1h3q3 -2 5.5 -3.5t4.5 -3.5v0l3 -3l7 -6l3 -3l3 -3t2 -3v0q1 -1 1.5 -2.5t0.5 -2.5v0q1 -1 1.5 -2.5t1.5 -2.5v0l2 -4
|
|
24
|
+
v-5v-1.5v-1.5v-1.5v-1.5v0v-0.5v-1.5v-0.5v-0.5v0q0 -1 -0.5 -2.5t-0.5 -2.5t0.5 -2.5t0.5 -2.5v0v-95q-23 19 -56 33q-32 15 -72 25t-87 15q-47 6 -98 6t-98 -6q-47 -5 -87 -15t-72 -25q-33 -14 -56 -33v96v2v3v2v2v0q0 1 -0.5 2.5t-0.5 2.5t0.5 2.5t0.5 2.5v0v2.5v2.5v2
|
|
25
|
+
t2 1q1 1 0.5 2.5t1.5 2.5l3 4l5 6l3 4q2 1 3.5 2.5t3.5 2.5v0l3 3l9 7v9zM359 476h-17h-17h-33l-26 -2h-5l-29 -4q-34 -6 -65.5 -15.5t-60.5 -22.5l4 1l-18 -8q-5 -3 -9 -5.5t-7 -4.5l-3 -2l-15 -11l-8 -8l-3 -3l-3.5 -3.5t-2.5 -3.5l-3 -5q-1 -2 -2 -3.5t-2 -3.5v0
|
|
26
|
+
q-1 -1 -1.5 -2.5t-1.5 -2.5v-1l-1 -7q0 -2 -0.5 -4t-0.5 -4t0.5 -4.5t0.5 -4.5v1v-1v-1v-0.5v-0.5v0v-143l16 16l3 3l5 5l12 10l14 9l5 3l16 8h2l20 9l7 2l17 7l6 2l26 7h3l23 5h9l24 4h7q8 0 15.5 1.5t16.5 1.5h8l27 2h8h37h36h10l27 -2h8q9 0 16.5 -1t15.5 -2h6l24 -4h9
|
|
27
|
+
l19 -4l9 -2l24 -7l7 -3l17 -6l6 -2l21 -9h2l8 -4l8 -4l5 -3l12 -8l9 5l-5 -7q3 -3 6.5 -5.5t6.5 -5.5v-2q2 -1 3.5 -2.5t2.5 -3.5v0l7 7h9v123v0.5v1.5v0.5v1.5v0v1v2v1.5v1.5v0v2.5v2.5v2.5v2.5v0v1.5v1.5v2v2v-1q-1 2 -1.5 3.5t-1.5 3.5v-1q-1 2 -1.5 4t-1.5 3v0
|
|
28
|
+
q-1 1 -2 2.5t-2 2.5v0q-1 2 -2.5 3.5t-2.5 3.5v0l-4 3l-8 8h-3q-2 3 -4.5 5.5t-4.5 5.5v0h-3l-6 4t-7 4h-1q-5 3 -9.5 5t-9.5 4q-26 12 -56.5 21.5t-62.5 14.5l-33 5h-5l-26 2h-32q-10 3 -19 3.5t-18 0.5v-1zM46 336v2v2v2.5v2.5v0v2v2v3v2v0v1.5v1.5v1v1v0v1.5v2.5l3 5
|
|
29
|
+
q1 1 1.5 2t1.5 2v0l5 5l1 3q3 2 4.5 3.5l3.5 3.5l2 2l11 8q3 2 6.5 4t7.5 3v1q5 2 9.5 4.5t8.5 4.5q26 11 55 19.5t60 13.5h3l29 4h4l26 3h32h34h34h31l26 -3h5l28 -4q33 -5 63 -13.5t58 -21.5l-3 2q5 -2 9 -4.5t8 -4.5v1q4 -2 7.5 -4.5t7.5 -4.5h-1l3 -1q3 -2 5 -4t5 -4
|
|
30
|
+
l-1 1l4 -3l7 -6q0 -1 1 -2l2 -2v0q1 -1 2 -2.5t2 -2.5v0q1 -1 1.5 -2t1.5 -2v0q1 -1 1.5 -2l1.5 -3v0q0 -1 0.5 -2t0.5 -2v0v-4q0 -1 0.5 -1.5t0.5 -1.5t-0.5 -2t-0.5 -2v1q0 -1 0.5 -1.5l0.5 -0.5q0 -1 -0.5 -1.5l-0.5 -0.5v0v-2v-3v-2v-3v1v-96l-8 7h-2l-20 13l-17 8h-2
|
|
31
|
+
l-22 10l-6 2q-4 2 -8.5 3.5t-8.5 2.5l-1 1l-7 2l-26 7h-9q-5 0 -10 2t-10 3l-8 2l-25 4h-7l-32 3h-9l-27 2h-10h-38h-37h-11l-19 5h-8l-33 -4h-6l-25 -6l-10 -2l-24 -6h-4q-7 -2 -13.5 -3.5t-12.5 -3.5h-5q-6 -2 -11 -4l-10 -4h1l-6 -2q-6 -2 -11.5 -4.5t-10.5 -4.5h-2
|
|
32
|
+
l-17 -9l-5 -3l-14 -9l-3 -2l-8 -6v93zM359 287q-74 0 -135 -12q-61 -11 -104.5 -29t-67.5 -41t-24 -46t24 -46t67.5 -41t104.5 -30q61 -11 135 -11t135 11q61 12 104.5 30t67.5 41t24 46t-24 46t-67.5 41t-104.5 30q-61 11 -135 11v0zM359 49q-73 0 -131 11t-98.5 27
|
|
33
|
+
t-61.5 35q-22 19 -22 36t22 36q21 19 61.5 35.5t98.5 26.5q58 11 131 11t131 -11q58 -10 98.5 -26.5t61.5 -35.5q22 -19 22 -36t-22 -36q-21 -19 -61.5 -35t-98.5 -27q-58 -10 -131 -10v-1z" />
|
|
34
|
+
</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="M995 500q-13 0 -21.5 8.5t-8.5 20.5v267q0 55 -38.5 93.5t-92.5 38.5h-644q-54 0 -92.5 -38.5t-38.5 -93.5v-271q0 -12 -8.5 -20.5t-21.5 -8.5q-12 0 -20.5 8.5t-8.5 20.5v271q0 79 56 135t134 56h644q79 0 134.5 -56t55.5 -135v-267q0 -12 -8.5 -20.5t-20.5 -8.5z
|
|
6
|
+
M346 274l137 -136v595q0 12 8.5 20.5t20.5 8.5t20.5 -8.5t8.5 -20.5v-595l137 136q4 4 9.5 6.5t10.5 2.5q6 0 11.5 -2t9.5 -7q9 -8 9 -20.5t-9 -20.5l-186 -187q-4 -4 -9.5 -6.5t-11.5 -2.5t-11.5 2.5t-9.5 6.5l-186 187q-9 8 -9 20.5t9 20.5q8 9 20.5 9t20.5 -9v0z" />
|
|
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="M1024 427h-427v-427h-170v427h-427v170h427v427h170v-427h427v-170z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
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 1468 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 756h973v119h-973v-119zM159 517h119v159h-119v-159zM358 199h119v477h-119v-477zM557 398h119v278h-119v-278v0zM756 0h119v676h-119v-676zM1448 707q0 -18 -13 -31t-31 -13v0h-6q-20 0 -36.5 -11t-24.5 -29v0v-6q-2 -6 -3 -12t-1 -12v0v0v0q0 -14 5.5 -26t14.5 -21v0
|
|
6
|
+
q6 -6 10 -14.5t4 -18.5v0q0 -9 -3.5 -17t-9.5 -14v0q-6 -6 -14 -9.5t-17 -3.5v0q-9 0 -17 3.5t-14 9.5v0q-9 9 -21.5 15t-27.5 6v0v0v0q-28 0 -47.5 -19.5t-19.5 -47.5v0v-1.5v-1.5q0 -18 -13 -31.5t-31 -14.5v0q-18 0 -31 13t-13 32v0v0v5q0 20 -11 36t-28 24h-1h-6
|
|
7
|
+
q-5 2 -11.5 3.5t-12.5 1.5h-2.5h-2.5v0q-14 0 -26 -5.5t-21 -14.5v0q-6 -7 -15 -10.5t-18 -4.5v0q-19 1 -31.5 13.5t-13.5 31.5v0q1 9 4.5 17t8.5 14v0l3 3q9 9 14.5 21t5.5 26q0 7 -2 14.5t-5 13.5v0q-7 19 -23.5 31t-37.5 12v0h-2v0v0q-19 0 -32.5 13t-13.5 31v1
|
|
8
|
+
q1 17 14 30t31 13l0.5 -0.5l0.5 -0.5v0h5v0v0q14 0 26 5.5t21 14.5v0q9 9 14.5 21.5t5.5 26.5v0.5v0.5v0q0 14 -5 26t-14 21v0q-6 6 -9.5 14.5t-3.5 17.5v0v0v0v1v0q0 9 3 17t9 14v0q7 5 14.5 8.5t16.5 4.5v0h0.5h0.5q9 0 17 -3.5t14 -9.5v0q9 -10 21.5 -15.5t27.5 -6.5v0
|
|
9
|
+
q28 1 48 20.5t22 46.5v0v0.5v2.5v0v0q0 19 13 32t31 13v0q18 0 30.5 -13t12.5 -31v-0.5v-0.5v0v-4q0 -14 5 -26t14 -21v0q10 -9 22 -14t26 -5t26.5 5t21.5 14v0q6 7 14.5 10.5t17.5 3.5v0v0v0v0v0q19 0 32 -13t13 -31q0 -9 -3.5 -16.5t-8.5 -13.5v0q-10 -10 -15.5 -22.5
|
|
10
|
+
t-5.5 -26.5v0v0v0v0v0q0 -28 19.5 -48t47.5 -20h2v0v0q18 0 31 -12t14 -30v0v-2zM1130 802q-37 0 -63 -26.5t-26 -63.5q0 -38 26.5 -64.5t63.5 -26.5h0.5h0.5v0q36 2 60.5 28t24.5 62t-24.5 62t-60.5 28v0z" />
|
|
11
|
+
</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 1189 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1169 710v0v0q0 -18 -13 -31t-31 -13h-0.5h-1.5v0h-4q-20 0 -36 -11t-24 -28v0v-5q-2 -5 -3 -11t-1 -12v0q0 -14 5 -26t14 -21v0q7 -6 10.5 -14.5t4.5 -18.5v0v0v0q0 -9 -3.5 -17t-9.5 -13v0q-6 -6 -13.5 -10t-16.5 -4h-0.5h-0.5v0q-9 1 -17 4t-14 9v0q-9 10 -21.5 15.5
|
|
6
|
+
t-26.5 5.5v0q-28 0 -47.5 -19.5t-19.5 -46.5v0v-2v-2q0 -17 -12 -30t-30 -14v0q-18 0 -31 13t-13 31v0v5q0 20 -11 36t-28 24v0h-6q-6 2 -12 3t-12 1h-3h-2v0q-14 0 -26 -5t-21 -14v0q-6 -7 -14.5 -11t-17.5 -4h-0.5h-0.5v0q-18 1 -30.5 13.5t-12.5 30.5v0q0 9 3.5 17
|
|
7
|
+
t9.5 14v0l2 3q9 9 14.5 20.5t5.5 25.5q0 8 -2 15t-5 14v-1q-7 19 -23.5 30.5t-36.5 12.5v0h-3v0v0q-18 0 -31 12.5t-14 31.5v0q1 18 14 30t31 12v0v0h5h1v0q14 0 25.5 5.5t20.5 13.5v0q9 9 14.5 21t5.5 26v1.5v0.5v0v0v0q0 14 -5 26t-14 21v0q-6 6 -9.5 14t-3.5 18v0v0v0
|
|
8
|
+
q0 9 3.5 17t8.5 14v0q7 5 14.5 8.5t16.5 4.5v0q9 0 17 -3.5t14 -9.5v0q9 -10 22 -15.5t27 -5.5v0q27 0 46.5 19t21.5 45v0v3v0v0q0 18 12.5 31t31.5 14v0q18 -1 30 -13.5t12 -30.5v-0.5v-0.5v0v-3q1 -13 6 -25t13 -21v0q9 -9 21.5 -14.5t26.5 -5.5t26 5.5t21 14.5v0
|
|
9
|
+
q6 6 14.5 10t17.5 4v0v0v0q18 0 31 -13t13 -31v-1.5v-1.5v1v-1v0q0 -9 -3.5 -16.5t-8.5 -12.5v0q-9 -9 -14.5 -21.5t-5.5 -26.5v0q0 -28 19.5 -47t46.5 -19h1v0v0v0h1q17 0 29.5 -11.5t14.5 -27.5v-1zM853 804q-34 -3 -58 -28.5t-24 -60.5q0 -36 24.5 -62t60.5 -28v0
|
|
10
|
+
q35 2 59 28t24 61q0 36 -24 61.5t-59 27.5v0zM257 1024h-0.5h-0.5q-36 0 -67.5 -12.5t-56.5 -34.5v0q-25 -23 -42 -53t-22 -64l-1 -1h-3v-694h-64v-165h512v165h-64v32h-125v59h125v90h-62v59h62v89h-125v59h125v90h-62v58h62v89h-125v59h125v9h-3q-5 36 -22 66t-42 52h-1
|
|
11
|
+
q-24 22 -55.5 35t-67.5 13v0v0z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
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="-12 0 1161 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M740 175q-40 0 -68 28t-28 68v0q0 8 1.5 16t4.5 15v0l-3 -7l-122 70l-87 -50v-126q33 -7 54.5 -33t21.5 -61q0 -39 -28 -67t-67 -28q-40 0 -68 28t-28 67q0 35 22 61t54 33h1v126l-100 57l-110 -62l-6 9q3 -7 5 -15.5t2 -17.5v-1v0v-1q0 -40 -28.5 -68t-68.5 -28t-68 28
|
|
6
|
+
t-28 68t28 68.5t68 28.5q23 0 42 -9.5t33 -25.5v0l116 68v89l-114 67q-14 -16 -33 -25.5t-41 -9.5q-39 0 -67 28t-28 67q0 40 28 67.5t67 27.5q40 0 67.5 -27.5t27.5 -67.5v0v0v0q0 -8 -1 -15t-4 -14v1l3 4l110 -63l100 58v126q-33 7 -55 33t-22 60q0 40 28 68t68 28
|
|
7
|
+
q39 0 67 -28t28 -68q0 -34 -21.5 -60t-54.5 -33v0v-126l88 -51l119 89l22 -39l-115 -86v-119l115 -65q13 16 32 25t41 9q39 0 67 -28t28 -67t-28 -67t-67 -28v0v1zM1139 703v0v0q0 -18 -13 -31t-31 -13h-6q-20 0 -37 -11.5t-24 -29.5h-1v-1.5v-1.5v-1.5v-1.5v0q-2 -5 -3 -11
|
|
8
|
+
t-1 -13q0 -14 5 -26t14 -21v0q7 -6 11 -14.5t4 -18.5v0v0v0q0 -9 -3.5 -17.5t-9.5 -14.5v0q-6 -6 -14 -9.5t-17 -3.5v0q-9 0 -17 3.5t-14 9.5v0q-9 10 -22 15.5t-27 6.5v0v0v0q-28 0 -48 -20t-20 -48v0v-2.5v-2.5q0 -19 -13 -32t-31 -13q-19 0 -32 13t-13 32v1.5v1.5v-1v6
|
|
9
|
+
q0 20 -11 37t-29 24l-1 1h-1h-2h-1h-2v0q-5 2 -11 3t-13 1q-13 0 -25.5 -5t-21.5 -14v0q-6 -7 -14.5 -11t-18.5 -4v0v0h-1q-18 0 -31 13t-13 31q0 10 4 18t10 14v0v1.5t2 1.5q9 9 14 21t5 25q0 8 -1.5 15t-4.5 13v0q-7 19 -23.5 31t-37.5 12v0h-1.5h-1.5q-18 0 -31 13
|
|
10
|
+
t-14 32v0q0 18 13 31t32 13h5q14 0 26 5t21 14v0q9 9 14.5 21.5t6.5 26.5v0v0.5v0.5q0 14 -5.5 26t-14.5 21v0q-6 6 -10.5 15t-4.5 18v0v0.5v0.5q0 9 3.5 17t9.5 14v0q6 6 14 9t17 4v0q10 0 18 -3.5t14 -9.5v0q10 -10 22.5 -15.5t27.5 -5.5v0q7 0 14 1.5t13 4.5l-1 -1
|
|
11
|
+
q19 8 31 24.5t13 37.5v0v0.5v0.5q0 19 13 32t31 13t31 -12.5t14 -30.5v0v-5q0 -14 5 -26t14 -21v0q9 -10 21.5 -15.5t26.5 -5.5t26 5t21 14v0q7 7 15.5 11t18.5 4v0q18 0 31 -13t13 -31q0 -10 -3.5 -18t-9.5 -14v0q-9 -9 -15 -21.5t-6 -27.5v0v0v0q0 -28 20 -48t47 -20v0h1
|
|
12
|
+
v0q18 0 31 -12.5t14 -31.5v0v0zM822 797h-0.5h-0.5q-38 0 -64.5 -26.5t-26.5 -64.5q0 -37 26.5 -63.5t63.5 -26.5h2q37 0 63.5 26.5t26.5 63.5q0 38 -26.5 64.5t-63.5 26.5v0v0z" />
|
|
13
|
+
</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 20 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 960v0v0v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
@import './fontIcons.css';
|
|
2
|
+
|
|
3
|
+
#lsac-supernavbar-root {
|
|
4
|
+
width: 100%;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.app {
|
|
9
|
+
width: 400px;
|
|
10
|
+
height: 575px;
|
|
11
|
+
padding: 30px 60px;
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
background-color: white;
|
|
14
|
+
box-shadow: 0 4px 14px 4px #375c821c;
|
|
15
|
+
font-family: 'proxima-nova', 'Helvetica Neue' !important;
|
|
16
|
+
border-bottom: 5px solid #cad5e6;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.top {
|
|
20
|
+
width: 100%;
|
|
21
|
+
height: 50%;
|
|
22
|
+
border-bottom: 2px solid #7998c7;
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: center;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.bottom {
|
|
29
|
+
width: 100%;
|
|
30
|
+
height: 50%;
|
|
31
|
+
border-top: 2px solid #7998c7;
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
justify-content: space-around;
|
|
35
|
+
align-items: center;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.header-image {
|
|
39
|
+
width: 165px;
|
|
40
|
+
height: 165px;
|
|
41
|
+
background: url('https://silind-s3.s3.eu-west-2.amazonaws.com/direflow/logo.svg');
|
|
42
|
+
background-size: contain;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.header-title {
|
|
46
|
+
font-size: 34px;
|
|
47
|
+
color: #5781C2;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.sample-text {
|
|
51
|
+
font-size: 16px;
|
|
52
|
+
color: #666;
|
|
53
|
+
text-align: center;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.button {
|
|
57
|
+
width: 150px;
|
|
58
|
+
height: 45px;
|
|
59
|
+
font-size: 20px;
|
|
60
|
+
font-weight: bold;
|
|
61
|
+
background-color: #5781C2;
|
|
62
|
+
color: white;
|
|
63
|
+
box-shadow: 2px 2px 5px #16314d98;
|
|
64
|
+
outline: none;
|
|
65
|
+
border: 0;
|
|
66
|
+
cursor: pointer;
|
|
67
|
+
transition: 0.3s;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.button:hover {
|
|
71
|
+
box-shadow: 4px 4px 8px #16314d63;
|
|
72
|
+
background-color: #40558f;
|
|
73
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'proxima-nova';
|
|
3
|
+
src: url('./fonts/ProximaNovaReg.eot') format("eot");
|
|
4
|
+
src: url('./fonts/ProximaNovaReg.eot#iefix') format('embedded-opentype'),
|
|
5
|
+
url('./fonts/ProximaNovaReg.ttf') format('truetype'),
|
|
6
|
+
url('./fonts/ProximaNovaReg.woff2') format('woff2'),
|
|
7
|
+
url('./fonts/ProximaNovaReg.woff') format('woff'),
|
|
8
|
+
url('./fonts/ProximaNovaReg.svg#ProximaNovaReg') format('svg');
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
font-display: block;
|
|
12
|
+
}
|
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'comprehend';
|
|
3
|
+
src: url('./fonts/comprehend.eot?vrvuu6');
|
|
4
|
+
src: url('./fonts/comprehend.eot?vrvuu6#iefix') format('embedded-opentype'),
|
|
5
|
+
url('./fonts/comprehend.ttf?vrvuu6') format('truetype'),
|
|
6
|
+
url('./fonts/comprehend.woff?vrvuu6') format('woff');/*,
|
|
7
|
+
url('./fonts/comprehend.svg?vrvuu6#comprehend') format('svg');*/
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
[class^="icon-"], [class*=" icon-"] {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'comprehend' !important;
|
|
16
|
+
speak: never;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-ask-support:before {
|
|
29
|
+
content: "\e92b";
|
|
30
|
+
}
|
|
31
|
+
.icon-FAQ:before {
|
|
32
|
+
content: "\e92a";
|
|
33
|
+
}
|
|
34
|
+
.icon-community:before {
|
|
35
|
+
content: "\e928";
|
|
36
|
+
}
|
|
37
|
+
.icon-feedback:before {
|
|
38
|
+
content: "\e929";
|
|
39
|
+
}
|
|
40
|
+
.icon-new-releases:before {
|
|
41
|
+
content: "\e927";
|
|
42
|
+
}
|
|
43
|
+
.icon-switch:before {
|
|
44
|
+
content: "\e926";
|
|
45
|
+
}
|
|
46
|
+
.icon-user-management .path1:before {
|
|
47
|
+
content: "\e922";
|
|
48
|
+
color: rgb(255, 255, 255);
|
|
49
|
+
}
|
|
50
|
+
.icon-user-management .path2:before {
|
|
51
|
+
content: "\e923";
|
|
52
|
+
margin-left: -1.3134765625em;
|
|
53
|
+
color: rgb(0, 0, 0);
|
|
54
|
+
}
|
|
55
|
+
.icon-user-management .path3:before {
|
|
56
|
+
content: "\e924";
|
|
57
|
+
margin-left: -1.3134765625em;
|
|
58
|
+
color: rgb(0, 0, 0);
|
|
59
|
+
}
|
|
60
|
+
.icon-user-management .path4:before {
|
|
61
|
+
content: "\e925";
|
|
62
|
+
margin-left: -1.3134765625em;
|
|
63
|
+
color: rgb(0, 0, 0);
|
|
64
|
+
}
|
|
65
|
+
.icon-study-admin:before {
|
|
66
|
+
content: "\e921";
|
|
67
|
+
}
|
|
68
|
+
.icon-ops-admin:before {
|
|
69
|
+
content: "\e920";
|
|
70
|
+
}
|
|
71
|
+
.icon-global-admin:before {
|
|
72
|
+
content: "\e91f";
|
|
73
|
+
}
|
|
74
|
+
.icon-data-acess:before {
|
|
75
|
+
content: "\e917";
|
|
76
|
+
}
|
|
77
|
+
.icon-hub-admin:before {
|
|
78
|
+
content: "\e93d";
|
|
79
|
+
}
|
|
80
|
+
.icon-marketplace-administration:before {
|
|
81
|
+
content: "\e916";
|
|
82
|
+
}
|
|
83
|
+
.icon-engagement:before {
|
|
84
|
+
content: "\e91a";
|
|
85
|
+
}
|
|
86
|
+
.icon-marketplace:before {
|
|
87
|
+
content: "\e91b";
|
|
88
|
+
color: #416783;
|
|
89
|
+
}
|
|
90
|
+
.icon-home-2:before {
|
|
91
|
+
content: "\e91c";
|
|
92
|
+
}
|
|
93
|
+
.icon-my-apps:before {
|
|
94
|
+
content: "\e91d";
|
|
95
|
+
}
|
|
96
|
+
.icon-collboration:before {
|
|
97
|
+
content: "\e91e";
|
|
98
|
+
}
|
|
99
|
+
.icon-plus:before {
|
|
100
|
+
content: "\e919";
|
|
101
|
+
}
|
|
102
|
+
.icon-upload:before {
|
|
103
|
+
content: "\e918";
|
|
104
|
+
}
|
|
105
|
+
.icon-like-solid:before {
|
|
106
|
+
content: "\e913";
|
|
107
|
+
}
|
|
108
|
+
.icon-like-solid1:before {
|
|
109
|
+
content: "\e915";
|
|
110
|
+
}
|
|
111
|
+
.icon-like:before {
|
|
112
|
+
content: "\e912";
|
|
113
|
+
}
|
|
114
|
+
.icon-like-svgrepo-com:before {
|
|
115
|
+
content: "\e914";
|
|
116
|
+
}
|
|
117
|
+
.icon-covid-19:before {
|
|
118
|
+
content: "\e911";
|
|
119
|
+
}
|
|
120
|
+
.icon-rule:before {
|
|
121
|
+
content: "\e910";
|
|
122
|
+
color: #707070;
|
|
123
|
+
}
|
|
124
|
+
.icon-dalia:before {
|
|
125
|
+
content: "\e90f";
|
|
126
|
+
color: #666;
|
|
127
|
+
}
|
|
128
|
+
.icon-Operational-Insights:before {
|
|
129
|
+
content: "\e905";
|
|
130
|
+
}
|
|
131
|
+
.icon-rbm:before {
|
|
132
|
+
content: "\e906";
|
|
133
|
+
}
|
|
134
|
+
.icon-Subtraction-5:before {
|
|
135
|
+
content: "\e907";
|
|
136
|
+
}
|
|
137
|
+
.icon-clinops-insights:before {
|
|
138
|
+
content: "\e908";
|
|
139
|
+
}
|
|
140
|
+
.icon-kpi-studio:before {
|
|
141
|
+
content: "\e909";
|
|
142
|
+
}
|
|
143
|
+
.icon-kpi-studio-dashboard:before {
|
|
144
|
+
content: "\e90a";
|
|
145
|
+
}
|
|
146
|
+
.icon-menu9:before {
|
|
147
|
+
content: "\e90b";
|
|
148
|
+
}
|
|
149
|
+
.icon-oversight-scorecard:before {
|
|
150
|
+
content: "\e90c";
|
|
151
|
+
}
|
|
152
|
+
.icon-question-circle-o:before {
|
|
153
|
+
content: "\e90d";
|
|
154
|
+
}
|
|
155
|
+
.icon-spinner:before {
|
|
156
|
+
content: "\e90e";
|
|
157
|
+
}
|
|
158
|
+
.icon-home:before {
|
|
159
|
+
content: "\e002";
|
|
160
|
+
}
|
|
161
|
+
.icon-office:before {
|
|
162
|
+
content: "\e00b";
|
|
163
|
+
}
|
|
164
|
+
.icon-pencil:before {
|
|
165
|
+
content: "\e00d";
|
|
166
|
+
}
|
|
167
|
+
.icon-book:before {
|
|
168
|
+
content: "\e070";
|
|
169
|
+
}
|
|
170
|
+
.icon-file:before {
|
|
171
|
+
content: "\e086";
|
|
172
|
+
}
|
|
173
|
+
.icon-task-alt:before {
|
|
174
|
+
content: "\e092";
|
|
175
|
+
}
|
|
176
|
+
.icon-folder:before {
|
|
177
|
+
content: "\e0a1";
|
|
178
|
+
}
|
|
179
|
+
.icon-AddFolder:before {
|
|
180
|
+
content: "\e618";
|
|
181
|
+
}
|
|
182
|
+
.icon-envelop:before {
|
|
183
|
+
content: "\e0eb";
|
|
184
|
+
}
|
|
185
|
+
.icon-pushpin:before {
|
|
186
|
+
content: "\e0f0";
|
|
187
|
+
}
|
|
188
|
+
.icon-clock:before {
|
|
189
|
+
content: "\e101";
|
|
190
|
+
}
|
|
191
|
+
.icon-bell:before {
|
|
192
|
+
content: "\e10c";
|
|
193
|
+
}
|
|
194
|
+
.icon-alarm-plus:before {
|
|
195
|
+
content: "\e10d";
|
|
196
|
+
}
|
|
197
|
+
.icon-alarm-minus:before {
|
|
198
|
+
content: "\e10e";
|
|
199
|
+
}
|
|
200
|
+
.icon-alarm-check:before {
|
|
201
|
+
content: "\e10f";
|
|
202
|
+
}
|
|
203
|
+
.icon-alarm-cancel:before {
|
|
204
|
+
content: "\e110";
|
|
205
|
+
}
|
|
206
|
+
.icon-calendar:before {
|
|
207
|
+
content: "\e115";
|
|
208
|
+
}
|
|
209
|
+
.icon-screen:before {
|
|
210
|
+
content: "\e123";
|
|
211
|
+
}
|
|
212
|
+
.icon-database:before {
|
|
213
|
+
content: "\e138";
|
|
214
|
+
}
|
|
215
|
+
.icon-undo:before {
|
|
216
|
+
content: "\e14b";
|
|
217
|
+
}
|
|
218
|
+
.icon-bubble:before {
|
|
219
|
+
content: "\e150";
|
|
220
|
+
}
|
|
221
|
+
.icon-user:before {
|
|
222
|
+
content: "\e185";
|
|
223
|
+
}
|
|
224
|
+
.icon-users:before {
|
|
225
|
+
content: "\e186";
|
|
226
|
+
}
|
|
227
|
+
.icon-user-plus:before {
|
|
228
|
+
content: "\e187";
|
|
229
|
+
}
|
|
230
|
+
.icon-binoculars:before {
|
|
231
|
+
content: "\e1b5";
|
|
232
|
+
}
|
|
233
|
+
.icon-search2:before {
|
|
234
|
+
content: "\e1ba";
|
|
235
|
+
}
|
|
236
|
+
.icon-Pop_out:before {
|
|
237
|
+
content: "\e61f";
|
|
238
|
+
}
|
|
239
|
+
.icon-expand:before {
|
|
240
|
+
content: "\e1bf";
|
|
241
|
+
}
|
|
242
|
+
.icon-expand2:before {
|
|
243
|
+
content: "\e1c8";
|
|
244
|
+
}
|
|
245
|
+
.icon-contract:before {
|
|
246
|
+
content: "\e620";
|
|
247
|
+
}
|
|
248
|
+
.icon-move:before {
|
|
249
|
+
content: "\e61b";
|
|
250
|
+
}
|
|
251
|
+
.icon-lock:before {
|
|
252
|
+
content: "\e1d5";
|
|
253
|
+
}
|
|
254
|
+
.icon-unlocked:before {
|
|
255
|
+
content: "\e1d6";
|
|
256
|
+
}
|
|
257
|
+
.icon-wrench:before {
|
|
258
|
+
content: "\e1d9";
|
|
259
|
+
}
|
|
260
|
+
.icon-equalizer:before {
|
|
261
|
+
content: "\e1dc";
|
|
262
|
+
}
|
|
263
|
+
.icon-cog:before {
|
|
264
|
+
content: "\e1df";
|
|
265
|
+
}
|
|
266
|
+
.icon-report:before {
|
|
267
|
+
content: "\e201";
|
|
268
|
+
}
|
|
269
|
+
.icon-dashboard:before {
|
|
270
|
+
content: "\e23a";
|
|
271
|
+
}
|
|
272
|
+
.icon-remove:before {
|
|
273
|
+
content: "\e250";
|
|
274
|
+
}
|
|
275
|
+
.icon-target:before {
|
|
276
|
+
content: "\e279";
|
|
277
|
+
}
|
|
278
|
+
.icon-power:before {
|
|
279
|
+
content: "\e28e";
|
|
280
|
+
}
|
|
281
|
+
.icon-task-list:before {
|
|
282
|
+
content: "\e29c";
|
|
283
|
+
}
|
|
284
|
+
.icon-tree:before {
|
|
285
|
+
content: "\e2a7";
|
|
286
|
+
}
|
|
287
|
+
.icon-menu2:before {
|
|
288
|
+
content: "\e2a9";
|
|
289
|
+
}
|
|
290
|
+
.icon-cloud-upload:before {
|
|
291
|
+
content: "\e2b7";
|
|
292
|
+
}
|
|
293
|
+
.icon-link:before {
|
|
294
|
+
content: "\e2cf";
|
|
295
|
+
}
|
|
296
|
+
.icon-eye:before {
|
|
297
|
+
content: "\e2dc";
|
|
298
|
+
}
|
|
299
|
+
.icon-eye-blocked:before {
|
|
300
|
+
content: "\e2dd";
|
|
301
|
+
}
|
|
302
|
+
.icon-star-empty:before {
|
|
303
|
+
content: "\e2ff";
|
|
304
|
+
}
|
|
305
|
+
.icon-star-full:before {
|
|
306
|
+
content: "\e301";
|
|
307
|
+
}
|
|
308
|
+
.icon-exclamation:before {
|
|
309
|
+
content: "\e619";
|
|
310
|
+
}
|
|
311
|
+
.icon-WarningCircle:before {
|
|
312
|
+
content: "\e61c";
|
|
313
|
+
}
|
|
314
|
+
.icon-question-circle:before {
|
|
315
|
+
content: "\e35a";
|
|
316
|
+
}
|
|
317
|
+
.icon-plus-circle2:before {
|
|
318
|
+
content: "\e35e";
|
|
319
|
+
}
|
|
320
|
+
.icon-info:before {
|
|
321
|
+
content: "\e362";
|
|
322
|
+
}
|
|
323
|
+
.icon-information_solid:before {
|
|
324
|
+
content: "\e900";
|
|
325
|
+
}
|
|
326
|
+
.icon-close:before {
|
|
327
|
+
content: "\e36e";
|
|
328
|
+
}
|
|
329
|
+
.icon-checkmark-full:before {
|
|
330
|
+
content: "\e370";
|
|
331
|
+
}
|
|
332
|
+
.icon-checkmark-circle:before {
|
|
333
|
+
content: "\e61a";
|
|
334
|
+
}
|
|
335
|
+
.icon-Checkboxnegative:before {
|
|
336
|
+
content: "\e60f";
|
|
337
|
+
}
|
|
338
|
+
.icon-exit:before {
|
|
339
|
+
content: "\e37a";
|
|
340
|
+
}
|
|
341
|
+
.icon-loop:before {
|
|
342
|
+
content: "\e3a7";
|
|
343
|
+
}
|
|
344
|
+
.icon-loop2:before {
|
|
345
|
+
content: "\e3a8";
|
|
346
|
+
}
|
|
347
|
+
.icon-arrow-left:before {
|
|
348
|
+
content: "\e3b3";
|
|
349
|
+
}
|
|
350
|
+
.icon-arrow-right:before {
|
|
351
|
+
content: "\e3b1";
|
|
352
|
+
}
|
|
353
|
+
.icon-DownArrow:before {
|
|
354
|
+
content: "\e61d";
|
|
355
|
+
}
|
|
356
|
+
.icon-UpArrow:before {
|
|
357
|
+
content: "\e61e";
|
|
358
|
+
}
|
|
359
|
+
.icon-arrow-right2:before {
|
|
360
|
+
content: "\e621";
|
|
361
|
+
}
|
|
362
|
+
.icon-arrow-down2:before {
|
|
363
|
+
content: "\e3d4";
|
|
364
|
+
}
|
|
365
|
+
.icon-arrow-right-circle-full:before {
|
|
366
|
+
content: "\e3d3";
|
|
367
|
+
}
|
|
368
|
+
.icon-arrow-left2:before {
|
|
369
|
+
content: "\e3d7";
|
|
370
|
+
}
|
|
371
|
+
.icon-arrow-up:before {
|
|
372
|
+
content: "\ea32";
|
|
373
|
+
}
|
|
374
|
+
.icon-arrow-down:before {
|
|
375
|
+
content: "\ea36";
|
|
376
|
+
}
|
|
377
|
+
.icon-ascending:before {
|
|
378
|
+
content: "\e609";
|
|
379
|
+
}
|
|
380
|
+
.icon-descending:before {
|
|
381
|
+
content: "\e60a";
|
|
382
|
+
}
|
|
383
|
+
.icon-ascending-alt:before {
|
|
384
|
+
content: "\e60d";
|
|
385
|
+
}
|
|
386
|
+
.icon-descending-alt:before {
|
|
387
|
+
content: "\e60e";
|
|
388
|
+
}
|
|
389
|
+
.icon-menu:before {
|
|
390
|
+
content: "\e418";
|
|
391
|
+
}
|
|
392
|
+
.icon-accordion-down:before {
|
|
393
|
+
content: "\e600";
|
|
394
|
+
}
|
|
395
|
+
.icon-accordion-right:before {
|
|
396
|
+
content: "\e601";
|
|
397
|
+
}
|
|
398
|
+
.icon-first-page:before {
|
|
399
|
+
content: "\e602";
|
|
400
|
+
}
|
|
401
|
+
.icon-previous-page:before {
|
|
402
|
+
content: "\e603";
|
|
403
|
+
}
|
|
404
|
+
.icon-next-page:before {
|
|
405
|
+
content: "\e604";
|
|
406
|
+
}
|
|
407
|
+
.icon-last-page:before {
|
|
408
|
+
content: "\e605";
|
|
409
|
+
}
|
|
410
|
+
.icon-checkbox-checked:before {
|
|
411
|
+
content: "\e42e";
|
|
412
|
+
}
|
|
413
|
+
.icon-checkbox-unchecked:before {
|
|
414
|
+
content: "\e42f";
|
|
415
|
+
}
|
|
416
|
+
.icon-square:before {
|
|
417
|
+
content: "\e430";
|
|
418
|
+
}
|
|
419
|
+
.icon-checkbox-partial:before {
|
|
420
|
+
content: "\e431";
|
|
421
|
+
}
|
|
422
|
+
.icon-Checkboxpartial:before {
|
|
423
|
+
content: "\e614";
|
|
424
|
+
}
|
|
425
|
+
.icon-circle2:before {
|
|
426
|
+
content: "\e43a";
|
|
427
|
+
}
|
|
428
|
+
.icon-circle:before {
|
|
429
|
+
content: "\e43b";
|
|
430
|
+
}
|
|
431
|
+
.icon-Diamond:before {
|
|
432
|
+
content: "\e902";
|
|
433
|
+
}
|
|
434
|
+
.icon-filter2:before {
|
|
435
|
+
content: "\e445";
|
|
436
|
+
}
|
|
437
|
+
.icon-table:before {
|
|
438
|
+
content: "\e465";
|
|
439
|
+
}
|
|
440
|
+
.icon-paragraph-left:before {
|
|
441
|
+
content: "\e475";
|
|
442
|
+
}
|
|
443
|
+
.icon-console:before {
|
|
444
|
+
content: "\e481";
|
|
445
|
+
}
|
|
446
|
+
.icon-file-pdf:before {
|
|
447
|
+
content: "\e4e2";
|
|
448
|
+
}
|
|
449
|
+
.icon-file-word:before {
|
|
450
|
+
content: "\e4e4";
|
|
451
|
+
}
|
|
452
|
+
.icon-file-excel:before {
|
|
453
|
+
content: "\e4e5";
|
|
454
|
+
}
|
|
455
|
+
.icon-file-powerpoint:before {
|
|
456
|
+
content: "\e4e7";
|
|
457
|
+
}
|
|
458
|
+
.icon-grid-view:before {
|
|
459
|
+
content: "\e606";
|
|
460
|
+
}
|
|
461
|
+
.icon-list-view:before {
|
|
462
|
+
content: "\e608";
|
|
463
|
+
}
|
|
464
|
+
.icon-file-image .path1:before {
|
|
465
|
+
content: "\e60b";
|
|
466
|
+
color: rgb(68, 68, 68);
|
|
467
|
+
}
|
|
468
|
+
.icon-file-image .path2:before {
|
|
469
|
+
content: "\e622";
|
|
470
|
+
margin-left: -1em;
|
|
471
|
+
color: rgb(68, 68, 68);
|
|
472
|
+
}
|
|
473
|
+
.icon-file-image .path3:before {
|
|
474
|
+
content: "\e623";
|
|
475
|
+
margin-left: -1em;
|
|
476
|
+
color: rgb(68, 68, 68);
|
|
477
|
+
}
|
|
478
|
+
.icon-file-image .path4:before {
|
|
479
|
+
content: "\e624";
|
|
480
|
+
margin-left: -1em;
|
|
481
|
+
color: rgb(68, 68, 68);
|
|
482
|
+
}
|
|
483
|
+
.icon-file-image .path5:before {
|
|
484
|
+
content: "\e625";
|
|
485
|
+
margin-left: -1em;
|
|
486
|
+
color: rgb(255, 255, 255);
|
|
487
|
+
}
|
|
488
|
+
.icon-file-image .path6:before {
|
|
489
|
+
content: "\e626";
|
|
490
|
+
margin-left: -1em;
|
|
491
|
+
color: rgb(255, 255, 255);
|
|
492
|
+
}
|
|
493
|
+
.icon-sort-filter:before {
|
|
494
|
+
content: "\e60c";
|
|
495
|
+
}
|
|
496
|
+
.icon-menu-hamburger:before {
|
|
497
|
+
content: "\e610";
|
|
498
|
+
}
|
|
499
|
+
.icon-schema:before {
|
|
500
|
+
content: "\e611";
|
|
501
|
+
}
|
|
502
|
+
.icon-branch:before {
|
|
503
|
+
content: "\e612";
|
|
504
|
+
}
|
|
505
|
+
.icon-datatypes:before {
|
|
506
|
+
content: "\e613";
|
|
507
|
+
}
|
|
508
|
+
.icon-session:before {
|
|
509
|
+
content: "\e615";
|
|
510
|
+
}
|
|
511
|
+
.icon-stats2:before {
|
|
512
|
+
content: "\e616";
|
|
513
|
+
}
|
|
514
|
+
.icon-share:before {
|
|
515
|
+
content: "\e617";
|
|
516
|
+
}
|
|
517
|
+
.icon-close-alt:before {
|
|
518
|
+
content: "\e607";
|
|
519
|
+
}
|
|
520
|
+
.icon-pie:before {
|
|
521
|
+
content: "\e1f7";
|
|
522
|
+
}
|
|
523
|
+
.icon-stats:before {
|
|
524
|
+
content: "\e1fe";
|
|
525
|
+
}
|
|
526
|
+
.icon-bar:before {
|
|
527
|
+
content: "\e204";
|
|
528
|
+
}
|
|
529
|
+
.icon-chart:before {
|
|
530
|
+
content: "\e20b";
|
|
531
|
+
}
|
|
532
|
+
.icon-diagonals:before {
|
|
533
|
+
content: "\e903";
|
|
534
|
+
}
|
|
535
|
+
.icon-dashed-line:before {
|
|
536
|
+
content: "\e904";
|
|
537
|
+
}
|
|
538
|
+
.icon-viz-threshold2:before {
|
|
539
|
+
content: "\e901";
|
|
540
|
+
}
|