Skip to content

Commit

Permalink
rm unused things
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm authored and OwenKephart committed Jan 16, 2024
1 parent 7f11a96 commit 6372a2f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,44 +188,13 @@ const PartitionSubsetList = ({description, status, subset, selectPartition}: Lis
);
};

const SegmentContainer = styled.div.attrs<{$width: number}>(({$width}) => ({
style: {
flexBasis: `${$width}px`,
},
}))<{$width: number}>`
.bp4-popover2-target {
display: block;
}
`;

const SearchContainer = styled(Box)`
display: flex;
${TextInputContainer} {
flex: 1;
}
`;

interface PartitionSegmentProps {
$color: string;
$hoverColor: string;
$width: number;
}

const PartitionSegment = styled.div.attrs<PartitionSegmentProps>(({$width}) => ({
style: {
flexBasis: `${$width}px`,
},
}))<PartitionSegmentProps>`
background-color: ${({$color}) => $color};
border-radius: 2px;
height: 20px;
transition: background-color 100ms linear;
:hover {
background-color: ${({$hoverColor}) => $hoverColor};
}
`;

const PartitionStatusDot = styled.div<{$color: string; $hoverColor: string}>`
background-color: ${({$color}) => $color};
height: 8px;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import {gql, useQuery} from '@apollo/client';
import {
Box,
Button,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ import {MockedProvider} from '@apollo/client/testing';
import * as React from 'react';

import {
buildAsset,
buildAssetConditionEvaluation,
buildAssetConditionEvaluationRecord,
buildAssetNode,
buildDimensionPartitionKeys,
buildPartitionDefinition,
buildPartitionedAssetConditionEvaluationNode,
buildUnpartitionedAssetConditionEvaluationNode,
} from '../../../graphql/types';
Expand Down

0 comments on commit 6372a2f

Please sign in to comment.