@cloudtower/eagle 0.17.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/dist/components/BaseIcon/index.d.ts +13 -0
- package/dist/components/Button/index.d.ts +16 -0
- package/dist/components/ButtonGroup/index.d.ts +5 -0
- package/dist/components/ErrorBoundary/index.d.ts +7 -0
- package/dist/components/FailedLoad/index.d.ts +9 -0
- package/dist/components/Form/index.d.ts +154 -0
- package/dist/components/FormError/index.d.ts +29 -0
- package/dist/components/HoverableIcon/index.d.ts +10 -0
- package/dist/components/Icon/index.d.ts +39 -0
- package/dist/components/InputInteger/index.d.ts +12 -0
- package/dist/components/KitStoreProvider/index.d.ts +8 -0
- package/dist/components/Loading/index.d.ts +3 -0
- package/dist/components/Metric/MetricActions.d.ts +9 -0
- package/dist/components/Metric/MetricLegend.d.ts +16 -0
- package/dist/components/Metric/Pointer.d.ts +6 -0
- package/dist/components/Metric/RenderChart.d.ts +41 -0
- package/dist/components/Metric/TooltipFormatter.d.ts +10 -0
- package/dist/components/Metric/index.d.ts +29 -0
- package/dist/components/Metric/metric.d.ts +43 -0
- package/dist/components/Metric/styled.d.ts +18 -0
- package/dist/components/Metric/type.d.ts +39 -0
- package/dist/components/Modal/index.d.ts +4 -0
- package/dist/components/Modal2/Error.d.ts +14 -0
- package/dist/components/Modal2/InitializedModal.d.ts +4 -0
- package/dist/components/Modal2/Modal.d.ts +9 -0
- package/dist/components/Modal2/WizardModal.d.ts +4 -0
- package/dist/components/Modal2/index.d.ts +10 -0
- package/dist/components/ModalStack/index.d.ts +3 -0
- package/dist/components/Overflow/index.d.ts +14 -0
- package/dist/components/Pagination/index.d.ts +4 -0
- package/dist/components/Radio/index.d.ts +8 -0
- package/dist/components/Steps/index.d.ts +4 -0
- package/dist/components/Styled/index.d.ts +72 -0
- package/dist/components/Switch/index.d.ts +4 -0
- package/dist/components/Table/CustomizeColumn.d.ts +13 -0
- package/dist/components/Table/HeaderCell.d.ts +25 -0
- package/dist/components/Table/PendingTable.d.ts +3 -0
- package/dist/components/Table/SearchWidget.d.ts +20 -0
- package/dist/components/Table/SidebarTable.d.ts +7 -0
- package/dist/components/Table/TableSelection.d.ts +27 -0
- package/dist/components/Table/TableWidget.d.ts +50 -0
- package/dist/components/Table/common.d.ts +33 -0
- package/dist/components/Table/customize-column.d.ts +3 -0
- package/dist/components/Table/index.d.ts +20 -0
- package/dist/components/Tooltip/index.d.ts +4 -0
- package/dist/components/TowerTable/TableEmpty.d.ts +7 -0
- package/dist/components/TowerTable/TablePagination.d.ts +9 -0
- package/dist/components/TowerTable/WrapperComponent.d.ts +7 -0
- package/dist/components/TowerTable/index.d.ts +42 -0
- package/dist/components/Truncate/index.d.ts +12 -0
- package/dist/components/Typo/index.d.ts +70 -0
- package/dist/components/antd.d.ts +27 -0
- package/dist/components/images/images-type.d.ts +1 -0
- package/dist/components/images/index.d.ts +1123 -0
- package/dist/components/index.d.ts +35 -0
- package/dist/esm/index.js +9347 -0
- package/dist/esm/stats1.html +6177 -0
- package/dist/hooks/index.d.ts +10 -0
- package/dist/hooks/useElementResize.d.ts +2 -0
- package/dist/hooks/useElementsSize.d.ts +8 -0
- package/dist/hooks/useHistory.d.ts +2 -0
- package/dist/hooks/useLocalStorage.d.ts +61 -0
- package/dist/hooks/useMatchMediaQueries.d.ts +10 -0
- package/dist/hooks/useSearch.d.ts +12 -0
- package/dist/hooks/utils.d.ts +3 -0
- package/dist/index.d.ts +9 -0
- package/dist/spec/base.d.ts +478 -0
- package/dist/spec/emptyImpl.d.ts +3 -0
- package/dist/spec/index.d.ts +2 -0
- package/dist/spec/type.d.ts +35 -0
- package/dist/store/chart.d.ts +40 -0
- package/dist/store/index.d.ts +31 -0
- package/dist/store/modal.d.ts +55 -0
- package/dist/store/table.d.ts +54 -0
- package/dist/style.css +4407 -0
- package/dist/umd/index.js +10644 -0
- package/dist/umd/stats1.html +6177 -0
- package/dist/utils/constants.d.ts +15 -0
- package/dist/utils/dom.d.ts +6 -0
- package/dist/utils/formatValue.d.ts +2 -0
- package/dist/utils/history.d.ts +1 -0
- package/dist/utils/icon.d.ts +2 -0
- package/dist/utils/index.d.ts +7 -0
- package/dist/utils/router.d.ts +34 -0
- package/dist/utils/types.d.ts +84 -0
- package/package.json +66 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { RadioGroupProps as AntdRadioGroupProps } from "antd/lib/radio";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { RadioButtonProps, RadioProps } from "../../spec";
|
|
4
|
+
declare const Radio: React.FC<RadioProps>;
|
|
5
|
+
declare const RadioGroup: React.FC<AntdRadioGroupProps>;
|
|
6
|
+
declare const RadioButton: React.FC<RadioButtonProps>;
|
|
7
|
+
export { RadioButton, RadioGroup };
|
|
8
|
+
export default Radio;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const CommonContent: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
3
|
+
as?: import("react").ElementType<any> | undefined;
|
|
4
|
+
}>;
|
|
5
|
+
export declare const ModalBody: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
6
|
+
as?: import("react").ElementType<any> | undefined;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const WizardBody: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
9
|
+
as?: import("react").ElementType<any> | undefined;
|
|
10
|
+
}>;
|
|
11
|
+
export declare const HorizontalWizardModalCompactStyle: import("@linaria/core").LinariaClassName;
|
|
12
|
+
export declare const HorizontalWizardModalLooseStyle: import("@linaria/core").LinariaClassName;
|
|
13
|
+
export declare const FormWrapper: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
14
|
+
as?: import("react").ElementType<any> | undefined;
|
|
15
|
+
}>;
|
|
16
|
+
export declare const FormSectionTitle: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLHeadingElement> & import("react").HTMLAttributes<HTMLHeadingElement> & Record<never, unknown> & {
|
|
17
|
+
as?: import("react").ElementType<any> | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const FormField: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
20
|
+
as?: import("react").ElementType<any> | undefined;
|
|
21
|
+
}>;
|
|
22
|
+
export declare const ErrorSpan: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & Record<never, unknown> & {
|
|
23
|
+
as?: import("react").ElementType<any> | undefined;
|
|
24
|
+
}>;
|
|
25
|
+
export declare const Divider: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
26
|
+
as?: import("react").ElementType<any> | undefined;
|
|
27
|
+
}>;
|
|
28
|
+
export declare const LoadingWrapper: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
29
|
+
as?: import("react").ElementType<any> | undefined;
|
|
30
|
+
}>;
|
|
31
|
+
export declare const Dot: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & Record<never, unknown> & {
|
|
32
|
+
as?: import("react").ElementType<any> | undefined;
|
|
33
|
+
}>;
|
|
34
|
+
export declare const ModalWrapper: import("@linaria/core").LinariaClassName;
|
|
35
|
+
declare type TagColor = "red" | "yellow" | "blue";
|
|
36
|
+
export declare const TagSpan: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
|
|
37
|
+
color: TagColor;
|
|
38
|
+
} & {
|
|
39
|
+
as?: import("react").ElementType<any> | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
export declare const FullView: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
42
|
+
as?: import("react").ElementType<any> | undefined;
|
|
43
|
+
}>;
|
|
44
|
+
export declare const NameTag: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & Record<never, unknown> & {
|
|
45
|
+
as?: import("react").ElementType<any> | undefined;
|
|
46
|
+
}>;
|
|
47
|
+
export declare const FormItemDiv: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
48
|
+
as?: import("react").ElementType<any> | undefined;
|
|
49
|
+
}>;
|
|
50
|
+
export declare const FieldTitle: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
51
|
+
as?: import("react").ElementType<any> | undefined;
|
|
52
|
+
}>;
|
|
53
|
+
export declare const ExpandArrow: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLElement> & import("react").HTMLAttributes<HTMLElement> & Record<never, unknown> & {
|
|
54
|
+
as?: import("react").ElementType<any> | undefined;
|
|
55
|
+
}>;
|
|
56
|
+
export declare const WarningAlert: import("@linaria/core").LinariaClassName;
|
|
57
|
+
export declare const NoticeAlert: import("@linaria/core").LinariaClassName;
|
|
58
|
+
export declare const NormalAlert: import("@linaria/core").LinariaClassName;
|
|
59
|
+
export declare const InfoAlert: import("@linaria/core").LinariaClassName;
|
|
60
|
+
export declare const Description: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
61
|
+
as?: import("react").ElementType<any> | undefined;
|
|
62
|
+
}>;
|
|
63
|
+
export declare const SelectOptionDisabledText: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
64
|
+
as?: import("react").ElementType<any> | undefined;
|
|
65
|
+
}>;
|
|
66
|
+
export declare const OperationWraper: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
67
|
+
as?: import("react").ElementType<any> | undefined;
|
|
68
|
+
}>;
|
|
69
|
+
export declare const TertiaryText: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
70
|
+
as?: import("react").ElementType<any> | undefined;
|
|
71
|
+
}>;
|
|
72
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CustomizeColumnType } from "../../hooks";
|
|
3
|
+
declare type CustomizeColumnProps = {
|
|
4
|
+
disabledColumnKeys: string[];
|
|
5
|
+
renderKeys: string[];
|
|
6
|
+
columnTitleMap: Record<string, React.ReactNode | (() => React.ReactNode)>;
|
|
7
|
+
["data-test-id"]: string;
|
|
8
|
+
customizableColumnKeys?: string[];
|
|
9
|
+
customizeColumn: CustomizeColumnType[];
|
|
10
|
+
setCustomizeColumn: (obj: CustomizeColumnType[] | ((val: CustomizeColumnType[]) => CustomizeColumnType[])) => void;
|
|
11
|
+
};
|
|
12
|
+
declare const CustomizeColumn: React.FC<CustomizeColumnProps>;
|
|
13
|
+
export default CustomizeColumn;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CustomizeColumnType } from "../../hooks";
|
|
3
|
+
import { TableProps } from "../../spec";
|
|
4
|
+
interface HeaderCellProps {
|
|
5
|
+
draggable: boolean;
|
|
6
|
+
resizable: boolean;
|
|
7
|
+
index: number;
|
|
8
|
+
sortable: boolean;
|
|
9
|
+
className: string;
|
|
10
|
+
components: TableProps<{
|
|
11
|
+
id: string;
|
|
12
|
+
}>["components"];
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
auxiliaryLine: React.RefObject<HTMLDivElement>;
|
|
15
|
+
wrapper: React.RefObject<HTMLDivElement>;
|
|
16
|
+
customizeColumn: CustomizeColumnType[];
|
|
17
|
+
setCustomizeColumn: (obj: CustomizeColumnType[] | ((val: CustomizeColumnType[]) => CustomizeColumnType[])) => void;
|
|
18
|
+
onMouseEnter?: (event: React.MouseEvent<HTMLTableHeaderCellElement, MouseEvent>) => void;
|
|
19
|
+
onMouseLeave?: (event: React.MouseEvent<HTMLTableHeaderCellElement, MouseEvent>) => void;
|
|
20
|
+
}
|
|
21
|
+
interface HeaderCellComponent {
|
|
22
|
+
(props: HeaderCellProps): React.ReactElement | null;
|
|
23
|
+
}
|
|
24
|
+
declare const HeaderCell: HeaderCellComponent;
|
|
25
|
+
export default HeaderCell;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { EnumProps, IntProps, StringProps } from "../../spec";
|
|
3
|
+
import { FormatUnit } from "../../utils";
|
|
4
|
+
declare type FieldProps<T, V = T[keyof T]> = {
|
|
5
|
+
where?: T;
|
|
6
|
+
setWhere: (updates: Array<{
|
|
7
|
+
key: keyof T;
|
|
8
|
+
value: V | undefined;
|
|
9
|
+
}>) => void;
|
|
10
|
+
name: keyof T;
|
|
11
|
+
__rawWhere?: T;
|
|
12
|
+
};
|
|
13
|
+
export declare const StringField: <T extends Record<string, unknown>>(props: FieldProps<T, T[keyof T]> & StringProps) => JSX.Element;
|
|
14
|
+
export declare const BooleanField: <T extends Record<string, unknown>>(props: FieldProps<T, boolean> & Partial<EnumProps>) => JSX.Element;
|
|
15
|
+
export declare const IntField: <T extends Record<string, unknown>>(props: FieldProps<T, T[keyof T]> & IntProps) => JSX.Element;
|
|
16
|
+
export declare const FormatIntField: <T extends Record<string, unknown>>(props: FieldProps<T, T[keyof T]> & IntProps & {
|
|
17
|
+
formatUnit: FormatUnit;
|
|
18
|
+
}) => JSX.Element;
|
|
19
|
+
export declare const EnumField: <T extends Record<string, unknown>>(props: FieldProps<T, string[]> & EnumProps) => JSX.Element;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { TableProps } from "antd/lib/table";
|
|
2
|
+
/**
|
|
3
|
+
* callback function of table checkbox when `shift` button is being pressed
|
|
4
|
+
* @param payload
|
|
5
|
+
* @param payload.keys last checked keys
|
|
6
|
+
* @param payload.rows last checked records
|
|
7
|
+
* @param payload.checked is checked
|
|
8
|
+
* @param payload.record target record
|
|
9
|
+
* @param payload.lastSelectedKey last selected key
|
|
10
|
+
* @param payload.data data source
|
|
11
|
+
*/
|
|
12
|
+
export declare const onShiftChanged: <T extends {
|
|
13
|
+
id: string;
|
|
14
|
+
}>(payload: {
|
|
15
|
+
keys: string[];
|
|
16
|
+
rows: T[];
|
|
17
|
+
checked: boolean;
|
|
18
|
+
record: T;
|
|
19
|
+
lastSelectedKey: string | undefined;
|
|
20
|
+
data: T[];
|
|
21
|
+
}) => {
|
|
22
|
+
keys: string[];
|
|
23
|
+
rows: T[];
|
|
24
|
+
};
|
|
25
|
+
export declare const useTableSelection: <T extends {
|
|
26
|
+
id: string;
|
|
27
|
+
}>(rowSelection: import("antd/lib/table/interface").TableRowSelection<T> | undefined, resource: string) => import("antd/lib/table/interface").TableRowSelection<T> | undefined;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { SerializableObject } from "@tower/utils";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { SearchOperation, SetSearch } from "../../hooks";
|
|
4
|
+
import { Maybe, Scalars } from "../../spec";
|
|
5
|
+
export declare const AuxiliaryLine: import("@linaria/react").StyledMeta & React.FunctionComponent<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
6
|
+
as?: React.ElementType<any> | undefined;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const TablePagination: <T>(props: {
|
|
9
|
+
count?: number | undefined;
|
|
10
|
+
skip: number;
|
|
11
|
+
size: number;
|
|
12
|
+
setQuery: (val: T | ((val: T) => T), operation?: SearchOperation | undefined) => void;
|
|
13
|
+
onChange?: ((page?: number, size?: number) => void) | undefined;
|
|
14
|
+
}) => JSX.Element;
|
|
15
|
+
export declare const TableLoading: React.FC;
|
|
16
|
+
export declare const KitTableContext: React.Context<{
|
|
17
|
+
onClearSearchButtonEffect?: ((base: string) => void) | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const TableEmpty: React.FC<{
|
|
20
|
+
query: {
|
|
21
|
+
where?: Maybe<SerializableObject>;
|
|
22
|
+
};
|
|
23
|
+
setQuery: (query: {}) => void;
|
|
24
|
+
base: string;
|
|
25
|
+
clearGlobalSearch?: boolean;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const TableError: React.FC<{
|
|
28
|
+
error: Error;
|
|
29
|
+
refetch: () => Promise<unknown>;
|
|
30
|
+
}>;
|
|
31
|
+
export declare const usePosition: <V extends {
|
|
32
|
+
skip?: Maybe<Scalars["Int"]>;
|
|
33
|
+
first?: Maybe<Scalars["Int"]>;
|
|
34
|
+
}>(props: {
|
|
35
|
+
wrapper: React.MutableRefObject<HTMLDivElement | null>;
|
|
36
|
+
setQuery: SetSearch<V>;
|
|
37
|
+
defaultSize: number;
|
|
38
|
+
data: unknown;
|
|
39
|
+
elSelector?: {
|
|
40
|
+
row?: string | undefined;
|
|
41
|
+
wrapper?: string | undefined;
|
|
42
|
+
} | undefined;
|
|
43
|
+
}) => {
|
|
44
|
+
positionOnCompleted: (count: number) => void;
|
|
45
|
+
};
|
|
46
|
+
export declare const ColumnTitle: React.FC<{
|
|
47
|
+
sortOrder?: "descend" | "ascend" | null;
|
|
48
|
+
title: React.ReactNode;
|
|
49
|
+
}>;
|
|
50
|
+
export declare const EmptyRowMenu: React.FC;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React, { BaseSyntheticEvent } from "react";
|
|
2
|
+
export declare type TableRenderer<T, C> = (cell: T, record: C, index: number) => React.ReactNode;
|
|
3
|
+
export declare function arrayMove<T>(arr: T[], fromIndex: number, toIndex: number): T[];
|
|
4
|
+
export declare function handleColumnsByKeys<T extends string>(totalKeys: T[], columnKeys: Array<T | "*">): T[];
|
|
5
|
+
export declare function eventStopPropagation(event: BaseSyntheticEvent): void;
|
|
6
|
+
export declare const BLANK_COLUMN: {
|
|
7
|
+
title: string;
|
|
8
|
+
key: string;
|
|
9
|
+
dataIndex: string;
|
|
10
|
+
className: string;
|
|
11
|
+
};
|
|
12
|
+
export declare function canScroll(el: Element, direction?: string): boolean;
|
|
13
|
+
export declare const useTableBodyHasScrollBar: (tableBodyEl?: React.MutableRefObject<HTMLDivElement | null>, data?: unknown) => boolean;
|
|
14
|
+
export declare function tableScrollToTop(ref: React.MutableRefObject<HTMLDivElement | null>): void;
|
|
15
|
+
declare type TableScrollConfig = {
|
|
16
|
+
x?: string | number;
|
|
17
|
+
y?: string | number;
|
|
18
|
+
} | undefined;
|
|
19
|
+
export declare const useTransformScrollAndColumns: <T>(tableProps: {
|
|
20
|
+
wrapper?: React.MutableRefObject<HTMLDivElement | null> | undefined;
|
|
21
|
+
loading?: boolean | undefined;
|
|
22
|
+
rowSelection?: unknown;
|
|
23
|
+
data?: unknown;
|
|
24
|
+
tableKey?: string | undefined;
|
|
25
|
+
uniqueKey?: string | undefined;
|
|
26
|
+
stickyHeader?: boolean | undefined;
|
|
27
|
+
columns: T[];
|
|
28
|
+
scroll?: "auto" | {
|
|
29
|
+
x?: string | number | boolean | undefined;
|
|
30
|
+
y?: string | number | boolean | undefined;
|
|
31
|
+
} | "autoHeight" | undefined;
|
|
32
|
+
}) => [TableScrollConfig, T[]];
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CustomizeColumnType } from "../../hooks";
|
|
2
|
+
export declare const useCustomizeColumn: (key: string, defaultFieldsValue: CustomizeColumnType[] | (() => CustomizeColumnType[])) => [CustomizeColumnType[], (obj: CustomizeColumnType[] | ((val: CustomizeColumnType[]) => CustomizeColumnType[])) => void, (_key?: string) => void];
|
|
3
|
+
export declare function useEqualAllColumnKeys<T>(nextAllColumnKeys: T): T | undefined;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TableProps } from "../../spec";
|
|
3
|
+
export declare const tableStyleCover: import("@linaria/core").LinariaClassName;
|
|
4
|
+
declare const Table: <T extends {
|
|
5
|
+
id: string;
|
|
6
|
+
}>(props: TableProps<T>) => JSX.Element;
|
|
7
|
+
export default Table;
|
|
8
|
+
export * from "./common";
|
|
9
|
+
export * from "./customize-column";
|
|
10
|
+
export * from "./CustomizeColumn";
|
|
11
|
+
export { default as CustomizeColumn } from "./CustomizeColumn";
|
|
12
|
+
export * from "./HeaderCell";
|
|
13
|
+
export { default as HeaderCell } from "./HeaderCell";
|
|
14
|
+
export * from "./PendingTable";
|
|
15
|
+
export { default as PendingTable } from "./PendingTable";
|
|
16
|
+
export * from "./SearchWidget";
|
|
17
|
+
export * from "./SidebarTable";
|
|
18
|
+
export { default as SidebarTable } from "./SidebarTable";
|
|
19
|
+
export * from "./TableSelection";
|
|
20
|
+
export * from "./TableWidget";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const TablePagination: (props: {
|
|
3
|
+
count?: number | undefined;
|
|
4
|
+
skip: number;
|
|
5
|
+
size: number;
|
|
6
|
+
onSizeChange?: ((size: number) => void) | undefined;
|
|
7
|
+
onChange: (page: number) => void;
|
|
8
|
+
}) => JSX.Element;
|
|
9
|
+
export default TablePagination;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { PropsWithChildren } from "react";
|
|
2
|
+
declare const WrapperComponent: (props: React.PropsWithChildren<{
|
|
3
|
+
sidebar?: boolean | undefined;
|
|
4
|
+
initLoading: boolean;
|
|
5
|
+
wrapper: React.MutableRefObject<HTMLDivElement | null>;
|
|
6
|
+
}>) => JSX.Element;
|
|
7
|
+
export default WrapperComponent;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TableProps } from "../../spec";
|
|
3
|
+
export declare type Exact<T extends {
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
}> = {
|
|
6
|
+
[K in keyof T]: T[K];
|
|
7
|
+
};
|
|
8
|
+
export declare enum NetworkStatus {
|
|
9
|
+
loading = 1,
|
|
10
|
+
setVariables = 2,
|
|
11
|
+
fetchMore = 3,
|
|
12
|
+
refetch = 4,
|
|
13
|
+
poll = 6,
|
|
14
|
+
ready = 7,
|
|
15
|
+
error = 8
|
|
16
|
+
}
|
|
17
|
+
export interface ITowerTableProps<BaseTableData extends {
|
|
18
|
+
id: string;
|
|
19
|
+
}> extends Omit<TableProps<BaseTableData>, "pagination"> {
|
|
20
|
+
uniqueTableKey: string;
|
|
21
|
+
pagination: {
|
|
22
|
+
count: number;
|
|
23
|
+
skip: number;
|
|
24
|
+
size?: number;
|
|
25
|
+
defaultSize?: number;
|
|
26
|
+
onChange?: (page: number) => void;
|
|
27
|
+
onSizeChange?: ((size: number) => void) | undefined;
|
|
28
|
+
};
|
|
29
|
+
sortable?: boolean;
|
|
30
|
+
tableKey?: string;
|
|
31
|
+
stickyHeader?: boolean;
|
|
32
|
+
sidebar?: boolean;
|
|
33
|
+
error?: Error;
|
|
34
|
+
loading?: boolean;
|
|
35
|
+
searching?: boolean;
|
|
36
|
+
refetch?: () => Promise<unknown>;
|
|
37
|
+
networkStatus?: NetworkStatus;
|
|
38
|
+
}
|
|
39
|
+
declare const TowerTable: <BaseTableData extends {
|
|
40
|
+
id: string;
|
|
41
|
+
}>(props: ITowerTableProps<BaseTableData>) => JSX.Element;
|
|
42
|
+
export default TowerTable;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type TruncatePropTypes = {
|
|
3
|
+
text: string;
|
|
4
|
+
len?: number;
|
|
5
|
+
frontLen?: number;
|
|
6
|
+
backLen?: number;
|
|
7
|
+
hoverShowFullText?: boolean;
|
|
8
|
+
className?: string;
|
|
9
|
+
inline?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const Truncate: React.FC<TruncatePropTypes>;
|
|
12
|
+
export default Truncate;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export declare const Typo: {
|
|
2
|
+
readonly Display: {
|
|
3
|
+
readonly d1_bold_title: import("@linaria/core").LinariaClassName;
|
|
4
|
+
readonly d1s_bold_title: import("@linaria/core").LinariaClassName;
|
|
5
|
+
readonly d1_regular_title: import("@linaria/core").LinariaClassName;
|
|
6
|
+
readonly d2_bold_title: import("@linaria/core").LinariaClassName;
|
|
7
|
+
readonly d2_regular_title: import("@linaria/core").LinariaClassName;
|
|
8
|
+
readonly d3_bold_title: import("@linaria/core").LinariaClassName;
|
|
9
|
+
readonly d3_regular_title: import("@linaria/core").LinariaClassName;
|
|
10
|
+
};
|
|
11
|
+
readonly Heading: {
|
|
12
|
+
readonly h1_bold_title: import("@linaria/core").LinariaClassName;
|
|
13
|
+
readonly h1_regular_title: import("@linaria/core").LinariaClassName;
|
|
14
|
+
readonly h2_bold_title: import("@linaria/core").LinariaClassName;
|
|
15
|
+
readonly h2_regular_title: import("@linaria/core").LinariaClassName;
|
|
16
|
+
readonly h3_bold_title: import("@linaria/core").LinariaClassName;
|
|
17
|
+
readonly h3_bold_upper: import("@linaria/core").LinariaClassName;
|
|
18
|
+
readonly h3_regular_title: import("@linaria/core").LinariaClassName;
|
|
19
|
+
readonly h3_regular_upper: import("@linaria/core").LinariaClassName;
|
|
20
|
+
};
|
|
21
|
+
readonly Label: {
|
|
22
|
+
readonly l1_bold: import("@linaria/core").LinariaClassName;
|
|
23
|
+
readonly l1_bold_title: import("@linaria/core").LinariaClassName;
|
|
24
|
+
readonly l1_bold_upper: import("@linaria/core").LinariaClassName;
|
|
25
|
+
readonly l1_regular: import("@linaria/core").LinariaClassName;
|
|
26
|
+
readonly l1_regular_title: import("@linaria/core").LinariaClassName;
|
|
27
|
+
readonly l1_regular_upper: import("@linaria/core").LinariaClassName;
|
|
28
|
+
readonly l2_bold: import("@linaria/core").LinariaClassName;
|
|
29
|
+
readonly l2_bold_title: import("@linaria/core").LinariaClassName;
|
|
30
|
+
readonly l2_bold_upper: import("@linaria/core").LinariaClassName;
|
|
31
|
+
readonly l2_regular: import("@linaria/core").LinariaClassName;
|
|
32
|
+
readonly l2_regular_title: import("@linaria/core").LinariaClassName;
|
|
33
|
+
readonly l2_regular_upper: import("@linaria/core").LinariaClassName;
|
|
34
|
+
readonly l2_medium: import("@linaria/core").LinariaClassName;
|
|
35
|
+
readonly l3_bold: import("@linaria/core").LinariaClassName;
|
|
36
|
+
readonly l3_semibold: import("@linaria/core").LinariaClassName;
|
|
37
|
+
readonly l3_bold_title: import("@linaria/core").LinariaClassName;
|
|
38
|
+
readonly l3_bold_upper: import("@linaria/core").LinariaClassName;
|
|
39
|
+
readonly l3_regular: import("@linaria/core").LinariaClassName;
|
|
40
|
+
readonly l3_regular_title: import("@linaria/core").LinariaClassName;
|
|
41
|
+
readonly l3_semibold_title: import("@linaria/core").LinariaClassName;
|
|
42
|
+
readonly l3_regular_upper: import("@linaria/core").LinariaClassName;
|
|
43
|
+
readonly l4_bold: import("@linaria/core").LinariaClassName;
|
|
44
|
+
readonly l4_bold_title: import("@linaria/core").LinariaClassName;
|
|
45
|
+
readonly l4_bold_upper: import("@linaria/core").LinariaClassName;
|
|
46
|
+
readonly l4_regular: import("@linaria/core").LinariaClassName;
|
|
47
|
+
readonly l4_medium: import("@linaria/core").LinariaClassName;
|
|
48
|
+
readonly l4_regular_title: import("@linaria/core").LinariaClassName;
|
|
49
|
+
readonly l4_medium_title: import("@linaria/core").LinariaClassName;
|
|
50
|
+
readonly l4_regular_upper: import("@linaria/core").LinariaClassName;
|
|
51
|
+
};
|
|
52
|
+
readonly Footnote: {
|
|
53
|
+
readonly f1_regular: import("@linaria/core").LinariaClassName;
|
|
54
|
+
readonly f1_regular_title: import("@linaria/core").LinariaClassName;
|
|
55
|
+
readonly f2_regular: import("@linaria/core").LinariaClassName;
|
|
56
|
+
readonly f2_regular_title: import("@linaria/core").LinariaClassName;
|
|
57
|
+
};
|
|
58
|
+
readonly Tabular: {
|
|
59
|
+
readonly t1_regular_mono: import("@linaria/core").LinariaClassName;
|
|
60
|
+
readonly t1_regular_slash: import("@linaria/core").LinariaClassName;
|
|
61
|
+
readonly t2_regular_mono: import("@linaria/core").LinariaClassName;
|
|
62
|
+
readonly t2_medium_mono: import("@linaria/core").LinariaClassName;
|
|
63
|
+
readonly t2_regular_slash: import("@linaria/core").LinariaClassName;
|
|
64
|
+
readonly t2_medium_slash: import("@linaria/core").LinariaClassName;
|
|
65
|
+
readonly t16_bold_slash: import("@linaria/core").LinariaClassName;
|
|
66
|
+
};
|
|
67
|
+
readonly UNKNOWN: {
|
|
68
|
+
readonly u1: import("@linaria/core").LinariaClassName;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { InputNumberProps } from "antd/lib/input-number";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { Kit } from "../spec";
|
|
4
|
+
export declare const InputTagItem: import("@linaria/react").StyledMeta & React.FunctionComponent<React.ClassAttributes<HTMLSpanElement> & React.HTMLAttributes<HTMLSpanElement> & Record<never, unknown> & {
|
|
5
|
+
as?: React.ElementType<any> | undefined;
|
|
6
|
+
}>;
|
|
7
|
+
export declare const InputStyle: import("@linaria/core").LinariaClassName;
|
|
8
|
+
export declare const AntdInputNumberStyled: import("@linaria/react").StyledMeta & React.FunctionComponent<{
|
|
9
|
+
controls: boolean;
|
|
10
|
+
suffix?: string | undefined;
|
|
11
|
+
prefix?: string | undefined;
|
|
12
|
+
} & InputNumberProps & React.RefAttributes<unknown> & {
|
|
13
|
+
as?: React.ElementType<any> | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const AntdIntStyled: import("@linaria/react").StyledMeta & React.FunctionComponent<{
|
|
16
|
+
controls: boolean;
|
|
17
|
+
suffix?: string | undefined;
|
|
18
|
+
prefix?: string | undefined;
|
|
19
|
+
} & InputNumberProps & React.RefAttributes<unknown> & {
|
|
20
|
+
as?: React.ElementType<any> | undefined;
|
|
21
|
+
}>;
|
|
22
|
+
export declare const LeftEndInputStyle: import("@linaria/core").LinariaClassName;
|
|
23
|
+
export declare const RightEndInputStyle: import("@linaria/core").LinariaClassName;
|
|
24
|
+
export declare const LeftEndSelectStyle: import("@linaria/core").LinariaClassName;
|
|
25
|
+
export declare const RightEndSelectStyle: import("@linaria/core").LinariaClassName;
|
|
26
|
+
export declare function getAntdKit(): Kit;
|
|
27
|
+
export declare const antdKit: Kit<any, HTMLElement>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare type ImagesType = "1-active-add-14-gradiendt-blue" | "1-active-connection-16-gradiendt-blue" | "1-active-observability-service-18-blue" | "1-active-observability-service-18-gray" | "1-active-observability-service-24-blue" | "1-active-observability-service-24-gray" | "1-active-uninstal-14-gradiendt-red" | "1-adjust-config-16-gradient-blue" | "1-adjust-config-16-gradient-gray" | "1-alert-bell-16-gradient-blue" | "1-alert-bell-24-blue" | "1-alert-bell-24-gradient-blue" | "1-alert-bell-24-gradient-gray" | "1-alert-bell-24" | "1-alert-bell-fill-24-blue" | "1-alert-bell-fill-24-gradient-blue" | "1-alert-bell-fill-24-gradient-gray" | "1-alert-bell-fill-24-gradient-red" | "1-alert-bell-fill-24-gradient-yellow" | "1-alert-bell-fill-24" | "1-alert-bell-resolved-24-blue" | "1-alert-bell-resolved-24-gradient-blue" | "1-alert-bell-resolved-24-gradient-gray" | "1-alert-bell-resolved-24-ontint" | "1-alert-bell-resolved-24" | "1-alert-bell-rule-24-blue" | "1-alert-bell-rule-24-gray" | "1-alert-bell-rule-24" | "1-alert-bell-rule-gear-24-gradient-blue" | "1-alert-bell-rule-gear-24-gradient-gray" | "1-alert-bell-rule-gear-24-ontint" | "1-alert-bell-unresolved-24-gradient-blue" | "1-alert-bell-unresolved-24-gradient-gray" | "1-alert-bell-unresolved-24-ontint" | "1-alert-gradient-bell-unresolved-24-blue" | "1-alert-gradient-bell-unresolved-24" | "1-alert-mail-notification-24-gradient-blue" | "1-alert-mail-notification-24-ontint" | "1-all-menu-16-blue" | "1-all-menu-16-gray" | "1-arrow-bold-down-16-blue" | "1-arrow-bold-down-16-white" | "1-arrow-bold-down-16" | "1-arrow-bold-left-16-blue" | "1-arrow-chevron-down-16-blue" | "1-arrow-chevron-down-16-bold-blue" | "1-arrow-chevron-down-16-bold-ontint" | "1-arrow-chevron-down-16-bold-secondary" | "1-arrow-chevron-down-16-ontint" | "1-arrow-chevron-down-16-secondary" | "1-arrow-chevron-down-small-16-blue" | "1-arrow-chevron-down-small-16-bold-blue" | "1-arrow-chevron-down-small-16-bold-ontint" | "1-arrow-chevron-down-small-16-bold-secondary" | "1-arrow-chevron-down-small-16-ontint" | "1-arrow-chevron-down-small-16-secondary" | "1-arrow-chevron-left-16-bold-blue" | "1-arrow-chevron-left-16-bold-ontint" | "1-arrow-chevron-left-16-bold-secondary" | "1-arrow-chevron-left-16-bold-tertiary" | "1-arrow-chevron-left-16-ontint-1" | "1-arrow-chevron-left-16-ontint" | "1-arrow-chevron-left-16-secondary" | "1-arrow-chevron-left-small-16-blue" | "1-arrow-chevron-left-small-16-bold-blue" | "1-arrow-chevron-left-small-16-bold-ontint" | "1-arrow-chevron-left-small-16-bold-secondary" | "1-arrow-chevron-left-small-16-ontint-1" | "1-arrow-chevron-left-small-16-ontint" | "1-arrow-chevron-right-16-blue" | "1-arrow-chevron-right-16-bold-blue" | "1-arrow-chevron-right-16-bold-ontint" | "1-arrow-chevron-right-16-bold-secondary" | "1-arrow-chevron-right-16-ontint" | "1-arrow-chevron-right-16-secondary" | "1-arrow-chevron-right-small-16-blue" | "1-arrow-chevron-right-small-16-bold-blue" | "1-arrow-chevron-right-small-16-bold-ontint" | "1-arrow-chevron-right-small-16-bold-secondary" | "1-arrow-chevron-right-small-16-ontint" | "1-arrow-chevron-right-small-16-secondary" | "1-arrow-chevron-up-16-blue" | "1-arrow-chevron-up-16-bold-blue" | "1-arrow-chevron-up-16-bold-ontint" | "1-arrow-chevron-up-16-bold-secondary" | "1-arrow-chevron-up-16-ontint" | "1-arrow-chevron-up-16-secondary" | "1-arrow-chevron-up-small-16-blue" | "1-arrow-chevron-up-small-16-bold-blue" | "1-arrow-chevron-up-small-16-bold-ontint" | "1-arrow-chevron-up-small-16-bold-secondary" | "1-arrow-chevron-up-small-16-ontint" | "1-arrow-chevron-up-small-16-secondary" | "1-arrow-down-16-blue" | "1-arrow-down-16" | "1-arrow-down-24" | "1-backup-plan-24-blue" | "1-backup-plan-24-gray" | "1-backup-plan-24-ontint" | "1-backup-service-24-blue" | "1-backup-service-24-gradient-blue" | "1-backup-service-24-gray" | "1-backup-service-24-ontint" | "1-backup-store-repository-24-blue" | "1-backup-store-repository-24-gray" | "1-backup-store-repository-24-ontint" | "1-calendar-clock-date-time-24-gradient-blue" | "1-calendar-clock-date-time-24-gradient-gray" | "1-calendar-clock-date-time-24-secondary" | "1-calendar-date-24-gradient-blue" | "1-calendar-date-24-gradient-gray" | "1-calendar-date-24-secondary" | "1-calendar-time-record-16" | "1-caret-triangle-down-16" | "1-caret-triangle-down-large-16-blue" | "1-caret-triangle-down-large-16-ontint" | "1-cdrom-24-blue" | "1-cdrom-24" | "1-cdrom-disc-24-gradient-blue" | "1-cdrom-disc-24-gradient-gray" | "1-certificate-identity-24-gradient-blue" | "1-certificate-identity-24-gradient-gray" | "1-certificate-ssl-24-gradient-blue" | "1-certificate-ssl-24-gradient-gray" | "1-chain-associate-connect-16-bold-ontint" | "1-chain-associate-connect-16-gradient-blue" | "1-chain-associate-connect-24-gradient-blue" | "1-chain-associate-connect-24-gradient-gray" | "1-chain-connect-16-gradient-blue" | "1-chain-disassociate-disconnect-break-16-bold-ontint" | "1-chain-disassociate-disconnect-break-24-gradient-blue" | "1-chain-disassociate-disconnect-break-24-gradient-gray" | "1-chain-disassociate-disconnect-break-24-red" | "1-chart-line-24-gradient-blue" | "1-chart-line-24-gradient-gray" | "1-chart-stacking-area-24-gradient-blue" | "1-chart-stacking-area-24-gradient-gray" | "1-checkmark-added-circle-fill-16-blue" | "1-checkmark-added-circle-fill-16-secondary" | "1-checkmark-added-circle-fill-24-blue" | "1-checkmark-added-circle-fill-24-primary" | "1-checkmark-done-success-circle-fill-16-bold-green" | "1-checkmark-done-success-circle-fill-16-bold-ontint" | "1-checkmark-done-success-circle-fill-16-green" | "1-checkmark-done-success-circle-fill-16-ontint" | "1-checkmark-done-success-circle-fill-24-green" | "1-checkmark-done-success-circle-fill" | "1-checkmark-done-success-correct-16-blue" | "1-checkmark-done-success-correct-16-bold-blue" | "1-checkmark-done-success-correct-16-bold-green" | "1-checkmark-done-success-correct-16-bold-ontint" | "1-checkmark-done-success-correct-16-bold-secondary" | "1-checkmark-done-success-correct-16-green" | "1-checkmark-done-success-correct-16-ontint" | "1-checkmark-done-success-correct-16-secondary" | "1-checkmark-solved-circle-16-blue" | "1-checkmark-solved-circle-16-super" | "1-clipboard-copy-16-gradient-blue" | "1-clipboard-copy-16-gradient-gray" | "1-clipboard-copy-24-gradient-blue" | "1-clipboard-copy-24-gradient-gray" | "1-clock-time-16-gradient-blue" | "1-clock-time-16-gradient-gray" | "1-clock-time-16-secondary" | "1-clock-time-24-gradient-blue" | "1-clock-time-24-gradient-gray" | "1-clock-time-24-secondary" | "1-clone-16-gradient-blue" | "1-clone-16-gradient-gray" | "1-cloudtower-logo-text" | "1-cloudtower-tint-blue" | "1-cluster-16-blue" | "1-cluster-16-gradient-blue" | "1-cluster-16-gradient-gray" | "1-cluster-16-ontint" | "1-cluster-16" | "1-cluster-24-blue" | "1-cluster-24-gradient-blue" | "1-cluster-24-gradient-gray" | "1-cluster-24-ontint" | "1-cluster-24" | "1-cluster-disconnected-16-blue" | "1-cluster-fill-16-ontint" | "1-cluster-fill-24-ontint" | "1-cluster-outline-16-ontint" | "1-cluster-primary-16" | "1-cluster-upgrade-24-gradient-blue" | "1-cluster-upgrade-24-gradient-gray" | "1-cluster-upgrade-24-ontint" | "1-consistency-consistent-group-16-gradient-blue" | "1-consistency-group-24-gradient-blue" | "1-consistency-group-24-gradient-gray" | "1-copy-to-ellipsis-3-24-gradient-blue" | "1-copy-to-ellipsis-3-24-gradient-gray" | "1-cpu-usage-16-blue" | "1-create-blank-vm-add-plus-24-gradient-blue" | "1-create-blank-vm-add-plus-24-gradient-gray" | "1-create-host-24-gradient-blue" | "1-create-placement-group-24-gradient-blue" | "1-create-security-policy-24-gradient-blue" | "1-create-security-policy-24-gradient-grey" | "1-create-vm-template-16" | "1-create-vm-via-template-24-gradient-blue" | "1-create-vmtemplate-add-plus-24-gradient-blue" | "1-create-vmtemplate-add-plus-24-gradient-gray" | "1-dashboard-16-gradient-blue" | "1-dashboard-24-gradient-blue" | "1-dashboard-24-gradient-gray" | "1-dashboard-24-white" | "1-data-migration-24-blue" | "1-data-migration-24-ontint" | "1-data-recovery-24-blue" | "1-data-recovery-24-ontint" | "1-datacenter-16-blue" | "1-datacenter-16-gradient-blue" | "1-datacenter-16-gradient-gray" | "1-datacenter-16" | "1-datacenter-24-blue" | "1-datacenter-24-gradient-blue" | "1-datacenter-24-gradient-gray" | "1-datacenter-24-primary" | "1-datacenter-24" | "1-datacenter-empty-connect-center-16-gradient-blue" | "1-datacenter-fill-16-ontint" | "1-disable-24-gradient-blue" | "1-disable-24-gradient-gray" | "1-disconnect-cluster-24-red" | "1-disconnected-cluster-16-gray" | "1-disconnected-cluster-16-ontint" | "1-disk-mount-16" | "1-disk-unmount-16-red" | "1-distribute-16-gradient-blue" | "1-distribute-16-gradient-gray" | "1-dot-interval-separation-16-tertiary" | "1-down-arrow-24-blue" | "1-download-16-gradient-blue" | "1-download-24-gradient-blue" | "1-download-24-gradient-gray" | "1-edit-open-24-blue" | "1-edit-open-24" | "1-edit-pen-16-blue" | "1-edit-pen-16-bold-ontint" | "1-edit-pen-16-gradient-gray" | "1-edit-pen-16-primary" | "1-edit-pen-16" | "1-edit-pen-24-gradient-blue" | "1-edit-pen-24-gradient-gray" | "1-eject-16-gradient-blue" | "1-eject-16-gradient-gray" | "1-eject-16-red" | "1-eject-16-secondary" | "1-eject-24-gradient-blue" | "1-eject-24-gradient-gray" | "1-eject-24-secondary" | "1-enable-16-blue" | "1-enable-16-gray" | "1-enable-24-blue" | "1-enable-24-gray" | "1-entityFilter-ignore-gradient-16-gray" | "1-event-auditing-24-blue" | "1-event-auditing-24-ontint" | "1-everoute-cluster-24-gradient-blue" | "1-everoute-cluster-24-gradient-grey" | "1-everoute-cluster-24-ontint" | "1-everoute-controller-16-gradient-gray" | "1-everoute-controller-24" | "1-exclamation-error-circle-16-ontint" | "1-exclamation-error-circle-16-red" | "1-exclamation-error-circle-fill-16-ontint" | "1-exclamation-error-circle-fill-16-red" | "1-exclamtion-mark-16-ontint" | "1-expand-24-gradient-blue" | "1-expand-24-gradient-gray" | "1-export-16-gradient-blue" | "1-export-16-gradient-gray" | "1-export-24-gradient-blue" | "1-export-24-gradient-gray" | "1-export-24-secondary" | "1-export-24" | "1-export-file-16-gradient-blue" | "1-export-file-16-gradient-gray" | "1-export-file-16-ontint" | "1-export-vm-24-gradient-blue" | "1-export-vm-24-gradient-gray" | "1-export-vm-24-ontint" | "1-export-vm-template-24-gradient-blue" | "1-export-vm-template-24-gradient-gray" | "1-export-vm-template-24-ontint" | "1-export-volume-24-gradient-blue" | "1-export-volume-24-gradient-gray" | "1-export-volume-24-ontint" | "1-file-16-gradient-blue" | "1-filter-24-gradient-blue" | "1-filter-24-gradient-gray" | "1-filter-gear-display-setting-24-gradient-blue" | "1-filter-gear-display-setting-24-gradient-gray" | "1-flash-light-16-gradient-blue" | "1-flow-round-trip-24-gray" | "1-focus-indicator-16-blue" | "1-fullscreen-24-gradient-blue" | "1-fullscreen-24-gradient-gray" | "1-generate-snapshot-immediately-16-blue" | "1-global-policy-24-gradient-blue" | "1-gpu-device-16-gradient-blue" | "1-gpu-device-16-gradient-grey" | "1-gpu-device-24-gradient-blue" | "1-gpu-device-24-gradient-grey" | "1-ha-triggered-24-blue" | "1-ha-triggered-24-ontint" | "1-handle-point-8-16-blue" | "1-handle-point-8-16-secondary" | "1-handle-point-8-24-blue" | "1-handle-point-8-24-secondary" | "1-hierarchy-triangle-right-16-gray" | "1-host-16-blue" | "1-host-16-gradient-blue" | "1-host-16-gradient-gray" | "1-host-16-ontint" | "1-host-16-yellow" | "1-host-16" | "1-host-24-blue" | "1-host-24-gradient-blue" | "1-host-24-gradient-gray" | "1-host-24" | "1-host-fill-16-ontint" | "1-ignore-24-gradient-blue" | "1-ignore-24-gradient-gray" | "1-import-security-policy-24-gradient-blue" | "1-import-security-policy-24-gradient-gray" | "1-import-vm-24-gradient-blue" | "1-import-vm-24-gradient-gray" | "1-import-vm-24-ontint" | "1-import-vm-template-24-gradient-blue" | "1-import-vm-template-24-gradient-gray" | "1-import-vm-template-24-ontint" | "1-import-volume-24-gradient-blue" | "1-import-volume-24-gradient-gray" | "1-import-volume-24-ontint" | "1-in-max-16" | "1-info-circle-24-blue" | "1-info-circle-24" | "1-info-circle-fill" | "1-info-i-circle-16-gradient-blue" | "1-info-i-circle-16-gradient-gray" | "1-info-i-circle-24-gradient-blue" | "1-info-i-circle-24-gradient-gray" | "1-info-i-circle-24-ontint" | "1-info-i-circle-24-secondary" | "1-info-i-circle-fill-16-blue" | "1-info-i-circle-fill-16-bold-blue" | "1-info-i-circle-fill-16-bold-ontint" | "1-info-i-circle-fill-16-ontint" | "1-info-i-circle-fill-16-quaternary" | "1-info-i-circle-fill-16-secondary" | "1-info-i-circle-fill-16-white" | "1-install-24-gradient-blue" | "1-install-24-gradient-gray" | "1-installation-package-24-gradient-blue" | "1-installation-package-24-ontint" | "1-ip-16-gradient-blue" | "1-ip-24" | "1-iscsi-datastore-storage-object-16-gradient-blue" | "1-iscsi-datastore-storage-object-24-gradient-blue" | "1-iscsi-datastore-storage-object-24-gradient-gray" | "1-iscsi-lun-16-gradient-blue" | "1-iscsi-lun-24-blue" | "1-iscsi-lun-24-gradient-blue" | "1-iscsi-lun-24-gradient-gray" | "1-iscsi-lun-24" | "1-iscsi-target-16-gradient-blue" | "1-iscsi-target-24-blue" | "1-iscsi-target-24" | "1-iso-24-blue" | "1-iso-24" | "1-iso-image-disc-16-gradient-blue" | "1-iso-image-disc-16-gradient-yellow" | "1-iso-image-disc-24-gradient-blue" | "1-iso-image-disc-24-gradient-gray" | "1-iso-image-disc-24-ontint" | "1-isolation-16-blue" | "1-isolation-24-blue" | "1-language-switcher-24-gradient-blue" | "1-language-switcher-24-white" | "1-loading-16-gradient-blue" | "1-loading-16-ontint" | "1-loading-16" | "1-loading-24-gradient-blue" | "1-loading-24-ontint" | "1-loading-24-white" | "1-lock-16-gradient-gray" | "1-log-collection-16-gradient-blue" | "1-log-collection-16-gray" | "1-log-collection-24-gradient-blue" | "1-log-collection-24-gradient-gray" | "1-log-collection-24-ontint" | "1-log-collection-24-white" | "1-logo-background" | "1-logo-fuzzy-background" | "1-logo-topo-badge1" | "1-maintenance-mode-enter-16-gradient-blue" | "1-maintenance-mode-enter-16-gradient-yellow" | "1-maintenance-mode-enter-24-gradient-blue" | "1-maintenance-mode-enter-24-gradient-yellow" | "1-maintenance-mode-exist-16-gradient-blue" | "1-maintenance-mode-exist-16-gradient-yellow" | "1-maintenance-mode-exist-24-gradient-blue" | "1-maintenance-mode-exist-24-gradient-yellow" | "1-maintenance-mode-give-up-16-gradient-blue" | "1-maintenance-mode-give-up-16-gradient-yellow" | "1-maintenance-mode-give-up-24-gradient-blue" | "1-maintenance-mode-give-up-24-gradient-yellow" | "1-memory-usage-16-green" | "1-metro-cluster-16-gradient-blue" | "1-metro-cluster-16-ontint" | "1-metro-cluster-network-status-24-blue" | "1-metro-witness-node-24-blue" | "1-migrate-16-gradient-blue" | "1-migrate-16-gradient-gray" | "1-minus-24-gradient-blue" | "1-minus-24-gradient-gray" | "1-minus-unmount-remove-circle-16-gradient-red" | "1-monitoring-16-gradient-blue" | "1-monitoring-24-gradient-blue" | "1-monitoring-24-gradient-gray" | "1-monitoring-24-gradient-ontint" | "1-monitoring-advanced-24-gradient-blue" | "1-monitoring-advanced-24-ontint" | "1-monitoring-view-16-gradient-blue" | "1-more-ellipsis-16-blue" | "1-more-ellipsis-16" | "1-more-ellipsis-24-blue" | "1-more-ellipsis-24" | "1-more-ellipsis-3-16-bold-blue" | "1-more-ellipsis-3-16-bold-ontint" | "1-more-ellipsis-3-16-bold-primary" | "1-more-ellipsis-3-16-bold-secondary" | "1-more-ellipsis-3-24-bold-blue" | "1-more-ellipsis-3-24-bold-ontint" | "1-more-ellipsis-3-24-bold-primary" | "1-more-ellipsis-3-24-bold-secondary" | "1-more-menu-16-blue" | "1-more-menu-16-bold-blue" | "1-more-menu-16-gray" | "1-mount-cdrom-16" | "1-mount-cdrom-disc-16-gradient-gray" | "1-mount-cdrom-disc-16-secondary" | "1-mount-cdrom-disc-24-gradient-blue" | "1-mount-cdrom-disc-24-gradient-gray" | "1-mount-virtual-volume-16-gradient-gray" | "1-mount-virtual-volume-16-secondary" | "1-mount-virtual-volume-24-gradient-blue" | "1-mount-virtual-volume-24-gradient-gray" | "1-mount-vm-volume-16" | "1-move-16-gradient-blue" | "1-network-16-gradient-blue" | "1-network-24-blue" | "1-network-24-gradient-blue" | "1-network-24" | "1-network-access-16-gradient-blue" | "1-network-access-24-gradient-blue" | "1-network-access-24-gradient-gray" | "1-network-access-24-gradient-green" | "1-network-management-16-gradient-blue" | "1-network-management-24-gradient-blue" | "1-network-management-24-gradient-gray" | "1-network-management-24-gradient-yellow" | "1-network-security-policy-16-gradient-blue" | "1-network-security-policy-16-gray" | "1-network-security-policy-24-blue" | "1-network-security-policy-24-gradient-blue" | "1-network-security-policy-24-gray" | "1-network-security-policy-24-ontint" | "1-network-storage-16-gradient-blue" | "1-network-storage-24-gradient-blue" | "1-network-storage-24-gradient-gray" | "1-network-storage-24-gradient-purple" | "1-network-vm-16-gradient-blue" | "1-nfs-datastore-storage-object-24-gradient-blue" | "1-nfs-datastore-storage-object-24-gradient-gray" | "1-nfs-export-16-gradient-blue" | "1-nfs-export-24-blue" | "1-nfs-export-24" | "1-nfs-file-16-gradient-blue" | "1-nfs-file-24-gradient-blue" | "1-nfs-file-24-gradient-gray" | "1-nfs-folder-24-gradient-blue" | "1-nfs-folder-24-gradient-gray" | "1-nfs-inode-24-blue" | "1-nfs-inode-24" | "1-nic-16-gradient-blue" | "1-nic-24-blue" | "1-nic-24-gradient-blue" | "1-nic-24" | "1-no-alert-80-gradient-gray" | "1-no-alert-disconnected-80-gradient-gray" | "1-no-critical-alert-80-gradient-gray" | "1-no-data-recovery-80-gradient-gray" | "1-no-info-alert-80-gradient-gray" | "1-no-notice-alert-80-gradient-gray" | "1-no-vm-80-gradient-gray" | "1-not-folder-16-blue" | "1-not-folder-16" | "1-notice-attention-16-yellow" | "1-notice-info-16-blue" | "1-notice-severe-warning-16-red" | "1-notice-triangle-fill-16-bold-ontint" | "1-notice-triangle-fill-16-bold-yellow" | "1-notice-triangle-fill-16-ontint" | "1-notice-triangle-fill-16-yellow" | "1-nvme-namespace-group-24-blue" | "1-nvme-namespace-group-24-gray" | "1-nvme-namespace-storage-object-16-gradient-blue" | "1-nvme-namespace-storage-object-24-blue" | "1-nvme-namespace-storage-object-24-gray" | "1-nvme-subsystem-datastore-storage-object-16-gradient-blue" | "1-nvme-subsystem-datastore-storage-object-24-blue" | "1-nvme-subsystem-datastore-storage-object-24-gray" | "1-open-terminal-16-gradient-blue" | "1-open-terminal-16-gradient-gray" | "1-open-terminal-16-white" | "1-open-terminal-16" | "1-organization-16-blue" | "1-organization-16-bold-gradient-blue" | "1-organization-16-bold-gradient-gray" | "1-organization-16-bold-secondary" | "1-organization-16-gradient-blue" | "1-organization-16-gradient-gray" | "1-organization-16" | "1-organization-24-gradient-blue" | "1-organization-24-gradient-gray" | "1-organization-24-ontint" | "1-os-16-linux-archlinux" | "1-os-16-linux-centos" | "1-os-16-linux-debian" | "1-os-16-linux-fedora" | "1-os-16-linux-opensuse" | "1-os-16-linux-oracle-linux" | "1-os-16-linux-oracle-solaris" | "1-os-16-linux-redflag" | "1-os-16-linux-redhat" | "1-os-16-linux-ubuntu" | "1-os-16-macos-finder" | "1-os-16-windows-10" | "1-os-16-windows-7" | "1-os-16-windows-8-1" | "1-os-16-windows-8" | "1-os-16-windows-98" | "1-os-16-windows-server-2003" | "1-os-16-windows-server-2008" | "1-os-16-windows-server-2012" | "1-os-16-windows-server-2016" | "1-os-16-windows-server-2019" | "1-os-16-windows-vista" | "1-os-16-windows-xp" | "1-os-other-unknown-16-gradient-gray" | "1-out-max-16" | "1-pause-16-gradient-blue" | "1-physical-disk-16-gradient-blue" | "1-physical-disk-24-blue" | "1-physical-disk-24-gradient-blue" | "1-physical-disk-24-gradient-gray" | "1-physical-disk-24" | "1-plus-24-gradient-blue" | "1-plus-24-gradient-gray" | "1-plus-add-circle-16-blue" | "1-plus-add-circle-16-secondary" | "1-plus-add-circle-24-blue" | "1-plus-add-circle-24-primary" | "1-plus-add-circle-24-secondary" | "1-plus-add-circle-disabled-24-gray-secondary" | "1-plus-add-create-new-16-blue" | "1-plus-add-create-new-16-bold-blue" | "1-plus-add-create-new-16-bold-ontint" | "1-plus-add-create-new-16-gray" | "1-plus-add-create-new-16-ontint" | "1-plus-add-create-new-16-secondary" | "1-plus-add-create-new-24-gradient-blue" | "1-plus-add-create-new-24-gradient-gray" | "1-plus-add-create-new-circle-fill-16-bold-blue" | "1-plus-add-create-new-circle-fill-16-bold-ontint" | "1-plus-add-create-new-circle-fill-24-bold-blue" | "1-plus-add-create-new-small-16-blue" | "1-plus-add-create-new-small-16-bold-blue" | "1-plus-add-create-new-small-16-bold-ontint" | "1-plus-add-create-new-small-16-bold-secondary" | "1-plus-add-create-new-small-16-ontint" | "1-plus-add-create-new-small-16-secondary" | "1-port-network-16-gradient-blue" | "1-port-network-24-blue" | "1-port-network-24-gradient-blue" | "1-port-network-24-gradient-gray" | "1-port-network-24" | "1-power-lightning-24-gradient-green" | "1-power-lightning-24-tertiary" | "1-poweroff-shutdown-stop-16-gradient-blue" | "1-poweroff-shutdown-stop-16-gradient-gray" | "1-poweroff-shutdown-stop-16-red" | "1-poweroff-turn-on-shut-down-16-gradient-red" | "1-poweron-start-16-gradient-blue" | "1-poweron-start-16-gradient-gray" | "1-poweron-start-24-gradient-blue" | "1-poweron-start-24-gradient-gray" | "1-poweron-start-new-16-gradient-blue" | "1-primary-available-zone-24-blue" | "1-primary-to-secondary-16-gradient-blue" | "1-primary-zone-16-gradient-blue" | "1-primary-zone-16-ontint" | "1-rack-16-gradient-blue" | "1-rack-24-gradient-blue" | "1-recover-continue-16-gradient-blue" | "1-recover-continue-16-gradient-gray" | "1-recover-recycle-vm-16-gradient-blue" | "1-recover-recycle-vm-16-gradient-gray" | "1-recyclebin_clusterSettings_delete_24_red" | "1-recyclebin_clusterSettings_edit_24_blue" | "1-report-form-24-blue" | "1-report-form-24-gradient-blue" | "1-report-form-24-gradient-gray" | "1-report-form-24-gradient-white" | "1-report-form-24" | "1-report-form-template-file-24-gradient-blue" | "1-report-form-template-file-24-gradient-gray" | "1-report-form-template-file-24-gradient-white" | "1-resource-optimization-24-blue" | "1-resource-optimization-24-gradient-blue" | "1-resource-optimization-24-gradient-gray" | "1-resource-optimization-24" | "1-restart-16-gradient-blue" | "1-restart-16-gradient-gray" | "1-restart-new-16-gradient-blue" | "1-restart-new-16-gradient-gray" | "1-retain-snapshot-group-16-blue" | "1-retry-16-blue" | "1-retry-16-gradient-blue" | "1-retry-16-gradient-gray" | "1-retry-16-ontint" | "1-retry-16-secondary" | "1-right-traffic-16-gray" | "1-rule-optimization-io-square-24-gradient-blue" | "1-rule-optimization-io-square-24-gradient-gray" | "1-rule-optimization-power-state-square-24-gradient-blue" | "1-rule-optimization-power-state-square-24-gradient-gray" | "1-rule-optimization-ram-24-gradient-blue" | "1-rule-optimization-ram-24-gradient-gray" | "1-rule-optimization-ram-square-24-gradient-blue" | "1-rule-optimization-ram-square-24-gradient-gray" | "1-rule-optimization-square-24-gradient-blue" | "1-rule-optimization-square-24-gradient-gray" | "1-rule-optimization-square-stack-2-24-gradient-blue" | "1-rule-optimization-square-stack-2-24-gradient-gray" | "1-rule-optimization-vcpu-24-gradient-blue" | "1-rule-optimization-vcpu-24-gradient-gray" | "1-rule-optimization-vcpu-square-24-gradient-blue" | "1-rule-optimization-vcpu-square-24-gradient-gray" | "1-rule-optimization-zombie-24-gradient-blue" | "1-rule-optimization-zombie-24-gradient-gray" | "1-search-16-blue" | "1-search-16-gradient-blue" | "1-search-16-gradient-gray" | "1-search-16-ontint" | "1-search-16-secondary" | "1-search-16-tertiary" | "1-search-24-blue" | "1-search-24-gradient-blue" | "1-search-24-gradient-gray" | "1-search-24" | "1-search-fill-24-gradient-gray" | "1-secondary-available-zone-24-blue" | "1-secondary-to-primary-16-gradient-blue" | "1-secondary-zone-16-gradient-blue" | "1-secondary-zone-16-ontint" | "1-security-group-16-gradient-blue" | "1-security-group-16-gradient-gray" | "1-security-group-24-gradient-blue" | "1-security-group-24-gradient-gray" | "1-security-group-24-gradient-white" | "1-security-group-24-ontint" | "1-selected-objects-square-grid-3x3-24-gradient-blue" | "1-selected-objects-square-grid-3x3-24-gradient-gray" | "1-settings-gear-16-gradient-blue" | "1-settings-gear-16-gradient-gray" | "1-settings-gear-16-secondary" | "1-settings-gear-24-gradient-blue" | "1-settings-gear-24-gradient-gray" | "1-settings-gear-24-white" | "1-settings-gear-fill-16-gradient-blue" | "1-settings-gear-fill-16-gradient-gray" | "1-settings-gear-fill-24-gradient-blue" | "1-settings-gear-fill-24-gradient-gray" | "1-settings-gear-user-personal-24-gradient-blue" | "1-settings-gear-user-personal-24-gradient-gray" | "1-shared-virtual-volume-24-gradient-blue" | "1-shared-virtual-volume-24-gradient-gray" | "1-shared-volume-24-blue" | "1-shared-volume-24" | "1-smartx-logo" | "1-smtp-mail-24-gradient-blue" | "1-smtp-mail-24-gradient-gray" | "1-smtp-mail-24-ontint" | "1-snapshot-16-gradient-blue" | "1-snapshot-24-gradient-blue" | "1-snapshot-24-gradient-gray" | "1-snapshot-rollback-general-16-blue" | "1-snapshot-rollback-general-24-blue" | "1-snapshot-vm-rollback-16-blue" | "1-snmp-24-gradient-blue" | "1-snmp-24-gradient-gray" | "1-software-license-24-gradient-blue" | "1-software-license-24-gradient-gray" | "1-software-license-24-ontint" | "1-software-license-24" | "1-sriov-nic-24-gradient-blue" | "1-sriov-nic-24-gradient-grey" | "1-star-16-fill-gray" | "1-star-16-gray" | "1-status-running-triangle-16-gradient-green" | "1-status-stopped-poweredoff-shutdown-square-16-gray" | "1-status-suspended-paused-16-gradient-yellow" | "1-status-unavailable-16" | "1-status-unknown-questionmark-16-red" | "1-stop-flash-light-16-gradient-blue" | "1-suspended-pause-16-gradient-blue" | "1-suspended-pause-16-gradient-gray" | "1-suspended-pause-16-gradient-orange" | "1-system-event-auditing-24-blue" | "1-system-event-auditing-24-ontint" | "1-tag-16-gradient-blue" | "1-tag-16-gradient-gray" | "1-tag-24-gradient-blue" | "1-task-center-24-blue" | "1-task-center-24-gradient-blue" | "1-task-center-24-gradient-gray" | "1-task-center-24" | "1-task-center-fill-24-blue" | "1-task-center-fill-24-gradient-blue" | "1-task-center-fill-24-gradient-gray" | "1-task-center-fill-24-gradient-green" | "1-task-center-fill-24-gradient-red" | "1-task-center-fill-24-gradient-yellow" | "1-task-center-fill-24" | "1-topn-24-gradient-blue" | "1-topn-24-gradient-gray" | "1-trash-bin-delete-16-red" | "1-trash-bin-delete-16" | "1-trash-bin-delete-24-red" | "1-trash-bin-delete-24" | "1-trash-bin-opened-delete-16-red" | "1-trash-bin-opened-delete-24-red" | "1-trash-bin-opened-delete-24" | "1-trash-bin-slash-24-red" | "1-trash-move-to-recycle-24-gradient-blue" | "1-trash-move-to-recycle-24-gradient-red" | "1-up-arrow-24-green" | "1-upload-24-gradient-blue" | "1-upload-24-gradient-gray" | "1-upload-24-ontint" | "1-upload-48-gradient-blue" | "1-upload-outline-24-ontint" | "1-uploading-16-gradient-blue" | "1-uploading-16-gradient-gray" | "1-uploading-16-ontint" | "1-uploading-24-gradient-blue" | "1-uploading-24-gradient-gray" | "1-uploading-fill-24-blue" | "1-uploading-fill-24-gradient-blue" | "1-uploading-fill-24-gradient-gray" | "1-uploading-fill-24" | "1-usb-16-gradient-blue" | "1-usb-24-gradient-blue" | "1-usb-24-gradient-gray" | "1-usb-mount-16-blue" | "1-usb-unmount-16-red" | "1-user-account-24-blue" | "1-user-account-24-gradient-blue" | "1-user-account-24-gradient-gray" | "1-user-account-24-ontint" | "1-user-account-24" | "1-user-action-24-blue" | "1-user-action-24-ontint" | "1-user-event-auditing-24-blue" | "1-user-event-auditing-24-ontint" | "1-user-logout-24-blue" | "1-user-role-24-blue" | "1-user-role-24-white" | "1-vds-16-gradient-blue" | "1-vds-24-blue" | "1-vds-24-gradient-blue" | "1-vds-24" | "1-view-eye-24-gradient-blue" | "1-view-eye-24-gradient-gray" | "1-virtual-distributed-switch-machine-24-gradient-blue" | "1-virtual-distributed-switch-machine-24-gradient-gray" | "1-virtual-nic-network-24-gradient-blue" | "1-virtual-nic-network-24-gradient-gray" | "1-virtual-volume-16-gradient-blue" | "1-virtual-volume-24-gradient-blue" | "1-virtual-volume-24-gradient-gray" | "1-virtual-volume-add-plus-16-gradient-gray" | "1-virtual-volume-add-plus-16-secondary" | "1-virtual-volume-add-plus-24-gradient-blue" | "1-virtual-volume-add-plus-24-gradient-gray" | "1-virtual-volume-snapshot-24-gradient-blue" | "1-virtual-volume-snapshot-24-gradient-gray" | "1-vm-16-gradient-blue" | "1-vm-16-yellow" | "1-vm-16" | "1-vm-24-blue" | "1-vm-24-gradient-blue" | "1-vm-24-gradient-gray" | "1-vm-24-primary" | "1-vm-24" | "1-vm-clone-16" | "1-vm-connection-allowed-24" | "1-vm-connection-connect-24" | "1-vm-connection-disconnect-24" | "1-vm-connection-not-allowed-24" | "1-vm-folder-16-blue" | "1-vm-folder-16" | "1-vm-folder-24-blue" | "1-vm-icon-16-yellow" | "1-vm-icon-24-blue" | "1-vm-migrate-16" | "1-vm-migration-network-16-gradient-blue" | "1-vm-placement-group-16-gradient-blue" | "1-vm-placement-group-host-14-6-gradient-blue" | "1-vm-placement-group-host-14-6-gradient-gray" | "1-vm-quarantine-16-gradient-blue" | "1-vm-quarantine-16-gradient-gray" | "1-vm-quarantine-24-gradient-blue" | "1-vm-quarantine-24-white" | "1-vm-recycle-bin-move-to-bin-16-red" | "1-vm-recycle-bin-move-to-bin-24-red" | "1-vm-recycle-bin-permanent-delete-24-red" | "1-vm-restart-16" | "1-vm-resume-16" | "1-vm-shutdown-16" | "1-vm-snapshot-16-gradient-blue" | "1-vm-snapshot-24-gradient-blue" | "1-vm-snapshot-24-gradient-gray" | "1-vm-start-16" | "1-vm-status-running-16" | "1-vm-status-stopped-16" | "1-vm-status-suspended-16" | "1-vm-status-unknow-16" | "1-vm-suspended-16" | "1-vm-template-16-gradient-blue" | "1-vm-template-24-blue" | "1-vm-template-24" | "1-vm-tools-16" | "1-vm-volume-16-gradient-blue" | "1-vm-volume-24-blue" | "1-vm-volume-24" | "1-vm-volume-add-plus-16" | "1-vmgroup-folder-16-gradient-blue" | "1-vmgroup-folder-16-gradient-gray" | "1-vmgroup-folder-24-gradient-blue" | "1-vmgroup-folder-24-gradient-gray" | "1-vmgroup-folder-fill-16-ontint" | "1-vmgroup-folder-gradient-blue-24" | "1-vmgroup-folder-not-grouped-16-gradient-blue" | "1-vmgroup-folder-not-grouped-16-gradient-gray" | "1-vmgroup-folder-not-grouped-24-gradient-blue" | "1-vmgroup-folder-not-grouped-24-gradient-gray" | "1-vmgroup-folder-not-grouped-fill-16-ontint" | "1-vmnetwork-16-gradient-blue" | "1-vmnetwork-24-gradient-blue" | "1-vmnetwork-24-gradient-gray" | "1-vmtemplat-convert-16-gradient-blue" | "1-vmtemplat-convert-16-gradient-gray" | "1-vmtemplate-16-gradient-yellow" | "1-vmtemplate-24-gradient-blue" | "1-vmtemplate-24-gradient-gray" | "1-vmtemplate-24-gradient-ontint" | "1-vmtemplate-clone-16-gradient-blue" | "1-vmtemplate-clone-16-gradient-gray" | "1-vmtemplate-convert-vm-16-gradient-blue" | "1-vmtemplate-create-16-gradient-blue" | "1-vmtemplate-create-16-gradient-gray" | "1-vmtools-16-gradient-blue-1" | "1-vmtools-16-gradient-blue" | "1-vmtools-16-gradient-gray" | "1-vmtools-24-gradient-blue" | "1-vmtools-24-gradient-green" | "1-vmtools-24-ontint" | "1-waiting-breathing-led-16-blue" | "1-waiting-breathing-led-16-yellow" | "1-xmark-clear-fill-24-secondary" | "1-xmark-clear-fill-24-tertiary" | "1-xmark-close-fill-24-primary" | "1-xmark-failed-16-bold-ontint" | "1-xmark-failed-16-bold-red" | "1-xmark-failed-16-ontint" | "1-xmark-failed-16-red" | "1-xmark-failed-serious-warning-fill-16-bold-ontint" | "1-xmark-failed-serious-warning-fill-16-bold-red" | "1-xmark-failed-serious-warning-fill-16-ontint" | "1-xmark-failed-serious-warning-fill-16-red" | "1-xmark-remove-16-blue" | "1-xmark-remove-16-bold-ontint" | "1-xmark-remove-16-primary" | "1-xmark-remove-16-secondary" | "1-xmark-remove-24-blue" | "1-xmark-remove-24-primary" | "1-xmark-remove-24-secondary" | "1-xmark-remove-small-16-blue" | "1-xmark-remove-small-16-secondary" | "Alert" | "App_Store" | "Backup" | "ContainerService" | "Event" | "IO-BandWidth" | "Infrastructure" | "Large_Display" | "NavTask" | "NetworkSecurity" | "Placeholder" | "Recycle_Bin" | "Report" | "Resource_Optimization" | "Setting" | "Settings" | "Snapshot" | "Tag" | "TrafficVisualization" | "abnormal_status" | "access_restriction" | "access_restriction_white" | "advance-blue" | "advance" | "arrow_right_gray" | "bell" | "bell_grey" | "check-green" | "clock" | "clone" | "close-red" | "close" | "cluster-blue" | "cluster-gray" | "cluster" | "cluster_activated" | "cluster_normal" | "cpu-temperature-critical" | "cpu-temperature-normal" | "cpu-temperature-warning" | "createvmtemplate" | "cross" | "csv" | "datacenter" | "datacenter_activated" | "datacenter_normal" | "delete" | "directory" | "disk" | "down" | "download" | "editvm" | "error" | "file_normal" | "filter_activated" | "filter_modified" | "filter_normal" | "folder" | "folder_activated" | "folder_normal" | "forcerestart" | "forcestop" | "gaussian_opaque" | "halo-appliance/1-all-menu-16-gradient-blue" | "halo-appliance/halo-7100l-light-1x" | "halo-appliance/halo-7100l-light-2x" | "halo-appliance/halo-7100p-light-1x" | "halo-appliance/halo-7100p-light-2x" | "halo-appliance/halo-7100s-light-1x" | "halo-appliance/halo-7100s-light-2x" | "halo-appliance/halo-8100s-light-1x" | "halo-appliance/halo-8100s-light-2x" | "halo-appliance/halo-9100p-light-1x" | "halo-appliance/halo-9100p-light-2x" | "halo-appliance/halo-9100s-light-1x" | "halo-appliance/halo-9100s-light-2x" | "hardware" | "host" | "host_activated" | "host_normal" | "info-normal" | "info" | "installtools" | "iso-blue" | "iso" | "loading_blue" | "loading_gray" | "lock" | "migrate" | "mounted" | "nic-error" | "nic" | "normal_status" | "openterminal" | "operations" | "orgnization_activated" | "orgnization_normal" | "os-logo/os-logo-archlinux" | "os-logo/os-logo-centos" | "os-logo/os-logo-debian" | "os-logo/os-logo-deepin" | "os-logo/os-logo-fedora" | "os-logo/os-logo-kylin" | "os-logo/os-logo-macOS" | "os-logo/os-logo-neoKylin" | "os-logo/os-logo-openeuler" | "os-logo/os-logo-opensuse" | "os-logo/os-logo-oraclelinux" | "os-logo/os-logo-oraclesolaris" | "os-logo/os-logo-question" | "os-logo/os-logo-redflag" | "os-logo/os-logo-redhat" | "os-logo/os-logo-rocky" | "os-logo/os-logo-ubuntu" | "os-logo/os-logo-uniontech" | "os-logo/os-logo-unknown" | "os-logo/os-logo-windows-server" | "os-logo/os-logo-windows10" | "os-logo/os-logo-windows2000" | "os-logo/os-logo-windows7" | "os-logo/os-logo-windows8" | "os-logo/os-logo-windowsXP" | "password_security" | "password_security_white" | "pause-24" | "power-on-24" | "product_logo_header" | "progress" | "refresh" | "resource_custom_composite_filter_blue" | "resource_custom_composite_filter_white" | "resource_custom_dead_vm_blue" | "resource_custom_dead_vm_white" | "resource_custom_memory_vm_blue" | "resource_custom_memory_vm_white" | "resource_custom_vcpu_vm_blue" | "resource_custom_vcpu_vm_white" | "resource_custom_zombie_vm_blue" | "resource_custom_zombie_vm_white" | "resource_dead_vm_blue" | "resource_dead_vm_white" | "resource_memory_vm_blue" | "resource_memory_vm_white" | "resource_vcpu_vm_blue" | "resource_vcpu_vm_white" | "resource_zombie_vm_blue" | "resource_zombie_vm_white" | "restart-24" | "restart" | "resume-24" | "resume" | "right-circle-arrow" | "session_expiration_blue" | "session_expiration_white" | "shutdown-24" | "sks-business-nic-24" | "sks-control-plane-24" | "sks-dhcp-config-24" | "sks-download-kubeconfig-24-blue" | "sks-download-kubeconfig-24-gray" | "sks-download-kubeconfig" | "sks-ecp-nic-24" | "sks-ip-pool-24-blue" | "sks-ip-pool-24-white" | "sks-ip-range-24" | "sks-management-cluster-16-gray" | "sks-management-cluster-24-blue" | "sks-management-cluster-24-white" | "sks-monitoring-24-blue" | "sks-monitoring-24-white" | "sks-node-24" | "sks-node-group-24" | "sks-node-group" | "sks-node-template-24-blue" | "sks-node-template-24-white" | "sks-node" | "sks-persistent-volume-24" | "sks-persistent-volume" | "sks-replace-node" | "sks-rollback-cluster" | "sks-service-upgrade-24-blue" | "sks-service-upgrade-24-white" | "sks-storage-class-24" | "sks-storage-class" | "sks-upgrade-cluster-24" | "sks-upgrade-cluster" | "sks-worker-24" | "sks-workload-cluster-16-gray" | "sks-workload-cluster-blue-24" | "sks-workload-cluster-white-24" | "sks-zbs-csi-24-blue" | "sks-zbs-csi-24-white" | "sks-zbs-nic-24" | "start" | "stop" | "suspend" | "task-preview" | "task" | "triangle-exclamation" | "unknown-circle" | "unmounted" | "unopened_status" | "user" | "user_account" | "user_account_security" | "user_account_security_white" | "user_account_white" | "vm" | "witness-node-normal-critical-red" | "witness-node-normal-healthy-green" | "witness-node-normal-info-blue" | "witness-node-normal-notice-yellow" | "witness-node-small-critical-red" | "witness-node-small-healthy-green" | "witness-node-small-info-blue" | "witness-node-small-notice-yellow" | "xlsx";
|