Compare commits
32
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb587d4e1d | ||
|
|
a298540724 | ||
|
|
26508980e1 | ||
|
|
581dfa34ae | ||
|
|
7c5fee6767 | ||
|
|
35df816cb3 | ||
|
|
d584f63655 | ||
|
|
16307e0fb1 | ||
|
|
edfc4ea3ad | ||
|
|
92e94ac2b7 | ||
|
|
ca421f1d02 | ||
|
|
08ead40182 | ||
|
|
0c686b9332 | ||
|
|
113a8a79a7 | ||
|
|
ebf8dbca6c | ||
|
|
ded2d61377 | ||
|
|
061aa0c3a3 | ||
|
|
c3e70a4e4f | ||
|
|
ba28799a21 | ||
|
|
811a451398 | ||
|
|
7d023660b8 | ||
|
|
e77a910282 | ||
|
|
568c4d9a2f | ||
|
|
3adeee5f8c | ||
|
|
027fb7f983 | ||
|
|
723a9ae898 | ||
|
|
3025ce8397 | ||
|
|
a59106f8f4 | ||
|
|
7574f42fb7 | ||
|
|
32f9d5adad | ||
|
|
2a27d053e6 | ||
|
|
e0b1988175 |
@@ -12,3 +12,11 @@ node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
.yarn/*
|
||||
!.yarn/cache
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
+6
-6
@@ -1,10 +1,7 @@
|
||||
import remarkGfm from "remark-gfm";
|
||||
|
||||
module.exports = {
|
||||
stories: [
|
||||
"../src/**/**/*.stories.mdx",
|
||||
"../src/**/**/*.stories.@(js|jsx|ts|tsx)",
|
||||
],
|
||||
stories: ["../src/**/**/*.mdx", "../src/**/**/*.stories.@(js|jsx|ts|tsx)"],
|
||||
core: {
|
||||
disableTelemetry: true,
|
||||
},
|
||||
@@ -23,12 +20,15 @@ module.exports = {
|
||||
},
|
||||
},
|
||||
},
|
||||
"@storybook/addon-webpack5-compiler-babel",
|
||||
"@chromatic-com/storybook",
|
||||
],
|
||||
framework: {
|
||||
name: "@storybook/react-webpack5",
|
||||
options: {},
|
||||
},
|
||||
docs: {
|
||||
autodocs: true,
|
||||
docs: {},
|
||||
typescript: {
|
||||
reactDocgen: "react-docgen-typescript",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -2,7 +2,7 @@ import { themes } from "@storybook/theming";
|
||||
import { darkColors, lightColors } from "../src/global/themes";
|
||||
|
||||
export const parameters = {
|
||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
||||
actions: {},
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
@@ -38,3 +38,4 @@ export const parameters = {
|
||||
},
|
||||
},
|
||||
};
|
||||
export const tags = ["autodocs"];
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
nodeLinker: node-modules
|
||||
Vendored
-67598
File diff suppressed because one or more lines are too long
Vendored
-1
File diff suppressed because one or more lines are too long
@@ -1,34 +0,0 @@
|
||||
import React from "react";
|
||||
export interface ApplicationLogoProps {
|
||||
applicationName:
|
||||
| "console"
|
||||
| "operator"
|
||||
| "directpv"
|
||||
| "kes"
|
||||
| "subnet"
|
||||
| "subnetops"
|
||||
| "cloud"
|
||||
| "releases"
|
||||
| "vmbroker"
|
||||
| "eureka"
|
||||
| "kms"
|
||||
| "loadbalancer"
|
||||
| "index"
|
||||
| "cache"
|
||||
| "monitor"
|
||||
| "observe"
|
||||
| "missioncontrol"
|
||||
| "globalconsole"
|
||||
| "minio"
|
||||
| "enterprise";
|
||||
subVariant?:
|
||||
| "simple"
|
||||
| "AGPL"
|
||||
| "standard"
|
||||
| "enterprise"
|
||||
| "new"
|
||||
| "enterpriseos"
|
||||
| "enterpriseosvertical";
|
||||
inverse?: boolean;
|
||||
onClick?: React.MouseEventHandler<any> | undefined;
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
/// <reference types="react" />
|
||||
import { CSSObject } from "styled-components";
|
||||
import { SelectorType } from "../../global/global.types";
|
||||
import { CommonHelpTipPlacement } from "../HelpTip/HelpTip.types";
|
||||
export interface AutocompleteProps {
|
||||
options: SelectorType[];
|
||||
value?: string;
|
||||
id: string;
|
||||
name?: string;
|
||||
required?: boolean;
|
||||
className?: string;
|
||||
disabled?: boolean;
|
||||
displayDropArrow?: boolean;
|
||||
label?: string;
|
||||
tooltip?: string;
|
||||
noLabelMinWidth?: boolean;
|
||||
placeholder?: string;
|
||||
onChange: (newValue: string, extraValue?: any) => void;
|
||||
sx?: CSSObject;
|
||||
helpTip?: React.ReactNode;
|
||||
helpTipPlacement?: CommonHelpTipPlacement;
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
import { FC } from "react";
|
||||
import { IActionButton } from "./DataTable.types";
|
||||
export declare const isPredefinedAction: (
|
||||
val: any,
|
||||
) => val is
|
||||
| "view"
|
||||
| "console"
|
||||
| "cloud"
|
||||
| "format"
|
||||
| "edit"
|
||||
| "delete"
|
||||
| "description"
|
||||
| "share"
|
||||
| "download"
|
||||
| "disable"
|
||||
| "preview";
|
||||
declare const TableActionButton: FC<IActionButton>;
|
||||
export default TableActionButton;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AGPLV3LightLogo: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AGPLV3LightLogo;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AGPLV3Logo: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default AGPLV3Logo;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AccessRuleIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AccessRuleIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AccountIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AccountIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AddAccessRuleIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AddAccessRuleIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AddFolderIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AddFolderIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AddIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default AddIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AlertCloseIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AlertCloseIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AlertIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default AlertIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AllBucketsIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AllBucketsIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ArrowDropUp: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default ArrowDropUp;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const ArrowIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default ArrowIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ArrowRightIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default ArrowRightIcon;
|
||||
@@ -1,5 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const ArrowRightLink: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default ArrowRightLink;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AttachFileIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AttachFileIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AudioIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default AudioIcon;
|
||||
@@ -1,5 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const AudioIconMute: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AudioIconMute;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const AutoModeIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AutoModeIcon;
|
||||
@@ -1,5 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const AzureTierIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AzureTierIcon;
|
||||
@@ -1,5 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const AzureTierIconXs: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default AzureTierIconXs;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const BackCaretIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default BackCaretIcon;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const BackIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default BackIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const BackSettingsIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default BackSettingsIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const BoxArrowDown: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default BoxArrowDown;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const BoxArrowUp: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default BoxArrowUp;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const BucketQuotaIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default BucketQuotaIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const BucketsIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default BucketsIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ChatIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default ChatIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default CircleIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const CloudIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default CloudIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const CodeIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default CodeIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const CopyIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default CopyIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const CreateIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default CreateIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const DeleteIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default DeleteIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const DrivesIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default DrivesIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const EditIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default EditIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const EgressIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default EgressIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ExpandIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default ExpandIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const FileDbIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default FileDbIcon;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default FilterIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const FolderIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default FolderIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const GithubIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default GithubIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const GroupsIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default GroupsIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const HealIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default HealIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const HelpIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default HelpIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const InfoIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default InfoIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const JSONIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default JSONIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LoginIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LoginIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LDAPIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LDAPIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LambdaIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LambdaIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LinkIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LinkIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LockIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LockIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LockIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LockIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LoginIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LoginIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LogoutIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LogoutIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const LogsIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default LogsIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const OIDCIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default OIDCIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const RedoIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default RedoIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const RemoveIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default RemoveIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ReportIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default ReportIcon;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const S3TierIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default S3TierIcon;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const S3TierIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default S3TierIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default SearchIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ShareIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default ShareIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const StarIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default StarIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const SyncIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default SyncIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const TagsIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default TagsIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const TiersIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default TiersIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const TimeIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default TimeIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ToolsIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default ToolsIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const TraceIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default TraceIcon;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const TrashIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default TrashIcon;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const UploadFile: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default UploadFile;
|
||||
@@ -1,3 +0,0 @@
|
||||
import React, { SVGProps } from "react";
|
||||
declare const UploadFile: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default UploadFile;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const UploadIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default UploadIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const UptimeIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default UptimeIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const UsersIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default UsersIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ViewColumnIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default ViewColumnIcon;
|
||||
@@ -1,6 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const ViewColumnIcon: (
|
||||
props: SVGProps<SVGSVGElement>,
|
||||
) => React.JSX.Element;
|
||||
export default ViewColumnIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const WarnIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default WarnIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const WarpIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default WarpIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const WatchIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default WatchIcon;
|
||||
@@ -1,4 +0,0 @@
|
||||
import { FC } from "react";
|
||||
import { InputBoxProps } from "./InputBox.types";
|
||||
declare const InputBox: FC<InputBoxProps>;
|
||||
export default InputBox;
|
||||
@@ -1,33 +0,0 @@
|
||||
import React from "react";
|
||||
import { CSSObject } from "styled-components";
|
||||
import { CommonHelpTipPlacement } from "../HelpTip/HelpTip.types";
|
||||
export interface InputBoxProps
|
||||
extends React.InputHTMLAttributes<HTMLInputElement> {
|
||||
id: string;
|
||||
fullWidth?: boolean;
|
||||
label?: string;
|
||||
tooltip?: string;
|
||||
sx?: CSSObject;
|
||||
index?: number;
|
||||
overlayId?: "index";
|
||||
overlayIcon?: React.ReactNode;
|
||||
overlayAction?: () => void;
|
||||
overlayObject?: React.ReactNode;
|
||||
noLabelMinWidth?: boolean;
|
||||
startIcon?: React.ReactNode;
|
||||
required?: boolean;
|
||||
className?: string;
|
||||
error?: string;
|
||||
helpTip?: React.ReactNode;
|
||||
helpTipPlacement?: CommonHelpTipPlacement;
|
||||
}
|
||||
export interface InputContainerProps {
|
||||
children?: React.ReactNode;
|
||||
sx?: CSSObject;
|
||||
error?: boolean;
|
||||
startIcon?: React.ReactNode;
|
||||
className?: string;
|
||||
}
|
||||
export interface ExtraInputProps {
|
||||
originType?: string;
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
/// <reference types="react" />
|
||||
import { CSSObject } from "styled-components";
|
||||
import { SelectorType } from "../../global/global.types";
|
||||
import { CommonHelpTipPlacement } from "../HelpTip/HelpTip.types";
|
||||
export interface SelectProps {
|
||||
options: SelectorType[];
|
||||
value?: string;
|
||||
id: string;
|
||||
name?: string;
|
||||
required?: boolean;
|
||||
className?: string;
|
||||
disabled?: boolean;
|
||||
label?: string;
|
||||
tooltip?: string;
|
||||
noLabelMinWidth?: boolean;
|
||||
fixedLabel?: string;
|
||||
placeholder?: string;
|
||||
onChange: (newValue: string, extraValue?: any) => void;
|
||||
sx?: CSSObject;
|
||||
helpTip?: React.ReactNode;
|
||||
helpTipPlacement?: CommonHelpTipPlacement;
|
||||
}
|
||||
Vendored
-105
@@ -1,105 +0,0 @@
|
||||
export { breakPoints, calculateBytes } from "../global/utils";
|
||||
export { default as ThemeHandler } from "./ThemeHandler/ThemeHandler";
|
||||
export { default as GlobalStyles } from "./GlobalStyles/GlobalStyles";
|
||||
export { default as Button } from "./Button/Button";
|
||||
export { default as ApplicationLogo } from "./ApplicationLogo/ApplicationLogo";
|
||||
export { default as ThemedLogo } from "./ThemedLogo/ThemedLogo";
|
||||
export { default as Grid } from "./Grid/Grid";
|
||||
export { default as LoginWrapper } from "./LoginWrapper/LoginWrapper";
|
||||
export { default as Loader } from "./Loader/Loader";
|
||||
export { default as PageHeader } from "./PageHeader/PageHeader";
|
||||
export { default as Tooltip } from "./Tooltip/Tooltip";
|
||||
export { default as Checkbox } from "./Checkbox/Checkbox";
|
||||
export { default as InputLabel } from "./InputLabel/InputLabel";
|
||||
export { default as IconButton } from "./IconButton/IconButton";
|
||||
export { default as DataTable } from "./DataTable/DataTable";
|
||||
export { default as BackLink } from "./BackLink/BackLink";
|
||||
export { default as HelpBox } from "./HelpBox/HelpBox";
|
||||
export { default as SectionTitle } from "./SectionTitle/SectionTitle";
|
||||
export { default as Box } from "./Box/Box";
|
||||
export { default as FormLayout } from "./FormLayout/FormLayout";
|
||||
export { default as PageLayout } from "./PageLayout/PageLayout";
|
||||
export { default as MainContainer } from "./MainContainer/MainContainer";
|
||||
export { default as InputBox } from "./InputBox/InputBox";
|
||||
export { default as Breadcrumbs } from "./Breadcrumbs/Breadcrumbs";
|
||||
export { default as ActionsList } from "./ActionsList/ActionsList";
|
||||
export { default as SimpleHeader } from "./SimpleHeader/SimpleHeader";
|
||||
export { default as ScreenTitle } from "./ScreenTitle/ScreenTitle";
|
||||
export { default as ModalBox } from "./ModalBox/ModalBox";
|
||||
export { default as Switch } from "./Switch/Switch";
|
||||
export { default as Select } from "./Select/Select";
|
||||
export { default as DropdownSelector } from "./DropdownSelector/DropdownSelector";
|
||||
export { default as RadioGroup } from "./RadioGroup/RadioGroup";
|
||||
export { default as ReadBox } from "./ReadBox/ReadBox";
|
||||
export { default as CommentBox } from "./CommentBox/CommentBox";
|
||||
export { default as Menu } from "./Menu/Menu";
|
||||
export { default as ExpandOptionsButton } from "./ExpandOptionsButton/ExpandOptionsButton";
|
||||
export { default as Tabs } from "./Tabs/Tabs";
|
||||
export { default as CodeEditor } from "./CodeEditor/CodeEditor";
|
||||
export { default as Tag } from "./Tag/Tag";
|
||||
export { default as ActionLink } from "./ActionLink/ActionLink";
|
||||
export { default as ValuePair } from "./ValuePair/ValuePair";
|
||||
export { default as ProgressBar } from "./ProgressBar/ProgressBar";
|
||||
export { default as FileSelector } from "./FileSelector/FileSelector";
|
||||
export { default as SizeChart } from "./SizeChart/SizeChart";
|
||||
export { default as Snackbar } from "./Snackbar/Snackbar";
|
||||
export { default as Accordion } from "./Accordion/Accordion";
|
||||
export { default as HelpTip } from "./HelpTip/HelpTip";
|
||||
export { default as Autocomplete } from "./Autocomplete/Autocomplete";
|
||||
export { default as Badge } from "./Badge/Badge";
|
||||
export { default as Wizard } from "./Wizard/Wizard";
|
||||
export { default as InformativeMessage } from "./InformativeMessage/InformativeMessage";
|
||||
export { default as DateTimeInput } from "./DateTimeInput/DateTimeInput";
|
||||
export { default as DateTimeSelector } from "./DateTimeInput/DateTimeSelector";
|
||||
export { default as Link } from "./Link/Link";
|
||||
export * from "./Icons";
|
||||
export * from "./Icons/SidebarMenus";
|
||||
export * from "./Icons/FileIcons";
|
||||
export * from "./Table";
|
||||
export { SelectorType } from "../global/global.types";
|
||||
export * from "./ActionsList/ActionsList.types";
|
||||
export * from "./ApplicationLogo/ApplicationLogo.types";
|
||||
export * from "./BackLink/BackLink.types";
|
||||
export * from "./Box/Box.types";
|
||||
export * from "./Breadcrumbs/Breadcrumbs.types";
|
||||
export * from "./Button/Button.types";
|
||||
export * from "./CommentBox/CommentBox.types";
|
||||
export * from "./DropdownSelector/DropdownSelector.types";
|
||||
export * from "./ExpandOptionsButton/ExpandOptionsButton.types";
|
||||
export * from "./FormLayout/FormLayout.types";
|
||||
export * from "./Grid/Grid.types";
|
||||
export * from "./HelpBox/HelpBox.types";
|
||||
export * from "./IconButton/IconButton.types";
|
||||
export * from "./InputBox/InputBox.types";
|
||||
export * from "./InputLabel/InputLabel.types";
|
||||
export * from "./ModalBox/ModalBox.types";
|
||||
export * from "./PageHeader/PageHeader.types";
|
||||
export * from "./PageLayout/PageLayout.types";
|
||||
export * from "./RadioGroup/RadioGroup.types";
|
||||
export * from "./ReadBox/ReadBox.types";
|
||||
export * from "./ScreenTitle/ScreenTitle.types";
|
||||
export * from "./SectionTitle/SectionTitle.types";
|
||||
export * from "./Select/Select.types";
|
||||
export * from "./SimpleHeader/SimpleHeader.types";
|
||||
export * from "./Switch/Switch.types";
|
||||
export * from "./Tabs/Tabs.types";
|
||||
export * from "./Tooltip/Tooltip.types";
|
||||
export * from "./Menu/Menu.types";
|
||||
export * from "./DataTable/DataTable.types";
|
||||
export * from "./Tabs/Tabs.types";
|
||||
export * from "./CodeEditor/CodeEditor.types";
|
||||
export * from "./Tag/Tag.types";
|
||||
export * from "./ActionLink/ActionLink.types";
|
||||
export * from "./ValuePair/ValuePair.types";
|
||||
export * from "./ProgressBar/ProgressBar.types";
|
||||
export * from "./FileSelector/FileSelector.types";
|
||||
export * from "./SizeChart/SizeChart.types";
|
||||
export * from "./Snackbar/Snackbar.types";
|
||||
export * from "./Accordion/Accordion.types";
|
||||
export * from "./HelpTip/HelpTip.types";
|
||||
export * from "./Autocomplete/Autocomplete.types";
|
||||
export * from "./Badge/Badge.types";
|
||||
export * from "./Wizard/Wizard.types";
|
||||
export * from "./InformativeMessage/InformativeMessage.types";
|
||||
export * from "./DateTimeInput/DateTimeInput.types";
|
||||
export * from "./Link/Link.types";
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
declare const TestIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
||||
export default TestIcon;
|
||||
Vendored
-174
@@ -1,174 +0,0 @@
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.w-tc-editor {
|
||||
--color-fg-default: #c9d1d9;
|
||||
--color-canvas-subtle: #161b22;
|
||||
--color-prettylights-syntax-comment: #8b949e;
|
||||
--color-prettylights-syntax-entity-tag: #7ee787;
|
||||
--color-prettylights-syntax-entity: #d2a8ff;
|
||||
--color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
|
||||
--color-prettylights-syntax-constant: #79c0ff;
|
||||
--color-prettylights-syntax-string: #a5d6ff;
|
||||
--color-prettylights-syntax-keyword: #ff7b72;
|
||||
--color-prettylights-syntax-markup-bold: #c9d1d9;
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
.w-tc-editor {
|
||||
--color-fg-default: #24292f;
|
||||
--color-canvas-subtle: #f6f8fa;
|
||||
--color-prettylights-syntax-comment: #6e7781;
|
||||
--color-prettylights-syntax-entity-tag: #116329;
|
||||
--color-prettylights-syntax-entity: #8250df;
|
||||
--color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
|
||||
--color-prettylights-syntax-constant: #0550ae;
|
||||
--color-prettylights-syntax-string: #0a3069;
|
||||
--color-prettylights-syntax-keyword: #cf222e;
|
||||
--color-prettylights-syntax-markup-bold: #24292f;
|
||||
}
|
||||
}
|
||||
.w-tc-editor[data-color-mode*="dark"],
|
||||
[data-color-mode*="dark"] .w-tc-editor,
|
||||
[data-color-mode*="dark"] .w-tc-editor-var,
|
||||
body[data-color-mode*="dark"] {
|
||||
--color-fg-default: #c9d1d9;
|
||||
--color-canvas-subtle: #161b22;
|
||||
--color-prettylights-syntax-comment: #8b949e;
|
||||
--color-prettylights-syntax-entity-tag: #7ee787;
|
||||
--color-prettylights-syntax-entity: #d2a8ff;
|
||||
--color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
|
||||
--color-prettylights-syntax-constant: #79c0ff;
|
||||
--color-prettylights-syntax-string: #a5d6ff;
|
||||
--color-prettylights-syntax-keyword: #ff7b72;
|
||||
--color-prettylights-syntax-markup-bold: #c9d1d9;
|
||||
}
|
||||
.w-tc-editor[data-color-mode*="light"],
|
||||
[data-color-mode*="light"] .w-tc-editor,
|
||||
[data-color-mode*="light"] .w-tc-editor-var,
|
||||
body[data-color-mode*="light"] {
|
||||
--color-fg-default: #24292f;
|
||||
--color-canvas-subtle: #f6f8fa;
|
||||
--color-prettylights-syntax-comment: #6e7781;
|
||||
--color-prettylights-syntax-entity-tag: #116329;
|
||||
--color-prettylights-syntax-entity: #8250df;
|
||||
--color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
|
||||
--color-prettylights-syntax-constant: #0550ae;
|
||||
--color-prettylights-syntax-string: #0a3069;
|
||||
--color-prettylights-syntax-keyword: #cf222e;
|
||||
--color-prettylights-syntax-markup-bold: #24292f;
|
||||
}
|
||||
.w-tc-editor {
|
||||
font-family: inherit;
|
||||
font-size: 12px;
|
||||
background-color: var(--color-canvas-subtle);
|
||||
color: var(--color-fg-default);
|
||||
}
|
||||
.w-tc-editor-text,
|
||||
.w-tc-editor-preview {
|
||||
min-height: 16px;
|
||||
}
|
||||
.w-tc-editor-preview pre {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: inherit;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
}
|
||||
.w-tc-editor-preview pre code {
|
||||
font-family: inherit;
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.cdata,
|
||||
.w-tc-editor pre[class*="language-"] .token.cdata,
|
||||
.w-tc-editor code[class*="language-"] .token.comment,
|
||||
.w-tc-editor pre[class*="language-"] .token.comment,
|
||||
.w-tc-editor code[class*="language-"] .token.doctype,
|
||||
.w-tc-editor pre[class*="language-"] .token.doctype,
|
||||
.w-tc-editor code[class*="language-"] .token.prolog,
|
||||
.w-tc-editor pre[class*="language-"] .token.prolog {
|
||||
color: var(--color-prettylights-syntax-comment);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.punctuation,
|
||||
.w-tc-editor pre[class*="language-"] .token.punctuation {
|
||||
color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .namespace,
|
||||
.w-tc-editor pre[class*="language-"] .namespace {
|
||||
opacity: 0.7;
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.boolean,
|
||||
.w-tc-editor pre[class*="language-"] .token.boolean,
|
||||
.w-tc-editor code[class*="language-"] .token.constant,
|
||||
.w-tc-editor pre[class*="language-"] .token.constant,
|
||||
.w-tc-editor code[class*="language-"] .token.deleted,
|
||||
.w-tc-editor pre[class*="language-"] .token.deleted,
|
||||
.w-tc-editor code[class*="language-"] .token.number,
|
||||
.w-tc-editor pre[class*="language-"] .token.number,
|
||||
.w-tc-editor code[class*="language-"] .token.symbol,
|
||||
.w-tc-editor pre[class*="language-"] .token.symbol {
|
||||
color: var(--color-prettylights-syntax-entity-tag);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.builtin,
|
||||
.w-tc-editor pre[class*="language-"] .token.builtin,
|
||||
.w-tc-editor code[class*="language-"] .token.char,
|
||||
.w-tc-editor pre[class*="language-"] .token.char,
|
||||
.w-tc-editor code[class*="language-"] .token.inserted,
|
||||
.w-tc-editor pre[class*="language-"] .token.inserted,
|
||||
.w-tc-editor code[class*="language-"] .token.selector,
|
||||
.w-tc-editor pre[class*="language-"] .token.selector,
|
||||
.w-tc-editor code[class*="language-"] .token.string,
|
||||
.w-tc-editor pre[class*="language-"] .token.string {
|
||||
color: var(--color-prettylights-syntax-constant);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .style .token.string,
|
||||
.w-tc-editor pre[class*="language-"] .style .token.string,
|
||||
.w-tc-editor code[class*="language-"] .token.entity,
|
||||
.w-tc-editor pre[class*="language-"] .token.entity,
|
||||
.w-tc-editor code[class*="language-"] .token.property,
|
||||
.w-tc-editor pre[class*="language-"] .token.property,
|
||||
.w-tc-editor code[class*="language-"] .token.operator,
|
||||
.w-tc-editor pre[class*="language-"] .token.operator,
|
||||
.w-tc-editor code[class*="language-"] .token.url,
|
||||
.w-tc-editor pre[class*="language-"] .token.url {
|
||||
color: var(--color-prettylights-syntax-constant);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.atrule,
|
||||
.w-tc-editor pre[class*="language-"] .token.atrule,
|
||||
.w-tc-editor code[class*="language-"] .token.property-access .token.method,
|
||||
.w-tc-editor pre[class*="language-"] .token.property-access .token.method,
|
||||
.w-tc-editor code[class*="language-"] .token.keyword,
|
||||
.w-tc-editor pre[class*="language-"] .token.keyword {
|
||||
color: var(--color-prettylights-syntax-keyword);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.function,
|
||||
.w-tc-editor pre[class*="language-"] .token.function {
|
||||
color: var(--color-prettylights-syntax-string);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.important,
|
||||
.w-tc-editor pre[class*="language-"] .token.important,
|
||||
.w-tc-editor code[class*="language-"] .token.regex,
|
||||
.w-tc-editor pre[class*="language-"] .token.regex,
|
||||
.w-tc-editor code[class*="language-"] .token.variable,
|
||||
.w-tc-editor pre[class*="language-"] .token.variable {
|
||||
color: var(--color-prettylights-syntax-string-regexp);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.bold,
|
||||
.w-tc-editor pre[class*="language-"] .token.bold,
|
||||
.w-tc-editor code[class*="language-"] .token.important,
|
||||
.w-tc-editor pre[class*="language-"] .token.important {
|
||||
color: var(--color-prettylights-syntax-markup-bold);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.tag,
|
||||
.w-tc-editor pre[class*="language-"] .token.tag {
|
||||
color: var(--color-prettylights-syntax-entity-tag);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.attr-value,
|
||||
.w-tc-editor pre[class*="language-"] .token.attr-value,
|
||||
.w-tc-editor code[class*="language-"] .token.attr-name,
|
||||
.w-tc-editor pre[class*="language-"] .token.attr-name {
|
||||
color: var(--color-prettylights-syntax-constant);
|
||||
}
|
||||
.w-tc-editor code[class*="language-"] .token.selector .class,
|
||||
.w-tc-editor pre[class*="language-"] .token.selector .class,
|
||||
.w-tc-editor code[class*="language-"] .token.class-name,
|
||||
.w-tc-editor pre[class*="language-"] .token.class-name {
|
||||
color: var(--color-prettylights-syntax-entity);
|
||||
}
|
||||
Vendored
+33654
-36702
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user