Skip to content

Commit

Permalink
Release v3.1.1 (#697)
Browse files Browse the repository at this point in the history
_The PR name should be the version to be deployed (ex: v1.0.1)_

- [x] Bump the version in the package.json or equivalent.

---

- # Changelog
- ## 🎉 Features
	- 🦗
- ## 🚀 Improvements
	- Update Carousel Items #694
	- Update veda-ui to latest version v5.11.5 #692

- ## 📊 Dataset Updates
	- 🦗

- ## 📝 Stories Updates
	- 🦗
- ## 🐛 Fixes
	- Fix `Contact Us` in the navbar #696
  • Loading branch information
paridhi-parajuli authored Jan 14, 2025
2 parents 9fa9a05 + bf3e66b commit 3039864
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .veda/ui
Submodule ui updated 95 files
+2 −0 .env
+7 −3 .eslintrc
+16 −0 .github/workflows/conventional-commit.yml
+56 −0 .github/workflows/release.yml
+31 −0 .release-it.json
+2 −5 .stylelintrc.json
+4 −1 .vscode/settings.json.sample
+3 −0 app/scripts/components/common/banner/banner.scss
+114 −56 app/scripts/components/common/banner/index.tsx
+0 −0 app/scripts/components/common/banner/styles.scss
+1 −0 app/scripts/components/common/card/index.tsx
+3 −21 app/scripts/components/common/catalog/catalog-card.tsx
+7 −9 app/scripts/components/common/catalog/catalog-content.tsx
+3 −2 app/scripts/components/common/catalog/filters-control.tsx
+4 −7 app/scripts/components/common/catalog/index.tsx
+0 −1 app/scripts/components/common/cookie-consent/cookieConsent.spec.js
+109 −5 app/scripts/components/common/cookie-consent/index.tsx
+0 −0 app/scripts/components/common/datepicker/datepicker.scss
+11 −9 app/scripts/components/common/datepicker/index.tsx
+6 −47 app/scripts/components/common/google-form.tsx
+11 −4 app/scripts/components/common/layout-root/index.tsx
+16 −8 app/scripts/components/common/map/style-generators/raster-paint-layer.tsx
+4 −1 app/scripts/components/common/map/style-generators/raster-timeseries.tsx
+1 −0 app/scripts/components/common/map/types.d.ts
+217 −0 app/scripts/components/common/nasa-logo-color.js
+23 −8 app/scripts/components/common/nav-wrapper.js
+360 −0 app/scripts/components/common/page-header-legacy/index.tsx
+0 −0 app/scripts/components/common/page-header-legacy/logo.tsx
+248 −0 app/scripts/components/common/page-header-legacy/nav-menu-item.tsx
+69 −36 app/scripts/components/common/page-header/default-config.ts
+71 −316 app/scripts/components/common/page-header/index.tsx
+0 −31 app/scripts/components/common/page-header/logo-container.tsx
+49 −0 app/scripts/components/common/page-header/logo-container/index.tsx
+45 −0 app/scripts/components/common/page-header/logo-container/logo-container.scss
+0 −171 app/scripts/components/common/page-header/nav-menu-item.tsx
+44 −0 app/scripts/components/common/page-header/nav/create-dynamic-nav-menu-list.tsx
+63 −0 app/scripts/components/common/page-header/nav/nav-dropdown-button.tsx
+36 −0 app/scripts/components/common/page-header/nav/nav-item-cta.tsx
+51 −0 app/scripts/components/common/page-header/nav/nav-item-links.tsx
+25 −0 app/scripts/components/common/page-header/page-header.scss
+69 −0 app/scripts/components/common/page-header/page-header.test.tsx
+19 −15 app/scripts/components/common/page-header/types.ts
+42 −0 app/scripts/components/common/page-header/use-mobile-menu-fix.ts
+81 −0 app/scripts/components/common/site-alert/index.tsx
+0 −10 app/scripts/components/common/uswds/banner.tsx
+42 −0 app/scripts/components/common/uswds/banner/index.tsx
+6 −0 app/scripts/components/common/uswds/header/extended-nav.tsx
+10 −0 app/scripts/components/common/uswds/header/index.tsx
+6 −0 app/scripts/components/common/uswds/header/menu.tsx
+6 −0 app/scripts/components/common/uswds/header/nav-drop-down-button.tsx
+6 −0 app/scripts/components/common/uswds/header/nav-menu-button.tsx
+4 −0 app/scripts/components/common/uswds/index.tsx
+10 −0 app/scripts/components/common/uswds/input.tsx
+6 −0 app/scripts/components/common/uswds/site-alert.tsx
+7 −8 app/scripts/components/data-catalog/container.tsx
+12 −0 app/scripts/components/exploration/atoms/hooks.ts
+1 −3 app/scripts/components/exploration/components/dataset-selector-modal/index.tsx
+71 −0 app/scripts/components/exploration/components/datasets/colorRangeSlider/color-range-slider.scss
+98 −0 app/scripts/components/exploration/components/datasets/colorRangeSlider/colorRangeSlider.spec.tsx
+329 −0 app/scripts/components/exploration/components/datasets/colorRangeSlider/index.tsx
+81 −0 app/scripts/components/exploration/components/datasets/colorRangeSlider/utils.tsx
+99 −27 app/scripts/components/exploration/components/datasets/colormap-options.tsx
+84 −41 app/scripts/components/exploration/components/datasets/data-layer-card.tsx
+27 −8 app/scripts/components/exploration/components/datasets/dataset-list-item.tsx
+3 −1 app/scripts/components/exploration/components/datasets/dataset-list.tsx
+13 −12 app/scripts/components/exploration/components/layer-info-modal.tsx
+4 −1 app/scripts/components/exploration/components/map/layer.tsx
+4 −2 app/scripts/components/exploration/components/timeline/timeline.tsx
+13 −4 app/scripts/components/exploration/container.tsx
+3 −1 app/scripts/components/exploration/index.tsx
+7 −1 app/scripts/components/exploration/types.d.ts.ts
+11 −11 app/scripts/components/home/index.tsx
+6 −2 app/scripts/index.ts
+22 −17 app/scripts/styles/_uswds-theme.scss
+33 −0 app/scripts/styles/_veda-ui-theme-vars.scss
+13 −11 app/scripts/styles/styles.scss
+1 −1 app/scripts/styles/theme.ts
+6 −0 app/scripts/styles/veda-components.scss
+15 −0 app/scripts/utils/use-click-outside.ts
+76 −0 app/scripts/utils/use-pathname.ts
+1 −2 app/scripts/utils/utils.ts
+29 −0 docs/content/CONFIGURATION.md
+53 −3 docs/development/SETUP.md
+181 −0 docs/development/THEMING_GUIDE.md
+43 −1 gulpfile.js
+18 −0 jest-transformer-mdx.js
+4 −2 jest.config.js
+14 −0 jest.setup.ts
+78 −9 mock/veda.config.js
+48 −24 package.json
+31 −17 parcel-resolver-veda/index.d.ts
+41 −12 parcel-resolver-veda/index.js
+15 −1 postcss.config.js
+1 −1 tsconfig.json
+3,868 −2,213 yarn.lock
14 changes: 7 additions & 7 deletions overrides/home/carousel/items.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ export default [
image: new URL('../../media/Methane_Carousel_card.png', import.meta.url).href,
imageAlt: 'Earth shown with purple gas indicating atmospheric methane.'
},
{
link: 'https://us-ghg-center.github.io/agu-2024-workshop/ghg-center-at-agu-2024.html',
title: 'US GHG Center at AGU 2024',
description: 'Join us at the annual American Geophysical Union (AGU) meeting, held December 9-13 in Washington, D.C.',
image: new URL('../../media/AGU2024_carousel_2.png', import.meta.url).href,
imageAlt: 'US GHG Center at AGU 2024.'
},
{

link: 'https://appliedsciences.nasa.gov/get-involved/training/english/arset-methane-observations-large-emission-event-detection-and',
Expand All @@ -21,4 +14,11 @@ export default [
image: new URL('../../media/Methane_Website_Header.png', import.meta.url).href,
imageAlt: 'Register: Stakeholder Engagement Forum.'
},
{
link: '/stories/nist-methane-intercomparisons',
title: 'NIST Developing Standards for Methane Plume Data',
description: 'Read about NIST efforts to develop consensus standards for growing volume of public and private methane plume satellite data.',
image: new URL('../../../stories/methane/media/NIST_Methane_Intercomparisons_card.png', import.meta.url).href,
imageAlt: 'Construction worker overlooking an industrial refinery at dusk, with interconnected glowing lines and nodes overlaid in the sky.'
},
]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "veda-config",
"description": "Configuration for Veda",
"version": "3.1.0",
"version": "3.1.1",
"source": "./.veda/ui/app/index.html",
"license": "Apache-2.0",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion veda.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if (config.GOOGLE_FORM) {
{
title: 'Contact us',
src: config.GOOGLE_FORM,
type: 'modal'
type: 'action'
}
];
}
Expand Down

0 comments on commit 3039864

Please sign in to comment.