Skip to content

Commit

Permalink
#584 - Feature grid enabled in context-creator (#630)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuren1 authored Jul 3, 2023
1 parent edb4484 commit bafa39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MapStore2
Submodule MapStore2 updated 48 files
+1 −0 build/docma-config.json
+1 −0 docs/developer-guide/maps-configuration.md
+1 −1 docs/user-guide/layer-settings.md
+4 −0 package.json
+139 −0 web/client/actions/__tests__/longitudinalPfofile-test.js
+233 −0 web/client/actions/longitudinalProfile.js
+3 −3 web/client/components/contextcreator/ConfigurePluginsStep.jsx
+11 −2 web/client/components/contextcreator/ContextCreator.jsx
+3 −1 web/client/components/misc/Button.jsx
+9 −0 web/client/configs/pluginsConfig.json
+491 −0 web/client/epics/longitudinalProfile.js
+217 −0 web/client/plugins/LongitudinalProfileTool.jsx
+58 −56 web/client/plugins/featuregrid/FeatureEditor.jsx
+65 −0 web/client/plugins/longitudinalProfile/Chart.jsx
+464 −0 web/client/plugins/longitudinalProfile/Dock.jsx
+41 −0 web/client/plugins/longitudinalProfile/HelpInfo.jsx
+48 −0 web/client/plugins/longitudinalProfile/Import.jsx
+87 −0 web/client/plugins/longitudinalProfile/ImportContent.jsx
+64 −0 web/client/plugins/longitudinalProfile/ImportSelectCRS.jsx
+112 −0 web/client/plugins/longitudinalProfile/Main.jsx
+121 −0 web/client/plugins/longitudinalProfile/Menu.jsx
+98 −0 web/client/plugins/longitudinalProfile/Properties.jsx
+64 −0 web/client/plugins/longitudinalProfile/SettingsPanel.jsx
+46 −0 web/client/plugins/longitudinalProfile/__tests__/ImportContent-test.js
+33 −0 web/client/plugins/longitudinalProfile/constants.js
+154 −0 web/client/plugins/longitudinalProfile/enhancers/processFile.js
+54 −0 web/client/plugins/longitudinalProfile/enhancers/useFile.js
+40 −0 web/client/plugins/longitudinalProfile/observables/wps/profile.js
+9 −10 web/client/product/plugins.js
+132 −0 web/client/reducers/longitudinalProfile.js
+1 −0 web/client/selectors/controls.js
+1 −0 web/client/selectors/draw.js
+57 −0 web/client/selectors/longitudinalProfile.js
+4 −0 web/client/selectors/maplayout.js
+1 −0 web/client/themes/dark/variables.less
+12 −1 web/client/themes/default/less/featuregrid.less
+139 −0 web/client/themes/default/less/longitudinal-profile.less
+1 −0 web/client/themes/default/less/mapstore.less
+2 −0 web/client/themes/default/ms-variables.less
+69 −0 web/client/translations/data.de-DE.json
+69 −0 web/client/translations/data.en-US.json
+69 −0 web/client/translations/data.es-ES.json
+69 −0 web/client/translations/data.fr-FR.json
+69 −0 web/client/translations/data.it-IT.json
+20 −0 web/client/utils/FileUtils.js
+69 −0 web/client/utils/LongitudinalProfileUtils.js
+1 −0 web/client/utils/styleparser/CesiumStyleParser.js
+3 −1 web/client/utils/styleparser/OLStyleParser.js

0 comments on commit bafa39e

Please sign in to comment.