├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── dist ├── esri-global-nav.css ├── esri-global-nav.d.ts ├── esri-global-nav.js └── img │ ├── dashboard-icon_32.svg │ ├── dist-logo.jpg │ ├── gnav-app-switcher-icon.svg │ ├── gnav-esri-logo-globe-tm.svg │ ├── gnav-tsow-frame.svg │ ├── placeholder_add.svg │ └── placeholder_disk.svg ├── gulp-tasks ├── banner.js ├── clean-dist.js ├── compile-js.js ├── compile-postcss.js ├── copy-static-files.js ├── es-lint.js ├── optimize-images.js └── web-server.js ├── gulpfile.js ├── package.json ├── readme-screenshots ├── esri-global-nav-concepts-mobile.png ├── esri-global-nav-concepts.png ├── esri-global-nav-desktop.png ├── esri-global-nav-element-account.png ├── esri-global-nav-element-apps.png ├── esri-global-nav-element-brand.png ├── esri-global-nav-element-menus.png ├── esri-global-nav-element-search.png ├── esri-global-nav-site-v-saas.png └── esri-global-nav-structure.png └── src ├── app-mode-demo.js ├── app-mode-nav.html ├── calcite-web.html ├── demo.css ├── demo.js ├── esri-global-nav.d.ts ├── esri-global-nav.html ├── esri-global-nav.js ├── esri-global-nav.pcss ├── footer ├── css │ ├── footer--animation.pcss │ ├── footer--focus.pcss │ ├── footer--media.pcss │ ├── footer-brand.pcss │ ├── footer-info.pcss │ ├── footer-language.pcss │ ├── footer-menu.pcss │ ├── footer-social.pcss │ └── footer.pcss └── js │ ├── footer-brand.js │ ├── footer-breadcrumbs.js │ ├── footer-info.js │ ├── footer-language.js │ ├── footer-menu.js │ ├── footer-social.js │ ├── footer.js │ └── language.js ├── header ├── css │ ├── header--focus.pcss │ ├── header-account.pcss │ ├── header-apps.pcss │ ├── header-brand-stripe.pcss │ ├── header-brand.pcss │ ├── header-client.pcss │ ├── header-inline-search.pcss │ ├── header-inline-title.pcss │ ├── header-menus.pcss │ ├── header-notifications.pcss │ ├── header-search.pcss │ ├── header-shopping-cart.pcss │ └── header.pcss └── js │ ├── header-account.js │ ├── header-app-switcher.js │ ├── header-apps.js │ ├── header-brand.js │ ├── header-branding-stripe.js │ ├── header-inline-search.js │ ├── header-inline-title.js │ ├── header-menus.js │ ├── header-notifications.js │ ├── header-search.js │ ├── header-shopping-cart.js │ └── header.js ├── home.js ├── img ├── dashboard-icon_32.svg ├── dist-logo.jpg ├── gnav-app-switcher-icon.svg ├── gnav-esri-logo-globe-tm.svg ├── gnav-tsow-frame.svg ├── placeholder_add.svg └── placeholder_disk.svg ├── index.html ├── search ├── css │ └── search.pcss └── js │ └── search.js ├── shared ├── css │ └── shared.pcss ├── js │ ├── domose.js │ ├── iconPaths.js │ ├── polyfills.js │ └── shared.js └── shared.svg └── syntax.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/README.md -------------------------------------------------------------------------------- /dist/esri-global-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/esri-global-nav.css -------------------------------------------------------------------------------- /dist/esri-global-nav.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/esri-global-nav.d.ts -------------------------------------------------------------------------------- /dist/esri-global-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/esri-global-nav.js -------------------------------------------------------------------------------- /dist/img/dashboard-icon_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/dashboard-icon_32.svg -------------------------------------------------------------------------------- /dist/img/dist-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/dist-logo.jpg -------------------------------------------------------------------------------- /dist/img/gnav-app-switcher-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/gnav-app-switcher-icon.svg -------------------------------------------------------------------------------- /dist/img/gnav-esri-logo-globe-tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/gnav-esri-logo-globe-tm.svg -------------------------------------------------------------------------------- /dist/img/gnav-tsow-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/gnav-tsow-frame.svg -------------------------------------------------------------------------------- /dist/img/placeholder_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/placeholder_add.svg -------------------------------------------------------------------------------- /dist/img/placeholder_disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/dist/img/placeholder_disk.svg -------------------------------------------------------------------------------- /gulp-tasks/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/banner.js -------------------------------------------------------------------------------- /gulp-tasks/clean-dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/clean-dist.js -------------------------------------------------------------------------------- /gulp-tasks/compile-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/compile-js.js -------------------------------------------------------------------------------- /gulp-tasks/compile-postcss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/compile-postcss.js -------------------------------------------------------------------------------- /gulp-tasks/copy-static-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/copy-static-files.js -------------------------------------------------------------------------------- /gulp-tasks/es-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/es-lint.js -------------------------------------------------------------------------------- /gulp-tasks/optimize-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/optimize-images.js -------------------------------------------------------------------------------- /gulp-tasks/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulp-tasks/web-server.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/package.json -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-concepts-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-concepts-mobile.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-concepts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-concepts.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-desktop.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-element-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-element-account.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-element-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-element-apps.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-element-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-element-brand.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-element-menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-element-menus.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-element-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-element-search.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-site-v-saas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-site-v-saas.png -------------------------------------------------------------------------------- /readme-screenshots/esri-global-nav-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/readme-screenshots/esri-global-nav-structure.png -------------------------------------------------------------------------------- /src/app-mode-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/app-mode-demo.js -------------------------------------------------------------------------------- /src/app-mode-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/app-mode-nav.html -------------------------------------------------------------------------------- /src/calcite-web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/calcite-web.html -------------------------------------------------------------------------------- /src/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/demo.css -------------------------------------------------------------------------------- /src/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/demo.js -------------------------------------------------------------------------------- /src/esri-global-nav.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/esri-global-nav.d.ts -------------------------------------------------------------------------------- /src/esri-global-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/esri-global-nav.html -------------------------------------------------------------------------------- /src/esri-global-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/esri-global-nav.js -------------------------------------------------------------------------------- /src/esri-global-nav.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/esri-global-nav.pcss -------------------------------------------------------------------------------- /src/footer/css/footer--animation.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer--animation.pcss -------------------------------------------------------------------------------- /src/footer/css/footer--focus.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer--focus.pcss -------------------------------------------------------------------------------- /src/footer/css/footer--media.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer--media.pcss -------------------------------------------------------------------------------- /src/footer/css/footer-brand.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer-brand.pcss -------------------------------------------------------------------------------- /src/footer/css/footer-info.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer-info.pcss -------------------------------------------------------------------------------- /src/footer/css/footer-language.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer-language.pcss -------------------------------------------------------------------------------- /src/footer/css/footer-menu.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer-menu.pcss -------------------------------------------------------------------------------- /src/footer/css/footer-social.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer-social.pcss -------------------------------------------------------------------------------- /src/footer/css/footer.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/css/footer.pcss -------------------------------------------------------------------------------- /src/footer/js/footer-brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer-brand.js -------------------------------------------------------------------------------- /src/footer/js/footer-breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer-breadcrumbs.js -------------------------------------------------------------------------------- /src/footer/js/footer-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer-info.js -------------------------------------------------------------------------------- /src/footer/js/footer-language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer-language.js -------------------------------------------------------------------------------- /src/footer/js/footer-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer-menu.js -------------------------------------------------------------------------------- /src/footer/js/footer-social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer-social.js -------------------------------------------------------------------------------- /src/footer/js/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/footer.js -------------------------------------------------------------------------------- /src/footer/js/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/footer/js/language.js -------------------------------------------------------------------------------- /src/header/css/header--focus.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header--focus.pcss -------------------------------------------------------------------------------- /src/header/css/header-account.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-account.pcss -------------------------------------------------------------------------------- /src/header/css/header-apps.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-apps.pcss -------------------------------------------------------------------------------- /src/header/css/header-brand-stripe.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-brand-stripe.pcss -------------------------------------------------------------------------------- /src/header/css/header-brand.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-brand.pcss -------------------------------------------------------------------------------- /src/header/css/header-client.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-client.pcss -------------------------------------------------------------------------------- /src/header/css/header-inline-search.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-inline-search.pcss -------------------------------------------------------------------------------- /src/header/css/header-inline-title.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-inline-title.pcss -------------------------------------------------------------------------------- /src/header/css/header-menus.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-menus.pcss -------------------------------------------------------------------------------- /src/header/css/header-notifications.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-notifications.pcss -------------------------------------------------------------------------------- /src/header/css/header-search.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-search.pcss -------------------------------------------------------------------------------- /src/header/css/header-shopping-cart.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header-shopping-cart.pcss -------------------------------------------------------------------------------- /src/header/css/header.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/css/header.pcss -------------------------------------------------------------------------------- /src/header/js/header-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-account.js -------------------------------------------------------------------------------- /src/header/js/header-app-switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-app-switcher.js -------------------------------------------------------------------------------- /src/header/js/header-apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-apps.js -------------------------------------------------------------------------------- /src/header/js/header-brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-brand.js -------------------------------------------------------------------------------- /src/header/js/header-branding-stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-branding-stripe.js -------------------------------------------------------------------------------- /src/header/js/header-inline-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-inline-search.js -------------------------------------------------------------------------------- /src/header/js/header-inline-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-inline-title.js -------------------------------------------------------------------------------- /src/header/js/header-menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-menus.js -------------------------------------------------------------------------------- /src/header/js/header-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-notifications.js -------------------------------------------------------------------------------- /src/header/js/header-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-search.js -------------------------------------------------------------------------------- /src/header/js/header-shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header-shopping-cart.js -------------------------------------------------------------------------------- /src/header/js/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/header/js/header.js -------------------------------------------------------------------------------- /src/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/home.js -------------------------------------------------------------------------------- /src/img/dashboard-icon_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/dashboard-icon_32.svg -------------------------------------------------------------------------------- /src/img/dist-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/dist-logo.jpg -------------------------------------------------------------------------------- /src/img/gnav-app-switcher-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/gnav-app-switcher-icon.svg -------------------------------------------------------------------------------- /src/img/gnav-esri-logo-globe-tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/gnav-esri-logo-globe-tm.svg -------------------------------------------------------------------------------- /src/img/gnav-tsow-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/gnav-tsow-frame.svg -------------------------------------------------------------------------------- /src/img/placeholder_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/placeholder_add.svg -------------------------------------------------------------------------------- /src/img/placeholder_disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/img/placeholder_disk.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/index.html -------------------------------------------------------------------------------- /src/search/css/search.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/search/css/search.pcss -------------------------------------------------------------------------------- /src/search/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/search/js/search.js -------------------------------------------------------------------------------- /src/shared/css/shared.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/shared/css/shared.pcss -------------------------------------------------------------------------------- /src/shared/js/domose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/shared/js/domose.js -------------------------------------------------------------------------------- /src/shared/js/iconPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/shared/js/iconPaths.js -------------------------------------------------------------------------------- /src/shared/js/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/shared/js/polyfills.js -------------------------------------------------------------------------------- /src/shared/js/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/shared/js/shared.js -------------------------------------------------------------------------------- /src/shared/shared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/shared/shared.svg -------------------------------------------------------------------------------- /src/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/global-nav/HEAD/src/syntax.css --------------------------------------------------------------------------------