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
120 changes: 105 additions & 15 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
Expand Down Expand Up @@ -77,7 +78,9 @@
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.29.3",
"react": "^18.2.0",
"react-cool-dimensions": "^3.0.1",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"styled-components": "^5.3.6"
}
}
Binary file removed public/images/observabilityButton.gif
Binary file not shown.
Binary file added public/images/observabilityButton_dark.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/observabilityButton_light.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/observabilityPanel_light.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added public/images/runOrDebug_light.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/components/Assets/AssetList/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { useMemo, useState } from "react";
import { AssetEntry as AssetEntryComponent } from "../../common/AssetEntry";
import { ChevronIcon } from "../../common/icons/ChevronIcon";
import { DIRECTION } from "../../common/icons/types";
import { Menu } from "../../common/Menu";
import { Popover } from "../../common/Popover";
import { PopoverContent } from "../../common/Popover/PopoverContent";
import { PopoverTrigger } from "../../common/Popover/PopoverTrigger";
import { ChevronIcon } from "../../common/icons/ChevronIcon";
import { DIRECTION } from "../../common/icons/types";
import { getAssetTypeInfo } from "../utils";
import * as s from "./styles";
import {
Expand Down Expand Up @@ -206,7 +206,8 @@ export const AssetList = (props: AssetListProps) => {
</s.List>
) : (
<s.NoDataText>
Not seeing your data here? Maybe you’re missing some instrumentation!
Not seeing your data here? Maybe you&apos;re missing some
instrumentation!
</s.NoDataText>
)}
</s.Container>
Expand Down
8 changes: 0 additions & 8 deletions src/components/Assets/AssetList/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,6 @@ export const ListItem = styled.li`
display: flex;
`;

export const Link = styled.a`
color: #7891d0;
text-decoration: none;
font-weight: 500;
font-size: 12px;
line-height: 14px;
`;

export const NoDataText = styled.span`
padding: 10px;
font-weight: 500;
Expand Down
25 changes: 0 additions & 25 deletions src/components/InstallationWizard/Button/index.tsx

This file was deleted.

52 changes: 0 additions & 52 deletions src/components/InstallationWizard/Button/styles.ts

This file was deleted.

Loading