Skip to content

Commit

Permalink
Update UI Submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
dzole0311 committed Jul 12, 2024
1 parent ea55312 commit 380c664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .veda/ui
Submodule ui updated 86 files
+2 −0 .env
+25 −0 .github/ISSUE_TEMPLATE/bug.md
+33 −0 .github/ISSUE_TEMPLATE/bug_report.md
+2 −1 .gitignore
+26 −0 .npmignore
+4 −3 .parcelrc
+4 −0 .parcelrc-lib
+13 −0 .sassrc.js
+1 −1 app/scripts/components/analysis/page-hero-analysis.tsx
+69 −101 app/scripts/components/common/blocks/block-map.tsx
+14 −1 app/scripts/components/common/blocks/index.tsx
+2 −2 app/scripts/components/common/blocks/lazy-components.js
+2 −2 app/scripts/components/common/blocks/scrollytelling/chapter.tsx
+131 −161 app/scripts/components/common/blocks/scrollytelling/index.tsx
+6 −0 app/scripts/components/common/browse-controls/constants.js
+19 −16 app/scripts/components/common/browse-controls/index.tsx
+3 −148 app/scripts/components/common/browse-controls/use-browse-controls.ts
+4 −4 app/scripts/components/common/card-sources.tsx
+1 −0 app/scripts/components/common/card/horizontal-info-card.tsx
+3 −3 app/scripts/components/common/card/index.tsx
+158 −0 app/scripts/components/common/catalog/catalog-card.tsx
+355 −0 app/scripts/components/common/catalog/catalog-content.tsx
+57 −0 app/scripts/components/common/catalog/catalog-tags.tsx
+15 −0 app/scripts/components/common/catalog/controls/atoms/search-atom.ts
+22 −0 app/scripts/components/common/catalog/controls/atoms/taxonomy-atom.ts
+70 −0 app/scripts/components/common/catalog/controls/hooks/use-filters-with-query.ts
+3 −2 app/scripts/components/common/catalog/filter-tag.tsx
+60 −38 app/scripts/components/common/catalog/filters-control.tsx
+16 −218 app/scripts/components/common/catalog/index.tsx
+27 −20 app/scripts/components/common/catalog/prepare-datasets.ts
+144 −0 app/scripts/components/common/catalog/utils.test.ts
+79 −0 app/scripts/components/common/catalog/utils.ts
+2 −2 app/scripts/components/common/content-taxonomy.tsx
+2 −2 app/scripts/components/common/dataset-classification.tsx
+3 −3 app/scripts/components/common/featured-slider-section.tsx
+16 −13 app/scripts/components/common/form/checkable-filter/index.tsx
+50 −0 app/scripts/components/common/layout-root/context.tsx
+5 −69 app/scripts/components/common/layout-root/index.tsx
+16 −0 app/scripts/components/common/layout-root/useSlidingStickyHeaderProps.ts
+12 −3 app/scripts/components/common/map/map-component.tsx
+14 −6 app/scripts/components/common/map/maps.tsx
+3 −0 app/scripts/components/common/map/style-generators/raster-timeseries.tsx
+22 −3 app/scripts/components/common/map/utils.ts
+1 −1 app/scripts/components/common/nav-wrapper.js
+2 −2 app/scripts/components/data-catalog/container.tsx
+2 −1 app/scripts/components/development/index.tsx
+28 −31 app/scripts/components/exploration/analysis-data.ts
+8 −7 app/scripts/components/exploration/atoms/hooks.ts
+0 −291 app/scripts/components/exploration/components/dataset-selector-modal/content.tsx
+5 −5 app/scripts/components/exploration/components/dataset-selector-modal/footer.tsx
+2 −27 app/scripts/components/exploration/components/dataset-selector-modal/header.tsx
+38 −125 app/scripts/components/exploration/components/dataset-selector-modal/index.tsx
+1 −1 app/scripts/components/exploration/components/datasets/data-layer-card.tsx
+7 −7 app/scripts/components/exploration/components/datasets/dataset-list-item.tsx
+4 −4 app/scripts/components/exploration/components/layer-info-modal.tsx
+3 −3 app/scripts/components/exploration/components/map/index.tsx
+12 −26 app/scripts/components/exploration/components/map/layer.tsx
+2 −2 app/scripts/components/exploration/components/timeline/timeline.tsx
+33 −24 app/scripts/components/exploration/data-utils.ts
+18 −15 app/scripts/components/exploration/hooks/use-analysis-data-request.ts
+32 −30 app/scripts/components/exploration/hooks/use-stac-metadata-datasets.ts
+53 −36 app/scripts/components/exploration/types.d.ts.ts
+2 −1 app/scripts/components/home/index.tsx
+2 −2 app/scripts/components/sandbox/mdx-scrollytelling/page.mdx
+22 −102 app/scripts/components/stories/hub/index.tsx
+2 −4 app/scripts/components/uhoh/fatal-error.js
+4 −46 app/scripts/context/layer-data.tsx
+31 −0 app/scripts/index.ts
+7 −6 app/scripts/main.tsx
+4 −0 app/scripts/styles/_uswds-theme.scss
+1 −1 app/scripts/styles/hug/index.ts
+1 −0 app/scripts/styles/styles.scss
+5 −0 app/scripts/theme-provider.tsx
+1 −0 app/scripts/types/aliases.ts
+276 −0 app/scripts/types/veda.ts
+1 −1 app/scripts/utils/routes.ts
+4 −3 app/scripts/utils/url.ts
+2 −2 app/scripts/utils/use-sliding-sticky-header.ts
+117 −0 app/scripts/utils/veda-data-no-faux-module.ts
+4 −3 app/scripts/utils/veda-data.ts
+17 −5 gulpfile.js
+40 −10 package.json
+60 −0 parcel-resolver-alias/index.js
+8 −0 postcss.config.js
+5 −1 tsconfig.json
+1,714 −461 yarn.lock

0 comments on commit 380c664

Please sign in to comment.