Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v4.0.1 (2025-04-30)

* Bugfix: import `eui_buttons.less` where needed, providing expected eui-button
styles. This fixes an issue where the order buttons had a small shadow around
their edge.

# v4.0.0 (2025-04-29)

* Remove Earthdata login button and user orders page.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nsidc/data-access-tools",
"version": "4.0.0",
"version": "4.0.1",
"description": "UI to order NASA data.",
"repository": "https://github.com/nsidc/data-access-tool-ui",
"files": [
Expand Down
2 changes: 2 additions & 0 deletions src/components/EarthdataSearchHandoffButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import { OrderParameters } from "../types/OrderParameters";
import { boundingBoxMatch, earthdataGranuleFilterParameters } from "../utils/CMR";
import { hasChanged } from "../utils/hasChanged";

import "../styles/eui_buttons.less";

interface IHandoffButtonProps {
onClick: () => void;
orderParameters: OrderParameters;
Expand Down
2 changes: 2 additions & 0 deletions src/components/EddButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import ReactTooltip from "react-tooltip";

import { hasChanged } from "../utils/hasChanged";

import "../styles/eui_buttons.less";

interface IEddButtonProps {
disabled: boolean;
buttonText: string;
Expand Down
2 changes: 2 additions & 0 deletions src/components/EddHandoffButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import * as React from "react";

import { hasChanged } from "../utils/hasChanged";

import "../styles/eui_buttons.less";

interface IHandoffButtonProps {
onClick: () => void;
eddDeeplink: any;
Expand Down
2 changes: 2 additions & 0 deletions src/components/ModalContent/EddOrderConfirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { cmrGranuleParams } from "../../utils/CMR";
import { CmrCollection } from "../../types/CmrCollection";
import { IEnvironment } from "../../utils/environment";

import "../../styles/eui_buttons.less";

interface IEddOrderConfirmationProps {
onCancel: () => void;
orderParameters: OrderParameters;
Expand Down
2 changes: 2 additions & 0 deletions src/components/ModalContent/EdscOrderConfirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import * as React from "react";
import { OrderParameters } from "../../types/OrderParameters";
import { EarthdataSearchHandoffButton } from "../EarthdataSearchHandoffButton";

import "../../styles/eui_buttons.less";

interface IEdscOrderConfirmationProps {
onCancel: () => void;
onScriptDownloadClick: () => void;
Expand Down
2 changes: 2 additions & 0 deletions src/components/ScriptButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { IEnvironment } from "../utils/environment";
import { hasChanged } from "../utils/hasChanged";
import { LoadingIcon } from "./LoadingIcon";

import "../styles/eui_buttons.less";

interface IScriptButtonProps {
disabled: boolean;
environment: IEnvironment;
Expand Down
2 changes: 2 additions & 0 deletions src/components/SubmitButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import ReactTooltip from "react-tooltip";

import { hasChanged } from "../utils/hasChanged";

import "../styles/eui_buttons.less";

interface ISubmitButtonProps {
buttonText: string;
buttonId: string;
Expand Down