@dtinsight/react-icons 1.27.5 → 1.28.0
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/dist/aiworks/index.d.ts +121 -1
- package/dist/aiworks/index.mjs +1 -1
- package/dist/index.d.ts +16 -6
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/aiworks/index.d.ts
CHANGED
|
@@ -9,6 +9,21 @@ interface IconProps extends Omit<React.HTMLProps<HTMLSpanElement>, 'size'> {
|
|
|
9
9
|
spin?: boolean;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
declare const AddNodeOutlined: {
|
|
13
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
14
|
+
displayName: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
declare const AgentFilled: {
|
|
18
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
19
|
+
displayName: string;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
declare const AllCategoriesFilled: {
|
|
23
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
24
|
+
displayName: string;
|
|
25
|
+
};
|
|
26
|
+
|
|
12
27
|
declare const AppManagerFilled: {
|
|
13
28
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
14
29
|
displayName: string;
|
|
@@ -19,16 +34,116 @@ declare const AppManagerOutlined: {
|
|
|
19
34
|
displayName: string;
|
|
20
35
|
};
|
|
21
36
|
|
|
37
|
+
declare const CommonknowledgebaseFilled: {
|
|
38
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
39
|
+
displayName: string;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
declare const ConversationConfigurationOutlined: {
|
|
43
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
44
|
+
displayName: string;
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
declare const ExpandFilled: {
|
|
48
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
49
|
+
displayName: string;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
declare const FileListFilled: {
|
|
53
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
54
|
+
displayName: string;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
declare const FileListOutlined: {
|
|
58
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
59
|
+
displayName: string;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
declare const KnowledgeBaseFilled: {
|
|
63
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
64
|
+
displayName: string;
|
|
65
|
+
};
|
|
66
|
+
|
|
22
67
|
declare const KnowledgeBaseOutlined: {
|
|
23
68
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
24
69
|
displayName: string;
|
|
25
70
|
};
|
|
26
71
|
|
|
72
|
+
declare const LogFilled: {
|
|
73
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
74
|
+
displayName: string;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
declare const LogOutlined: {
|
|
78
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
79
|
+
displayName: string;
|
|
80
|
+
};
|
|
81
|
+
|
|
27
82
|
declare const ModelVendorFilled: {
|
|
28
83
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
29
84
|
displayName: string;
|
|
30
85
|
};
|
|
31
86
|
|
|
87
|
+
declare const ModelVendorOutlined: {
|
|
88
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
89
|
+
displayName: string;
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
declare const OrchestrationFilled: {
|
|
93
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
94
|
+
displayName: string;
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
declare const OrchestrationOutlined: {
|
|
98
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
99
|
+
displayName: string;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
declare const PublishFilled: {
|
|
103
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
104
|
+
displayName: string;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
declare const PublishOutlined: {
|
|
108
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
109
|
+
displayName: string;
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
declare const RecallTestFilled: {
|
|
113
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
114
|
+
displayName: string;
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
declare const RecallTestOutlined: {
|
|
118
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
119
|
+
displayName: string;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
declare const RefreshOutlined: {
|
|
123
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
124
|
+
displayName: string;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
declare const RunFilled: {
|
|
128
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
129
|
+
displayName: string;
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
declare const SetUpFilled: {
|
|
133
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
134
|
+
displayName: string;
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
declare const SetUpOutlined: {
|
|
138
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
139
|
+
displayName: string;
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
declare const SlideBarCollapseOutlined: {
|
|
143
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
144
|
+
displayName: string;
|
|
145
|
+
};
|
|
146
|
+
|
|
32
147
|
declare const ToolManagementFilled: {
|
|
33
148
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
34
149
|
displayName: string;
|
|
@@ -39,6 +154,11 @@ declare const ToolManagementOutlined: {
|
|
|
39
154
|
displayName: string;
|
|
40
155
|
};
|
|
41
156
|
|
|
157
|
+
declare const WorkflowFilled: {
|
|
158
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
159
|
+
displayName: string;
|
|
160
|
+
};
|
|
161
|
+
|
|
42
162
|
declare const YuqueColored: {
|
|
43
163
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
44
164
|
displayName: string;
|
|
@@ -49,4 +169,4 @@ declare const YuqueSelectedColored: {
|
|
|
49
169
|
displayName: string;
|
|
50
170
|
};
|
|
51
171
|
|
|
52
|
-
export { AppManagerFilled, AppManagerOutlined, IconProps, KnowledgeBaseOutlined, ModelVendorFilled, ToolManagementFilled, ToolManagementOutlined, YuqueColored, YuqueSelectedColored };
|
|
172
|
+
export { AddNodeOutlined, AgentFilled, AllCategoriesFilled, AppManagerFilled, AppManagerOutlined, CommonknowledgebaseFilled, ConversationConfigurationOutlined, ExpandFilled, FileListFilled, FileListOutlined, IconProps, KnowledgeBaseFilled, KnowledgeBaseOutlined, LogFilled, LogOutlined, ModelVendorFilled, ModelVendorOutlined, OrchestrationFilled, OrchestrationOutlined, PublishFilled, PublishOutlined, RecallTestFilled, RecallTestOutlined, RefreshOutlined, RunFilled, SetUpFilled, SetUpOutlined, SlideBarCollapseOutlined, ToolManagementFilled, ToolManagementOutlined, WorkflowFilled, YuqueColored, YuqueSelectedColored };
|
package/dist/aiworks/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import p from"react";import V from"classnames";var h=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>p.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:V("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},p.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},p.createElement("path",{d:"M46.8741 11.8174L41.5407 9.01856C36.8591 6.56173 34.5182 5.33331 32.0002 5.33331C29.4821 5.33331 27.1413 6.56173 22.4596 9.01855L17.1263 11.8174C12.3963 14.2996 9.6159 15.7586 7.89268 17.7102L32.0002 29.7639L56.1076 17.7102C54.3844 15.7586 51.604 14.2996 46.8741 11.8174Z"}),p.createElement("path",{d:"M57.9958 21.2382L34.0002 33.236V58.4107C35.9146 57.9339 38.0929 56.7908 41.5407 54.9814L46.8741 52.1826C52.6118 49.1716 55.4807 47.666 57.0738 44.9607C58.6668 42.2553 58.6668 38.8889 58.6668 32.156V31.844C58.6668 26.7969 58.6668 23.6415 57.9958 21.2382Z"}),p.createElement("path",{d:"M30.0002 58.4107V33.236L6.00453 21.2382C5.3335 23.6415 5.3335 26.7969 5.3335 31.844V32.156C5.3335 38.8889 5.3335 42.2553 6.92655 44.9607C8.51961 47.666 11.3885 49.1716 17.1263 52.1826L22.4596 54.9814C25.9075 56.7908 28.0857 57.9339 30.0002 58.4107Z"})));h.displayName="AppManagerFilled";var y=h;import c from"react";import b from"classnames";var v=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>c.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:b("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},c.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.0002 3.33331C30.3876 3.33331 28.9027 3.73408 27.2769 4.40644C25.707 5.05567 23.8837 6.01254 21.6132 7.20405L16.0999 10.0973C13.3133 11.5596 11.0833 12.7299 9.36142 13.8797C7.5776 15.071 6.20368 16.3253 5.20315 18.0245C4.20598 19.7179 3.75738 21.5516 3.54226 23.7352C3.33346 25.8549 3.33347 28.4617 3.3335 31.7401V32.2598C3.33347 35.5382 3.33346 38.1451 3.54226 40.2647C3.75738 42.4484 4.20598 44.2821 5.20315 45.9755C6.20368 47.6746 7.5776 48.9289 9.36142 50.1202C11.0832 51.27 13.313 52.4402 16.0994 53.9024L21.6131 56.7958C23.8836 57.9874 25.707 58.9443 27.2769 59.5935C28.9027 60.2659 30.3876 60.6666 32.0002 60.6666C33.6128 60.6666 35.0976 60.2659 36.7234 59.5935C38.2933 58.9443 40.1166 57.9874 42.3871 56.7959L47.9004 53.9027C50.687 52.4403 52.917 51.2701 54.6389 50.1202C56.4227 48.9289 57.7966 47.6746 58.7972 45.9755C59.7943 44.2821 60.2429 42.4484 60.4581 40.2647C60.6669 38.1451 60.6669 35.5383 60.6668 32.2598V31.7401C60.6669 28.4617 60.6669 25.8548 60.4581 23.7352C60.2429 21.5516 59.7943 19.7179 58.7972 18.0245C57.7966 16.3253 56.4227 15.071 54.6389 13.8797C52.9171 12.7299 50.687 11.5596 47.9004 10.0973L42.3872 7.20408C40.1167 6.01256 38.2933 5.05568 36.7234 4.40644C35.0976 3.73408 33.6128 3.33331 32.0002 3.33331ZM23.389 10.7895C25.7615 9.54444 27.4242 8.6741 28.8056 8.10281C30.1501 7.54676 31.0947 7.33331 32.0002 7.33331C32.9056 7.33331 33.8502 7.54676 35.1948 8.10281C36.5762 8.6741 38.2388 9.54444 40.6114 10.7895L45.9447 13.5883C48.8505 15.1132 50.8921 16.1875 52.4175 17.2062C53.17 17.7087 53.7613 18.1754 54.2387 18.6446L32.0002 29.7639L9.7616 18.6446C10.239 18.1754 10.8303 17.7087 11.5829 17.2062C13.1082 16.1875 15.1498 15.1132 18.0556 13.5883L23.389 10.7895ZM7.83398 22.153C7.69931 22.7233 7.59751 23.371 7.523 24.1274C7.33574 26.0282 7.3335 28.4384 7.3335 31.844V32.156C7.3335 35.5616 7.33574 37.9717 7.523 39.8726C7.70614 41.7317 8.05408 42.9339 8.64996 43.9458C9.24249 44.9521 10.0995 45.8032 11.5829 46.7938C13.1082 47.8125 15.1498 48.8867 18.0556 50.4116L23.389 53.2104C25.7615 54.4555 27.4242 55.3259 28.8056 55.8971C29.2417 56.0775 29.6358 56.2219 30.0002 56.3345V33.236L7.83398 22.153ZM34.0002 56.3346C34.3645 56.2219 34.7586 56.0775 35.1948 55.8971C36.5762 55.3259 38.2388 54.4555 40.6114 53.2104L45.9447 50.4116C48.8505 48.8867 50.8921 47.8125 52.4175 46.7938C53.9008 45.8032 54.7578 44.9521 55.3504 43.9458C55.9463 42.9339 56.2942 41.7317 56.4773 39.8726C56.6646 37.9717 56.6668 35.5616 56.6668 32.156V31.844C56.6668 28.4384 56.6646 26.0282 56.4773 24.1274C56.4028 23.371 56.301 22.7233 56.1663 22.1529L34.0002 33.236V56.3346Z"})));v.displayName="AppManagerOutlined";var I=v;import d from"react";import P from"classnames";var g=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>d.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:P("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},d.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},d.createElement("path",{d:"M50.1818 22.0597C51.2533 21.7918 52.3392 22.4434 52.6071 23.5149C52.875 24.5865 52.2235 25.6724 51.1519 25.9403L40.4852 28.607C39.4136 28.8749 38.3278 28.2233 38.0599 27.1518C37.792 26.0802 38.4435 24.9943 39.5151 24.7264L50.1818 22.0597Z"}),d.createElement("path",{d:"M50.1818 32.7264C51.2533 32.4585 52.3392 33.11 52.6071 34.1816C52.875 35.2532 52.2235 36.3391 51.1519 36.607L40.4852 39.2736C39.4136 39.5415 38.3278 38.89 38.0599 37.8184C37.792 36.7468 38.4435 35.661 39.5151 35.3931L50.1818 32.7264Z"}),d.createElement("path",{d:"M11.3932 23.5149C11.6611 22.4434 12.747 21.7918 13.8186 22.0597L24.4852 24.7264C25.5568 24.9943 26.2083 26.0802 25.9404 27.1518C25.6726 28.2233 24.5867 28.8749 23.5151 28.607L12.8484 25.9403C11.7768 25.6724 11.1253 24.5865 11.3932 23.5149Z"}),d.createElement("path",{d:"M11.3932 34.1816C11.6611 33.11 12.747 32.4585 13.8186 32.7264L24.4852 35.3931C25.5568 35.661 26.2083 36.7468 25.9404 37.8184C25.6726 38.89 24.5867 39.5415 23.5151 39.2736L12.8484 36.607C11.7768 36.3391 11.1253 35.2532 11.3932 34.1816Z"}),d.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M60.6668 13.1552C60.6668 9.25304 57.5593 5.90654 53.4825 6.04855C50.4469 6.15429 46.479 6.47006 43.4266 7.38388C40.7731 8.17825 37.7885 9.72983 35.4619 11.0763C33.2804 12.3389 30.5646 12.4019 28.3544 11.2332C25.6998 9.8295 22.2073 8.16565 19.1771 7.36606C16.615 6.68995 13.3739 6.36521 10.7426 6.20348C6.58728 5.9481 3.3335 9.32973 3.3335 13.3275V43.0496C3.3335 47.1461 6.65025 50.3444 10.5816 50.5903C13.1383 50.7502 16.0153 51.0577 18.1565 51.6228C20.8034 52.3212 24.0764 53.8742 26.7191 55.2829C30.008 57.036 33.9924 57.036 37.2812 55.2829C39.9239 53.8742 43.197 52.3212 45.8438 51.6228C47.9851 51.0577 50.862 50.7502 53.4187 50.5903C57.3501 50.3444 60.6668 47.1461 60.6668 43.0496V13.1552ZM53.6217 10.0461C55.2611 9.98902 56.6668 11.3376 56.6668 13.1552V43.0496C56.6668 44.8782 55.1513 46.4741 53.169 46.5981C50.5555 46.7616 47.3577 47.0864 44.8232 47.7552C41.7023 48.5787 38.0875 50.3203 35.3996 51.7531C34.9509 51.9922 34.4815 52.1806 34.0002 52.3182V15.8454C35.2063 15.604 36.3791 15.1672 37.4655 14.5384C39.7334 13.2258 42.3865 11.8706 44.5738 11.2158C47.1048 10.4581 50.6381 10.1501 53.6217 10.0461ZM30.0002 15.9333C28.7868 15.7446 27.5975 15.3577 26.4846 14.7693C23.8798 13.3919 20.7222 11.9107 18.1565 11.2337C15.9906 10.6621 13.0732 10.3543 10.4972 10.1959C8.80665 10.092 7.3335 11.4683 7.3335 13.3275V43.0496C7.3335 44.8782 8.84898 46.4741 10.8313 46.5981C13.4449 46.7616 16.6426 47.0864 19.1771 47.7552C22.298 48.5787 25.9129 50.3203 28.6007 51.7531C29.0494 51.9922 29.5188 52.1806 30.0002 52.3182V15.9333Z"})));g.displayName="KnowledgeBaseOutlined";var N=g;import i from"react";import H from"classnames";var w=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>i.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:H("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},i.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},i.createElement("path",{d:"M45.3379 18.6612C42.3002 15.6235 39.1077 12.983 35.8985 10.7899C39.5717 8.92035 43.0498 7.79653 46.0673 7.44837C49.8728 7.00929 52.6846 7.81791 54.4329 9.56622C56.1812 11.3145 56.9898 14.1263 56.5508 17.9319C56.2026 20.9494 55.0788 24.4275 53.2093 28.1007C51.0161 24.8915 48.3756 21.6989 45.3379 18.6612Z"}),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M42.5094 21.4896C45.9051 24.8853 48.7538 28.465 50.9856 31.9986C48.7539 35.532 45.9054 39.1114 42.5099 42.5068C39.1142 45.9026 35.5344 48.7514 32.0006 50.9832C28.4671 48.7515 24.8875 45.9028 21.4919 42.5072C18.0964 39.1116 15.2478 35.5321 13.016 31.9986C15.2478 28.4648 18.0966 24.885 21.4924 21.4892C24.8879 18.0938 28.4673 15.2452 32.0006 13.0135C35.5342 15.2453 39.1138 18.094 42.5094 21.4896ZM32.0002 38.6667C35.6821 38.6667 38.6668 35.6819 38.6668 32C38.6668 28.3181 35.6821 25.3334 32.0002 25.3334C28.3183 25.3334 25.3335 28.3181 25.3335 32C25.3335 35.6819 28.3183 38.6667 32.0002 38.6667Z"}),i.createElement("path",{d:"M35.8986 53.2068C39.1079 51.0136 42.3005 48.3731 45.3384 45.3352C48.3759 42.2977 51.0162 39.1055 53.2092 35.8966C55.0785 39.5696 56.2022 43.0475 56.5503 46.0648C56.9893 49.8702 56.1807 52.6819 54.4324 54.4302C52.6841 56.1784 49.8724 56.9871 46.067 56.548C43.0496 56.1999 39.5716 55.0762 35.8986 53.2068Z"}),i.createElement("path",{d:"M18.6635 45.3356C21.7011 48.3732 24.8935 51.0137 28.1026 53.2068C24.4297 55.076 20.9519 56.1996 17.9346 56.5477C14.1293 56.9867 11.3177 56.178 9.56948 54.4298C7.82125 52.6816 7.01263 49.8699 7.45159 46.0646C7.79965 43.0474 8.92326 39.5695 10.7925 35.8966C12.9855 39.1057 15.6259 42.298 18.6635 45.3356Z"}),i.createElement("path",{d:"M10.7924 28.1006C12.9856 24.8913 15.6262 21.6987 18.664 18.6608C21.7015 15.6233 24.8938 12.983 28.1027 10.7899C24.4297 8.92054 20.9517 7.79683 17.9343 7.44872C14.1289 7.0097 11.3172 7.81832 9.56896 9.56659C7.82067 11.3149 7.01206 14.1266 7.45111 17.9321C7.79923 20.9495 8.92298 24.4276 10.7924 28.1006Z"})));w.displayName="ModelVendorFilled";var F=w;import f from"react";import B from"classnames";var M=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>f.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:B("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},f.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},f.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M55.9834 36.9805C55.9032 45.2855 55.4185 52.9343 52.4854 55.542C48.9707 58.6662 43.3135 58.666 32 58.666C20.6864 58.666 15.0294 58.6661 11.5146 55.542C8.58125 52.9345 8.09587 45.2858 8.01562 36.9805L21.3623 40.9844C21.5656 42.9382 22.8339 44.6421 24.6855 45.3828L26.5527 46.1289C30.0494 47.5276 33.9506 47.5276 37.4473 46.1289L39.3145 45.3828C41.1661 44.6421 42.4344 42.9382 42.6377 40.9844L55.9834 36.9805ZM37.333 33.333C38.0694 33.333 38.667 33.9306 38.667 34.667V40.4307C38.667 40.9759 38.3343 41.4665 37.8281 41.6689L35.9619 42.415C33.4189 43.4323 30.5811 43.4323 28.0381 42.415L26.1719 41.6689C25.6657 41.4665 25.333 40.9759 25.333 40.4307V34.667C25.333 33.9306 25.9306 33.333 26.667 33.333H37.333ZM35.8389 6C36.1414 5.99996 36.3768 6.00019 36.5996 6.01368C39.4274 6.18493 41.9042 7.9692 42.9609 10.5977C43.0442 10.8048 43.1182 11.0293 43.2139 11.3164L43.2217 11.3398C43.444 11.9381 43.9541 12.6186 44.668 13.1621C44.7474 13.2226 44.8274 13.2802 44.9072 13.334C50.651 13.3407 53.6493 13.4465 55.7158 15.1279C56.1397 15.4728 56.5272 15.8603 56.8721 16.2842C58.6666 18.4897 58.667 21.7566 58.667 28.29C58.667 29.9478 58.6666 30.7772 58.2646 31.4238C58.1863 31.5498 58.0972 31.6691 57.999 31.7803C57.4952 32.3511 56.7012 32.59 55.1133 33.0664L42.667 36.7998V34.667C42.667 31.7215 40.2785 29.333 37.333 29.333H26.667C23.7215 29.333 21.333 31.7215 21.333 34.667V36.7998L8.88672 33.0664C7.29884 32.59 6.50482 32.3511 6.00098 31.7803C5.90283 31.6691 5.81367 31.5498 5.73535 31.4238C5.33338 30.7772 5.33301 29.9478 5.33301 28.29C5.33301 21.7566 5.33335 18.4897 7.12793 16.2842C7.47284 15.8603 7.86029 15.4728 8.28418 15.1279C10.3507 13.4465 13.349 13.3407 19.0928 13.334C19.1726 13.2802 19.2525 13.2226 19.332 13.1621C20.0462 12.6185 20.5561 11.938 20.7783 11.3398C20.8795 11.0363 20.9549 10.8094 21.04 10.5977C22.0968 7.9692 24.5736 6.18493 27.4014 6.01368C27.6241 6.00019 27.8596 5.99996 28.1621 6H35.8389ZM27.6426 10.0059C26.3575 10.0839 25.2323 10.8953 24.752 12.0898C24.7212 12.1664 24.6875 12.2633 24.584 12.5732L24.5791 12.5889L24.5732 12.6074L24.5654 12.6299L24.5596 12.6465L24.5498 12.6768L24.5381 12.709L24.5342 12.7227L24.5244 12.749L24.499 12.8135L24.4834 12.8486C24.419 13.0124 24.3484 13.1743 24.2715 13.333H39.7295C39.6525 13.1741 39.581 13.0126 39.5166 12.8486L39.5117 12.8389L39.501 12.8125L39.4883 12.7803L39.4766 12.749L39.4668 12.7227L39.4619 12.709L39.4502 12.6768L39.4404 12.6465L39.4346 12.6299L39.4277 12.6074L39.4219 12.5889L39.417 12.5732C39.312 12.2586 39.2793 12.1653 39.249 12.0898C38.7687 10.8953 37.6435 10.0839 36.3584 10.0059C36.2724 10.0007 36.1665 10 35.7842 10H28.2168C27.8345 10 27.7286 10.0007 27.6426 10.0059Z"})));M.displayName="ToolManagementFilled";var S=M;import u from"react";import O from"classnames";var x=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>u.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:O("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},u.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},u.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28.2171 3.33332L28.1627 3.33332C27.86 3.33327 27.6244 3.33324 27.4015 3.34674C24.5737 3.518 22.0974 5.30277 21.0407 7.93132C20.9574 8.13853 20.8829 8.36212 20.7873 8.64933L20.7701 8.70087L20.7017 8.90614C20.651 9.05805 20.6369 9.09991 20.6246 9.13386C20.1983 10.3124 18.7816 11.296 17.2828 11.334L12.4311 11.5713C10.3345 11.8177 8.53925 12.3422 7.02216 13.5766C6.49226 14.0078 6.00794 14.4921 5.57678 15.022C4.34238 16.5391 3.81785 18.3343 3.5715 20.4309C3.33343 22.457 3.33347 25.0046 3.33351 28.1644L3.33351 28.2905L3.3335 28.3739C3.33342 29.1309 3.33334 29.8408 3.39398 30.4384C3.46108 31.0996 3.61546 31.8019 4.03713 32.4801C4.1742 32.7005 4.32941 32.9091 4.50117 33.1037C4.95213 33.6148 5.47587 33.9443 6.00143 34.188C6.00912 38.4951 6.06365 42.8486 6.45018 46.5771C6.67664 48.7617 7.0242 50.8127 7.57548 52.5615C8.11779 54.2818 8.91859 55.9105 10.1862 57.0373C12.382 58.9891 15.1457 59.8497 18.5956 60.262C21.982 60.6667 26.3225 60.6667 31.8636 60.6667H32.1367C37.6779 60.6667 42.0183 60.6667 45.4048 60.262C48.8547 59.8497 51.6183 58.9891 53.8142 57.0373C55.0818 55.9105 55.8826 54.2818 56.4249 52.5615C56.9761 50.8127 57.3237 48.7617 57.5502 46.5771C57.9367 42.8486 57.9912 38.4951 57.9989 34.188C58.5245 33.9443 59.0482 33.6148 59.4992 33.1037C59.6709 32.9091 59.8261 32.7005 59.9632 32.4801C60.3849 31.8019 60.5393 31.0996 60.6064 30.4384C60.667 29.8408 60.6669 29.131 60.6669 28.3739L60.6668 28.1644C60.6669 25.0046 60.6669 22.457 60.4288 20.4309C60.1825 18.3343 59.658 16.5391 58.4236 15.022C57.9924 14.4921 57.5081 14.0078 56.9782 13.5766C55.4611 12.3422 53.6659 11.8177 51.5693 11.5713L46.7175 11.334C45.2193 11.296 43.8034 10.3128 43.3769 9.1338C43.3647 9.1001 43.3503 9.0573 43.2999 8.90613L43.2143 8.64924C43.1186 8.36205 43.0441 8.13852 42.9608 7.93133C41.9041 5.30278 39.4279 3.518 36.6 3.34674C36.3771 3.33324 36.1415 3.33327 35.8388 3.33332L28.2171 3.33332ZM20.1877 15.3333L20.2906 15.3333H43.7097L43.8127 15.3333C47.0732 15.3334 49.3555 15.3387 51.1025 15.544C52.8241 15.7463 53.7651 16.1191 54.4537 16.6793C54.7716 16.938 55.0622 17.2286 55.3209 17.5465C55.8811 18.235 56.2539 19.176 56.4562 20.8977C56.6636 22.663 56.6668 24.9749 56.6668 28.2905C56.6668 29.1601 56.6645 29.6634 56.6268 30.0346C56.6045 30.2539 56.5764 30.3429 56.5659 30.3686C56.5466 30.3996 56.5247 30.429 56.5005 30.4564C56.4789 30.4739 56.4017 30.5264 56.1981 30.6107C55.8535 30.7535 55.372 30.9004 54.5391 31.1503L40.6668 35.3119V34.6667C40.6668 32.8257 39.1745 31.3333 37.3335 31.3333H26.6668C24.8259 31.3333 23.3335 32.8257 23.3335 34.6667V35.3119L9.46128 31.1503C8.62835 30.9004 8.14689 30.7535 7.80225 30.6107C7.59861 30.5264 7.52141 30.4739 7.4998 30.4564L23.3335 35.3119L7.43444 30.3686C7.42391 30.3429 7.3958 30.2538 7.37355 30.0346C7.33589 29.6634 7.33351 29.1601 7.33351 28.2905C7.33351 24.9749 7.33674 22.663 7.54417 20.8977C7.74647 19.176 8.11926 18.235 8.67947 17.5465C8.93817 17.2286 9.22876 16.938 9.5467 16.6793C10.2352 16.1191 11.1762 15.7463 12.8979 15.544C14.6449 15.3387 16.9271 15.3334 20.1877 15.3333ZM28.2171 7.33332C27.8348 7.33332 27.7293 7.33421 27.6433 7.33942C26.3579 7.41727 25.2324 8.22853 24.7521 9.42333C24.7199 9.50328 24.6857 9.6031 24.5648 9.96578L24.4892 10.1926C24.4491 10.3129 24.4179 10.4065 24.3861 10.4945C24.2809 10.7854 24.1565 11.0652 24.015 11.3333H39.9865C39.845 11.0652 39.7207 10.7854 39.6155 10.4946C39.5837 10.4066 39.5524 10.3129 39.5123 10.1926L39.4367 9.96578C39.3158 9.6031 39.2816 9.50328 39.2495 9.42333C38.7691 8.22853 37.6436 7.41727 36.3582 7.33942C36.2722 7.33421 36.1667 7.33332 35.7844 7.33332H28.2171ZM10.0058 35.4897C10.0239 39.3213 10.101 43.0023 10.4289 46.1647C10.6417 48.2181 10.9532 49.9718 11.3904 51.3588C11.8366 52.7743 12.3538 53.6123 12.8436 54.0476C14.1625 55.22 15.9846 55.9215 19.0702 56.2903C22.1916 56.6633 26.2929 56.6667 32.0002 56.6667C37.7074 56.6667 41.8088 56.6633 44.9301 56.2903C48.0157 55.9215 49.8378 55.22 51.1567 54.0476C51.6465 53.6123 52.1637 52.7743 52.6099 51.3588C53.0472 49.9718 53.3586 48.2181 53.5715 46.1647C53.8993 43.0023 53.9765 39.3213 53.9946 35.4897L40.6668 39.4881V40.4306C40.6668 41.7936 39.837 43.0193 38.5715 43.5255L36.7045 44.2723C33.6846 45.4803 30.3158 45.4803 27.2959 44.2723L25.4289 43.5255C24.1633 43.0193 23.3335 41.7936 23.3335 40.4306V39.4881L10.0058 35.4897ZM27.3335 35.3333V39.9793L28.7815 40.5584C30.8477 41.3849 33.1527 41.3849 35.2189 40.5584L36.6668 39.9793V35.3333H27.3335Z"})));x.displayName="ToolManagementOutlined";var A=x;import r from"react";import $ from"classnames";var k=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>r.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:$("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},r.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"none"},r.createElement("path",{d:"M36.1557 9.03796H36.3709H36.5611L36.755 9.03895L36.9526 9.03999L37.1538 9.04141L37.3585 9.04324L37.5669 9.04549L37.7788 9.04817L37.922 9.0502L38.0667 9.05244L38.2867 9.05619L38.5102 9.06043L38.737 9.06517L38.8901 9.06862L39.1226 9.07422L39.3583 9.08038L39.5974 9.08709L39.7586 9.09188L40.003 9.09956L40.2507 9.10783L40.4175 9.11369L40.5858 9.11983L40.7554 9.12625L40.9265 9.13296L41.0989 9.13996L41.2727 9.14726L41.5358 9.15878L41.713 9.16684L41.9812 9.17953L42.1616 9.18838L42.3434 9.19756L42.6184 9.21195L42.8034 9.22196L42.9896 9.23232L43.1771 9.24302L43.3659 9.25407L43.5559 9.26547L43.7472 9.27724L43.9396 9.28937L44.1333 9.30187L44.3282 9.31474L44.5243 9.32799C51.5656 9.8092 53.4305 14.88 53.6289 15.4867L53.6393 15.5193L53.6474 15.546L56.7042 15.7125C56.8673 15.7125 56.9995 15.8447 56.9995 16.0078C56.9995 16.1247 56.9316 16.2258 56.833 16.2736C53.6954 17.9715 52.7369 21.4213 53.3004 23.6686C53.482 24.3928 53.7642 25.0154 54.0784 25.6734L54.2768 26.0877C55.004 27.6086 55.8205 29.4504 55.9538 33.157C56.2523 41.4543 48.9588 48.9117 40.3287 48.9117L40.2343 48.9117L40.0327 48.912L39.6987 48.913L39.4548 48.9141L39.0573 48.9162L38.7711 48.9181L38.468 48.9202L37.9816 48.9239L37.4572 48.9283L36.8946 48.9334L36.0854 48.9412L35.434 48.9479L34.2637 48.9605L32.9877 48.975L31.606 48.9913L30.7261 49.0021L29.4938 49.0174L27.8582 49.0383L26.1168 49.0611L24.6475 49.0807L22.3167 49.1123L20.6783 49.1349L17.648 49.1773L14.4105 49.2234L11.4705 49.2659L9.94336 49.2882L28.3986 28.3015L28.5658 28.1109L28.7326 27.9212L28.8989 27.7324L29.7217 26.8L29.8843 26.6155L30.0461 26.4316L30.2071 26.2482C30.2338 26.2176 30.2606 26.1871 30.2873 26.1566L30.447 25.9738C30.4735 25.9434 30.5001 25.913 30.5265 25.8826L30.6849 25.7003L30.8424 25.5184C32.6735 23.3972 34.3037 21.3266 35.4619 18.952C36.7476 15.3207 35.4388 12.611 34.1027 10.9692C33.9996 10.8424 33.8962 10.722 33.7939 10.6081C33.3385 10.0251 33.6486 9.05372 34.5159 9.05372C34.5866 9.05372 34.6587 9.05263 34.7322 9.05122L34.9001 9.04785C34.938 9.04712 34.9761 9.04646 35.0147 9.04597L35.1748 9.04405L35.3389 9.04236L35.4505 9.04138L35.7369 9.03942L35.9737 9.03842L36.1557 9.03796Z",fill:"#64698B"}),r.createElement("path",{d:"M28.3981 28.3017C20.4104 37.2905 10.9038 48.2272 7.29525 52.3355C6.6001 53.127 7.27386 53.8743 7.81233 53.9669C34.7346 58.5954 43.2826 45.9083 45.1866 40.1086C47.7917 32.1736 44.1108 28.3017 42.0277 27.039C34.9639 22.7574 29.7229 26.8108 28.3981 28.3017Z",fill:"#8B8FA8"})));k.displayName="YuqueColored";var q=k;import m from"react";import T from"classnames";var Z=({disabled:L,hoverable:o,active:t,size:C,color:e,className:s,style:n,spin:l,...a})=>m.createElement("span",{...a,style:{fontSize:typeof C=="number"?`${C}px`:C,color:e,...n},className:T("dtstack-icon",s,{"dtstack-icon--disabled":L,"dtstack-icon--hoverable":o,"dtstack-icon--active":t,"dtstack-icon--spin":l})},m.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"none"},m.createElement("path",{d:"M36.1557 9.03796H36.3709H36.5611L36.755 9.03895L36.9526 9.03999L37.1538 9.04141L37.3585 9.04324L37.5669 9.04549L37.7788 9.04817L37.922 9.0502L38.0667 9.05244L38.2867 9.05619L38.5102 9.06043L38.737 9.06517L38.8901 9.06862L39.1226 9.07422L39.3583 9.08038L39.5974 9.08709L39.7586 9.09188L40.003 9.09956L40.2507 9.10783L40.4175 9.11369L40.5858 9.11983L40.7554 9.12625L40.9265 9.13296L41.0989 9.13996L41.2727 9.14726L41.5358 9.15878L41.713 9.16684L41.9812 9.17953L42.1616 9.18838L42.3434 9.19756L42.6184 9.21195L42.8034 9.22196L42.9896 9.23232L43.1771 9.24302L43.3659 9.25407L43.5559 9.26547L43.7472 9.27724L43.9396 9.28937L44.1333 9.30187L44.3282 9.31474L44.5243 9.32799C51.5656 9.8092 53.4305 14.88 53.6289 15.4867L53.6393 15.5193L53.6474 15.546L56.7042 15.7125C56.8673 15.7125 56.9995 15.8447 56.9995 16.0078C56.9995 16.1247 56.9316 16.2258 56.833 16.2736C53.6954 17.9715 52.7369 21.4213 53.3004 23.6686C53.482 24.3928 53.7642 25.0154 54.0784 25.6734L54.2768 26.0877C55.004 27.6086 55.8205 29.4504 55.9538 33.157C56.2523 41.4543 48.9588 48.9117 40.3287 48.9117L40.2343 48.9117L40.0327 48.912L39.6987 48.913L39.4548 48.9141L39.0573 48.9162L38.7711 48.9181L38.468 48.9202L37.9816 48.9239L37.4572 48.9283L36.8946 48.9334L36.0854 48.9412L35.434 48.9479L34.2637 48.9605L32.9877 48.975L31.606 48.9913L30.7261 49.0021L29.4938 49.0174L27.8582 49.0383L26.1168 49.0611L24.6475 49.0807L22.3167 49.1123L20.6783 49.1349L17.648 49.1773L14.4105 49.2234L11.4705 49.2659L9.94336 49.2882L28.3986 28.3015L28.5658 28.1109L28.7326 27.9212L28.8989 27.7324L29.7217 26.8L29.8843 26.6155L30.0461 26.4316L30.2071 26.2482C30.2338 26.2176 30.2606 26.1871 30.2873 26.1566L30.447 25.9738C30.4735 25.9434 30.5001 25.913 30.5265 25.8826L30.6849 25.7003L30.8424 25.5184C32.6735 23.3972 34.3037 21.3266 35.4619 18.952C36.7476 15.3207 35.4388 12.611 34.1027 10.9692C33.9996 10.8424 33.8962 10.722 33.7939 10.6081C33.3385 10.0251 33.6486 9.05372 34.5159 9.05372C34.5866 9.05372 34.6587 9.05263 34.7322 9.05122L34.9001 9.04785C34.938 9.04712 34.9761 9.04646 35.0147 9.04597L35.1748 9.04405L35.3389 9.04236L35.4505 9.04138L35.7369 9.03942L35.9737 9.03842L36.1557 9.03796Z",fill:"#335CFF"}),m.createElement("path",{d:"M28.3981 28.3017C20.4104 37.2905 10.9038 48.2272 7.29525 52.3355C6.6001 53.127 7.27386 53.8743 7.81233 53.9669C34.7346 58.5954 43.2826 45.9083 45.1866 40.1086C47.7917 32.1736 44.1108 28.3017 42.0277 27.039C34.9639 22.7574 29.7229 26.8108 28.3981 28.3017Z",fill:"#85A5FF"})));Z.displayName="YuqueSelectedColored";var Y=Z;export{y as AppManagerFilled,I as AppManagerOutlined,N as KnowledgeBaseOutlined,F as ModelVendorFilled,S as ToolManagementFilled,A as ToolManagementOutlined,q as YuqueColored,Y as YuqueSelectedColored};
|
|
1
|
+
import u from"react";import w3 from"classnames";var U=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>u.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:w3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},u.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},u.createElement("path",{d:"M34.0002 24C34.0002 22.8954 33.1047 22 32.0002 22C30.8956 22 30.0002 22.8954 30.0002 24L30.0002 30H24.0002C22.8956 30 22.0002 30.8955 22.0002 32C22.0002 33.1046 22.8956 34 24.0002 34H30.0002V40C30.0002 41.1045 30.8956 42 32.0002 42C33.1047 42 34.0002 41.1045 34.0002 40L34.0002 34H40.0002C41.1047 34 42.0002 33.1046 42.0002 32C42.0002 30.8955 41.1047 30 40.0002 30H34.0002V24Z"}),u.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.1532 3.33331H31.8472C25.6915 3.33328 20.8673 3.33325 17.1034 3.83931C13.2507 4.35728 10.2107 5.43819 7.82453 7.82434C5.43837 10.2105 4.35746 13.2506 3.83949 17.1032C3.33344 20.8671 3.33346 25.6912 3.3335 31.8469V32.153C3.33346 38.3087 3.33344 43.1328 3.83949 46.8968C4.35746 50.7494 5.43837 53.7895 7.82453 56.1756C10.2107 58.5618 13.2507 59.6427 17.1034 60.1607C20.8673 60.6667 25.6914 60.6667 31.8472 60.6666H32.1532C38.3089 60.6667 43.133 60.6667 46.8969 60.1607C50.7496 59.6427 53.7896 58.5618 56.1758 56.1756C58.562 53.7895 59.6429 50.7494 60.1608 46.8968C60.6669 43.1328 60.6669 38.3087 60.6668 32.153V31.847C60.6669 25.6913 60.6669 20.8672 60.1608 17.1032C59.6429 13.2506 58.562 10.2105 56.1758 7.82434C53.7896 5.43819 50.7496 4.35728 46.8969 3.83931C43.133 3.33325 38.3089 3.33328 32.1532 3.33331ZM10.653 10.6528C12.172 9.13369 14.2273 8.26197 17.6364 7.80364C21.103 7.33756 25.6582 7.33332 32.0002 7.33332C38.3421 7.33332 42.8973 7.33756 46.364 7.80364C49.773 8.26197 51.8283 9.13369 53.3474 10.6528C54.8665 12.1719 55.7382 14.2271 56.1965 17.6362C56.6626 21.1028 56.6668 25.658 56.6668 32C56.6668 38.3419 56.6626 42.8972 56.1965 46.3638C55.7382 49.7728 54.8665 51.8281 53.3474 53.3472C51.8283 54.8663 49.773 55.738 46.364 56.1963C42.8973 56.6624 38.3421 56.6666 32.0002 56.6666C25.6582 56.6666 21.103 56.6624 17.6364 56.1963C14.2273 55.738 12.172 54.8663 10.653 53.3472C9.13387 51.8281 8.26216 49.7728 7.80382 46.3638C7.33775 42.8972 7.3335 38.3419 7.3335 32C7.3335 25.658 7.33775 21.1028 7.80382 17.6362C8.26216 14.2271 9.13387 12.1719 10.653 10.6528Z"})));U.displayName="AddNodeOutlined";var g3=U;import c from"react";import k3 from"classnames";var Y=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>c.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:k3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},c.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},c.createElement("path",{d:"M41.5459 47.7121C39.0142 45.3935 35.5804 44.0909 32 44.0909C28.4196 44.0909 24.9858 45.3935 22.4541 47.7121C19.9223 50.0308 18.5 53.1755 18.5 56.4545V58H45.5V56.4545C45.5 53.1755 44.0777 50.0308 41.5459 47.7121Z"}),c.createElement("path",{d:"M7.25 18.5909C7.79786 18.5908 8.32693 18.7838 8.73795 19.1336C9.14898 19.4834 9.41371 19.9661 9.4825 20.4909L9.5 20.7638V28.0066C9.50062 28.5596 9.28286 29.0921 8.89109 29.4954C8.49933 29.8988 7.96305 30.1427 7.39152 30.1775C6.82 30.2123 6.25624 30.0353 5.81514 29.6826C5.37404 29.33 5.08878 28.8281 5.0175 28.2794L5 28.0066V20.7638C5 20.1875 5.23705 19.6348 5.65901 19.2273C6.08097 18.8198 6.65326 18.5909 7.25 18.5909Z"}),c.createElement("path",{d:"M56.75 18.5909C57.2979 18.5908 57.8269 18.7838 58.238 19.1336C58.649 19.4834 58.9137 19.9661 58.9825 20.4909L59 20.7638V28.0066C59.0006 28.5596 58.7829 29.0921 58.3911 29.4954C57.9993 29.8988 57.463 30.1427 56.8915 30.1775C56.32 30.2123 55.7562 30.0353 55.3151 29.6826C54.874 29.33 54.5888 28.8281 54.5175 28.2794L54.5 28.0066V20.7638C54.5 20.1875 54.7371 19.6348 55.159 19.2273C55.581 18.8198 56.1533 18.5909 56.75 18.5909Z"}),c.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M47.9873 7C49.1178 7.00013 50.2026 7.48894 51.002 8.35831C51.8012 9.22775 52.25 10.407 52.25 11.6364V34.8182C52.25 36.0476 51.8012 37.2268 51.002 38.0962C50.2026 38.9656 49.1178 39.4544 47.9873 39.4545H16.0127C14.8822 39.4544 13.7974 38.9656 12.998 38.0962C12.1988 37.2268 11.75 36.0476 11.75 34.8182V11.6364C11.75 10.407 12.1988 9.22775 12.998 8.35831C13.7974 7.48894 14.8822 7.00013 16.0127 7H47.9873ZM24.4392 18.1268C23.8666 18.127 23.317 18.3497 22.9121 18.7449C22.5074 19.14 22.2794 19.6758 22.2793 20.2345V24.9184L22.2969 25.1832C22.3653 25.7151 22.6386 26.2017 23.0615 26.5438C23.4849 26.8859 24.0268 27.0574 24.5754 27.0237C25.124 26.99 25.6386 26.7539 26.0146 26.3627C26.3907 25.9714 26.5997 25.4548 26.5991 24.9184V20.2345L26.5837 19.9696C26.5176 19.4606 26.2619 18.9935 25.8674 18.6543C25.4729 18.315 24.9651 18.1268 24.4392 18.1268ZM39.5608 18.1268C38.9879 18.1268 38.4366 18.3496 38.0315 18.7449C37.6269 19.14 37.401 19.6759 37.4009 20.2345V24.9184L37.4163 25.1832C37.4847 25.7155 37.7596 26.2017 38.1831 26.5438C38.6064 26.8857 39.1464 27.0573 39.6948 27.0237C40.2435 26.99 40.7601 26.754 41.1362 26.3627C41.5119 25.9715 41.7213 25.4545 41.7207 24.9184V20.2345L41.7031 19.9696C41.637 19.461 41.383 18.9934 40.989 18.6543C40.5947 18.3152 40.0864 18.127 39.5608 18.1268Z"})));Y.displayName="AgentFilled";var x3=Y;import m from"react";import M3 from"classnames";var E=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>m.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:M3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},m.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},m.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.3335 17.691C5.3335 10.8661 10.8662 5.33331 17.6912 5.33331C24.5162 5.33331 30.0489 10.8661 30.0489 17.691C30.0489 24.516 24.5162 30.0488 17.6912 30.0488C10.8662 30.0488 5.3335 24.516 5.3335 17.691Z"}),m.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M33.9514 46.3089C33.9514 39.4839 39.4841 33.9512 46.3091 33.9512C53.1341 33.9512 58.6668 39.4839 58.6668 46.3089C58.6668 53.1339 53.1341 58.6666 46.3091 58.6666C39.4841 58.6666 33.9514 53.1339 33.9514 46.3089Z"}),m.createElement("path",{d:"M5.3335 46.6666C5.3335 41.0098 5.3335 38.1814 7.09086 36.424C8.84821 34.6666 11.6766 34.6666 17.3335 34.6666C22.9903 34.6666 25.8188 34.6666 27.5761 36.424C29.3335 38.1814 29.3335 41.0098 29.3335 46.6666C29.3335 52.3235 29.3335 55.1519 27.5761 56.9093C25.8188 58.6666 22.9903 58.6666 17.3335 58.6666C11.6766 58.6666 8.84821 58.6666 7.09086 56.9093C5.3335 55.1519 5.3335 52.3235 5.3335 46.6666Z"}),m.createElement("path",{d:"M34.6668 17.3333C34.6668 11.6765 34.6668 8.84803 36.4242 7.09067C38.1815 5.33331 41.01 5.33331 46.6668 5.33331C52.3237 5.33331 55.1521 5.33331 56.9095 7.09067C58.6668 8.84803 58.6668 11.6765 58.6668 17.3333C58.6668 22.9902 58.6668 25.8186 56.9095 27.576C55.1521 29.3333 52.3237 29.3333 46.6668 29.3333C41.01 29.3333 38.1815 29.3333 36.4242 27.576C34.6668 25.8186 34.6668 22.9902 34.6668 17.3333Z"})));E.displayName="AllCategoriesFilled";var Z3=E;import L from"react";import V3 from"classnames";var W=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>L.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:V3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},L.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},L.createElement("path",{d:"M46.8741 11.8174L41.5407 9.01856C36.8591 6.56173 34.5182 5.33331 32.0002 5.33331C29.4821 5.33331 27.1413 6.56173 22.4596 9.01855L17.1263 11.8174C12.3963 14.2996 9.6159 15.7586 7.89268 17.7102L32.0002 29.7639L56.1076 17.7102C54.3844 15.7586 51.604 14.2996 46.8741 11.8174Z"}),L.createElement("path",{d:"M57.9958 21.2382L34.0002 33.236V58.4107C35.9146 57.9339 38.0929 56.7908 41.5407 54.9814L46.8741 52.1826C52.6118 49.1716 55.4807 47.666 57.0738 44.9607C58.6668 42.2553 58.6668 38.8889 58.6668 32.156V31.844C58.6668 26.7969 58.6668 23.6415 57.9958 21.2382Z"}),L.createElement("path",{d:"M30.0002 58.4107V33.236L6.00453 21.2382C5.3335 23.6415 5.3335 26.7969 5.3335 31.844V32.156C5.3335 38.8889 5.3335 42.2553 6.92655 44.9607C8.51961 47.666 11.3885 49.1716 17.1263 52.1826L22.4596 54.9814C25.9075 56.7908 28.0857 57.9339 30.0002 58.4107Z"})));W.displayName="AppManagerFilled";var b3=W;import H from"react";import H3 from"classnames";var j=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>H.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:H3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},H.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},H.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.0002 3.33331C30.3876 3.33331 28.9027 3.73408 27.2769 4.40644C25.707 5.05567 23.8837 6.01254 21.6132 7.20405L16.0999 10.0973C13.3133 11.5596 11.0833 12.7299 9.36142 13.8797C7.5776 15.071 6.20368 16.3253 5.20315 18.0245C4.20598 19.7179 3.75738 21.5516 3.54226 23.7352C3.33346 25.8549 3.33347 28.4617 3.3335 31.7401V32.2598C3.33347 35.5382 3.33346 38.1451 3.54226 40.2647C3.75738 42.4484 4.20598 44.2821 5.20315 45.9755C6.20368 47.6746 7.5776 48.9289 9.36142 50.1202C11.0832 51.27 13.313 52.4402 16.0994 53.9024L21.6131 56.7958C23.8836 57.9874 25.707 58.9443 27.2769 59.5935C28.9027 60.2659 30.3876 60.6666 32.0002 60.6666C33.6128 60.6666 35.0976 60.2659 36.7234 59.5935C38.2933 58.9443 40.1166 57.9874 42.387 56.7959L47.9004 53.9027C50.687 52.4403 52.9171 51.2701 54.6389 50.1202C56.4227 48.9289 57.7966 47.6746 58.7972 45.9755C59.7943 44.2821 60.2429 42.4484 60.4581 40.2647C60.6669 38.1451 60.6669 35.5383 60.6668 32.2599V31.7401C60.6669 28.4617 60.6669 25.8548 60.4581 23.7352C60.2429 21.5516 59.7943 19.7179 58.7972 18.0245C57.7966 16.3253 56.4227 15.071 54.6389 13.8797C52.9171 12.7299 50.687 11.5596 47.9004 10.0973L42.3872 7.20408C40.1167 6.01256 38.2933 5.05568 36.7234 4.40644C35.0976 3.73408 33.6128 3.33331 32.0002 3.33331ZM23.389 10.7895C25.7615 9.54444 27.4242 8.6741 28.8056 8.10281C30.1501 7.54676 31.0947 7.33331 32.0002 7.33331C32.9056 7.33331 33.8502 7.54676 35.1948 8.10281C36.5762 8.6741 38.2388 9.54444 40.6114 10.7895L45.9447 13.5883C48.8505 15.1132 50.8921 16.1875 52.4175 17.2062C53.17 17.7087 53.7613 18.1754 54.2387 18.6446L32.0002 29.7639L9.7616 18.6446C10.239 18.1754 10.8303 17.7087 11.5829 17.2062C13.1082 16.1875 15.1498 15.1132 18.0556 13.5883L23.389 10.7895ZM7.83398 22.153C7.69931 22.7233 7.59751 23.371 7.523 24.1274C7.33574 26.0282 7.3335 28.4384 7.3335 31.844V32.156C7.3335 35.5616 7.33574 37.9717 7.523 39.8726C7.70614 41.7317 8.05408 42.9339 8.64996 43.9458C9.24249 44.9521 10.0995 45.8032 11.5829 46.7938C13.1082 47.8125 15.1498 48.8867 18.0556 50.4116L23.389 53.2104C25.7615 54.4555 27.4242 55.3259 28.8056 55.8971C29.2417 56.0775 29.6358 56.2219 30.0002 56.3345V33.236L7.83398 22.153ZM34.0002 56.3346C34.3645 56.2219 34.7586 56.0775 35.1948 55.8971C36.5762 55.3259 38.2388 54.4555 40.6114 53.2104L45.9447 50.4116C48.8505 48.8867 50.8921 47.8125 52.4175 46.7938C53.9008 45.8032 54.7578 44.9521 55.3504 43.9458C55.9463 42.9339 56.2942 41.7317 56.4773 39.8726C56.6646 37.9717 56.6668 35.5616 56.6668 32.156V31.844C56.6668 28.4384 56.6646 26.0282 56.4773 24.1274C56.4028 23.371 56.301 22.7233 56.1663 22.1529L34.0002 33.236V56.3346Z"})));j.displayName="AppManagerOutlined";var y3=j;import y from"react";import P3 from"classnames";var D=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>y.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:P3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},y.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},y.createElement("path",{d:"M50.668 5.33398C52.1407 5.33399 53.3349 6.52732 53.335 8V49.334H16.001V53.334H53.335V56C53.335 57.4728 52.1408 58.667 50.668 58.667H13.335C11.8622 58.667 10.668 57.4728 10.668 56V8C10.6681 6.52731 11.8623 5.33398 13.335 5.33398H50.668ZM34.668 29.333L41.335 24L48.001 29.333V10.667H34.668V29.333Z"})));D.displayName="CommonknowledgebaseFilled";var N3=D;import P from"react";import I3 from"classnames";var G=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>P.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:I3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},P.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},P.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.6665 21.3333C16.6665 12.865 23.5315 6 31.9998 6C40.4682 6 47.3332 12.865 47.3332 21.3333V29.3333C47.3332 37.8017 40.4682 44.6667 31.9998 44.6667C23.5315 44.6667 16.6665 37.8017 16.6665 29.3333V21.3333ZM31.9998 10C25.7406 10 20.6665 15.0741 20.6665 21.3333V29.3333C20.6665 35.5926 25.7406 40.6667 31.9998 40.6667C38.2591 40.6667 43.3332 35.5926 43.3332 29.3333V21.3333C43.3332 15.0741 38.2591 10 31.9998 10ZM27.3332 21.3333C27.3332 20.2288 28.2286 19.3333 29.3332 19.3333H34.6665C35.7711 19.3333 36.6665 20.2288 36.6665 21.3333C36.6665 22.4379 35.7711 23.3333 34.6665 23.3333H29.3332C28.2286 23.3333 27.3332 22.4379 27.3332 21.3333ZM10.6665 24.6667C11.7711 24.6667 12.6665 25.5621 12.6665 26.6667V29.3333C12.6665 40.0108 21.3223 48.6667 31.9998 48.6667C42.6773 48.6667 51.3332 40.0108 51.3332 29.3333V26.6667C51.3332 25.5621 52.2286 24.6667 53.3332 24.6667C54.4377 24.6667 55.3332 25.5621 55.3332 26.6667V29.3333C55.3332 41.5463 45.9502 51.5677 33.9998 52.5822V58.6667C33.9998 59.7712 33.1044 60.6667 31.9998 60.6667C30.8953 60.6667 29.9998 59.7712 29.9998 58.6667V52.5822C18.0494 51.5677 8.6665 41.5463 8.6665 29.3333V26.6667C8.6665 25.5621 9.56193 24.6667 10.6665 24.6667ZM24.6665 29.3333C24.6665 28.2288 25.5619 27.3333 26.6665 27.3333H37.3332C38.4377 27.3333 39.3332 28.2288 39.3332 29.3333C39.3332 30.4379 38.4377 31.3333 37.3332 31.3333H26.6665C25.5619 31.3333 24.6665 30.4379 24.6665 29.3333Z"})));G.displayName="ConversationConfigurationOutlined";var F3=G;import N from"react";import O3 from"classnames";var J=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>N.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:O3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},N.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},N.createElement("path",{d:"M32.9879 42.2271L50.1338 24.5458C51.2036 23.4425 50.5551 21.3333 49.146 21.3333H14.8543C13.4452 21.3333 12.7967 23.4425 13.8666 24.5458L31.0124 42.2271C31.5808 42.8132 32.4195 42.8132 32.9879 42.2271Z"})));J.displayName="ExpandFilled";var S3=J;import h from"react";import B3 from"classnames";var Q=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>h.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:B3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},h.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},h.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M37.3335 58.6667H26.6668C16.6102 58.6667 11.5819 58.6667 8.45769 55.5425C5.3335 52.4183 5.3335 47.39 5.3335 37.3333V26.6667C5.3335 16.61 5.3335 11.5817 8.45769 8.45754C11.5819 5.33334 16.6367 5.33334 26.7463 5.33334C28.3623 5.33334 29.6572 5.33334 30.7468 5.37777C30.711 5.59092 30.6922 5.80835 30.6914 6.02819L30.6668 13.5866C30.6666 16.5122 30.6664 19.0977 30.9466 21.1818C31.2503 23.4407 31.9476 25.6994 33.791 27.5428C35.6344 29.3862 37.893 30.0835 40.152 30.3872C42.2361 30.6674 44.8216 30.6672 47.7472 30.667L48.0002 30.667H58.5533C58.6668 32.0917 58.6668 33.8403 58.6668 36.1677V37.3333C58.6668 47.39 58.6668 52.4183 55.5426 55.5425C52.4184 58.6667 47.3901 58.6667 37.3335 58.6667ZM14.0002 38.6667C14.0002 37.5621 14.8956 36.6667 16.0002 36.6667H37.3335C38.4381 36.6667 39.3335 37.5621 39.3335 38.6667C39.3335 39.7712 38.4381 40.6667 37.3335 40.6667H16.0002C14.8956 40.6667 14.0002 39.7712 14.0002 38.6667ZM14.0002 48C14.0002 46.8954 14.8956 46 16.0002 46H30.6668C31.7714 46 32.6668 46.8954 32.6668 48C32.6668 49.1046 31.7714 50 30.6668 50H16.0002C14.8956 50 14.0002 49.1046 14.0002 48Z"}),h.createElement("path",{d:"M51.6047 20.3111L41.048 10.81C38.0404 8.10316 36.5366 6.74973 34.6914 6.04168L34.6668 13.3336C34.6668 19.619 34.6668 22.7617 36.6194 24.7143C38.5721 26.667 41.7148 26.667 48.0002 26.667H57.5471C56.5802 24.789 54.8492 23.2311 51.6047 20.3111Z"})));Q.displayName="FileListFilled";var $3=Q;import f from"react";import A3 from"classnames";var X=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>f.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:A3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},f.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},f.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.0002 38.6667C14.0002 37.5621 14.8956 36.6667 16.0002 36.6667H37.3335C38.4381 36.6667 39.3335 37.5621 39.3335 38.6667C39.3335 39.7712 38.4381 40.6667 37.3335 40.6667H16.0002C14.8956 40.6667 14.0002 39.7712 14.0002 38.6667Z"}),f.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.0002 48C14.0002 46.8954 14.8956 46 16.0002 46H30.6668C31.7714 46 32.6668 46.8954 32.6668 48C32.6668 49.1046 31.7714 50 30.6668 50H16.0002C14.8956 50 14.0002 49.1046 14.0002 48Z"}),f.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.6668 7.55777C31.4391 7.34914 29.7654 7.33333 26.7463 7.33333C21.6351 7.33333 18.0022 7.33754 15.2478 7.70617C12.5494 8.06732 10.9989 8.74473 9.87191 9.87173C8.74335 11.0003 8.0669 12.546 7.70619 15.2289C7.33775 17.9694 7.3335 21.5818 7.3335 26.6667V37.3333C7.3335 42.4182 7.33775 46.0306 7.70619 48.7711C8.0669 51.454 8.74335 52.9997 9.87191 54.1282C11.0005 55.2568 12.5462 55.9333 15.2291 56.294C17.9695 56.6624 21.582 56.6667 26.6668 56.6667H37.3335C42.4184 56.6667 46.0308 56.6624 48.7712 56.294C51.4541 55.9333 52.9999 55.2568 54.1284 54.1282C55.257 52.9997 55.9334 51.454 56.2941 48.7711C56.6626 46.0306 56.6668 42.4182 56.6668 37.3333V36.1677C56.6668 32.0717 56.6381 30.13 56.2033 28.6667H47.857C44.8361 28.6667 42.3675 28.6668 40.4185 28.4047C38.3813 28.1309 36.6151 27.5381 35.2052 26.1283C33.7954 24.7184 33.2026 22.9522 32.9287 20.915C32.6667 18.966 32.6668 16.4974 32.6668 13.4765V7.55777ZM36.6668 9.62519V13.3333C36.6668 16.5326 36.6711 18.7308 36.8931 20.382C37.1073 21.9756 37.4909 22.757 38.0337 23.2998C38.5764 23.8426 39.3579 24.2262 40.9515 24.4404C42.6027 24.6624 44.8009 24.6667 48.0002 24.6667H53.3854C52.5949 23.8999 51.5821 22.9811 50.2668 21.7974L39.7101 12.2963C38.4157 11.1314 37.4524 10.2715 36.6668 9.62519ZM27.1347 3.33326C30.827 3.33227 33.2124 3.33163 35.408 4.17413C37.6035 5.01663 39.3686 6.60611 42.0996 9.06533C42.1939 9.15022 42.2893 9.23616 42.3859 9.32313L52.9427 18.8242C53.0551 18.9253 53.1661 19.0252 53.2758 19.1238C56.4322 21.9629 58.4733 23.7987 59.5712 26.2639C60.6691 28.7291 60.6682 31.4743 60.6669 35.7196C60.6669 35.8672 60.6668 36.0165 60.6668 36.1677V37.4838C60.6669 42.3845 60.6669 46.2661 60.2585 49.3041C59.8381 52.4305 58.9525 54.961 56.9568 56.9567C54.9612 58.9523 52.4307 59.838 49.3042 60.2583C46.2663 60.6667 42.3846 60.6667 37.4839 60.6667H26.5164C21.6157 60.6667 17.734 60.6667 14.6961 60.2583C11.5696 59.838 9.03911 58.9523 7.04348 56.9567C5.04784 54.961 4.1622 52.4305 3.74186 49.3041C3.33342 46.2662 3.33345 42.3845 3.3335 37.4838V26.5162C3.33345 21.6155 3.33342 17.7338 3.74186 14.6959C4.1622 11.5695 5.04784 9.03894 7.04348 7.04331C9.04067 5.04611 11.5797 4.16143 14.7172 3.74153C17.7677 3.33325 21.6687 3.33328 26.5962 3.33333L26.7463 3.33333C26.8774 3.33333 27.0068 3.33329 27.1347 3.33326Z"})));X.displayName="FileListOutlined";var T3=X;import w from"react";import q3 from"classnames";var _=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>w.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:q3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},w.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},w.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.3335 43.0495V13.3275C5.3335 10.399 7.69696 8.02004 10.6199 8.19968C13.2236 8.3597 16.3028 8.67601 18.6668 9.29983C21.4647 10.0381 24.7898 11.6107 27.4195 13.0012C28.2385 13.4342 29.1093 13.7346 30.0006 13.9039V54.3803C29.1926 54.2022 28.4043 53.9148 27.6599 53.518C24.9947 52.0972 21.5507 50.4499 18.6668 49.6889C16.3289 49.072 13.2916 48.7558 10.7065 48.5942C7.74962 48.4092 5.3335 46.0121 5.3335 43.0495ZM13.819 22.0597C12.7475 21.7918 11.6616 22.4433 11.3937 23.5149C11.1258 24.5865 11.7773 25.6724 12.8489 25.9403L23.5156 28.6069C24.5872 28.8748 25.673 28.2233 25.9409 27.1517C26.2088 26.0801 25.5573 24.9943 24.4857 24.7264L13.819 22.0597ZM13.819 32.7264C12.7475 32.4585 11.6616 33.11 11.3937 34.1816C11.1258 35.2532 11.7773 36.339 12.8489 36.6069L23.5156 39.2736C24.5872 39.5415 25.673 38.89 25.9409 37.8184C26.2088 36.7468 25.5573 35.6609 24.4857 35.393L13.819 32.7264Z"}),w.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M34.0006 54.3801C34.8083 54.202 35.5963 53.9146 36.3404 53.518C39.0057 52.0972 42.4496 50.4499 45.3335 49.6889C47.6714 49.072 50.7087 48.7558 53.2939 48.5942C56.2507 48.4092 58.6668 46.0121 58.6668 43.0495V13.1552C58.6668 10.2953 56.4102 7.94775 53.5521 8.0473C50.5425 8.15214 46.7919 8.46405 44.0002 9.29983C41.5798 10.0244 38.761 11.4778 36.4637 12.8073C35.6866 13.2571 34.856 13.5875 34.0006 13.797V54.3801ZM51.1524 25.9403C52.224 25.6724 52.8755 24.5865 52.6076 23.5149C52.3397 22.4433 51.2538 21.7918 50.1822 22.0597L39.5156 24.7264C38.444 24.9943 37.7925 26.0801 38.0603 27.1517C38.3282 28.2233 39.4141 28.8748 40.4857 28.6069L51.1524 25.9403ZM51.1524 36.6069C52.224 36.339 52.8755 35.2532 52.6076 34.1816C52.3397 33.11 51.2538 32.4585 50.1822 32.7264L39.5156 35.393C38.444 35.6609 37.7925 36.7468 38.0603 37.8184C38.3282 38.89 39.4141 39.5415 40.4857 39.2736L51.1524 36.6069Z"})));_.displayName="KnowledgeBaseFilled";var K3=_;import r from"react";import U3 from"classnames";var R=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>r.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:U3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},r.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},r.createElement("path",{d:"M50.1818 22.0597C51.2533 21.7918 52.3392 22.4434 52.6071 23.5149C52.875 24.5865 52.2235 25.6724 51.1519 25.9403L40.4852 28.607C39.4136 28.8749 38.3278 28.2233 38.0599 27.1518C37.792 26.0802 38.4435 24.9943 39.5151 24.7264L50.1818 22.0597Z"}),r.createElement("path",{d:"M50.1818 32.7264C51.2533 32.4585 52.3392 33.11 52.6071 34.1816C52.875 35.2532 52.2235 36.3391 51.1519 36.607L40.4852 39.2736C39.4136 39.5415 38.3278 38.89 38.0599 37.8184C37.792 36.7468 38.4435 35.661 39.5151 35.3931L50.1818 32.7264Z"}),r.createElement("path",{d:"M11.3932 23.5149C11.6611 22.4434 12.747 21.7918 13.8186 22.0597L24.4852 24.7264C25.5568 24.9943 26.2083 26.0802 25.9404 27.1518C25.6726 28.2233 24.5867 28.8749 23.5151 28.607L12.8484 25.9403C11.7768 25.6724 11.1253 24.5865 11.3932 23.5149Z"}),r.createElement("path",{d:"M11.3932 34.1816C11.6611 33.11 12.747 32.4585 13.8186 32.7264L24.4852 35.3931C25.5568 35.661 26.2083 36.7468 25.9404 37.8184C25.6726 38.89 24.5867 39.5415 23.5151 39.2736L12.8484 36.607C11.7768 36.3391 11.1253 35.2532 11.3932 34.1816Z"}),r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M60.6668 13.1552C60.6668 9.25304 57.5593 5.90654 53.4825 6.04855C50.4469 6.15429 46.479 6.47006 43.4266 7.38388C40.7731 8.17825 37.7885 9.72983 35.4619 11.0763C33.2804 12.3389 30.5646 12.4019 28.3544 11.2332C25.6998 9.8295 22.2073 8.16565 19.1771 7.36606C16.615 6.68995 13.3739 6.36521 10.7426 6.20348C6.58728 5.9481 3.3335 9.32973 3.3335 13.3275V43.0496C3.3335 47.1461 6.65025 50.3444 10.5816 50.5903C13.1383 50.7502 16.0153 51.0577 18.1565 51.6228C20.8034 52.3212 24.0764 53.8742 26.7191 55.2829C30.008 57.036 33.9924 57.036 37.2812 55.2829C39.9239 53.8742 43.197 52.3212 45.8438 51.6228C47.9851 51.0577 50.862 50.7502 53.4187 50.5903C57.3501 50.3444 60.6668 47.1461 60.6668 43.0496V13.1552ZM53.6217 10.0461C55.2611 9.98902 56.6668 11.3376 56.6668 13.1552V43.0496C56.6668 44.8782 55.1513 46.4741 53.169 46.5981C50.5555 46.7616 47.3577 47.0864 44.8232 47.7552C41.7023 48.5787 38.0875 50.3203 35.3996 51.7531C34.9509 51.9922 34.4815 52.1806 34.0002 52.3182V15.8454C35.2063 15.604 36.3791 15.1672 37.4655 14.5384C39.7334 13.2258 42.3865 11.8706 44.5738 11.2158C47.1048 10.4581 50.6382 10.1501 53.6217 10.0461ZM30.0002 15.9333C28.7868 15.7446 27.5975 15.3577 26.4846 14.7693C23.8798 13.3919 20.7222 11.9107 18.1565 11.2337C15.9906 10.6621 13.0732 10.3543 10.4972 10.1959C8.80665 10.092 7.3335 11.4683 7.3335 13.3275V43.0496C7.3335 44.8782 8.84898 46.4741 10.8313 46.5981C13.4449 46.7616 16.6426 47.0864 19.1771 47.7552C22.298 48.5787 25.9129 50.3203 28.6007 51.7531C29.0494 51.9922 29.5188 52.1806 30.0002 52.3182V15.9333Z"})));R.displayName="KnowledgeBaseOutlined";var Y3=R;import g from"react";import E3 from"classnames";var z=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>g.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:E3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},g.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},g.createElement("path",{d:"M25.3333 5.33334C23.1242 5.33334 21.3333 7.1242 21.3333 9.33334V12C21.3333 14.2091 23.1242 16 25.3333 16H38.6667C40.8758 16 42.6667 14.2091 42.6667 12V9.33334C42.6667 7.1242 40.8758 5.33334 38.6667 5.33334H25.3333Z"}),g.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3333 10.7643C13.9789 10.9525 11.8613 11.487 10.3431 13.0052C8 15.3483 8 19.1196 8 26.662V42.662C8 50.2045 8 53.9758 10.3431 56.3189C12.6863 58.662 16.4575 58.662 24 58.662H40C47.5425 58.662 51.3137 58.662 53.6569 56.3189C56 53.9758 56 50.2045 56 42.662V26.662C56 19.1196 56 15.3483 53.6569 13.0052C52.1387 11.487 50.0211 10.9525 46.6667 10.7643V12C46.6667 16.4183 43.0849 20 38.6667 20H25.3333C20.9151 20 17.3333 16.4183 17.3333 12V10.7643ZM18.6667 26C17.5621 26 16.6667 26.8954 16.6667 28C16.6667 29.1046 17.5621 30 18.6667 30H20C21.1046 30 22 29.1046 22 28C22 26.8954 21.1046 26 20 26H18.6667ZM28 26C26.8954 26 26 26.8954 26 28C26 29.1046 26.8954 30 28 30H45.3333C46.4379 30 47.3333 29.1046 47.3333 28C47.3333 26.8954 46.4379 26 45.3333 26H28ZM18.6667 35.3333C17.5621 35.3333 16.6667 36.2288 16.6667 37.3333C16.6667 38.4379 17.5621 39.3333 18.6667 39.3333H20C21.1046 39.3333 22 38.4379 22 37.3333C22 36.2288 21.1046 35.3333 20 35.3333H18.6667ZM28 35.3333C26.8954 35.3333 26 36.2288 26 37.3333C26 38.4379 26.8954 39.3333 28 39.3333H45.3333C46.4379 39.3333 47.3333 38.4379 47.3333 37.3333C47.3333 36.2288 46.4379 35.3333 45.3333 35.3333H28ZM18.6667 44.6667C17.5621 44.6667 16.6667 45.5621 16.6667 46.6667C16.6667 47.7712 17.5621 48.6667 18.6667 48.6667H20C21.1046 48.6667 22 47.7712 22 46.6667C22 45.5621 21.1046 44.6667 20 44.6667H18.6667ZM28 44.6667C26.8954 44.6667 26 45.5621 26 46.6667C26 47.7712 26.8954 48.6667 28 48.6667H45.3333C46.4379 48.6667 47.3333 47.7712 47.3333 46.6667C47.3333 45.5621 46.4379 44.6667 45.3333 44.6667H28Z"})));z.displayName="LogFilled";var W3=z;import I from"react";import j3 from"classnames";var C3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>I.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:j3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},I.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},I.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.3669 8.69453C19.6858 5.68115 22.2354 3.33331 25.3333 3.33331H38.6667C41.7646 3.33331 44.3142 5.68115 44.6331 8.69453C46.6679 8.73595 48.4274 8.84121 49.9297 9.11717C51.9511 9.48846 53.6713 10.1958 55.0711 11.5956C56.6762 13.2007 57.3666 15.2217 57.6893 17.622C58.0001 19.9339 58.0001 22.8734 58 26.5203V42.813C58.0001 46.4599 58.0001 49.3994 57.6893 51.7113C57.3666 54.1116 56.6762 56.1326 55.0711 57.7377C53.466 59.3428 51.445 60.0332 49.0447 60.3559C46.7328 60.6667 43.7932 60.6667 40.1463 60.6666H23.8537C20.2068 60.6667 17.2672 60.6667 14.9553 60.3559C12.555 60.0332 10.534 59.3428 8.92894 57.7377C7.32382 56.1326 6.63344 54.1116 6.31073 51.7113C5.9999 49.3994 5.99995 46.4599 6 42.813V26.5203C5.99995 22.8734 5.9999 19.9339 6.31073 17.622C6.63344 15.2217 7.32382 13.2007 8.92894 11.5956C10.3287 10.1958 12.0489 9.48846 14.0703 9.11717C15.5726 8.84121 17.3321 8.73595 19.3669 8.69453ZM19.3732 12.6956C17.4581 12.7365 15.9823 12.8329 14.7929 13.0513C13.2814 13.329 12.4066 13.7748 11.7574 14.424C11.0193 15.162 10.5381 16.1982 10.2751 18.155C10.0043 20.1692 10 22.8389 10 26.6666V42.6666C10 46.4944 10.0043 49.1641 10.2751 51.1783C10.5381 53.1351 11.0193 54.1713 11.7574 54.9093C12.4954 55.6473 13.5316 56.1285 15.4883 56.3916C17.5026 56.6624 20.1722 56.6666 24 56.6666H40C43.8278 56.6666 46.4974 56.6624 48.5117 56.3916C50.4684 56.1285 51.5046 55.6473 52.2426 54.9093C52.9807 54.1713 53.4619 53.1351 53.7249 51.1783C53.9958 49.1641 54 46.4944 54 42.6666V26.6666C54 22.8389 53.9958 20.1692 53.7249 18.155C53.4619 16.1982 52.9807 15.162 52.2426 14.424C51.5934 13.7748 50.7186 13.329 49.2071 13.0513C48.0177 12.8329 46.5419 12.7365 44.6268 12.6956C44.282 15.6816 41.7451 18 38.6667 18H25.3333C22.2549 18 19.718 15.6816 19.3732 12.6956ZM25.3333 7.33331C24.2288 7.33331 23.3333 8.22874 23.3333 9.33331V12C23.3333 13.1045 24.2288 14 25.3333 14H38.6667C39.7712 14 40.6667 13.1045 40.6667 12V9.33331C40.6667 8.22874 39.7712 7.33331 38.6667 7.33331H25.3333ZM16.6667 28C16.6667 26.8954 17.5621 26 18.6667 26H20C21.1046 26 22 26.8954 22 28C22 29.1045 21.1046 30 20 30H18.6667C17.5621 30 16.6667 29.1045 16.6667 28ZM26 28C26 26.8954 26.8954 26 28 26H45.3333C46.4379 26 47.3333 26.8954 47.3333 28C47.3333 29.1045 46.4379 30 45.3333 30H28C26.8954 30 26 29.1045 26 28ZM16.6667 37.3333C16.6667 36.2287 17.5621 35.3333 18.6667 35.3333H20C21.1046 35.3333 22 36.2287 22 37.3333C22 38.4379 21.1046 39.3333 20 39.3333H18.6667C17.5621 39.3333 16.6667 38.4379 16.6667 37.3333ZM26 37.3333C26 36.2287 26.8954 35.3333 28 35.3333H45.3333C46.4379 35.3333 47.3333 36.2287 47.3333 37.3333C47.3333 38.4379 46.4379 39.3333 45.3333 39.3333H28C26.8954 39.3333 26 38.4379 26 37.3333ZM16.6667 46.6666C16.6667 45.5621 17.5621 44.6666 18.6667 44.6666H20C21.1046 44.6666 22 45.5621 22 46.6666C22 47.7712 21.1046 48.6666 20 48.6666H18.6667C17.5621 48.6666 16.6667 47.7712 16.6667 46.6666ZM26 46.6666C26 45.5621 26.8954 44.6666 28 44.6666H45.3333C46.4379 44.6666 47.3333 45.5621 47.3333 46.6666C47.3333 47.7712 46.4379 48.6666 45.3333 48.6666H28C26.8954 48.6666 26 47.7712 26 46.6666Z"})));C3.displayName="LogOutlined";var D3=C3;import p from"react";import G3 from"classnames";var o3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>p.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:G3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},p.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},p.createElement("path",{d:"M45.3379 18.6612C42.3002 15.6235 39.1077 12.983 35.8985 10.7899C39.5717 8.92035 43.0498 7.79653 46.0673 7.44837C49.8728 7.00929 52.6846 7.81791 54.4329 9.56622C56.1812 11.3145 56.9898 14.1263 56.5508 17.9319C56.2026 20.9494 55.0788 24.4275 53.2093 28.1007C51.0161 24.8915 48.3756 21.6989 45.3379 18.6612Z"}),p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M42.5094 21.4896C45.9051 24.8853 48.7538 28.465 50.9856 31.9986C48.7539 35.532 45.9054 39.1114 42.5099 42.5068C39.1142 45.9026 35.5344 48.7514 32.0006 50.9832C28.4671 48.7515 24.8875 45.9028 21.4919 42.5072C18.0964 39.1116 15.2478 35.5321 13.016 31.9986C15.2478 28.4648 18.0966 24.885 21.4924 21.4892C24.8879 18.0938 28.4673 15.2452 32.0006 13.0135C35.5342 15.2453 39.1138 18.094 42.5094 21.4896ZM32.0002 38.6667C35.6821 38.6667 38.6668 35.6819 38.6668 32C38.6668 28.3181 35.6821 25.3334 32.0002 25.3334C28.3183 25.3334 25.3335 28.3181 25.3335 32C25.3335 35.6819 28.3183 38.6667 32.0002 38.6667Z"}),p.createElement("path",{d:"M35.8986 53.2068C39.1079 51.0136 42.3005 48.3731 45.3384 45.3352C48.3759 42.2977 51.0162 39.1055 53.2092 35.8966C55.0785 39.5696 56.2022 43.0475 56.5503 46.0648C56.9893 49.8702 56.1807 52.6819 54.4324 54.4302C52.6841 56.1784 49.8724 56.9871 46.067 56.548C43.0496 56.1999 39.5716 55.0762 35.8986 53.2068Z"}),p.createElement("path",{d:"M18.6635 45.3356C21.7011 48.3732 24.8935 51.0137 28.1026 53.2068C24.4297 55.076 20.9519 56.1996 17.9346 56.5477C14.1293 56.9867 11.3177 56.178 9.56948 54.4298C7.82125 52.6816 7.01263 49.8699 7.45159 46.0646C7.79965 43.0474 8.92326 39.5695 10.7925 35.8966C12.9855 39.1057 15.6259 42.298 18.6635 45.3356Z"}),p.createElement("path",{d:"M10.7924 28.1006C12.9856 24.8913 15.6262 21.6987 18.664 18.6608C21.7015 15.6233 24.8938 12.983 28.1027 10.7899C24.4297 8.92054 20.9517 7.79683 17.9343 7.44872C14.1289 7.0097 11.3172 7.81832 9.56896 9.56659C7.82067 11.3149 7.01206 14.1266 7.45111 17.9321C7.79923 20.9495 8.92298 24.4276 10.7924 28.1006Z"})));o3.displayName="ModelVendorFilled";var J3=o3;import F from"react";import Q3 from"classnames";var t3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>F.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:Q3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},F.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},F.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M35.8975 10.7917C39.1066 12.9848 42.2991 15.6253 45.3368 18.663C48.3746 21.7007 51.0151 24.8933 53.2082 28.1025C55.0777 24.4293 56.2015 20.9512 56.5497 17.9337C56.9888 14.1281 56.1802 11.3163 54.4319 9.56802C52.6836 7.81971 49.8718 7.0111 46.0663 7.45018C43.0488 7.79834 39.5706 8.92215 35.8975 10.7917ZM55.6493 32.0005C58.3303 27.2934 60.0373 22.6047 60.5233 18.3922C61.0434 13.8845 60.1799 9.65918 57.2603 6.7396C54.3407 3.82002 50.1154 2.95645 45.6078 3.47654C41.3952 3.96259 36.7066 5.66954 31.9995 8.35057C27.2926 5.6697 22.6041 3.96286 18.3917 3.47688C13.8841 2.95686 9.65897 3.82045 6.73946 6.73997C3.81993 9.65952 2.95635 13.8848 3.4764 18.3924C3.96241 22.6049 5.66931 27.2934 8.35025 32.0005C5.66953 36.7073 3.9628 41.3957 3.47688 45.608C2.95693 50.1155 3.82054 54.3406 6.73999 57.26C9.65945 60.1795 13.8845 61.0431 18.392 60.5231C22.6043 60.0372 27.2927 58.3305 31.9996 55.6497C36.7065 58.3306 41.395 60.0375 45.6075 60.5235C50.1151 61.0435 54.3402 60.1799 57.2598 57.2604C60.1793 54.3409 61.0429 50.1158 60.5229 45.6082C60.0369 41.3958 58.3301 36.7074 55.6493 32.0005ZM50.9846 32.0004C48.7528 28.4668 45.9041 24.8871 42.5084 21.4914C39.1127 18.0958 35.5331 15.2471 31.9996 13.0153C28.4662 15.247 24.8868 18.0956 21.4914 21.491C18.0956 24.8868 15.2468 28.4667 13.0149 32.0004C15.2467 35.5339 18.0953 39.1134 21.4909 42.509C24.8865 45.9046 28.466 48.7533 31.9996 50.985C35.5333 48.7532 39.1131 45.9044 42.5089 42.5086C45.9043 39.1132 48.7529 35.5338 50.9846 32.0004ZM35.8976 53.2086C39.1069 51.0154 42.2995 48.3749 45.3373 45.337C48.3748 42.2995 51.0151 39.1073 53.2081 35.8984C55.0774 39.5714 56.2011 43.0493 56.5492 46.0667C56.9882 49.8721 56.1796 52.6837 54.4313 54.432C52.6831 56.1803 49.8714 56.9889 46.0659 56.5498C43.0486 56.2017 39.5706 55.078 35.8976 53.2086ZM28.1016 53.2086C24.8925 51.0155 21.7001 48.375 18.6624 45.3374C15.6249 42.2998 12.9845 39.1075 10.7914 35.8984C8.9222 39.5713 7.79859 43.0492 7.45053 46.0664C7.01157 49.8717 7.82019 52.6834 9.56842 54.4316C11.3167 56.1798 14.1283 56.9885 17.9336 56.5495C20.9508 56.2014 24.4287 55.0778 28.1016 53.2086ZM10.7913 28.1025C12.9845 24.8931 15.6251 21.7005 18.663 18.6626C21.7005 15.6251 24.8927 12.9848 28.1017 10.7917C24.4286 8.92235 20.9506 7.79863 17.9333 7.45053C14.1278 7.01151 11.3162 7.82012 9.5679 9.5684C7.81961 11.3167 7.011 14.1284 7.45004 17.9339C7.79817 20.9513 8.92192 24.4294 10.7913 28.1025ZM31.9999 27.3333C29.4225 27.3333 27.3332 29.4227 27.3332 32C27.3332 34.5773 29.4225 36.6667 31.9999 36.6667C34.5772 36.6667 36.6665 34.5773 36.6665 32C36.6665 29.4227 34.5772 27.3333 31.9999 27.3333ZM23.3332 32C23.3332 27.2135 27.2134 23.3333 31.9999 23.3333C36.7863 23.3333 40.6665 27.2135 40.6665 32C40.6665 36.7865 36.7863 40.6667 31.9999 40.6667C27.2134 40.6667 23.3332 36.7865 23.3332 32Z"})));t3.displayName="ModelVendorOutlined";var X3=t3;import v from"react";import _3 from"classnames";var e3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>v.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:_3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},v.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},v.createElement("path",{d:"M42.6668 40.6667C44.5078 40.6667 46.0002 39.1743 46.0002 37.3333C46.0002 35.4924 44.5078 34 42.6668 34C40.8259 34 39.3335 35.4924 39.3335 37.3333C39.3335 39.1743 40.8259 40.6667 42.6668 40.6667Z"}),v.createElement("path",{d:"M24.6668 26.6667C24.6668 24.8257 23.1744 23.3333 21.3335 23.3333C19.4925 23.3333 18.0002 24.8257 18.0002 26.6667C18.0002 28.5076 19.4925 30 21.3335 30C23.1744 30 24.6668 28.5076 24.6668 26.6667Z"}),v.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.0002 58.6667C19.4294 58.6667 13.144 58.6667 9.23874 54.7614C5.3335 50.8562 5.3335 44.5708 5.3335 32C5.3335 19.4292 5.3335 13.1438 9.23874 9.23859C13.144 5.33334 19.4294 5.33334 32.0002 5.33334C44.5709 5.33334 50.8563 5.33334 54.7616 9.23858C58.6668 13.1438 58.6668 19.4292 58.6668 32C58.6668 44.5708 58.6668 50.8562 54.7616 54.7614C50.8563 58.6667 44.5709 58.6667 32.0002 58.6667ZM50.0002 37.3333C50.0002 41.3834 46.7169 44.6667 42.6668 44.6667C38.6167 44.6667 35.3335 41.3834 35.3335 37.3333C35.3335 33.2833 38.6167 30 42.6668 30C46.7169 30 50.0002 33.2833 50.0002 37.3333ZM21.3335 19.3333C25.3836 19.3333 28.6668 22.6166 28.6668 26.6667C28.6668 30.7168 25.3836 34 21.3335 34C17.2834 34 14.0002 30.7168 14.0002 26.6667C14.0002 22.6166 17.2834 19.3333 21.3335 19.3333ZM42.6668 28.6667C41.5623 28.6667 40.6668 27.7712 40.6668 26.6667V13.3333C40.6668 12.2288 41.5623 11.3333 42.6668 11.3333C43.7714 11.3333 44.6668 12.2288 44.6668 13.3333V26.6667C44.6668 27.7712 43.7714 28.6667 42.6668 28.6667ZM19.3335 37.3333C19.3335 36.2288 20.2289 35.3333 21.3335 35.3333C22.4381 35.3333 23.3335 36.2288 23.3335 37.3333L23.3335 50.6667C23.3335 51.7712 22.4381 52.6667 21.3335 52.6667C20.2289 52.6667 19.3335 51.7712 19.3335 50.6667L19.3335 37.3333ZM42.6668 52.6667C41.5623 52.6667 40.6668 51.7712 40.6668 50.6667V48C40.6668 46.8954 41.5623 46 42.6668 46C43.7714 46 44.6668 46.8954 44.6668 48V50.6667C44.6668 51.7712 43.7714 52.6667 42.6668 52.6667ZM19.3335 13.3333C19.3335 12.2288 20.2289 11.3333 21.3335 11.3333C22.4381 11.3333 23.3335 12.2288 23.3335 13.3333V16C23.3335 17.1046 22.4381 18 21.3335 18C20.2289 18 19.3335 17.1046 19.3335 16V13.3333Z"})));e3.displayName="OrchestrationFilled";var R3=e3;import a from"react";import z3 from"classnames";var l3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>a.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:z3("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},a.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.0002 26.6666C14.0002 22.6166 17.2834 19.3333 21.3335 19.3333C25.3836 19.3333 28.6668 22.6166 28.6668 26.6666C28.6668 30.7167 25.3836 34 21.3335 34C17.2834 34 14.0002 30.7167 14.0002 26.6666ZM21.3335 23.3333C19.4925 23.3333 18.0002 24.8257 18.0002 26.6666C18.0002 28.5076 19.4925 30 21.3335 30C23.1744 30 24.6668 28.5076 24.6668 26.6666C24.6668 24.8257 23.1744 23.3333 21.3335 23.3333Z"}),a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M42.6668 44.6666C38.6167 44.6666 35.3335 41.3834 35.3335 37.3333C35.3335 33.2832 38.6167 30 42.6668 30C46.7169 30 50.0002 33.2832 50.0002 37.3333C50.0002 41.3834 46.7169 44.6666 42.6668 44.6666ZM39.3335 37.3333C39.3335 39.1743 40.8259 40.6666 42.6668 40.6666C44.5078 40.6666 46.0002 39.1743 46.0002 37.3333C46.0002 35.4924 44.5078 34 42.6668 34C40.8259 34 39.3335 35.4924 39.3335 37.3333Z"}),a.createElement("path",{d:"M21.3335 35.3333C22.4381 35.3333 23.3335 36.2287 23.3335 37.3333V50.6666C23.3335 51.7712 22.4381 52.6666 21.3335 52.6666C20.2289 52.6666 19.3335 51.7712 19.3335 50.6666V37.3333C19.3335 36.2287 20.2289 35.3333 21.3335 35.3333Z"}),a.createElement("path",{d:"M44.6668 26.6666C44.6668 27.7712 43.7714 28.6666 42.6668 28.6666C41.5623 28.6666 40.6668 27.7712 40.6668 26.6666V13.3333C40.6668 12.2287 41.5623 11.3333 42.6668 11.3333C43.7714 11.3333 44.6668 12.2287 44.6668 13.3333V26.6666Z"}),a.createElement("path",{d:"M21.3335 11.3333C22.4381 11.3333 23.3335 12.2287 23.3335 13.3333V16C23.3335 17.1045 22.4381 18 21.3335 18C20.2289 18 19.3335 17.1045 19.3335 16V13.3333C19.3335 12.2287 20.2289 11.3333 21.3335 11.3333Z"}),a.createElement("path",{d:"M44.6668 50.6666C44.6668 51.7712 43.7714 52.6666 42.6668 52.6666C41.5623 52.6666 40.6668 51.7712 40.6668 50.6666V48C40.6668 46.8954 41.5623 46 42.6668 46C43.7714 46 44.6668 46.8954 44.6668 48V50.6666Z"}),a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.8472 3.33331H32.1532C38.3089 3.33328 43.133 3.33325 46.8969 3.8393C50.7496 4.35728 53.7896 5.43818 56.1758 7.82434C58.562 10.2105 59.6429 13.2506 60.1608 17.1032C60.6669 20.8672 60.6669 25.6913 60.6668 31.847V32.153C60.6669 38.3087 60.6669 43.1328 60.1608 46.8968C59.6429 50.7494 58.562 53.7895 56.1758 56.1756C53.7896 58.5618 50.7496 59.6427 46.8969 60.1607C43.133 60.6667 38.3089 60.6667 32.1532 60.6666H31.8472C25.6914 60.6667 20.8673 60.6667 17.1034 60.1607C13.2507 59.6427 10.2107 58.5618 7.82453 56.1756C5.43837 53.7895 4.35746 50.7494 3.83949 46.8968C3.33344 43.1328 3.33346 38.3087 3.3335 32.153V31.847C3.33346 25.6913 3.33344 20.8672 3.83949 17.1032C4.35746 13.2506 5.43837 10.2105 7.82453 7.82434C10.2107 5.43818 13.2507 4.35728 17.1034 3.8393C20.8673 3.33325 25.6914 3.33328 31.8472 3.33331ZM17.6364 7.80364C14.2273 8.26197 12.172 9.13369 10.653 10.6528C9.13387 12.1719 8.26216 14.2271 7.80382 17.6362C7.33774 21.1028 7.3335 25.658 7.3335 32C7.3335 38.3419 7.33774 42.8972 7.80382 46.3638C8.26216 49.7728 9.13387 51.8281 10.653 53.3472C12.172 54.8663 14.2273 55.738 17.6364 56.1963C21.103 56.6624 25.6582 56.6666 32.0002 56.6666C38.3421 56.6666 42.8973 56.6624 46.364 56.1963C49.773 55.738 51.8283 54.8663 53.3474 53.3472C54.8665 51.8281 55.7382 49.7728 56.1965 46.3638C56.6626 42.8972 56.6668 38.3419 56.6668 32C56.6668 25.658 56.6626 21.1028 56.1965 17.6362C55.7382 14.2271 54.8665 12.1719 53.3474 10.6528C51.8283 9.13369 49.773 8.26197 46.364 7.80364C42.8973 7.33756 38.3421 7.33331 32.0002 7.33331C25.6582 7.33331 21.103 7.33756 17.6364 7.80364Z"})));l3.displayName="OrchestrationOutlined";var C6=l3;import O from"react";import o6 from"classnames";var s3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>O.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:o6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},O.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},O.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.23874 54.7614C13.144 58.6667 19.4294 58.6667 32.0002 58.6667C44.5709 58.6667 50.8563 58.6667 54.7616 54.7614C58.6668 50.8562 58.6668 44.5708 58.6668 32C58.6668 19.4292 58.6668 13.1438 54.7616 9.23859C50.8563 5.33334 44.5709 5.33334 32.0002 5.33334C19.4294 5.33334 13.144 5.33334 9.23874 9.23859C5.3335 13.1438 5.3335 19.4292 5.3335 32C5.3335 44.5708 5.3335 50.8562 9.23874 54.7614ZM45.1596 21.856L35.794 46.298C34.9455 48.5126 31.8403 48.5846 31.178 46.4051L28.3606 37.1332C28.1415 36.412 27.5881 35.8587 26.867 35.6395L17.5951 32.8222C15.4156 32.1599 15.4876 29.0547 17.7021 28.2061L42.1442 18.8406C44.104 18.0896 45.9105 19.8962 45.1596 21.856Z"})));s3.displayName="PublishFilled";var t6=s3;import k from"react";import e6 from"classnames";var n3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>k.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:e6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},k.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},k.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.364 7.80363C42.8973 7.33756 38.3421 7.33331 32.0002 7.33331C25.6582 7.33331 21.103 7.33756 17.6364 7.80364C14.2273 8.26197 12.172 9.13369 10.653 10.6528C9.13387 12.1719 8.26216 14.2271 7.80382 17.6362C7.33774 21.1028 7.3335 25.658 7.3335 32C7.3335 38.3419 7.33774 42.8972 7.80382 46.3638C8.26216 49.7728 9.13387 51.8281 10.653 53.3472C12.172 54.8663 14.2273 55.738 17.6364 56.1963C21.103 56.6624 25.6582 56.6666 32.0002 56.6666C38.3421 56.6666 42.8973 56.6624 46.364 56.1963C49.773 55.738 51.8283 54.8663 53.3474 53.3472C54.8665 51.8281 55.7382 49.7728 56.1965 46.3638C56.6626 42.8972 56.6668 38.3419 56.6668 32C56.6668 25.658 56.6626 21.1028 56.1965 17.6362C55.7382 14.2271 54.8665 12.1719 53.3474 10.6528C51.8283 9.13369 49.773 8.26197 46.364 7.80363ZM46.8969 3.8393C50.7496 4.35728 53.7896 5.43818 56.1758 7.82434C58.562 10.2105 59.6429 13.2506 60.1608 17.1032C60.6669 20.8672 60.6669 25.6913 60.6668 31.847V32.153C60.6669 38.3087 60.6669 43.1328 60.1608 46.8968C59.6429 50.7494 58.562 53.7895 56.1758 56.1756C53.7896 58.5618 50.7496 59.6427 46.8969 60.1607C43.133 60.6667 38.3089 60.6667 32.1532 60.6666H31.8472C25.6914 60.6667 20.8673 60.6667 17.1034 60.1607C13.2507 59.6427 10.2107 58.5618 7.82453 56.1756C5.43837 53.7895 4.35746 50.7494 3.83949 46.8968C3.33344 43.1328 3.33346 38.3087 3.3335 32.153V31.847C3.33346 25.6913 3.33343 20.8672 3.83949 17.1032C4.35746 13.2506 5.43837 10.2105 7.82453 7.82434C10.2107 5.43818 13.2507 4.35728 17.1034 3.8393C20.8673 3.33325 25.6914 3.33328 31.8471 3.33331H32.1532C38.3089 3.33328 43.133 3.33325 46.8969 3.8393Z"}),k.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M42.144 18.8406L41.4284 16.973C45.0042 15.6028 48.3971 18.9958 47.027 22.5716L37.6614 47.0137C36.924 48.9383 35.1731 49.9591 33.4623 49.9988C31.7302 50.039 29.8924 49.0542 29.2642 46.9866L26.4468 37.7146L28.2224 37.1751L26.4468 37.7146C26.4327 37.6682 26.411 37.6357 26.3877 37.6123C26.3643 37.589 26.3317 37.5673 26.2853 37.5532L17.0134 34.7358C14.9458 34.1075 13.961 32.2698 14.0012 30.5377C14.0409 28.8268 15.0617 27.076 16.9863 26.3386L41.4284 16.973L42.144 18.8406ZM43.1218 20.6735C43.0782 20.664 42.9943 20.6566 42.8596 20.7082L18.4175 30.0738C18.1276 30.1849 18.0052 30.4109 18.0001 30.6304C17.9976 30.7398 18.0274 30.8053 18.0446 30.8311C18.0448 30.8314 18.045 30.8318 18.0453 30.8321C18.0528 30.8436 18.0754 30.8779 18.1764 30.9086L27.4483 33.726L26.8668 35.6396L27.4483 33.726C28.8079 34.1391 29.8609 35.1921 30.274 36.5517L33.0914 45.8236C33.1221 45.9246 33.1564 45.9472 33.1678 45.9547L33.1689 45.9554C33.1946 45.9726 33.2601 46.0024 33.3696 45.9999C33.5891 45.9948 33.8151 45.8724 33.9262 45.5824L43.2918 21.1404C43.3434 21.0057 43.336 20.9217 43.3265 20.8782C43.3155 20.8277 43.2905 20.7825 43.254 20.746C43.2175 20.7095 43.1723 20.6845 43.1218 20.6735Z"})));n3.displayName="PublishOutlined";var l6=n3;import x from"react";import s6 from"classnames";var d3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>x.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:s6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},x.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},x.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.3335 32C5.3335 33.0275 6.16645 33.8605 7.19396 33.8605H12.2413C13.1222 43.3356 20.6645 50.8779 30.1397 51.7589V56.8062C30.1397 57.8337 30.9727 58.6667 32.0002 58.6667C33.0277 58.6667 33.8606 57.8337 33.8606 56.8062V51.7589C43.3358 50.8779 50.8781 43.3356 51.7591 33.8605H56.8064C57.8339 33.8605 58.6668 33.0275 58.6668 32C58.6668 30.9725 57.8339 30.1395 56.8064 30.1395H51.7591C50.8781 20.6644 43.3358 13.1221 33.8606 12.2411V7.19381C33.8606 6.1663 33.0277 5.33334 32.0002 5.33334C30.9727 5.33334 30.1397 6.1663 30.1397 7.19381V12.2411C20.6645 13.1221 13.1222 20.6644 12.2413 30.1395H7.19396C6.16645 30.1395 5.3335 30.9725 5.3335 32ZM22.6978 32C22.6978 26.8625 26.8626 22.6977 32.0002 22.6977C37.1377 22.6977 41.3025 26.8625 41.3025 32C41.3025 37.1375 37.1377 41.3023 32.0002 41.3023C26.8626 41.3023 22.6978 37.1375 22.6978 32Z"}),x.createElement("path",{d:"M26.4188 32C26.4188 28.9175 28.9176 26.4186 32.0002 26.4186C35.0827 26.4186 37.5816 28.9175 37.5816 32C37.5816 35.0825 35.0827 37.5814 32.0002 37.5814C28.9176 37.5814 26.4188 35.0825 26.4188 32Z"})));d3.displayName="RecallTestFilled";var n6=d3;import S from"react";import d6 from"classnames";var i3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>S.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:d6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},S.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},S.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.0002 3.33331C33.1047 3.33331 34.0002 4.22874 34.0002 5.33331V8.75116C45.2913 9.70966 54.2905 18.7088 55.249 30H58.6668C59.7714 30 60.6668 30.8954 60.6668 32C60.6668 33.1045 59.7714 34 58.6668 34H55.249C54.2905 45.2911 45.2913 54.2903 34.0002 55.2488V58.6666C34.0002 59.7712 33.1047 60.6666 32.0002 60.6666C30.8956 60.6666 30.0002 59.7712 30.0002 58.6666V55.2488C18.709 54.2903 9.70985 45.2911 8.75134 34H5.3335C4.22893 34 3.3335 33.1045 3.3335 32C3.3335 30.8954 4.22893 30 5.3335 30H8.75134C9.70985 18.7088 18.709 9.70966 30.0002 8.75116V5.33331C30.0002 4.22874 30.8956 3.33331 32.0002 3.33331ZM32.0002 12.6666C21.3227 12.6666 12.6668 21.3225 12.6668 32C12.6668 42.6775 21.3227 51.3333 32.0002 51.3333C42.6777 51.3333 51.3335 42.6775 51.3335 32C51.3335 21.3225 42.6777 12.6666 32.0002 12.6666ZM32.0002 26C28.6865 26 26.0002 28.6863 26.0002 32C26.0002 35.3137 28.6865 38 32.0002 38C35.3139 38 38.0002 35.3137 38.0002 32C38.0002 28.6863 35.3139 26 32.0002 26ZM22.0002 32C22.0002 26.4771 26.4773 22 32.0002 22C37.523 22 42.0002 26.4771 42.0002 32C42.0002 37.5228 37.523 42 32.0002 42C26.4773 42 22.0002 37.5228 22.0002 32Z"})));i3.displayName="RecallTestOutlined";var i6=i3;import M from"react";import a6 from"classnames";var a3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>M.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:a6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},M.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},M.createElement("path",{d:"M32.2105 6C19.4279 6 8.91956 15.768 7.89497 28.2222H5.33356C4.5232 28.2222 3.79294 28.7112 3.4843 29.4605C3.17566 30.2098 3.34966 31.0712 3.92491 31.642L8.40441 36.0864C9.18416 36.8601 10.4419 36.8601 11.2217 36.0864L15.7012 31.642C16.2765 31.0712 16.4504 30.2098 16.1418 29.4605C15.8332 28.7112 15.1029 28.2222 14.2925 28.2222H11.9116C12.9242 18.0044 21.6129 10 32.2105 10C39.596 10 46.0607 13.8892 49.6417 19.7141C50.2202 20.6551 51.452 20.9489 52.3929 20.3704C53.3339 19.792 53.6278 18.5602 53.0493 17.6192C48.7656 10.6514 41.033 6 32.2105 6Z"}),M.createElement("path",{d:"M55.5766 27.9109C54.7974 27.1408 53.5438 27.1408 52.7647 27.9109L48.2681 32.3553C47.6912 32.9255 47.5158 33.7875 47.824 34.5377C48.1322 35.288 48.8629 35.7778 49.674 35.7778H52.0716C51.055 45.9898 42.3359 54 31.6875 54C24.2675 54 17.7758 50.1075 14.1814 44.283C13.6013 43.343 12.369 43.0513 11.429 43.6313C10.4891 44.2114 10.1973 45.4437 10.7774 46.3837C15.0777 53.352 22.8376 58 31.6875 58C44.5085 58 55.0601 48.2379 56.0884 35.7778H58.6672C59.4783 35.7778 60.209 35.288 60.5172 34.5377C60.8254 33.7875 60.65 32.9255 60.0732 32.3553L55.5766 27.9109Z"})));a3.displayName="RefreshOutlined";var r6=a3;import B from"react";import p6 from"classnames";var r3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>B.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:p6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},B.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},B.createElement("path",{d:"M43.1009 18.2323C51.7003 24.0781 56 27.001 56 32.0002C56 36.9994 51.7003 39.9224 43.1009 45.7682C40.727 47.382 38.3725 48.9014 36.2089 50.1674C34.3108 51.2782 32.1611 52.4271 29.9355 53.555C21.3562 57.9025 17.0666 60.0763 13.2193 57.6696C9.37201 55.2628 9.02235 50.2245 8.32305 40.1479C8.12529 37.2982 8 34.5046 8 32.0002C8 29.4958 8.12529 26.7022 8.32305 23.8525C9.02236 13.7759 9.37201 8.73762 13.2193 6.33088C17.0666 3.92415 21.3562 6.09793 29.9355 10.4455C32.1611 11.5733 34.3108 12.7223 36.2089 13.833C38.3725 15.0991 40.727 16.6185 43.1009 18.2323Z"})));r3.displayName="RunFilled";var c6=r3;import $ from"react";import m6 from"classnames";var p3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>$.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:m6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},$.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},$.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M38.0768 5.73932C37.0892 5.33334 35.8373 5.33334 33.3333 5.33334C30.8294 5.33334 29.5774 5.33334 28.5898 5.73932C27.2731 6.28062 26.2269 7.31888 25.6815 8.6257C25.4325 9.22225 25.3351 9.91601 25.2969 10.928C25.2409 12.4152 24.4724 13.7917 23.1738 14.5358C21.8751 15.2799 20.2897 15.2521 18.964 14.5567C18.0618 14.0835 17.4077 13.8203 16.7626 13.7361C15.3496 13.5514 13.9205 13.9315 12.7897 14.7925C11.9417 15.4384 11.3157 16.5144 10.0637 18.6665C8.81177 20.8186 8.18578 21.8946 8.04626 22.9464C7.86023 24.3488 8.24315 25.7671 9.11079 26.8893C9.50681 27.4015 10.0634 27.8321 10.9272 28.3707C12.1971 29.1626 13.0142 30.5116 13.0141 32.0001C13.014 33.4883 12.197 34.8371 10.9272 35.6289C10.0632 36.1677 9.50659 36.5983 9.11053 37.1105C8.24289 38.2327 7.85996 39.651 8.046 41.0534C8.18552 42.1052 8.81151 43.1812 10.0635 45.3333C11.3155 47.4854 11.9414 48.5615 12.7895 49.2073C13.9202 50.0684 15.3493 50.4484 16.7624 50.2638C17.4074 50.1795 18.0615 49.9164 18.9635 49.4432C20.2894 48.7478 21.8749 48.72 23.1737 49.4641C24.4724 50.2083 25.2409 51.5849 25.2969 53.0722C25.3351 54.0841 25.4325 54.7778 25.6815 55.3743C26.2269 56.6811 27.2731 57.7194 28.5898 58.2607C29.5774 58.6667 30.8294 58.6667 33.3333 58.6667C35.8373 58.6667 37.0892 58.6667 38.0768 58.2607C39.3936 57.7194 40.4398 56.6811 40.9852 55.3743C41.2342 54.7777 41.3316 54.084 41.3697 53.0719C41.4258 51.5848 42.1942 50.2083 43.4927 49.4641C44.7915 48.7199 46.3771 48.7476 47.7029 49.4431C48.605 49.9162 49.259 50.1793 49.904 50.2636C51.3171 50.4482 52.7462 50.0682 53.8769 49.2071C54.725 48.5613 55.351 47.4852 56.6029 45.3332C57.8549 43.1811 58.4809 42.105 58.6204 41.0532C58.8064 39.6508 58.4235 38.2326 57.5559 37.1104C57.1598 36.5981 56.6032 36.1675 55.7393 35.6288C54.4695 34.837 53.6525 33.4881 53.6526 31.9998C53.6526 30.5116 54.4696 29.1629 55.7393 28.3712C56.6034 27.8324 57.1601 27.4018 57.5561 26.8895C58.4238 25.7673 58.8067 24.349 58.6207 22.9466C58.4811 21.8948 57.8552 20.8188 56.6032 18.6667C55.3512 16.5146 54.7252 15.4385 53.8772 14.7927C52.7464 13.9316 51.3174 13.5516 49.9043 13.7362C49.2593 13.8205 48.6052 14.0836 47.7031 14.5568C46.3773 15.2523 44.7917 15.2801 43.493 14.5359C42.1943 13.7918 41.4258 12.4151 41.3697 10.9278C41.3316 9.91595 41.2342 9.22222 40.9852 8.6257C40.4398 7.31888 39.3936 6.28062 38.0768 5.73932ZM33.3333 40C37.7853 40 41.3942 36.4183 41.3942 32C41.3942 27.5817 37.7853 24 33.3333 24C28.8814 24 25.2724 27.5817 25.2724 32C25.2724 36.4183 28.8814 40 33.3333 40Z"})));p3.displayName="SetUpFilled";var L6=p3;import Z from"react";import f6 from"classnames";var c3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>Z.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:f6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},Z.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},Z.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.9998 22C26.477 22 21.9998 26.4771 21.9998 32C21.9998 37.5228 26.477 42 31.9998 42C37.5227 42 41.9998 37.5228 41.9998 32C41.9998 26.4771 37.5227 22 31.9998 22ZM25.9998 32C25.9998 28.6863 28.6861 26 31.9998 26C35.3136 26 37.9998 28.6863 37.9998 32C37.9998 35.3137 35.3136 38 31.9998 38C28.6861 38 25.9998 35.3137 25.9998 32Z"}),Z.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.9325 3.33331C30.7472 3.33329 29.7578 3.33328 28.9455 3.3887C28.0999 3.4464 27.3012 3.57078 26.5268 3.89153C24.7299 4.63582 23.3023 6.06343 22.558 7.8603C22.1706 8.79576 22.0656 9.78163 22.0255 10.8532C21.9933 11.7146 21.5586 12.4333 20.917 12.8037C20.2755 13.1741 19.4357 13.1913 18.6736 12.7885C17.7255 12.2874 16.8193 11.8853 15.8154 11.7531C13.8871 11.4993 11.937 12.0218 10.3939 13.2058C9.72898 13.7161 9.2219 14.3456 8.74913 15.0491C8.29498 15.7248 7.80028 16.5817 7.20768 17.6082L7.14033 17.7248C6.54771 18.7512 6.05298 19.6081 5.69483 20.3393C5.32199 21.1004 5.03034 21.8543 4.92094 22.6853C4.66707 24.6136 5.18962 26.5638 6.37361 28.1068C6.98992 28.91 7.79111 29.4937 8.69895 30.0642C9.42904 30.5229 9.83418 31.2589 9.83414 31.9999C9.8341 32.7408 9.42896 33.4768 8.69897 33.9354C7.79101 34.5059 6.98972 35.0897 6.37335 35.893C5.18936 37.436 4.66681 39.3862 4.92068 41.3144C5.03008 42.1454 5.32173 42.8994 5.69457 43.6605C6.05271 44.3917 6.54743 45.2485 7.14005 46.2749L7.20741 46.3916C7.80001 47.4181 8.29472 48.275 8.74887 48.9507C9.22164 49.6542 9.72872 50.2837 10.3937 50.794C11.9367 51.978 13.8868 52.5005 15.8151 52.2466C16.819 52.1145 17.7252 51.7125 18.6732 51.2114C19.4354 50.8086 20.2753 50.8257 20.9169 51.1961C21.5585 51.5666 21.9933 52.2854 22.0255 53.1469C22.0656 54.2184 22.1706 55.2042 22.558 56.1397C23.3023 57.9365 24.7299 59.3641 26.5268 60.1084C27.3012 60.4292 28.0999 60.5536 28.9455 60.6113C29.7578 60.6667 30.7472 60.6667 31.9325 60.6666H32.0672C33.2524 60.6667 34.2418 60.6667 35.0541 60.6113C35.8997 60.5536 36.6985 60.4292 37.4728 60.1084C39.2697 59.3641 40.6973 57.9365 41.4416 56.1397C41.8291 55.2042 41.934 54.2183 41.9741 53.1466C42.0063 52.2852 42.441 51.5665 43.0826 51.1961C43.7242 50.8256 44.5641 50.8084 45.3263 51.2113C46.2743 51.7123 47.1804 52.1143 48.1842 52.2465C50.1125 52.5003 52.0627 51.9778 53.6057 50.7938C54.2707 50.2835 54.7777 49.654 55.2505 48.9505C55.7046 48.2748 56.1993 47.418 56.7919 46.3916L56.8592 46.2749C57.4518 45.2485 57.9467 44.3915 58.3048 43.6603C58.6776 42.8992 58.9693 42.1453 59.0787 41.3142C59.3326 39.386 58.81 37.4358 57.626 35.8928C57.0097 35.0896 56.2084 34.5058 55.3005 33.9353C54.5705 33.4767 54.1655 32.7407 54.1655 31.9998C54.1655 31.259 54.5706 30.5232 55.3005 30.0646C56.2085 29.4941 57.0099 28.9103 57.6263 28.107C58.8103 26.564 59.3328 24.6138 59.079 22.6855C58.9696 21.8545 58.6779 21.1006 58.3051 20.3394C57.9469 19.6083 57.4523 18.7515 56.8597 17.7252L56.7923 17.6084C56.1997 16.582 55.7049 15.725 55.2508 15.0492C54.778 14.3458 54.2709 13.7162 53.6059 13.206C52.0629 12.022 50.1128 11.4995 48.1845 11.7533C47.1807 11.8855 46.2745 12.2875 45.3264 12.7886C44.5642 13.1914 43.7244 13.1743 43.0827 12.8038C42.4411 12.4334 42.0063 11.7146 41.9741 10.8531C41.934 9.78153 41.8291 8.79572 41.4416 7.8603C40.6973 6.06343 39.2697 4.63582 37.4728 3.89153C36.6985 3.57078 35.8997 3.4464 35.0541 3.3887C34.2418 3.33328 33.2524 3.33329 32.0671 3.33331H31.9325ZM28.0575 7.58705C28.2633 7.50183 28.5759 7.42322 29.2178 7.37942C29.8777 7.3344 30.7299 7.33331 31.9998 7.33331C33.2697 7.33331 34.1219 7.3344 34.7818 7.37942C35.4238 7.42322 35.7364 7.50183 35.9421 7.58705C36.7589 7.92536 37.4078 8.57428 37.7461 9.39104C37.8528 9.64867 37.9413 10.0503 37.9769 11.0026C38.0559 13.1156 39.1465 15.1501 41.0827 16.2679C43.0189 17.3858 45.3261 17.313 47.1956 16.325C48.0381 15.8797 48.4301 15.7555 48.7066 15.7191C49.5831 15.6037 50.4695 15.8412 51.1709 16.3794C51.3476 16.515 51.5719 16.7464 51.9308 17.2804C52.2998 17.8294 52.7268 18.5669 53.3618 19.6667C53.9967 20.7664 54.4219 21.505 54.7129 22.099C54.9959 22.6768 55.0841 22.9868 55.1132 23.2076C55.2286 24.0841 54.991 24.9706 54.4529 25.6719C54.2831 25.8932 53.9795 26.1706 53.1725 26.6777C51.3822 27.8025 50.1656 29.7641 50.1655 31.9996C50.1654 34.2354 51.382 36.1973 53.1724 37.3222C53.9793 37.8292 54.2828 38.1066 54.4526 38.3279C54.9908 39.0292 55.2283 39.9157 55.1129 40.7922C55.0838 41.0129 54.9956 41.3229 54.7126 41.9008C54.4216 42.4948 53.9965 43.2334 53.3615 44.3331C52.7266 45.4329 52.2995 46.1704 51.9306 46.7194C51.5717 47.2534 51.3473 47.4848 51.1706 47.6204C50.4693 48.1586 49.5828 48.3961 48.7063 48.2807C48.4299 48.2443 48.0378 48.1201 47.1954 47.6748C45.3259 46.6867 43.0185 46.6141 41.0823 47.7321C39.1464 48.85 38.0559 50.8843 37.9769 52.9972C37.9413 53.9496 37.8528 54.3513 37.7461 54.6089C37.4078 55.4257 36.7589 56.0746 35.9421 56.4129C35.7364 56.4981 35.4238 56.5767 34.7818 56.6205C34.1219 56.6656 33.2697 56.6666 31.9998 56.6666C30.7299 56.6666 29.8777 56.6656 29.2178 56.6205C28.5759 56.5767 28.2633 56.4981 28.0575 56.4129C27.2408 56.0746 26.5919 55.4257 26.2536 54.6089C26.1468 54.3513 26.0584 53.9497 26.0228 52.9974C25.9437 50.8844 24.8531 48.8499 22.9169 47.732C20.9807 46.6142 18.6735 46.6869 16.8041 47.675C15.9616 48.1203 15.5695 48.2445 15.293 48.2809C14.4165 48.3963 13.5301 48.1587 12.8287 47.6206C12.6521 47.485 12.4277 47.2536 12.0688 46.7196C11.6999 46.1706 11.2728 45.4331 10.6379 44.3333C10.0029 43.2336 9.57773 42.495 9.28677 41.901C9.00374 41.3231 8.91552 41.0131 8.88646 40.7923C8.77106 39.9158 9.00858 39.0294 9.54676 38.328C9.71653 38.1068 10.0201 37.8294 10.827 37.3224C12.6174 36.1975 13.834 34.2358 13.8341 32.0001C13.8343 29.7643 12.6176 27.8023 10.8271 26.6773C10.0203 26.1704 9.71677 25.893 9.54702 25.6717C9.00884 24.9704 8.77132 24.0839 8.88672 23.2074C8.91578 22.9867 9.004 22.6767 9.28704 22.0988C9.57799 21.5048 10.0032 20.7662 10.6381 19.6665C11.2731 18.5667 11.7001 17.8292 12.0691 17.2802C12.428 16.7462 12.6523 16.5148 12.829 16.3792C13.5304 15.841 14.4168 15.6035 15.2933 15.7189C15.5698 15.7553 15.9619 15.8795 16.8045 16.3249C18.6738 17.3129 20.9809 17.3856 22.917 16.2679C24.8531 15.1501 25.9437 13.1156 26.0227 11.0027C26.0584 10.0503 26.1468 9.64869 26.2535 9.39104C26.5919 8.57428 27.2408 7.92536 28.0575 7.58705Z"})));c3.displayName="SetUpOutlined";var v6=c3;import A from"react";import u6 from"classnames";var m3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>A.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:u6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},A.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},A.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26.5164 6C21.6157 5.99996 17.734 5.99993 14.6961 6.40836C11.5696 6.8287 9.03911 7.71435 7.04348 9.70998C5.04784 11.7056 4.1622 14.2362 3.74186 17.3626C3.33342 20.4005 3.33346 24.2822 3.3335 29.1828V34.8171C3.33346 39.7178 3.33342 43.5995 3.74186 46.6374C4.1622 49.7639 5.04784 52.2944 7.04348 54.29C9.03911 56.2857 11.5696 57.1713 14.6961 57.5916C17.734 58.0001 21.6156 58 26.5163 58H37.4839C38.3219 58 39.1302 58 39.9094 57.998C39.9395 57.9993 39.9698 58 40.0002 58C40.0345 58 40.0686 57.9991 40.1025 57.9974C43.7932 57.9861 46.8288 57.9245 49.3042 57.5916C52.4307 57.1713 54.9612 56.2857 56.9568 54.29C58.9525 52.2944 59.8381 49.7639 60.2585 46.6374C60.6669 43.5995 60.6669 39.7179 60.6668 34.8172V29.1829C60.6669 24.2823 60.6669 20.4005 60.2585 17.3626C59.8381 14.2362 58.9525 11.7056 56.9568 9.70998C54.9612 7.71435 52.4307 6.8287 49.3042 6.40836C46.8288 6.07555 43.7932 6.01395 40.1025 6.00257C40.0686 6.00086 40.0345 6 40.0002 6C39.9697 6 39.9395 6.00068 39.9094 6.00202C39.1302 5.99999 38.322 5.99999 37.484 6H26.5164ZM38.0002 10.0001C37.7808 10 37.5586 10 37.3335 10H26.6668C21.582 10 17.9695 10.0043 15.2291 10.3727C12.5462 10.7334 11.0005 11.4099 9.87191 12.5384C8.74335 13.667 8.0669 15.2127 7.70619 17.8956C7.33775 20.636 7.3335 24.2485 7.3335 29.3333V34.6667C7.3335 39.7515 7.33775 43.364 7.70619 46.1044C8.0669 48.7873 8.74335 50.333 9.87191 51.4616C11.0005 52.5902 12.5462 53.2666 15.2291 53.6273C17.9695 53.9958 21.582 54 26.6668 54H37.3335C37.5586 54 37.7808 54 38.0002 53.9999L38.0002 10.0001ZM42.0002 53.9847C44.7565 53.9557 46.9553 53.8715 48.7712 53.6273C51.4541 53.2666 52.9999 52.5902 54.1284 51.4616C55.257 50.333 55.9334 48.7873 56.2941 46.1044C56.6626 43.364 56.6668 39.7515 56.6668 34.6667V29.3333C56.6668 24.2485 56.6626 20.636 56.2941 17.8956C55.9334 15.2127 55.257 13.667 54.1284 12.5384C52.9999 11.4099 51.4541 10.7334 48.7712 10.3727C46.9553 10.1286 44.7565 10.0443 42.0002 10.0153L42.0002 53.9847Z"})));m3.displayName="SlideBarCollapseOutlined";var h6=m3;import T from"react";import w6 from"classnames";var L3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>T.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:w6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},T.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},T.createElement("path",{d:"M55.9834 36.9805C55.9032 45.2855 55.4185 52.9343 52.4854 55.542C48.9707 58.6662 43.3135 58.666 32 58.666C20.6864 58.666 15.0294 58.6661 11.5146 55.542C8.58125 52.9345 8.09587 45.2858 8.01562 36.9805L21.3623 40.9844C21.5656 42.9382 22.8339 44.6421 24.6855 45.3828L26.5527 46.1289C30.0494 47.5276 33.9506 47.5276 37.4473 46.1289L39.3145 45.3828C41.1661 44.6421 42.4344 42.9382 42.6377 40.9844L55.9834 36.9805ZM37.333 33.333C38.0694 33.333 38.667 33.9306 38.667 34.667V40.4307C38.667 40.9759 38.3343 41.4665 37.8281 41.6689L35.9619 42.415C33.4189 43.4323 30.5811 43.4323 28.0381 42.415L26.1719 41.6689C25.6657 41.4665 25.333 40.9759 25.333 40.4307V34.667C25.333 33.9306 25.9306 33.333 26.667 33.333H37.333ZM35.8389 6C36.1414 5.99996 36.3768 6.00019 36.5996 6.01368C39.4274 6.18493 41.9042 7.9692 42.9609 10.5977C43.0442 10.8048 43.1182 11.0293 43.2139 11.3164L43.2217 11.3398C43.444 11.9381 43.9541 12.6186 44.668 13.1621C44.7474 13.2226 44.8274 13.2802 44.9072 13.334C50.651 13.3407 53.6493 13.4465 55.7158 15.1279C56.1397 15.4728 56.5272 15.8603 56.8721 16.2842C58.6666 18.4897 58.667 21.7566 58.667 28.29C58.667 29.9478 58.6666 30.7772 58.2646 31.4238C58.1863 31.5498 58.0972 31.6691 57.999 31.7803C57.4952 32.3511 56.7012 32.59 55.1133 33.0664L42.667 36.7998V34.667C42.667 31.7215 40.2785 29.333 37.333 29.333H26.667C23.7215 29.333 21.333 31.7215 21.333 34.667V36.7998L8.88672 33.0664C7.29884 32.59 6.50482 32.3511 6.00098 31.7803C5.90283 31.6691 5.81367 31.5498 5.73535 31.4238C5.33338 30.7772 5.33301 29.9478 5.33301 28.29C5.33301 21.7566 5.33335 18.4897 7.12793 16.2842C7.47284 15.8603 7.86029 15.4728 8.28418 15.1279C10.3507 13.4465 13.349 13.3407 19.0928 13.334C19.1726 13.2802 19.2525 13.2226 19.332 13.1621C20.0462 12.6185 20.5561 11.938 20.7783 11.3398C20.8795 11.0363 20.9549 10.8094 21.04 10.5977C22.0968 7.9692 24.5736 6.18493 27.4014 6.01368C27.6241 6.00019 27.8596 5.99996 28.1621 6H35.8389ZM27.6426 10.0059C26.3575 10.0839 25.2323 10.8953 24.752 12.0898C24.7212 12.1664 24.6875 12.2633 24.584 12.5732L24.5791 12.5889L24.5732 12.6074L24.5654 12.6299L24.5596 12.6465L24.5498 12.6768L24.5381 12.709L24.5342 12.7227L24.5244 12.749L24.499 12.8135L24.4834 12.8486C24.419 13.0124 24.3484 13.1743 24.2715 13.333H39.7295C39.6525 13.1741 39.581 13.0126 39.5166 12.8486L39.5117 12.8389L39.501 12.8125L39.4883 12.7803L39.4766 12.749L39.4668 12.7227L39.4619 12.709L39.4502 12.6768L39.4404 12.6465L39.4346 12.6299L39.4277 12.6074L39.4219 12.5889L39.417 12.5732C39.312 12.2586 39.2793 12.1653 39.249 12.0898C38.7687 10.8953 37.6435 10.0839 36.3584 10.0059C36.2724 10.0007 36.1665 10 35.7842 10H28.2168C27.8345 10 27.7286 10.0007 27.6426 10.0059Z"})));L3.displayName="ToolManagementFilled";var g6=L3;import q from"react";import k6 from"classnames";var f3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>q.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:k6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},q.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},q.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28.2171 3.33332L28.1627 3.33332C27.86 3.33327 27.6244 3.33324 27.4015 3.34674C24.5737 3.518 22.0974 5.30277 21.0407 7.93133C20.9574 8.13853 20.8829 8.36212 20.7873 8.64933L20.7701 8.70087L20.7017 8.90614C20.651 9.05805 20.6369 9.09991 20.6246 9.13386C20.1983 10.3124 18.7816 11.296 17.2828 11.334L12.4311 11.5713C10.3345 11.8177 8.53925 12.3422 7.02216 13.5766C6.49226 14.0078 6.00794 14.4921 5.57678 15.022C4.34238 16.5391 3.81785 18.3343 3.5715 20.4309C3.33343 22.457 3.33347 25.0046 3.33351 28.1644L3.33351 28.2905L3.3335 28.3739C3.33342 29.1309 3.33334 29.8408 3.39398 30.4384C3.46108 31.0996 3.61546 31.8019 4.03713 32.4801C4.1742 32.7005 4.32941 32.9091 4.50117 33.1037C4.95213 33.6148 5.47587 33.9443 6.00143 34.188C6.00912 38.4951 6.06365 42.8486 6.45018 46.5771C6.67664 48.7617 7.0242 50.8127 7.57548 52.5615C8.11779 54.2818 8.91859 55.9105 10.1862 57.0373C12.382 58.9891 15.1457 59.8497 18.5956 60.262C21.982 60.6667 26.3225 60.6667 31.8636 60.6667H32.1367C37.6779 60.6667 42.0183 60.6667 45.4048 60.262C48.8547 59.8497 51.6183 58.9891 53.8142 57.0373C55.0818 55.9105 55.8826 54.2818 56.4249 52.5615C56.9761 50.8127 57.3237 48.7617 57.5502 46.5771C57.9367 42.8486 57.9912 38.4951 57.9989 34.188C58.5245 33.9443 59.0482 33.6148 59.4992 33.1037C59.6709 32.9091 59.8261 32.7005 59.9632 32.4801C60.3849 31.8019 60.5393 31.0996 60.6064 30.4384C60.667 29.8408 60.6669 29.131 60.6669 28.3739L60.6668 28.1644C60.6669 25.0046 60.6669 22.457 60.4288 20.4309C60.1825 18.3343 59.658 16.5391 58.4236 15.022C57.9924 14.4921 57.5081 14.0078 56.9782 13.5766C55.4611 12.3422 53.6659 11.8177 51.5693 11.5713L46.7175 11.334C45.2193 11.296 43.8034 10.3128 43.3769 9.1338C43.3647 9.1001 43.3503 9.0573 43.2999 8.90613L43.2143 8.64924C43.1186 8.36205 43.0441 8.13852 42.9608 7.93133C41.9041 5.30278 39.4279 3.518 36.6 3.34674C36.3771 3.33324 36.1415 3.33327 35.8388 3.33332L28.2171 3.33332ZM20.1877 15.3333L20.2906 15.3333H43.7097L43.8127 15.3333C47.0732 15.3334 49.3555 15.3387 51.1025 15.544C52.8241 15.7463 53.7651 16.1191 54.4537 16.6793C54.7716 16.938 55.0622 17.2286 55.3209 17.5465C55.8811 18.235 56.2539 19.176 56.4562 20.8977C56.6636 22.663 56.6668 24.9749 56.6668 28.2905C56.6668 29.1601 56.6645 29.6634 56.6268 30.0346C56.6045 30.2539 56.5764 30.3429 56.5659 30.3686C56.5466 30.3996 56.5247 30.429 56.5005 30.4564C56.4789 30.4739 56.4017 30.5264 56.1981 30.6107C55.8535 30.7535 55.372 30.9004 54.5391 31.1503L40.6668 35.3119V34.6667C40.6668 32.8257 39.1745 31.3333 37.3335 31.3333H26.6668C24.8259 31.3333 23.3335 32.8257 23.3335 34.6667V35.3119L9.46128 31.1503C8.62835 30.9004 8.14689 30.7535 7.80225 30.6107C7.59861 30.5264 7.52141 30.4739 7.4998 30.4564L23.3335 35.3119L7.43444 30.3686C7.42391 30.3429 7.3958 30.2538 7.37355 30.0346C7.33589 29.6634 7.33351 29.1601 7.33351 28.2905C7.33351 24.9749 7.33674 22.663 7.54417 20.8977C7.74647 19.176 8.11926 18.235 8.67947 17.5465C8.93817 17.2286 9.22876 16.938 9.5467 16.6793C10.2352 16.1191 11.1762 15.7463 12.8979 15.544C14.6449 15.3387 16.9271 15.3334 20.1877 15.3333ZM28.2171 7.33332C27.8348 7.33332 27.7293 7.33421 27.6433 7.33942C26.3579 7.41727 25.2324 8.22853 24.7521 9.42333C24.7199 9.50328 24.6857 9.6031 24.5648 9.96578L24.4892 10.1926C24.4491 10.3129 24.4179 10.4065 24.3861 10.4945C24.2809 10.7854 24.1565 11.0652 24.015 11.3333H39.9865C39.845 11.0652 39.7207 10.7854 39.6155 10.4946C39.5837 10.4066 39.5524 10.3129 39.5123 10.1926L39.4367 9.96578C39.3158 9.6031 39.2816 9.50328 39.2495 9.42333C38.7691 8.22853 37.6436 7.41727 36.3582 7.33942C36.2722 7.33421 36.1667 7.33332 35.7844 7.33332H28.2171ZM10.0058 35.4897C10.0239 39.3213 10.101 43.0023 10.4289 46.1647C10.6417 48.2181 10.9532 49.9718 11.3904 51.3588C11.8366 52.7743 12.3538 53.6123 12.8436 54.0476C14.1625 55.22 15.9846 55.9215 19.0702 56.2903C22.1916 56.6633 26.2929 56.6667 32.0002 56.6667C37.7074 56.6667 41.8088 56.6633 44.9301 56.2903C48.0157 55.9215 49.8378 55.22 51.1567 54.0476C51.6465 53.6123 52.1637 52.7743 52.6099 51.3588C53.0472 49.9718 53.3586 48.2181 53.5715 46.1647C53.8993 43.0023 53.9765 39.3213 53.9946 35.4897L40.6668 39.4881V40.4306C40.6668 41.7936 39.837 43.0193 38.5715 43.5255L36.7045 44.2723C33.6846 45.4803 30.3158 45.4803 27.2959 44.2723L25.4289 43.5255C24.1633 43.0193 23.3335 41.7936 23.3335 40.4306V39.4881L10.0058 35.4897ZM27.3335 35.3333V39.9793L28.7815 40.5584C30.8477 41.3849 33.1527 41.3849 35.2189 40.5584L36.6668 39.9793V35.3333H27.3335Z"})));f3.displayName="ToolManagementOutlined";var x6=f3;import K from"react";import M6 from"classnames";var v3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>K.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:M6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},K.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"currentColor"},K.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M40.3035 24.4853C41.7883 22.4881 42.6668 20.0133 42.6668 17.3333C42.6668 10.7059 37.2943 5.33331 30.6668 5.33331C24.0394 5.33331 18.6668 10.7059 18.6668 17.3333C18.6668 20.8541 20.1831 24.0208 22.5983 26.216L16.063 40.1037C15.6075 40.0354 15.1414 40 14.6668 40C9.51218 40 5.3335 44.1786 5.3335 49.3333C5.3335 54.488 9.51218 58.6666 14.6668 58.6666C19.3711 58.6666 23.2624 55.1864 23.9066 50.6601L43.5948 47.7433C44.9379 50.2754 47.601 52 50.6668 52C55.0851 52 58.6668 48.4182 58.6668 44C58.6668 39.5817 55.0851 36 50.6668 36C49.9294 36 49.2151 36.0998 48.537 36.2866L40.3035 24.4853ZM23.126 45.3842L42.8135 42.4676C43.0364 41.318 43.5056 40.2562 44.1638 39.3394L36.2304 27.9684C34.5675 28.8401 32.6747 29.3333 30.6668 29.3333C29.4823 29.3333 28.3378 29.1617 27.257 28.842L20.8882 42.3757C21.823 43.2122 22.5883 44.2344 23.126 45.3842Z"})));v3.displayName="WorkflowFilled";var Z6=v3;import V from"react";import V6 from"classnames";var u3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>V.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:V6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},V.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"none"},V.createElement("path",{d:"M36.1557 9.03798H36.3709H36.5611L36.755 9.03896L36.9526 9.04L37.1538 9.04143L37.3585 9.04326L37.5669 9.0455L37.7788 9.04818L37.922 9.05022L38.0667 9.05246L38.2867 9.05621L38.5102 9.06045L38.737 9.06519L38.8901 9.06863L39.1226 9.07424L39.3583 9.08039L39.5974 9.0871L39.7586 9.09189L40.003 9.09957L40.2507 9.10785L40.4175 9.11371L40.5858 9.11985L40.7554 9.12627L40.9265 9.13298L41.0989 9.13998L41.2727 9.14728L41.5358 9.1588L41.713 9.16686L41.9812 9.17954L42.1616 9.1884L42.3434 9.19758L42.6184 9.21196L42.8034 9.22198L42.9896 9.23233L43.1771 9.24303L43.3659 9.25408L43.5559 9.26549L43.7472 9.27725L43.9396 9.28938L44.1333 9.30188L44.3282 9.31476L44.5243 9.32801C51.5656 9.80921 53.4305 14.88 53.6289 15.4868L53.6393 15.5193L53.6474 15.546L56.7042 15.7125C56.8673 15.7125 56.9995 15.8447 56.9995 16.0078C56.9995 16.1247 56.9316 16.2258 56.833 16.2737C53.6954 17.9715 52.7369 21.4214 53.3004 23.6686C53.482 24.3928 53.7642 25.0154 54.0784 25.6735L54.2768 26.0877C55.004 27.6087 55.8205 29.4504 55.9538 33.157C56.2523 41.4543 48.9588 48.9117 40.3287 48.9117L40.2343 48.9117L40.0327 48.912L39.6987 48.9131L39.4548 48.9141L39.0573 48.9163L38.7711 48.9181L38.468 48.9202L37.9816 48.9239L37.4572 48.9283L36.8946 48.9334L36.0854 48.9412L35.434 48.9479L34.2637 48.9605L32.9877 48.975L31.606 48.9914L30.7261 49.0021L29.4938 49.0175L27.8582 49.0383L26.1168 49.0611L24.6475 49.0807L22.3167 49.1123L20.6783 49.1349L17.648 49.1773L14.4105 49.2235L11.4705 49.2659L9.94336 49.2882L28.3986 28.3015L28.5658 28.1109L28.7326 27.9212L28.8989 27.7324L29.7217 26.8L29.8843 26.6156L30.0461 26.4316L30.2071 26.2482C30.2338 26.2177 30.2606 26.1871 30.2873 26.1566L30.447 25.9738C30.4735 25.9434 30.5001 25.913 30.5265 25.8826L30.6849 25.7003L30.8424 25.5184C32.6735 23.3972 34.3037 21.3266 35.4619 18.952C36.7476 15.3207 35.4388 12.611 34.1027 10.9692C33.9996 10.8424 33.8962 10.722 33.7939 10.6081C33.3385 10.0251 33.6486 9.05374 34.5159 9.05374C34.5866 9.05374 34.6587 9.05265 34.7322 9.05124L34.9001 9.04786C34.938 9.04714 34.9761 9.04648 35.0147 9.04598L35.1748 9.04407L35.3389 9.04238L35.4505 9.04139L35.7369 9.03943L35.9737 9.03843L36.1557 9.03798Z",fill:"#64698B"}),V.createElement("path",{d:"M28.3981 28.3017C20.4104 37.2905 10.9038 48.2272 7.29525 52.3356C6.6001 53.127 7.27386 53.8743 7.81233 53.9669C34.7346 58.5954 43.2826 45.9083 45.1866 40.1086C47.7917 32.1736 44.1108 28.3017 42.0277 27.039C34.9639 22.7575 29.7229 26.8109 28.3981 28.3017Z",fill:"#8B8FA8"})));u3.displayName="YuqueColored";var b6=u3;import b from"react";import H6 from"classnames";var h3=({disabled:o,hoverable:t,active:e,size:C,color:l,className:s,style:n,spin:d,...i})=>b.createElement("span",{...i,style:{fontSize:typeof C=="number"?`${C}px`:C,color:l,...n},className:H6("dtstack-icon",s,{"dtstack-icon--disabled":o,"dtstack-icon--hoverable":t,"dtstack-icon--active":e,"dtstack-icon--spin":d})},b.createElement("svg",{width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",fill:"none"},b.createElement("path",{d:"M36.1557 9.03798H36.3709H36.5611L36.755 9.03896L36.9526 9.04L37.1538 9.04143L37.3585 9.04326L37.5669 9.0455L37.7788 9.04818L37.922 9.05022L38.0667 9.05246L38.2867 9.05621L38.5102 9.06045L38.737 9.06519L38.8901 9.06863L39.1226 9.07424L39.3583 9.08039L39.5974 9.0871L39.7586 9.09189L40.003 9.09957L40.2507 9.10785L40.4175 9.11371L40.5858 9.11985L40.7554 9.12627L40.9265 9.13298L41.0989 9.13998L41.2727 9.14728L41.5358 9.1588L41.713 9.16686L41.9812 9.17954L42.1616 9.1884L42.3434 9.19758L42.6184 9.21196L42.8034 9.22198L42.9896 9.23233L43.1771 9.24303L43.3659 9.25408L43.5559 9.26549L43.7472 9.27725L43.9396 9.28938L44.1333 9.30188L44.3282 9.31476L44.5243 9.32801C51.5656 9.80921 53.4305 14.88 53.6289 15.4868L53.6393 15.5193L53.6474 15.546L56.7042 15.7125C56.8673 15.7125 56.9995 15.8447 56.9995 16.0078C56.9995 16.1247 56.9316 16.2258 56.833 16.2737C53.6954 17.9715 52.7369 21.4214 53.3004 23.6686C53.482 24.3928 53.7642 25.0154 54.0784 25.6735L54.2768 26.0877C55.004 27.6087 55.8205 29.4504 55.9538 33.157C56.2523 41.4543 48.9588 48.9117 40.3287 48.9117L40.2343 48.9117L40.0327 48.912L39.6987 48.9131L39.4548 48.9141L39.0573 48.9163L38.7711 48.9181L38.468 48.9202L37.9816 48.9239L37.4572 48.9283L36.8946 48.9334L36.0854 48.9412L35.434 48.9479L34.2637 48.9605L32.9877 48.975L31.606 48.9914L30.7261 49.0021L29.4938 49.0175L27.8582 49.0383L26.1168 49.0611L24.6475 49.0807L22.3167 49.1123L20.6783 49.1349L17.648 49.1773L14.4105 49.2235L11.4705 49.2659L9.94336 49.2882L28.3986 28.3015L28.5658 28.1109L28.7326 27.9212L28.8989 27.7324L29.7217 26.8L29.8843 26.6156L30.0461 26.4316L30.2071 26.2482C30.2338 26.2177 30.2606 26.1871 30.2873 26.1566L30.447 25.9738C30.4735 25.9434 30.5001 25.913 30.5265 25.8826L30.6849 25.7003L30.8424 25.5184C32.6735 23.3972 34.3037 21.3266 35.4619 18.952C36.7476 15.3207 35.4388 12.611 34.1027 10.9692C33.9996 10.8424 33.8962 10.722 33.7939 10.6081C33.3385 10.0251 33.6486 9.05374 34.5159 9.05374C34.5866 9.05374 34.6587 9.05265 34.7322 9.05124L34.9001 9.04786C34.938 9.04714 34.9761 9.04648 35.0147 9.04598L35.1748 9.04407L35.3389 9.04238L35.4505 9.04139L35.7369 9.03943L35.9737 9.03843L36.1557 9.03798Z",fill:"#335CFF"}),b.createElement("path",{d:"M28.3981 28.3017C20.4104 37.2905 10.9038 48.2272 7.29525 52.3356C6.6001 53.127 7.27386 53.8743 7.81233 53.9669C34.7346 58.5954 43.2826 45.9083 45.1866 40.1086C47.7917 32.1736 44.1108 28.3017 42.0277 27.039C34.9639 22.7575 29.7229 26.8109 28.3981 28.3017Z",fill:"#85A5FF"})));h3.displayName="YuqueSelectedColored";var y6=h3;export{g3 as AddNodeOutlined,x3 as AgentFilled,Z3 as AllCategoriesFilled,b3 as AppManagerFilled,y3 as AppManagerOutlined,N3 as CommonknowledgebaseFilled,F3 as ConversationConfigurationOutlined,S3 as ExpandFilled,$3 as FileListFilled,T3 as FileListOutlined,K3 as KnowledgeBaseFilled,Y3 as KnowledgeBaseOutlined,W3 as LogFilled,D3 as LogOutlined,J3 as ModelVendorFilled,X3 as ModelVendorOutlined,R3 as OrchestrationFilled,C6 as OrchestrationOutlined,t6 as PublishFilled,l6 as PublishOutlined,n6 as RecallTestFilled,i6 as RecallTestOutlined,r6 as RefreshOutlined,c6 as RunFilled,L6 as SetUpFilled,v6 as SetUpOutlined,h6 as SlideBarCollapseOutlined,g6 as ToolManagementFilled,x6 as ToolManagementOutlined,Z6 as WorkflowFilled,b6 as YuqueColored,y6 as YuqueSelectedColored};
|
package/dist/index.d.ts
CHANGED
|
@@ -59,11 +59,6 @@ declare const AlarmColored: {
|
|
|
59
59
|
displayName: string;
|
|
60
60
|
};
|
|
61
61
|
|
|
62
|
-
declare const AllCategoriesFilled: {
|
|
63
|
-
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
64
|
-
displayName: string;
|
|
65
|
-
};
|
|
66
|
-
|
|
67
62
|
declare const AnnouncementColored: {
|
|
68
63
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
69
64
|
displayName: string;
|
|
@@ -2374,6 +2369,11 @@ declare const SampleRowsColored: {
|
|
|
2374
2369
|
displayName: string;
|
|
2375
2370
|
};
|
|
2376
2371
|
|
|
2372
|
+
declare const SanityCheckFilled: {
|
|
2373
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
2374
|
+
displayName: string;
|
|
2375
|
+
};
|
|
2376
|
+
|
|
2377
2377
|
declare const SapHanaOutlined: {
|
|
2378
2378
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
2379
2379
|
displayName: string;
|
|
@@ -2399,6 +2399,11 @@ declare const SavesColored: {
|
|
|
2399
2399
|
displayName: string;
|
|
2400
2400
|
};
|
|
2401
2401
|
|
|
2402
|
+
declare const ScheduledCheckFilled: {
|
|
2403
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
2404
|
+
displayName: string;
|
|
2405
|
+
};
|
|
2406
|
+
|
|
2402
2407
|
declare const SchedulingInfoOutlined: {
|
|
2403
2408
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
2404
2409
|
displayName: string;
|
|
@@ -2839,6 +2844,11 @@ declare const ThumbsUpOutlined: {
|
|
|
2839
2844
|
displayName: string;
|
|
2840
2845
|
};
|
|
2841
2846
|
|
|
2847
|
+
declare const TimelinessValidationFilled: {
|
|
2848
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
2849
|
+
displayName: string;
|
|
2850
|
+
};
|
|
2851
|
+
|
|
2842
2852
|
declare const TimerColored: {
|
|
2843
2853
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
2844
2854
|
displayName: string;
|
|
@@ -3054,4 +3064,4 @@ declare const ZoomOutOutlined: {
|
|
|
3054
3064
|
displayName: string;
|
|
3055
3065
|
};
|
|
3056
3066
|
|
|
3057
|
-
export { AddItemColored, AddSubitemColored, AiAvatarColored, AiEditOutlined, AiSearchOutlined, AiWorksHoverColored, AiWorksIsoColored, AigcOutlined, AimOutlined, AlarmColored, AllCategoriesFilled, AnnouncementColored, ApiMgmtColored, ApiOutlined, ApiServiceColored, AppInformationOutlined, ArrowDownOutlined, ArrowLeftFilled, ArrowLeftOutlined, ArrowRightOutlined, ArrowUpCircleOutlined, ArrowUpFilled, ArrowUpOutlined, AssetsApiColored, AssetsFieldColored, AssetsIndicatorColored, AssetsReportColored, AssetsTagColored, AssetsViewColored, AtomicIndexBgColored, AtomicIndexColored, AtomicLabelBgColored, AtomicLabelColored, AttachmentOutlined, AttentionAnalysisOutlined, AuthorizationAndSecurityColored, BackToListColored, BarChartColored, BarChartFilled, BarChartOutlined, BasicInformationOutlined, BasicServicesColored, BatchJumpFilled, BatchLogacqFilled, BatchProductOutlined, BatchTaskColored, BatchUploadFilled, BatchWorksColored, BatchWorksHoverColored, BatchWorksIsoColored, BatchWorksOutlined, BellColored, BiReportIsoColored, BiReportOutlined, BloodOutlined, BoardColored, BookOutlined, BreakdownOutlined, BucketFilled, BugOutlined, BulkOperationOutlined, BusinessProcessOutlined, CalculationModuleOutlined, CalendarOutlined, CallsColored, CardColored, CardOutlined, CaseSensitiveMatchOutlined, CatalogFilled, CatalogIconFilled, CatalogManagementColored, CatalogMgmtColored, CatalogOutlined, CatalogSortOutlined, CertificationOutlined, ChToEnOutlined, ChangeLogOutlined, CharacterFilled, CharacterMgmtColored, CheckCircleOutlined, CheckFieldsColored, CheckFilled, CheckOutlined, CircleCheckedOutlined, CircleColored, CircleOutlined, ClientModelColored, ClockFilled, ClockOutlined, CloseCircleOutlined, CloseFilled, CloseOutlined, ClusterDetailsColored, ClusterFilled, CodeAutoRunOutlined, CodeCheckColored, CodeCheckFilled, CodeCheckOutlined, CodeInsertColored, CodeMgmtColored, CodeOutlined, CompanyColored, CompareOutlined, CompliantFieldColored, CompositeIndexBgColored, CompositeIndexColored, CompositeLabelBgColored, CompositeLabelColored, ConfigurationFilled, ConnectionOutlined, ConnectionSquareFilled, ConsoleColored, ConsoleHoverColored, ConsoleIsoColored, ConsoleOutlined, ContinuousOptimOutlined, ContractOutlined, ControlHorizontalOutlined, ControlSquareOutlined, ControlVerticalOutlined, CopyOutlined, CoverageColored, CustomCheckFilled, CustomIndexBgColored, CustomIndexColored, CustomLabelBgColored, CustomLabelColored, CustomizeSearchColored, DataAggregationColored, DataApiColored, DataApiHoverColored, DataApiIsoColored, DataApiOutlined, DataAssetMgmtColored, DataAssetsColored, DataAssetsHoverColored, DataAssetsIsoColored, DataAssetsOutlined, DataCatalogMgmtColored, DataFileGovernanceColored, DataFillingOutlined, DataFillingTaskColored, DataLakeColored, DataLakeHoverColored, DataLakeIngestionColored, DataLakeIsoColored, DataLakeOutlined, DataMgmtColored, DataModelColored, DataModelIsoColored, DataModelOutlined, DataResourceManagerIsoColored, DataSamplingColored, DataSearchColored, DataSecurityColored, DataSecurityHoverColored, DataSecurityIsoColored, DataSecurityOutlined, DataSharingHoverColored, DataSharingIsoColored, DataSharingOutlined, DataSourceColored, DataSourceHoverColored, DataSourceIsoColored, DataSourceMgmtColored, DataSourceOutlined, DataStandardsMgmtIsoColored, DataSyncOutlined, DataTableColored, DataTableMgmtColored, DataValidHoverColored, DataValidIsoColored, DataValidOutlined, DatabaseFilled, DatamapColored, DeactivateColored, DelayIssueColored, DeleteOutlined, DerivedIndexBgColored, DerivedIndexColored, DerivedLabelBgColored, DerivedLabelColored, DimensionFilled, DimensionGroupFilled, DimensionSharingColored, DimensionTableOutlined, DimondFilled, DingTalkFilled, DirectoryOperationAuditColored, DirtyDataMgmtColored, DmdbOutlined, DocColored, DocCopySquareOutlined, DocGovernanceOutlined, DocumentColored, DorisOutlined, DoubleDownOutlined, DoubleLeftOutlined, DoubleRightOutlined, DoubleUpOutlined, DownCircleOutlined, DownOutlined, DownToLineCircleFilled, DownToSthFilled, DownTriangleFilled, DownloadCenterColored, DownloadOutlined, DragOutlined, DraggableOutlined, DtAiHoverColored, DtAiIsoColored, DtAiOutlined, EasyIndexColored, EasyIndexHoverColored, EasyIndexIsoColored, EasyIndexOutlined, EditFilled, EditOutlined, EllipsisCircleOutlined, EllipsisTableOutlined, EmOutlined, EmrHoverColored, EmrIsoColored, EmrOutlined, EnToChOutlined, EncryptedDataFilled, EngagementColored, EraseOutlined, ErrorColored, ExactMatchOutlined, ExecutionPlanOutlined, ExpandOutlined, ExportOutlined, ExternalApplicationHoverColored, ExternalApplicationIsoColored, ExternalApplicationOutlined, FailureCountColored, FailureRateColored, FallOutlined, FileColored, FileFilled, FileMusicColored, FileMusicFilled, FileZipColored, FileZipFilled, FilterFilled, FilterOutlined, FilteringConditionFilled, FinanceRelatedColored, FinanceSquareOutlined, FinancialColored, FindOutlined, FlagOutlined, FlinkJarOutlined, FlinkOutlined, FlinkSqlOutlined, FolderColored, FolderFilled, FolderOpenedFilled, FolderOutlined, FormFilled, FormOutlined, FormattingFilled, FormattingOutlined, FullScreenFilled, FullscreenExitOutlined, FullscreenExitSquareFilled, FullscreenOutlined, FullscreenSquareFilled, FunctionCircleFilled, FunctionOutlined, FundColored, GenerateApiColored, GridFilled, GridOutlined, GridSquareFilled, GroupAnalystColored, GroupIdColored, GroupMgmtColored, GroupRuleFilled, GroupStatusColored, GroupTypeColored, HamburgerOutlined, HashDataOutlined, HealthScoreMgmtColored, HideDemoColored, HiveOutlined, HomeSettingColored, HomepageOutlined, IconProps, ImageColored, ImageFilled, ImageOutlined, ImportFilled, ImportOutlined, IndeterminateOutlined, IndexMgmtColored, IndexOutlined, IndicatorCountColored, IndicatorDevelopmentColored, IndividualProfileColored, InformationFilled, InformationOutlined, InstanceCoverageColored, InsuranceColored, InterfaceInformationOutlined, InvokeOutlined, IssueColored, JavaOutlined, KafkaFormatConfigColored, KeyFolderOutlined, KeyOutlined, LayerFilled, LayoutOutlined, LeftCircleFilled, LeftOutlined, LeftTriangleFilled, Level1Outlined, Level2Outlined, Level3Outlined, LightFilled, LightOutlined, LineChartColored, LineChartOutlined, LoadingColored, LocationFilled, LocationOutlined, LockColored, LockFilled, LockOutlined, LockedFilled, MailFilled, MainPageOutlined, ManagementOutlined, ManualTaskColored, ManualTaskOutlined, MarketingColored, MemberMgmtColored, MenuCloseOutlined, MenuCollapseOutlined, MenuExpandOutlined, MenuFoldOutlined, MenuUnfoldOutlined, MessageFilled, MessageMgmtHoverColored, MessageMgmtIsoColored, MessageMgmtOutlined, MessageOutlined, MetaModelMgmtColored, MetadataMgmtColored, MetadataMgmtIsoColored, MetadataSyncColored, MetadataValidColored, MetricSharingColored, MinusCircleFilled, MinusCircleOutlined, MinusOutlined, MinusSquareOutlined, ModelFilled, ModelSharingColored, MoreOutlined, MouseOutlined, MyApiColored, MyApplicationColored, MySqlOutlined, NavigationOutlined, NewAdditionColored, NewChatOutlined, NewRetailColored, NotificationCenterColored, NotificationSettingColored, ObjectMgmtColored, ObjectOutlined, ObjectStrategyOutlined, OceanBaseOutlined, OfflineSearchColored, OfflineTaskColored, OggIsoColored, OggOutlined, OperationAnalysisColored, OperationProcessMgmtColored, OperatorSquareColored, OperatorTaskOutlined, OptimizationAnalysisColored, OptimizationColored, OrderStatusOutlined, OtherDocumentsColored, OtherFileColored, OtherFileFilled, OtherIndicatorColored, OushuOutlined, OverallOutlined, OverallRanking1Filled, OverallRanking2Filled, OverallRanking3Filled, OverlapOutlined, ParameterTemplateColored, PauseFilled, PauseOutlined, PdfOutlined, PermissionMgmtColored, PermissionOutlined, PersonnelSquareOutlined, PieChartColored, PieChartFilled, PieChartOutlined, PlayingColored, PlayingFilled, PlayingOutlined, PlusCircleFilled, PlusCircleOutlined, PlusOutlined, PlusSquareFilled, PlusSquareOutlined, PolicyMgmtColored, PopularityFilled, PopularityRanking1Filled, PopularityRanking2Filled, PopularityRanking3Filled, PrefixMatchOutlined, PreviewFilled, PreviewOutlined, PreviewSquareFilled, ProcessMgmtColored, ProfileSettingColored, ProjectConfigColored, PublishedColored, PurchaseSquareOutlined, PuzzleFilled, PyFlinkMgmtColored, PyFlinkOutlined, PyOutlined, PythonOnAgentOutlined, QualityAnalysisColored, QualityRankingOutlined, QualityReportColored, QuestionFilled, QuestionOutlined, RealTimeValidationColored, RealtimeCollectionOutlined, RegisterApiColored, ReloadOutlined, RemoteActivationOutlined, RemotePullOutlined, RemotePushOutlined, RepairOutlined, ReportsDownloadColored, ReportsUploadColored, RequiredMarkOutlined, ResolvedIssueColored, RestoreOutlined, ResultTableOutlined, RetailColored, ReturnHomeOutlined, RetweetOutlined, RevokeFilled, RightCircleFilled, RightDownTriangleFilled, RightOutlined, RightTriangleFilled, RiseOutlined, RiskColored, RobotFilled, RobotOutlined, RootMgmtColored, RouteOutlined, RuleConfigColored, RuleEditFilled, SafeFilled, SafetyColored, SafetyOutlined, SafetyRankingOutlined, SalesSquareOutlined, SampleRowsColored, SapHanaOutlined, SaveFilled, SaveOutlined, SaveSquareFilled, SavesColored, SchedulingInfoOutlined, SeaboxOutlined, SealFilled, SealSquareFilled, SearchFilled, SearchOutlined, SearchesColored, SecuritiesColored, SelectedOutlined, SelfServiceDataAccessColored, SendFilled, SendOutlined, ServiceGroupingColored, ServiceOrchestrationColored, SettingHamburgerOutlined, SettingOutlined, SharedFilled, SharedProjectFilled, SharedUserFilled, ShowDemoColored, SilenceRanking1Filled, SilenceRanking2Filled, SilenceRanking3Filled, SlashOutlined, SlideBarOutlined, SmallAndMicroColored, SortFilled, SourceFilled, SourceOutlined, SourceTableOutlined, SpaceOutlined, SpacePlusOutlined, SparkSqlOutlined, SpinFilled, SpinOutlined, SqlCodeCheckFilled, SqlInformationOutlined, SquareCheckedFilled, SquareColored, SquareOutlined, StandardFilled, StandardFoundationColored, StandardMgmtColored, StandardStatisticsColored, StandardizedTableDesignColored, StarFilled, StarOutlined, StarRocksOutlined, StayLevelOutlined, StockCircleOutlined, StrategyMgmtColored, StreamTaskColored, StreamWorksColored, StreamWorksHoverColored, StreamWorksIsoColored, StreamWorksOutlined, StretchMarkOutlined, StrongCorrelationColored, SublevelOutlined, SubscribedDataColored, SuccessColored, SuffixMatchOutlined, SwapCircleFilled, SwapCircleOutlined, SwapOutlined, SwapRightOutlined, SwapSquareFilled, TableOfContentsOutlined, TableTypesColored, TagDeidentificationColored, TagEvaluationColored, TagMarketColored, TagMgmtColored, TagSquareOutlined, TagTypeColored, TaggedGroupsColored, TargetColored, TargetFilled, TaskAndInstanceColored, TaskCenterColored, TaskMonitoringColored, TaskQueryColored, ThemeFilled, ThemeOutlined, ThumbsDownFilled, ThumbsDownOutlined, ThumbsUpFilled, ThumbsUpOutlined, TimerColored, TopicsColored, TotalCallsColored, TotalInterfacesColored, TrinoOutlined, TxtOutlined, UniquenessCheckFilled, UnpublishedColored, UnviewOutlined, UpCircleOutlined, UpOutlined, UpToLineOutlined, UpToSthFilled, UpTriangleFilled, UpdateProgressOutlined, UploadFilesColored, UploadFolderColored, UploadOutlined, UploadRecordColored, UsageAnalysisColored, UsageAnalysisOutlined, UserCircleOutlined, UserFilled, UserInsightColored, UserInsightHoverColored, UserInsightIsoColored, UserInsightOutlined, UserOutlined, UserRectangleOutlined, VersionSquareOutlined, VideoColored, VideoFilled, VideoOutlined, ViewInNewTabOutlined, ViewOutlined, ViewsColored, WaitingColored, WarningFilled, WarningLightFilled, WeakCorrelationColored, WorkflowOutlined, ZoomInOutlined, ZoomOutOutlined };
|
|
3067
|
+
export { AddItemColored, AddSubitemColored, AiAvatarColored, AiEditOutlined, AiSearchOutlined, AiWorksHoverColored, AiWorksIsoColored, AigcOutlined, AimOutlined, AlarmColored, AnnouncementColored, ApiMgmtColored, ApiOutlined, ApiServiceColored, AppInformationOutlined, ArrowDownOutlined, ArrowLeftFilled, ArrowLeftOutlined, ArrowRightOutlined, ArrowUpCircleOutlined, ArrowUpFilled, ArrowUpOutlined, AssetsApiColored, AssetsFieldColored, AssetsIndicatorColored, AssetsReportColored, AssetsTagColored, AssetsViewColored, AtomicIndexBgColored, AtomicIndexColored, AtomicLabelBgColored, AtomicLabelColored, AttachmentOutlined, AttentionAnalysisOutlined, AuthorizationAndSecurityColored, BackToListColored, BarChartColored, BarChartFilled, BarChartOutlined, BasicInformationOutlined, BasicServicesColored, BatchJumpFilled, BatchLogacqFilled, BatchProductOutlined, BatchTaskColored, BatchUploadFilled, BatchWorksColored, BatchWorksHoverColored, BatchWorksIsoColored, BatchWorksOutlined, BellColored, BiReportIsoColored, BiReportOutlined, BloodOutlined, BoardColored, BookOutlined, BreakdownOutlined, BucketFilled, BugOutlined, BulkOperationOutlined, BusinessProcessOutlined, CalculationModuleOutlined, CalendarOutlined, CallsColored, CardColored, CardOutlined, CaseSensitiveMatchOutlined, CatalogFilled, CatalogIconFilled, CatalogManagementColored, CatalogMgmtColored, CatalogOutlined, CatalogSortOutlined, CertificationOutlined, ChToEnOutlined, ChangeLogOutlined, CharacterFilled, CharacterMgmtColored, CheckCircleOutlined, CheckFieldsColored, CheckFilled, CheckOutlined, CircleCheckedOutlined, CircleColored, CircleOutlined, ClientModelColored, ClockFilled, ClockOutlined, CloseCircleOutlined, CloseFilled, CloseOutlined, ClusterDetailsColored, ClusterFilled, CodeAutoRunOutlined, CodeCheckColored, CodeCheckFilled, CodeCheckOutlined, CodeInsertColored, CodeMgmtColored, CodeOutlined, CompanyColored, CompareOutlined, CompliantFieldColored, CompositeIndexBgColored, CompositeIndexColored, CompositeLabelBgColored, CompositeLabelColored, ConfigurationFilled, ConnectionOutlined, ConnectionSquareFilled, ConsoleColored, ConsoleHoverColored, ConsoleIsoColored, ConsoleOutlined, ContinuousOptimOutlined, ContractOutlined, ControlHorizontalOutlined, ControlSquareOutlined, ControlVerticalOutlined, CopyOutlined, CoverageColored, CustomCheckFilled, CustomIndexBgColored, CustomIndexColored, CustomLabelBgColored, CustomLabelColored, CustomizeSearchColored, DataAggregationColored, DataApiColored, DataApiHoverColored, DataApiIsoColored, DataApiOutlined, DataAssetMgmtColored, DataAssetsColored, DataAssetsHoverColored, DataAssetsIsoColored, DataAssetsOutlined, DataCatalogMgmtColored, DataFileGovernanceColored, DataFillingOutlined, DataFillingTaskColored, DataLakeColored, DataLakeHoverColored, DataLakeIngestionColored, DataLakeIsoColored, DataLakeOutlined, DataMgmtColored, DataModelColored, DataModelIsoColored, DataModelOutlined, DataResourceManagerIsoColored, DataSamplingColored, DataSearchColored, DataSecurityColored, DataSecurityHoverColored, DataSecurityIsoColored, DataSecurityOutlined, DataSharingHoverColored, DataSharingIsoColored, DataSharingOutlined, DataSourceColored, DataSourceHoverColored, DataSourceIsoColored, DataSourceMgmtColored, DataSourceOutlined, DataStandardsMgmtIsoColored, DataSyncOutlined, DataTableColored, DataTableMgmtColored, DataValidHoverColored, DataValidIsoColored, DataValidOutlined, DatabaseFilled, DatamapColored, DeactivateColored, DelayIssueColored, DeleteOutlined, DerivedIndexBgColored, DerivedIndexColored, DerivedLabelBgColored, DerivedLabelColored, DimensionFilled, DimensionGroupFilled, DimensionSharingColored, DimensionTableOutlined, DimondFilled, DingTalkFilled, DirectoryOperationAuditColored, DirtyDataMgmtColored, DmdbOutlined, DocColored, DocCopySquareOutlined, DocGovernanceOutlined, DocumentColored, DorisOutlined, DoubleDownOutlined, DoubleLeftOutlined, DoubleRightOutlined, DoubleUpOutlined, DownCircleOutlined, DownOutlined, DownToLineCircleFilled, DownToSthFilled, DownTriangleFilled, DownloadCenterColored, DownloadOutlined, DragOutlined, DraggableOutlined, DtAiHoverColored, DtAiIsoColored, DtAiOutlined, EasyIndexColored, EasyIndexHoverColored, EasyIndexIsoColored, EasyIndexOutlined, EditFilled, EditOutlined, EllipsisCircleOutlined, EllipsisTableOutlined, EmOutlined, EmrHoverColored, EmrIsoColored, EmrOutlined, EnToChOutlined, EncryptedDataFilled, EngagementColored, EraseOutlined, ErrorColored, ExactMatchOutlined, ExecutionPlanOutlined, ExpandOutlined, ExportOutlined, ExternalApplicationHoverColored, ExternalApplicationIsoColored, ExternalApplicationOutlined, FailureCountColored, FailureRateColored, FallOutlined, FileColored, FileFilled, FileMusicColored, FileMusicFilled, FileZipColored, FileZipFilled, FilterFilled, FilterOutlined, FilteringConditionFilled, FinanceRelatedColored, FinanceSquareOutlined, FinancialColored, FindOutlined, FlagOutlined, FlinkJarOutlined, FlinkOutlined, FlinkSqlOutlined, FolderColored, FolderFilled, FolderOpenedFilled, FolderOutlined, FormFilled, FormOutlined, FormattingFilled, FormattingOutlined, FullScreenFilled, FullscreenExitOutlined, FullscreenExitSquareFilled, FullscreenOutlined, FullscreenSquareFilled, FunctionCircleFilled, FunctionOutlined, FundColored, GenerateApiColored, GridFilled, GridOutlined, GridSquareFilled, GroupAnalystColored, GroupIdColored, GroupMgmtColored, GroupRuleFilled, GroupStatusColored, GroupTypeColored, HamburgerOutlined, HashDataOutlined, HealthScoreMgmtColored, HideDemoColored, HiveOutlined, HomeSettingColored, HomepageOutlined, IconProps, ImageColored, ImageFilled, ImageOutlined, ImportFilled, ImportOutlined, IndeterminateOutlined, IndexMgmtColored, IndexOutlined, IndicatorCountColored, IndicatorDevelopmentColored, IndividualProfileColored, InformationFilled, InformationOutlined, InstanceCoverageColored, InsuranceColored, InterfaceInformationOutlined, InvokeOutlined, IssueColored, JavaOutlined, KafkaFormatConfigColored, KeyFolderOutlined, KeyOutlined, LayerFilled, LayoutOutlined, LeftCircleFilled, LeftOutlined, LeftTriangleFilled, Level1Outlined, Level2Outlined, Level3Outlined, LightFilled, LightOutlined, LineChartColored, LineChartOutlined, LoadingColored, LocationFilled, LocationOutlined, LockColored, LockFilled, LockOutlined, LockedFilled, MailFilled, MainPageOutlined, ManagementOutlined, ManualTaskColored, ManualTaskOutlined, MarketingColored, MemberMgmtColored, MenuCloseOutlined, MenuCollapseOutlined, MenuExpandOutlined, MenuFoldOutlined, MenuUnfoldOutlined, MessageFilled, MessageMgmtHoverColored, MessageMgmtIsoColored, MessageMgmtOutlined, MessageOutlined, MetaModelMgmtColored, MetadataMgmtColored, MetadataMgmtIsoColored, MetadataSyncColored, MetadataValidColored, MetricSharingColored, MinusCircleFilled, MinusCircleOutlined, MinusOutlined, MinusSquareOutlined, ModelFilled, ModelSharingColored, MoreOutlined, MouseOutlined, MyApiColored, MyApplicationColored, MySqlOutlined, NavigationOutlined, NewAdditionColored, NewChatOutlined, NewRetailColored, NotificationCenterColored, NotificationSettingColored, ObjectMgmtColored, ObjectOutlined, ObjectStrategyOutlined, OceanBaseOutlined, OfflineSearchColored, OfflineTaskColored, OggIsoColored, OggOutlined, OperationAnalysisColored, OperationProcessMgmtColored, OperatorSquareColored, OperatorTaskOutlined, OptimizationAnalysisColored, OptimizationColored, OrderStatusOutlined, OtherDocumentsColored, OtherFileColored, OtherFileFilled, OtherIndicatorColored, OushuOutlined, OverallOutlined, OverallRanking1Filled, OverallRanking2Filled, OverallRanking3Filled, OverlapOutlined, ParameterTemplateColored, PauseFilled, PauseOutlined, PdfOutlined, PermissionMgmtColored, PermissionOutlined, PersonnelSquareOutlined, PieChartColored, PieChartFilled, PieChartOutlined, PlayingColored, PlayingFilled, PlayingOutlined, PlusCircleFilled, PlusCircleOutlined, PlusOutlined, PlusSquareFilled, PlusSquareOutlined, PolicyMgmtColored, PopularityFilled, PopularityRanking1Filled, PopularityRanking2Filled, PopularityRanking3Filled, PrefixMatchOutlined, PreviewFilled, PreviewOutlined, PreviewSquareFilled, ProcessMgmtColored, ProfileSettingColored, ProjectConfigColored, PublishedColored, PurchaseSquareOutlined, PuzzleFilled, PyFlinkMgmtColored, PyFlinkOutlined, PyOutlined, PythonOnAgentOutlined, QualityAnalysisColored, QualityRankingOutlined, QualityReportColored, QuestionFilled, QuestionOutlined, RealTimeValidationColored, RealtimeCollectionOutlined, RegisterApiColored, ReloadOutlined, RemoteActivationOutlined, RemotePullOutlined, RemotePushOutlined, RepairOutlined, ReportsDownloadColored, ReportsUploadColored, RequiredMarkOutlined, ResolvedIssueColored, RestoreOutlined, ResultTableOutlined, RetailColored, ReturnHomeOutlined, RetweetOutlined, RevokeFilled, RightCircleFilled, RightDownTriangleFilled, RightOutlined, RightTriangleFilled, RiseOutlined, RiskColored, RobotFilled, RobotOutlined, RootMgmtColored, RouteOutlined, RuleConfigColored, RuleEditFilled, SafeFilled, SafetyColored, SafetyOutlined, SafetyRankingOutlined, SalesSquareOutlined, SampleRowsColored, SanityCheckFilled, SapHanaOutlined, SaveFilled, SaveOutlined, SaveSquareFilled, SavesColored, ScheduledCheckFilled, SchedulingInfoOutlined, SeaboxOutlined, SealFilled, SealSquareFilled, SearchFilled, SearchOutlined, SearchesColored, SecuritiesColored, SelectedOutlined, SelfServiceDataAccessColored, SendFilled, SendOutlined, ServiceGroupingColored, ServiceOrchestrationColored, SettingHamburgerOutlined, SettingOutlined, SharedFilled, SharedProjectFilled, SharedUserFilled, ShowDemoColored, SilenceRanking1Filled, SilenceRanking2Filled, SilenceRanking3Filled, SlashOutlined, SlideBarOutlined, SmallAndMicroColored, SortFilled, SourceFilled, SourceOutlined, SourceTableOutlined, SpaceOutlined, SpacePlusOutlined, SparkSqlOutlined, SpinFilled, SpinOutlined, SqlCodeCheckFilled, SqlInformationOutlined, SquareCheckedFilled, SquareColored, SquareOutlined, StandardFilled, StandardFoundationColored, StandardMgmtColored, StandardStatisticsColored, StandardizedTableDesignColored, StarFilled, StarOutlined, StarRocksOutlined, StayLevelOutlined, StockCircleOutlined, StrategyMgmtColored, StreamTaskColored, StreamWorksColored, StreamWorksHoverColored, StreamWorksIsoColored, StreamWorksOutlined, StretchMarkOutlined, StrongCorrelationColored, SublevelOutlined, SubscribedDataColored, SuccessColored, SuffixMatchOutlined, SwapCircleFilled, SwapCircleOutlined, SwapOutlined, SwapRightOutlined, SwapSquareFilled, TableOfContentsOutlined, TableTypesColored, TagDeidentificationColored, TagEvaluationColored, TagMarketColored, TagMgmtColored, TagSquareOutlined, TagTypeColored, TaggedGroupsColored, TargetColored, TargetFilled, TaskAndInstanceColored, TaskCenterColored, TaskMonitoringColored, TaskQueryColored, ThemeFilled, ThemeOutlined, ThumbsDownFilled, ThumbsDownOutlined, ThumbsUpFilled, ThumbsUpOutlined, TimelinessValidationFilled, TimerColored, TopicsColored, TotalCallsColored, TotalInterfacesColored, TrinoOutlined, TxtOutlined, UniquenessCheckFilled, UnpublishedColored, UnviewOutlined, UpCircleOutlined, UpOutlined, UpToLineOutlined, UpToSthFilled, UpTriangleFilled, UpdateProgressOutlined, UploadFilesColored, UploadFolderColored, UploadOutlined, UploadRecordColored, UsageAnalysisColored, UsageAnalysisOutlined, UserCircleOutlined, UserFilled, UserInsightColored, UserInsightHoverColored, UserInsightIsoColored, UserInsightOutlined, UserOutlined, UserRectangleOutlined, VersionSquareOutlined, VideoColored, VideoFilled, VideoOutlined, ViewInNewTabOutlined, ViewOutlined, ViewsColored, WaitingColored, WarningFilled, WarningLightFilled, WeakCorrelationColored, WorkflowOutlined, ZoomInOutlined, ZoomOutOutlined };
|