Bump styled-components from 5.3.9 to 6.0.2 in /extensions/ql-vscode (#2585)

This commit is contained in:
dependabot[bot]
2023-08-04 09:45:17 +01:00
committed by GitHub
parent a3c0896d37
commit 2b9aad34f8
46 changed files with 962 additions and 10969 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1770,7 +1770,7 @@
"stream": "^0.0.2",
"stream-chain": "^2.2.4",
"stream-json": "^1.7.3",
"styled-components": "^5.3.3",
"styled-components": "^6.0.2",
"tmp": "^0.1.0",
"tmp-promise": "^3.0.2",
"tree-kill": "^1.2.2",

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { ReactNode } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
type ContainerProps = {
type: "warning" | "error";

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react";
import {

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeTag } from "@vscode/webview-ui-toolkit/react";
import {

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
type Props = {
percent: number;

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { ChangeEvent } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
const StyledDropdown = styled.select`
width: 100%;

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { HighlightedRegion } from "../../../variant-analysis/shared/analysis-result";
import {

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import {
AnalysisMessage,

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react";
import {

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react";
import {

View File

@@ -1,4 +1,4 @@
import styled from "styled-components";
import { styled } from "styled-components";
export const HorizontalSpace = styled.div<{ size: 1 | 2 | 3 }>`
flex: 0 0 auto;

View File

@@ -1,4 +1,4 @@
import styled from "styled-components";
import { styled } from "styled-components";
export const SectionTitle = styled.h2`
font-size: medium;

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { Codicon } from "./icon";
const Star = styled.span`

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
type Size = "x-small" | "small" | "medium" | "large" | "x-large";

View File

@@ -1,4 +1,4 @@
import styled from "styled-components";
import { styled } from "styled-components";
export const VerticalSpace = styled.div<{ size: 1 | 2 | 3 }>`
flex: 0 0 auto;

View File

@@ -1,4 +1,4 @@
import styled from "styled-components";
import { styled } from "styled-components";
export const ViewTitle = styled.h1`
font-size: 2em;

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import classNames from "classnames";
type Props = {

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { Codicon } from "./Codicon";
const Icon = styled(Codicon)`

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { Codicon } from "./Codicon";
const Icon = styled(Codicon)`

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { Codicon } from "./Codicon";
const Icon = styled(Codicon)`

View File

@@ -6,7 +6,7 @@ import {
VSCodeCheckbox,
VSCodeTag,
} from "@vscode/webview-ui-toolkit/react";
import styled from "styled-components";
import { styled } from "styled-components";
import { ExternalApiUsage } from "../../data-extensions-editor/external-api-usage";
import { ModeledMethod } from "../../data-extensions-editor/modeled-method";
import { assertNever } from "../../common/helpers-pure";

View File

@@ -1,6 +1,5 @@
import * as React from "react";
import { ChangeEvent, useCallback, useEffect, useMemo } from "react";
import type { ModeledMethod } from "../../data-extensions-editor/modeled-method";
import { Dropdown } from "../common/Dropdown";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useCallback, useMemo, useState } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { ExternalApiUsage } from "../../data-extensions-editor/external-api-usage";
import { ModeledMethod } from "../../data-extensions-editor/modeled-method";
import { ModeledMethodDataGrid } from "./ModeledMethodDataGrid";

View File

@@ -5,7 +5,7 @@ import {
ExternalApiUsage,
} from "../../data-extensions-editor/external-api-usage";
import { VSCodeTag } from "@vscode/webview-ui-toolkit/react";
import styled from "styled-components";
import { styled } from "styled-components";
const ClassificationsContainer = styled.div`
display: inline-flex;

View File

@@ -5,7 +5,7 @@ import {
} from "@vscode/webview-ui-toolkit/react";
import * as React from "react";
import { ChangeEvent, useCallback, useMemo } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { vscode } from "../vscode-api";
import { ExternalApiUsage } from "../../data-extensions-editor/external-api-usage";

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { useState } from "react";
import { useTelemetryOnChange } from "../common/telemetry";

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import {
AnalysisAlert,
AnalysisRawResults,

View File

@@ -1,5 +1,5 @@
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react";
import styled from "styled-components";
import { styled } from "styled-components";
export const LinkIconButton = styled(VSCodeLink)`
.codicon {

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { ViewTitle } from "../common";
import { LinkIconButton } from "./LinkIconButton";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useState } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react";
import {
CellValue,

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { ChangeEvent, useCallback, useEffect, useState } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeBadge, VSCodeCheckbox } from "@vscode/webview-ui-toolkit/react";
import {
isCompletedAnalysisRepoStatus,

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useCallback } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeDropdown, VSCodeOption } from "@vscode/webview-ui-toolkit/react";
import { Codicon } from "../common";
import { FilterKey } from "../../variant-analysis/shared/variant-analysis-filter-sort";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useCallback } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeTextField } from "@vscode/webview-ui-toolkit/react";
import { Codicon } from "../common";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { Dispatch, SetStateAction, useCallback } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import {
FilterKey,
RepositoriesFilterSortState,

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useCallback } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeDropdown, VSCodeOption } from "@vscode/webview-ui-toolkit/react";
import { SortKey } from "../../variant-analysis/shared/variant-analysis-filter-sort";
import { Codicon } from "../common";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import type { ReactNode } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
type Props = {
title: ReactNode;

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeButton } from "@vscode/webview-ui-toolkit/react";
import { VariantAnalysisStatus } from "../../variant-analysis/shared/variant-analysis";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { Dispatch, SetStateAction, useCallback, useMemo } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { RepoRow } from "./RepoRow";
import {
VariantAnalysis,

View File

@@ -1,4 +1,4 @@
import styled from "styled-components";
import { styled } from "styled-components";
export const VariantAnalysisContainer = styled.div`
max-width: 55em;

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useMemo } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import {
getSkippedRepoCount,
getTotalResultCount,

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
const Container = styled.div`
display: flex;

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { Dispatch, SetStateAction } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import {
VSCodeBadge,
VSCodePanels,

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useMemo } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VariantAnalysisSkippedRepositoryGroup } from "../../variant-analysis/shared/variant-analysis";
import { Alert } from "../common";
import { RepoRow } from "./RepoRow";

View File

@@ -1,6 +1,6 @@
import * as React from "react";
import { useMemo } from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VariantAnalysisStatus } from "../../variant-analysis/shared/variant-analysis";
import { StatItem } from "./StatItem";
import { formatDecimal } from "../../common/number";

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import styled from "styled-components";
import { styled } from "styled-components";
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react";
import { formatDate } from "../../common/date";
import { VariantAnalysisStatus } from "../../variant-analysis/shared/variant-analysis";