├── .gitattributes ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── License.txt ├── README.md ├── app ├── Components │ ├── Alert.tsx │ ├── Header │ │ ├── Header.tsx │ │ └── css │ │ │ └── Header.scss │ ├── Info │ │ ├── Info.tsx │ │ ├── Info │ │ │ ├── InfoItem.ts │ │ │ ├── InfoViewModel.ts │ │ │ └── nls │ │ │ │ ├── ar │ │ │ │ └── resources.js │ │ │ │ ├── bs │ │ │ │ └── resources.js │ │ │ │ ├── ca │ │ │ │ └── resources.js │ │ │ │ ├── cs │ │ │ │ └── resources.js │ │ │ │ ├── da │ │ │ │ └── resources.js │ │ │ │ ├── de │ │ │ │ └── resources.js │ │ │ │ ├── el │ │ │ │ └── resources.js │ │ │ │ ├── es │ │ │ │ └── resources.js │ │ │ │ ├── et │ │ │ │ └── resources.js │ │ │ │ ├── fi │ │ │ │ └── resources.js │ │ │ │ ├── fr │ │ │ │ └── resources.js │ │ │ │ ├── he │ │ │ │ └── resources.js │ │ │ │ ├── hr │ │ │ │ └── resources.js │ │ │ │ ├── hu │ │ │ │ └── resources.js │ │ │ │ ├── id │ │ │ │ └── resources.js │ │ │ │ ├── it │ │ │ │ └── resources.js │ │ │ │ ├── ja │ │ │ │ └── resources.js │ │ │ │ ├── ko │ │ │ │ └── resources.js │ │ │ │ ├── lt │ │ │ │ └── resources.js │ │ │ │ ├── lv │ │ │ │ └── resources.js │ │ │ │ ├── nb │ │ │ │ └── resources.js │ │ │ │ ├── nl │ │ │ │ └── resources.js │ │ │ │ ├── pl │ │ │ │ └── resources.js │ │ │ │ ├── pt-br │ │ │ │ └── resources.js │ │ │ │ ├── pt-pt │ │ │ │ └── resources.js │ │ │ │ ├── resources.js │ │ │ │ ├── ro │ │ │ │ └── resources.js │ │ │ │ ├── ru │ │ │ │ └── resources.js │ │ │ │ ├── sk │ │ │ │ └── resources.js │ │ │ │ ├── sl │ │ │ │ └── resources.js │ │ │ │ ├── sr │ │ │ │ └── resources.js │ │ │ │ ├── sv │ │ │ │ └── resources.js │ │ │ │ ├── th │ │ │ │ └── resources.js │ │ │ │ ├── tr │ │ │ │ └── resources.js │ │ │ │ ├── uk │ │ │ │ └── resources.js │ │ │ │ ├── vi │ │ │ │ └── resources.js │ │ │ │ ├── zh-cn │ │ │ │ └── resources.js │ │ │ │ ├── zh-hk │ │ │ │ └── resources.js │ │ │ │ └── zh-tw │ │ │ │ └── resources.js │ │ └── css │ │ │ └── Info.scss │ ├── InteractiveLegend │ │ ├── InteractiveLegend.tsx │ │ ├── InteractiveLegend │ │ │ ├── nls │ │ │ │ ├── Legend.js │ │ │ │ ├── ar │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── bs │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── ca │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── common.js │ │ │ │ ├── cs │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── da │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── de │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── el │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── es │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── et │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── fi │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── fr │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── he │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── hr │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── hu │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── id │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── it │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── ja │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── ko │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── lt │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── lv │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── nb │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── nl │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── pl │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── pt-br │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── ro │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── ru │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── sk │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── sl │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── sr │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── sv │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── th │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── tr │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── uk │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── vi │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── zh-cn │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ ├── zh-hk │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ │ └── zh-tw │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── common.js │ │ │ ├── relationshipRamp │ │ │ │ ├── Create2DColorRamp.ts │ │ │ │ ├── Ramp.ts │ │ │ │ ├── RelationshipRamp.tsx │ │ │ │ └── relationshipRampUtils.ts │ │ │ ├── styles │ │ │ │ ├── InteractiveClassic.tsx │ │ │ │ └── InteractiveStyle │ │ │ │ │ ├── InteractiveStyleViewModel.ts │ │ │ │ │ └── SelectedStyleData.ts │ │ │ └── support │ │ │ │ ├── replace.ts │ │ │ │ └── styleUtils.ts │ │ └── css │ │ │ └── InteractiveLegend.scss │ ├── Screenshot │ │ ├── Screenshot.tsx │ │ ├── Screenshot │ │ │ ├── ScreenshotViewModel.ts │ │ │ ├── html2canvas │ │ │ │ └── html2canvas.js │ │ │ ├── interfaces │ │ │ │ └── interfaces.d.ts │ │ │ └── nls │ │ │ │ ├── ar │ │ │ │ └── resources.js │ │ │ │ ├── bs │ │ │ │ └── resources.js │ │ │ │ ├── ca │ │ │ │ └── resources.js │ │ │ │ ├── cs │ │ │ │ └── resources.js │ │ │ │ ├── da │ │ │ │ └── resources.js │ │ │ │ ├── de │ │ │ │ └── resources.js │ │ │ │ ├── el │ │ │ │ └── resources.js │ │ │ │ ├── es │ │ │ │ └── resources.js │ │ │ │ ├── et │ │ │ │ └── resources.js │ │ │ │ ├── fi │ │ │ │ └── resources.js │ │ │ │ ├── fr │ │ │ │ └── resources.js │ │ │ │ ├── he │ │ │ │ └── resources.js │ │ │ │ ├── hr │ │ │ │ └── resources.js │ │ │ │ ├── hu │ │ │ │ └── resources.js │ │ │ │ ├── id │ │ │ │ └── resources.js │ │ │ │ ├── it │ │ │ │ └── resources.js │ │ │ │ ├── ja │ │ │ │ └── resources.js │ │ │ │ ├── ko │ │ │ │ └── resources.js │ │ │ │ ├── lt │ │ │ │ └── resources.js │ │ │ │ ├── lv │ │ │ │ └── resources.js │ │ │ │ ├── nb │ │ │ │ └── resources.js │ │ │ │ ├── nl │ │ │ │ └── resources.js │ │ │ │ ├── no │ │ │ │ └── resources.js │ │ │ │ ├── pl │ │ │ │ └── resources.js │ │ │ │ ├── pt-br │ │ │ │ └── resources.js │ │ │ │ ├── pt-pt │ │ │ │ └── resources.js │ │ │ │ ├── resources.js │ │ │ │ ├── ro │ │ │ │ └── resources.js │ │ │ │ ├── ru │ │ │ │ └── resources.js │ │ │ │ ├── sk │ │ │ │ └── resources.js │ │ │ │ ├── sl │ │ │ │ └── resources.js │ │ │ │ ├── sr │ │ │ │ └── resources.js │ │ │ │ ├── sv │ │ │ │ └── resources.js │ │ │ │ ├── th │ │ │ │ └── resources.js │ │ │ │ ├── tr │ │ │ │ └── resources.js │ │ │ │ ├── uk │ │ │ │ └── resources.js │ │ │ │ ├── vi │ │ │ │ └── resources.js │ │ │ │ ├── zh-cn │ │ │ │ └── resources.js │ │ │ │ ├── zh-hk │ │ │ │ └── resources.js │ │ │ │ └── zh-tw │ │ │ │ └── resources.js │ │ └── css │ │ │ └── Screenshot.scss │ ├── Splash │ │ ├── Splash.tsx │ │ └── css │ │ │ └── Splash.scss │ └── TimeFilter │ │ ├── TimeFilter.tsx │ │ ├── TimeFilter │ │ ├── TimeFilterViewModel.ts │ │ └── nls │ │ │ ├── ar │ │ │ └── resources.js │ │ │ ├── bs │ │ │ └── resources.js │ │ │ ├── ca │ │ │ └── resources.js │ │ │ ├── cs │ │ │ └── resources.js │ │ │ ├── da │ │ │ └── resources.js │ │ │ ├── de │ │ │ └── resources.js │ │ │ ├── el │ │ │ └── resources.js │ │ │ ├── es │ │ │ └── resources.js │ │ │ ├── et │ │ │ └── resources.js │ │ │ ├── fi │ │ │ └── resources.js │ │ │ ├── fr │ │ │ └── resources.js │ │ │ ├── he │ │ │ └── resources.js │ │ │ ├── hr │ │ │ └── resources.js │ │ │ ├── hu │ │ │ └── resources.js │ │ │ ├── id │ │ │ └── resources.js │ │ │ ├── it │ │ │ └── resources.js │ │ │ ├── ja │ │ │ └── resources.js │ │ │ ├── ko │ │ │ └── resources.js │ │ │ ├── lt │ │ │ └── resources.js │ │ │ ├── lv │ │ │ └── resources.js │ │ │ ├── nb │ │ │ └── resources.js │ │ │ ├── nl │ │ │ └── resources.js │ │ │ ├── pl │ │ │ └── resources.js │ │ │ ├── pt-br │ │ │ └── resources.js │ │ │ ├── pt-pt │ │ │ └── resources.js │ │ │ ├── resources.js │ │ │ ├── ro │ │ │ └── resources.js │ │ │ ├── ru │ │ │ └── resources.js │ │ │ ├── sk │ │ │ └── resources.js │ │ │ ├── sl │ │ │ └── resources.js │ │ │ ├── sr │ │ │ └── resources.js │ │ │ ├── sv │ │ │ └── resources.js │ │ │ ├── th │ │ │ └── resources.js │ │ │ ├── tr │ │ │ └── resources.js │ │ │ ├── uk │ │ │ └── resources.js │ │ │ ├── vi │ │ │ └── resources.js │ │ │ ├── zh-cn │ │ │ └── resources.js │ │ │ ├── zh-hk │ │ │ └── resources.js │ │ │ └── zh-tw │ │ │ └── resources.js │ │ └── css │ │ └── TimeFilter.scss ├── ConfigurationSettings │ └── ConfigurationSettings.ts ├── Main.ts ├── dojo.ts ├── init.ts ├── interfaces │ ├── declarations.d.ts │ └── interfaces.d.ts ├── nls │ ├── ar │ │ └── resources.js │ ├── bs │ │ └── resources.js │ ├── ca │ │ └── resources.js │ ├── cs │ │ └── resources.js │ ├── da │ │ └── resources.js │ ├── de │ │ └── resources.js │ ├── el │ │ └── resources.js │ ├── es │ │ └── resources.js │ ├── et │ │ └── resources.js │ ├── fi │ │ └── resources.js │ ├── fr │ │ └── resources.js │ ├── he │ │ └── resources.js │ ├── hr │ │ └── resources.js │ ├── hu │ │ └── resources.js │ ├── id │ │ └── resources.js │ ├── it │ │ └── resources.js │ ├── ja │ │ └── resources.js │ ├── ko │ │ └── resources.js │ ├── lt │ │ └── resources.js │ ├── lv │ │ └── resources.js │ ├── nb │ │ └── resources.js │ ├── nl │ │ └── resources.js │ ├── pl │ │ └── resources.js │ ├── pt-br │ │ └── resources.js │ ├── pt-pt │ │ └── resources.js │ ├── resources.js │ ├── ro │ │ └── resources.js │ ├── ru │ │ └── resources.js │ ├── sk │ │ └── resources.js │ ├── sl │ │ └── resources.js │ ├── sr │ │ └── resources.js │ ├── sv │ │ └── resources.js │ ├── th │ │ └── resources.js │ ├── tr │ │ └── resources.js │ ├── uk │ │ └── resources.js │ ├── vi │ │ └── resources.js │ ├── zh-cn │ │ └── resources.js │ ├── zh-hk │ │ └── resources.js │ └── zh-tw │ │ └── resources.js ├── telemetry │ ├── index.d.ts │ ├── telemetry.ts │ └── telemetryDojoMin.js ├── userTypesError │ └── nls │ │ ├── ar │ │ └── resources.js │ │ ├── bs │ │ └── resources.js │ │ ├── ca │ │ └── resources.js │ │ ├── cs │ │ └── resources.js │ │ ├── da │ │ └── resources.js │ │ ├── de │ │ └── resources.js │ │ ├── el │ │ └── resources.js │ │ ├── es │ │ └── resources.js │ │ ├── et │ │ └── resources.js │ │ ├── fi │ │ └── resources.js │ │ ├── fr │ │ └── resources.js │ │ ├── he │ │ └── resources.js │ │ ├── hr │ │ └── resources.js │ │ ├── hu │ │ └── resources.js │ │ ├── id │ │ └── resources.js │ │ ├── it │ │ └── resources.js │ │ ├── ja │ │ └── resources.js │ │ ├── ko │ │ └── resources.js │ │ ├── lt │ │ └── resources.js │ │ ├── lv │ │ └── resources.js │ │ ├── nb │ │ └── resources.js │ │ ├── nl │ │ └── resources.js │ │ ├── pl │ │ └── resources.js │ │ ├── pt-br │ │ └── resources.js │ │ ├── pt-pt │ │ └── resources.js │ │ ├── resources.js │ │ ├── ro │ │ └── resources.js │ │ ├── ru │ │ └── resources.js │ │ ├── sl │ │ └── resources.js │ │ ├── sr │ │ └── resources.js │ │ ├── sv │ │ └── resources.js │ │ ├── th │ │ └── resources.js │ │ ├── tr │ │ └── resources.js │ │ ├── uk │ │ └── resources.js │ │ ├── vi │ │ └── resources.js │ │ ├── zh-cn │ │ └── resources.js │ │ ├── zh-hk │ │ └── resources.js │ │ └── zh-tw │ │ └── resources.js └── utils │ └── widgetUtils.ts ├── assets ├── favicon.png ├── interactiveLegendIcon.svg ├── loader-ie9.gif └── relationship.png ├── calcite-web-1.2.5 ├── .babelrc ├── .gitignore ├── .travis.yml └── dist │ ├── css │ ├── calcite-web-dark.css │ ├── calcite-web-dark.min.css │ ├── calcite-web-e-commerce.css │ ├── calcite-web-e-commerce.min.css │ ├── calcite-web-marketing.css │ ├── calcite-web-marketing.min.css │ ├── calcite-web-no-fonts.css │ ├── calcite-web-no-fonts.min.css │ ├── calcite-web.css │ ├── calcite-web.min.css │ └── calcite-web │ │ └── imports.css │ ├── fonts │ ├── calcite-ui.eot │ ├── calcite-ui.ttf │ └── calcite-ui.woff │ ├── img │ ├── favicon.ico │ ├── icons │ │ ├── social │ │ │ ├── contact.svg │ │ │ ├── facebook.svg │ │ │ ├── geonet.svg │ │ │ ├── github.svg │ │ │ ├── google-plus.svg │ │ │ ├── instagram.svg │ │ │ ├── linkedin.svg │ │ │ ├── pinterest.svg │ │ │ ├── rss.svg │ │ │ ├── share.svg │ │ │ ├── twitter.svg │ │ │ └── youtube.svg │ │ └── ui │ │ │ ├── add-attachment.svg │ │ │ ├── announcement.svg │ │ │ ├── applications.svg │ │ │ ├── arrow-down-circled.svg │ │ │ ├── arrow-left-circled.svg │ │ │ ├── arrow-right-circled.svg │ │ │ ├── arrow-up-circled.svg │ │ │ ├── attachment.svg │ │ │ ├── authorize.svg │ │ │ ├── basemap.svg │ │ │ ├── beginning.svg │ │ │ ├── blank-map-pin.svg │ │ │ ├── browser.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── chart.svg │ │ │ ├── chat.svg │ │ │ ├── check-mark.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-unchecked.svg │ │ │ ├── close-circled.svg │ │ │ ├── close.svg │ │ │ ├── collapse.svg │ │ │ ├── collection.svg │ │ │ ├── comment.svg │ │ │ ├── compass.svg │ │ │ ├── configure-popup.svg │ │ │ ├── contact.svg │ │ │ ├── dashboard.svg │ │ │ ├── deny.svg │ │ │ ├── description.svg │ │ │ ├── directions.svg │ │ │ ├── directions2.svg │ │ │ ├── dock-bottom.svg │ │ │ ├── dock-left.svg │ │ │ ├── dock-right.svg │ │ │ ├── documentation.svg │ │ │ ├── down-arrow-circled.svg │ │ │ ├── down-arrow.svg │ │ │ ├── down.svg │ │ │ ├── download.svg │ │ │ ├── drag-horizontal.svg │ │ │ ├── drag-vertical.svg │ │ │ ├── duplicate.svg │ │ │ ├── edit.svg │ │ │ ├── end.svg │ │ │ ├── environment-settings.svg │ │ │ ├── erase.svg │ │ │ ├── error.svg │ │ │ ├── error2.svg │ │ │ ├── expand.svg │ │ │ ├── experimental.svg │ │ │ ├── favorites.svg │ │ │ ├── feature-layer.svg │ │ │ ├── filter.svg │ │ │ ├── forward.svg │ │ │ ├── globe.svg │ │ │ ├── grant.svg │ │ │ ├── grid.svg │ │ │ ├── group.svg │ │ │ ├── handle-horizontal.svg │ │ │ ├── handle-vertical.svg │ │ │ ├── home.svg │ │ │ ├── key.svg │ │ │ ├── labels.svg │ │ │ ├── layer-list.svg │ │ │ ├── layers.svg │ │ │ ├── left-arrow-circled.svg │ │ │ ├── left-arrow.svg │ │ │ ├── left-triangle-arrow.svg │ │ │ ├── left.svg │ │ │ ├── line-chart.svg │ │ │ ├── link-external.svg │ │ │ ├── link.svg │ │ │ ├── loading-indicator.svg │ │ │ ├── locate.svg │ │ │ ├── locked.svg │ │ │ ├── map-pin.svg │ │ │ ├── maps.svg │ │ │ ├── marketplace.svg │ │ │ ├── maximize.svg │ │ │ ├── media.svg │ │ │ ├── media2.svg │ │ │ ├── menu.svg │ │ │ ├── minimize.svg │ │ │ ├── minus-circled.svg │ │ │ ├── minus.svg │ │ │ ├── mobile.svg │ │ │ ├── navigation.svg │ │ │ ├── notice-round.svg │ │ │ ├── notice-triangle.svg │ │ │ ├── organization.svg │ │ │ ├── overview-arrow-bottom-left.svg │ │ │ ├── overview-arrow-bottom-right.svg │ │ │ ├── overview-arrow-top-left.svg │ │ │ ├── overview-arrow-top-right.svg │ │ │ ├── pan.svg │ │ │ ├── pause.svg │ │ │ ├── phone.svg │ │ │ ├── pie-chart.svg │ │ │ ├── play.svg │ │ │ ├── plus-circled.svg │ │ │ ├── plus.svg │ │ │ ├── printer.svg │ │ │ ├── question.svg │ │ │ ├── radio-checked.svg │ │ │ ├── radio-unchecked.svg │ │ │ ├── refresh.svg │ │ │ ├── resend-invitation.svg │ │ │ ├── reverse.svg │ │ │ ├── review.svg │ │ │ ├── right-arrow-circled.svg │ │ │ ├── right-arrow.svg │ │ │ ├── right-triangle-arrow.svg │ │ │ ├── right.svg │ │ │ ├── rotate.svg │ │ │ ├── save.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── settings2.svg │ │ │ ├── share.svg │ │ │ ├── sign-out.svg │ │ │ ├── sort-ascending.svg │ │ │ ├── sort-descending.svg │ │ │ ├── support.svg │ │ │ ├── table.svg │ │ │ ├── tag.svg │ │ │ ├── time-clock.svg │ │ │ ├── trash.svg │ │ │ ├── unlocked.svg │ │ │ ├── up-arrow-circled.svg │ │ │ ├── up-arrow.svg │ │ │ ├── up-down-arrows.svg │ │ │ ├── up.svg │ │ │ ├── upload.svg │ │ │ ├── user.svg │ │ │ ├── zoom-in-fixed.svg │ │ │ ├── zoom-in-magnifying-glass.svg │ │ │ ├── zoom-out-fixed.svg │ │ │ └── zoom-out-magnifying-glass.svg │ ├── loader-ie9.gif │ └── logo │ │ ├── esri-logo-reversed.svg │ │ └── esri-logo.svg │ ├── js │ ├── calcite-web-marketing.js │ ├── calcite-web-marketing.min.js │ ├── calcite-web.js │ └── calcite-web.min.js │ └── sass │ ├── calcite-web-dark.scss │ ├── calcite-web-e-commerce.scss │ ├── calcite-web-marketing.scss │ ├── calcite-web-no-fonts.scss │ ├── calcite-web.scss │ └── calcite-web │ ├── base │ ├── _colors.scss │ ├── _config.scss │ └── _reset.scss │ ├── components │ ├── _action-bar.scss │ ├── _alert.scss │ ├── _animation.scss │ ├── _badges.scss │ ├── _breadcrumbs.scss │ ├── _button.scss │ ├── _card.scss │ ├── _dropdown.scss │ ├── _esri-logo.scss │ ├── _form.scss │ ├── _input-group.scss │ ├── _label.scss │ ├── _loader.scss │ ├── _panel.scss │ ├── _radio-group.scss │ ├── _skip-to-content.scss │ ├── _sliders.scss │ ├── _switches.scss │ ├── _table.scss │ └── _tooltip.scss │ ├── extentions │ ├── e-commerce │ │ └── _pricing-table.scss │ └── marketing │ │ ├── _carousel.scss │ │ └── _image-switcher.scss │ ├── grid │ ├── _block-groups.scss │ ├── _columns.scss │ ├── _grid.scss │ ├── _gutter-helpers.scss │ ├── _gutter.scss │ ├── _leader-trailer.scss │ ├── _left-right.scss │ ├── _mixins.scss │ ├── _pre-post.scss │ ├── _show-hide.scss │ └── _sticky.scss │ ├── icons │ ├── _calcite-ui.scss │ ├── _icon-colors.scss │ └── _social.scss │ ├── imports.scss │ ├── patterns │ ├── _accordion.scss │ ├── _drawers.scss │ ├── _filter-dropdown.scss │ ├── _footer.scss │ ├── _modal.scss │ ├── _search.scss │ ├── _side-nav.scss │ ├── _sub-nav.scss │ ├── _tabs.scss │ ├── _third-nav.scss │ ├── _top-nav.scss │ └── _user-nav.scss │ ├── type │ ├── _config.scss │ ├── _faces.scss │ ├── _helpers.scss │ ├── _i18n.scss │ ├── _import.scss │ ├── _mixins.scss │ ├── _scale.scss │ ├── _styles.scss │ └── _type.scss │ └── utils │ ├── _animation.scss │ ├── _appearance.scss │ ├── _border.scss │ ├── _box-shadow.scss │ ├── _box-sizing.scss │ ├── _calc.scss │ ├── _clearfix.scss │ ├── _inline.scss │ ├── _keyframes.scss │ ├── _overflow.scss │ ├── _positioning.scss │ ├── _prefixer.scss │ ├── _responsive.scss │ ├── _transform.scss │ ├── _transition.scss │ ├── _utils.scss │ └── _visibility.scss ├── config ├── application.json └── applicationBase.json ├── configurationParams.json ├── images └── interactive-legend.png ├── index.html ├── oauth-callback.html ├── package.json ├── styles └── Main.scss ├── tsconfig.json └── tsconfig.prod.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/README.md -------------------------------------------------------------------------------- /app/Components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Alert.tsx -------------------------------------------------------------------------------- /app/Components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Header/Header.tsx -------------------------------------------------------------------------------- /app/Components/Header/css/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Header/css/Header.scss -------------------------------------------------------------------------------- /app/Components/Info/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info.tsx -------------------------------------------------------------------------------- /app/Components/Info/Info/InfoItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/InfoItem.ts -------------------------------------------------------------------------------- /app/Components/Info/Info/InfoViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/InfoViewModel.ts -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/ar/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/ar/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/bs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/bs/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/ca/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/ca/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/cs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/cs/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/da/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/da/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/de/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/de/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/el/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/el/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/es/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/es/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/et/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/et/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/fi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/fi/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/fr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/fr/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/he/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/he/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/hr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/hr/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/hu/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/hu/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/id/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/id/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/it/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/it/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/ja/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/ja/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/ko/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/ko/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/lt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/lt/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/lv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/lv/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/nb/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/nb/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/nl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/nl/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/pl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/pl/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/pt-br/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/pt-br/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/pt-pt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/pt-pt/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/ro/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/ro/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/ru/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/ru/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/sk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/sk/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/sl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/sl/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/sr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/sr/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/sv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/sv/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/th/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/th/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/tr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/tr/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/uk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/uk/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/vi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/vi/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/zh-cn/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/zh-cn/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/zh-hk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/zh-hk/resources.js -------------------------------------------------------------------------------- /app/Components/Info/Info/nls/zh-tw/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/Info/nls/zh-tw/resources.js -------------------------------------------------------------------------------- /app/Components/Info/css/Info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Info/css/Info.scss -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend.tsx -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ar/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ar/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ar/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ar/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/bs/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/bs/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/bs/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/bs/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ca/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ca/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ca/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ca/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/cs/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/cs/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/cs/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/cs/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/da/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/da/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/da/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/da/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/de/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/de/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/de/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/de/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/el/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/el/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/el/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/el/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/es/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/es/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/es/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/es/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/et/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/et/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/et/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/et/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/fi/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/fi/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/fi/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/fi/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/fr/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/fr/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/fr/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/fr/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/he/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/he/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/he/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/he/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/hr/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/hr/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/hr/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/hr/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/hu/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/hu/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/hu/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/hu/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/id/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/id/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/id/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/id/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/it/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/it/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/it/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/it/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ja/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ja/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ja/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ja/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ko/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ko/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ko/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ko/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/lt/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/lt/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/lt/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/lt/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/lv/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/lv/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/lv/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/lv/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/nb/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/nb/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/nb/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/nb/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/nl/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/nl/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/nl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/nl/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/pl/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/pl/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/pl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/pl/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/pt-br/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/pt-br/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/pt-br/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/pt-br/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/pt-pt/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/pt-pt/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/pt-pt/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/pt-pt/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ro/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ro/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ro/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ro/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ru/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ru/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/ru/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/ru/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sk/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sk/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sk/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sk/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sl/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sl/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sl/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sr/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sr/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sr/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sr/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sv/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sv/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/sv/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/sv/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/th/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/th/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/th/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/th/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/tr/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/tr/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/tr/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/tr/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/uk/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/uk/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/uk/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/uk/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/vi/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/vi/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/vi/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/vi/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/zh-cn/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/zh-cn/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/zh-cn/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/zh-cn/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/zh-hk/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/zh-hk/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/zh-hk/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/zh-hk/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/zh-tw/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/zh-tw/Legend.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/nls/zh-tw/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/nls/zh-tw/common.js -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/Create2DColorRamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/Create2DColorRamp.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/Ramp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/Ramp.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/RelationshipRamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/RelationshipRamp.tsx -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/relationshipRampUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/relationshipRamp/relationshipRampUtils.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/styles/InteractiveClassic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/styles/InteractiveClassic.tsx -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/styles/InteractiveStyle/InteractiveStyleViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/styles/InteractiveStyle/InteractiveStyleViewModel.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/styles/InteractiveStyle/SelectedStyleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/styles/InteractiveStyle/SelectedStyleData.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/support/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/support/replace.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/InteractiveLegend/support/styleUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/InteractiveLegend/support/styleUtils.ts -------------------------------------------------------------------------------- /app/Components/InteractiveLegend/css/InteractiveLegend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/InteractiveLegend/css/InteractiveLegend.scss -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot.tsx -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/ScreenshotViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/ScreenshotViewModel.ts -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/html2canvas/html2canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/html2canvas/html2canvas.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/interfaces/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/interfaces/interfaces.d.ts -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/ar/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/ar/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/bs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/bs/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/ca/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/ca/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/cs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/cs/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/da/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/da/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/de/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/de/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/el/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/el/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/es/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/es/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/et/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/et/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/fi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/fi/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/fr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/fr/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/he/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/he/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/hr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/hr/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/hu/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/hu/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/id/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/id/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/it/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/it/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/ja/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/ja/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/ko/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/ko/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/lt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/lt/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/lv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/lv/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/nb/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/nb/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/nl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/nl/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/no/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/no/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/pl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/pl/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/pt-br/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/pt-br/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/pt-pt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/pt-pt/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/ro/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/ro/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/ru/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/ru/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/sk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/sk/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/sl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/sl/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/sr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/sr/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/sv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/sv/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/th/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/th/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/tr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/tr/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/uk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/uk/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/vi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/vi/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/zh-cn/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/zh-cn/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/zh-hk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/zh-hk/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/Screenshot/nls/zh-tw/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/Screenshot/nls/zh-tw/resources.js -------------------------------------------------------------------------------- /app/Components/Screenshot/css/Screenshot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Screenshot/css/Screenshot.scss -------------------------------------------------------------------------------- /app/Components/Splash/Splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Splash/Splash.tsx -------------------------------------------------------------------------------- /app/Components/Splash/css/Splash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/Splash/css/Splash.scss -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter.tsx -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/TimeFilterViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/TimeFilterViewModel.ts -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/ar/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/ar/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/bs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/bs/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/ca/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/ca/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/cs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/cs/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/da/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/da/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/de/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/de/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/el/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/el/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/es/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/es/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/et/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/et/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/fi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/fi/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/fr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/fr/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/he/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/he/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/hr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/hr/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/hu/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/hu/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/id/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/id/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/it/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/it/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/ja/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/ja/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/ko/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/ko/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/lt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/lt/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/lv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/lv/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/nb/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/nb/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/nl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/nl/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/pl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/pl/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/pt-br/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/pt-br/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/pt-pt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/pt-pt/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/ro/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/ro/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/ru/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/ru/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/sk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/sk/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/sl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/sl/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/sr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/sr/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/sv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/sv/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/th/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/th/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/tr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/tr/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/uk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/uk/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/vi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/vi/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/zh-cn/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/zh-cn/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/zh-hk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/zh-hk/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/TimeFilter/nls/zh-tw/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/TimeFilter/nls/zh-tw/resources.js -------------------------------------------------------------------------------- /app/Components/TimeFilter/css/TimeFilter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Components/TimeFilter/css/TimeFilter.scss -------------------------------------------------------------------------------- /app/ConfigurationSettings/ConfigurationSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/ConfigurationSettings/ConfigurationSettings.ts -------------------------------------------------------------------------------- /app/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/Main.ts -------------------------------------------------------------------------------- /app/dojo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/dojo.ts -------------------------------------------------------------------------------- /app/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/init.ts -------------------------------------------------------------------------------- /app/interfaces/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/interfaces/declarations.d.ts -------------------------------------------------------------------------------- /app/interfaces/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/interfaces/interfaces.d.ts -------------------------------------------------------------------------------- /app/nls/ar/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/ar/resources.js -------------------------------------------------------------------------------- /app/nls/bs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/bs/resources.js -------------------------------------------------------------------------------- /app/nls/ca/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/ca/resources.js -------------------------------------------------------------------------------- /app/nls/cs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/cs/resources.js -------------------------------------------------------------------------------- /app/nls/da/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/da/resources.js -------------------------------------------------------------------------------- /app/nls/de/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/de/resources.js -------------------------------------------------------------------------------- /app/nls/el/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/el/resources.js -------------------------------------------------------------------------------- /app/nls/es/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/es/resources.js -------------------------------------------------------------------------------- /app/nls/et/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/et/resources.js -------------------------------------------------------------------------------- /app/nls/fi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/fi/resources.js -------------------------------------------------------------------------------- /app/nls/fr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/fr/resources.js -------------------------------------------------------------------------------- /app/nls/he/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/he/resources.js -------------------------------------------------------------------------------- /app/nls/hr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/hr/resources.js -------------------------------------------------------------------------------- /app/nls/hu/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/hu/resources.js -------------------------------------------------------------------------------- /app/nls/id/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/id/resources.js -------------------------------------------------------------------------------- /app/nls/it/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/it/resources.js -------------------------------------------------------------------------------- /app/nls/ja/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/ja/resources.js -------------------------------------------------------------------------------- /app/nls/ko/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/ko/resources.js -------------------------------------------------------------------------------- /app/nls/lt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/lt/resources.js -------------------------------------------------------------------------------- /app/nls/lv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/lv/resources.js -------------------------------------------------------------------------------- /app/nls/nb/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/nb/resources.js -------------------------------------------------------------------------------- /app/nls/nl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/nl/resources.js -------------------------------------------------------------------------------- /app/nls/pl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/pl/resources.js -------------------------------------------------------------------------------- /app/nls/pt-br/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/pt-br/resources.js -------------------------------------------------------------------------------- /app/nls/pt-pt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/pt-pt/resources.js -------------------------------------------------------------------------------- /app/nls/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/resources.js -------------------------------------------------------------------------------- /app/nls/ro/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/ro/resources.js -------------------------------------------------------------------------------- /app/nls/ru/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/ru/resources.js -------------------------------------------------------------------------------- /app/nls/sk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/sk/resources.js -------------------------------------------------------------------------------- /app/nls/sl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/sl/resources.js -------------------------------------------------------------------------------- /app/nls/sr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/sr/resources.js -------------------------------------------------------------------------------- /app/nls/sv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/sv/resources.js -------------------------------------------------------------------------------- /app/nls/th/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/th/resources.js -------------------------------------------------------------------------------- /app/nls/tr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/tr/resources.js -------------------------------------------------------------------------------- /app/nls/uk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/uk/resources.js -------------------------------------------------------------------------------- /app/nls/vi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/vi/resources.js -------------------------------------------------------------------------------- /app/nls/zh-cn/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/zh-cn/resources.js -------------------------------------------------------------------------------- /app/nls/zh-hk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/zh-hk/resources.js -------------------------------------------------------------------------------- /app/nls/zh-tw/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/nls/zh-tw/resources.js -------------------------------------------------------------------------------- /app/telemetry/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/telemetry/index.d.ts -------------------------------------------------------------------------------- /app/telemetry/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/telemetry/telemetry.ts -------------------------------------------------------------------------------- /app/telemetry/telemetryDojoMin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/telemetry/telemetryDojoMin.js -------------------------------------------------------------------------------- /app/userTypesError/nls/ar/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/ar/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/bs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/bs/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/ca/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/ca/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/cs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/cs/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/da/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/da/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/de/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/de/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/el/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/el/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/es/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/es/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/et/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/et/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/fi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/fi/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/fr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/fr/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/he/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/he/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/hr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/hr/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/hu/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/hu/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/id/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/id/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/it/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/it/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/ja/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/ja/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/ko/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/ko/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/lt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/lt/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/lv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/lv/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/nb/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/nb/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/nl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/nl/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/pl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/pl/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/pt-br/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/pt-br/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/pt-pt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/pt-pt/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/ro/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/ro/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/ru/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/ru/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/sl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/sl/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/sr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/sr/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/sv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/sv/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/th/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/th/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/tr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/tr/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/uk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/uk/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/vi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/vi/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/zh-cn/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/zh-cn/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/zh-hk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/zh-hk/resources.js -------------------------------------------------------------------------------- /app/userTypesError/nls/zh-tw/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/userTypesError/nls/zh-tw/resources.js -------------------------------------------------------------------------------- /app/utils/widgetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/app/utils/widgetUtils.ts -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/interactiveLegendIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/assets/interactiveLegendIcon.svg -------------------------------------------------------------------------------- /assets/loader-ie9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/assets/loader-ie9.gif -------------------------------------------------------------------------------- /assets/relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/assets/relationship.png -------------------------------------------------------------------------------- /calcite-web-1.2.5/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015-rollup"] 3 | } -------------------------------------------------------------------------------- /calcite-web-1.2.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/.gitignore -------------------------------------------------------------------------------- /calcite-web-1.2.5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/.travis.yml -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-dark.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-dark.min.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-e-commerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-e-commerce.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-e-commerce.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-e-commerce.min.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-marketing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-marketing.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-marketing.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-marketing.min.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-no-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-no-fonts.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web-no-fonts.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web-no-fonts.min.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/css/calcite-web.min.css -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/css/calcite-web/imports.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/fonts/calcite-ui.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/fonts/calcite-ui.eot -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/fonts/calcite-ui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/fonts/calcite-ui.ttf -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/fonts/calcite-ui.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/fonts/calcite-ui.woff -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/favicon.ico -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/contact.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/facebook.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/geonet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/geonet.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/github.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/google-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/google-plus.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/instagram.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/linkedin.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/pinterest.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/rss.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/share.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/twitter.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/social/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/social/youtube.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/add-attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/add-attachment.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/announcement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/announcement.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/applications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/applications.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/arrow-down-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/arrow-down-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/arrow-left-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/arrow-left-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/arrow-right-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/arrow-right-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/arrow-up-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/arrow-up-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/attachment.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/authorize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/authorize.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/basemap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/basemap.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/beginning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/beginning.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/blank-map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/blank-map-pin.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/browser.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/calculator.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/calendar.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/chart.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/chat.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/check-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/check-mark.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/checkbox-checked.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/checkbox-unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/checkbox-unchecked.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/close-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/close-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/close.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/collapse.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/collection.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/comment.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/compass.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/configure-popup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/configure-popup.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/contact.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/dashboard.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/deny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/deny.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/description.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/directions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/directions.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/directions2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/directions2.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/dock-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/dock-bottom.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/dock-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/dock-left.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/dock-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/dock-right.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/documentation.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/down-arrow-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/down-arrow-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/down-arrow.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/down.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/download.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/drag-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/drag-horizontal.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/drag-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/drag-vertical.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/duplicate.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/edit.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/end.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/environment-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/environment-settings.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/erase.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/error.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/error2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/error2.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/expand.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/experimental.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/favorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/favorites.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/feature-layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/feature-layer.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/filter.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/forward.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/globe.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/grant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/grant.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/grid.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/group.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/handle-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/handle-horizontal.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/handle-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/handle-vertical.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/home.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/key.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/labels.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/layer-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/layer-list.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/layers.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/left-arrow-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/left-arrow-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/left-arrow.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/left-triangle-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/left-triangle-arrow.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/left.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/line-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/line-chart.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/link-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/link-external.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/link.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/loading-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/loading-indicator.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/locate.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/locked.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/map-pin.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/maps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/maps.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/marketplace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/marketplace.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/maximize.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/media.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/media2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/media2.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/menu.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/minimize.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/minus-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/minus-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/minus.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/mobile.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/navigation.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/notice-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/notice-round.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/notice-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/notice-triangle.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/organization.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-bottom-left.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-bottom-right.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-top-left.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/overview-arrow-top-right.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/pan.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/pause.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/phone.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/pie-chart.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/play.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/plus-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/plus-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/plus.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/printer.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/question.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/radio-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/radio-checked.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/radio-unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/radio-unchecked.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/refresh.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/resend-invitation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/resend-invitation.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/reverse.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/review.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/right-arrow-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/right-arrow-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/right-arrow.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/right-triangle-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/right-triangle-arrow.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/right.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/rotate.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/save.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/search.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/settings.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/settings2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/settings2.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/share.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/sign-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/sign-out.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/sort-ascending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/sort-ascending.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/sort-descending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/sort-descending.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/support.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/table.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/tag.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/time-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/time-clock.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/trash.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/unlocked.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/up-arrow-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/up-arrow-circled.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/up-arrow.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/up-down-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/up-down-arrows.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/up.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/upload.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/user.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/zoom-in-fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/zoom-in-fixed.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/zoom-in-magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/zoom-in-magnifying-glass.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/zoom-out-fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/zoom-out-fixed.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/icons/ui/zoom-out-magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/icons/ui/zoom-out-magnifying-glass.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/loader-ie9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/loader-ie9.gif -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/logo/esri-logo-reversed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/logo/esri-logo-reversed.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/img/logo/esri-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/img/logo/esri-logo.svg -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/js/calcite-web-marketing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/js/calcite-web-marketing.js -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/js/calcite-web-marketing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/js/calcite-web-marketing.min.js -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/js/calcite-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/js/calcite-web.js -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/js/calcite-web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/js/calcite-web.min.js -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web-dark.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web-e-commerce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web-e-commerce.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web-marketing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web-marketing.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web-no-fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web-no-fonts.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/base/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/base/_colors.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/base/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/base/_config.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/base/_reset.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_action-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_action-bar.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_alert.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_animation.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_badges.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_breadcrumbs.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_button.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_card.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_dropdown.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_esri-logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_esri-logo.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_form.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_input-group.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_label.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_loader.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_panel.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_radio-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_radio-group.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_skip-to-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_skip-to-content.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_sliders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_sliders.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_switches.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_switches.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_table.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/components/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/components/_tooltip.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/extentions/e-commerce/_pricing-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/extentions/e-commerce/_pricing-table.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/extentions/marketing/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/extentions/marketing/_carousel.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/extentions/marketing/_image-switcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/extentions/marketing/_image-switcher.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_block-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_block-groups.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_columns.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_grid.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_gutter-helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_gutter-helpers.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_gutter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_gutter.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_leader-trailer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_leader-trailer.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_left-right.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_left-right.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_mixins.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_pre-post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_pre-post.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_show-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_show-hide.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/grid/_sticky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/grid/_sticky.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/icons/_calcite-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/icons/_calcite-ui.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/icons/_icon-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/icons/_icon-colors.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/icons/_social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/icons/_social.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/imports.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_accordion.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_drawers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_drawers.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_filter-dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_filter-dropdown.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_footer.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_modal.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_search.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_side-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_side-nav.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_sub-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_sub-nav.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_tabs.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_third-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_third-nav.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_top-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_top-nav.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/patterns/_user-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/patterns/_user-nav.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_config.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_faces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_faces.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_helpers.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_i18n.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_i18n.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_import.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_import.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_mixins.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_scale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_scale.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_styles.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/type/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/type/_type.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_animation.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_appearance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_appearance.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_border.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_box-shadow.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_box-sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_box-sizing.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_calc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_calc.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_clearfix.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_inline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_inline.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_keyframes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_keyframes.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_overflow.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_positioning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_positioning.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_prefixer.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_responsive.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_transform.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_transition.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_utils.scss -------------------------------------------------------------------------------- /calcite-web-1.2.5/dist/sass/calcite-web/utils/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/calcite-web-1.2.5/dist/sass/calcite-web/utils/_visibility.scss -------------------------------------------------------------------------------- /config/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/config/application.json -------------------------------------------------------------------------------- /config/applicationBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/config/applicationBase.json -------------------------------------------------------------------------------- /configurationParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/configurationParams.json -------------------------------------------------------------------------------- /images/interactive-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/images/interactive-legend.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/index.html -------------------------------------------------------------------------------- /oauth-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/oauth-callback.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/package.json -------------------------------------------------------------------------------- /styles/Main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/styles/Main.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/interactive-legend/HEAD/tsconfig.prod.json --------------------------------------------------------------------------------