Skip to content

Commit

Permalink
point veda-ui to fix/layer-info-modal-linking branch
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrahoang686 committed Dec 17, 2024
1 parent c1a5956 commit bac67ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .veda/ui
Submodule ui updated 83 files
+2 −0 .env
+16 −0 .github/workflows/conventional-commit.yml
+50 −0 .github/workflows/release.yml
+31 −0 .release-it.json
+2 −5 .stylelintrc.json
+4 −1 .vscode/settings.json.sample
+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
+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
+2 −47 app/scripts/components/common/google-form.tsx
+1 −1 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
+48 −0 app/scripts/components/common/page-header/nav/create-dynamic-nav-menu-list.tsx
+53 −0 app/scripts/components/common/page-header/nav/nav-dropdown-button.tsx
+38 −0 app/scripts/components/common/page-header/nav/nav-item-cta.tsx
+53 −0 app/scripts/components/common/page-header/nav/nav-item-links.tsx
+25 −0 app/scripts/components/common/page-header/page-header.scss
+72 −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
+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
+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
+99 −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
+12 −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
+3 −1 app/scripts/components/home/index.tsx
+2 −2 app/scripts/index.ts
+22 −17 app/scripts/styles/_uswds-theme.scss
+33 −0 app/scripts/styles/_veda-ui-theme-vars.scss
+16 −11 app/scripts/styles/styles.scss
+1 −1 app/scripts/styles/theme.ts
+59 −0 app/scripts/utils/use-pathname.ts
+1 −2 app/scripts/utils/utils.ts
+29 −0 docs/content/CONFIGURATION.md
+30 −3 docs/development/SETUP.md
+41 −0 gulpfile.js
+18 −0 jest-transformer-mdx.js
+3 −1 jest.config.js
+11 −0 jest.setup.js
+43 −5 mock/veda.config.js
+15 −7 package.json
+5 −7 parcel-resolver-veda/index.d.ts
+3 −1 parcel-resolver-veda/index.js
+15 −1 postcss.config.js
+1,943 −466 yarn.lock

0 comments on commit bac67ed

Please sign in to comment.