zhihao-ui-react 1.0.0 → 1.0.1-beta.1

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/index.d.ts CHANGED
@@ -1,6 +1,2151 @@
1
- import "@zh/theme/style.css";
2
- export * from "@zh/components";
3
- export * from "@zh/constants";
4
- export * from "@zh/hooks";
5
- export * from "@zh/theme";
6
- export * from "@zh/utils";
1
+ import { BadgeProps as BadgeProps$1, ButtonProps as ButtonProps$1, DividerProps as DividerProps$1, EmptyProps as EmptyProps$1, ModalProps, ThemeConfig } from "antd";
2
+ import { CSSProperties, HTMLAttributes, ImgHTMLAttributes, Key, MouseEvent, ReactElement, ReactNode, Ref, UIEventHandler } from "react";
3
+ import { AlertProps as AlertProps$1 } from "antd/es/alert";
4
+ import { RibbonProps } from "antd/es/badge";
5
+ import { ButtonGroupProps as ButtonGroupProps$1 } from "antd/es/button";
6
+ import { CascaderProps as CascaderProps$1, DefaultOptionType as DefaultOptionType$1 } from "antd/es/cascader";
7
+ import { CascaderPanelProps as CascaderPanelProps$1 } from "antd/es/cascader/Panel";
8
+ import { CheckboxGroupProps as CheckboxGroupProps$1 } from "antd/es/checkbox";
9
+ import { CheckboxProps as CheckboxProps$1 } from "antd/es/checkbox/Checkbox";
10
+ import { DatePickerProps as DatePickerProps$1, RangePickerProps } from "antd/es/date-picker";
11
+ import { TimePickerProps as TimePickerProps$1, TimeRangePickerProps as TimeRangePickerProps$1 } from "antd/es/time-picker";
12
+ import { DropdownButtonProps as DropdownButtonProps$1, DropdownProps as DropdownProps$1 } from "antd/es/dropdown";
13
+ import { MenuProps as MenuProps$1, MenuRef as AntdMenuRef } from "antd/es/menu";
14
+ import { FormInstance, FormItemProps as FormItemProps$1, FormListFieldData, FormListOperation, FormListProps, FormProps as FormProps$1, Rule, RuleObject, RuleRender } from "antd/es/form";
15
+ import { ImagePreviewType } from "antd/es/image";
16
+ import { GroupPreviewConfig, PreviewGroupProps } from "antd/es/image/PreviewGroup";
17
+ import { GroupProps } from "antd/es/input";
18
+ import { InputProps as InputProps$1, InputRef } from "antd/es/input/Input";
19
+ import { PasswordProps as PasswordProps$1 } from "antd/es/input/Password";
20
+ import { SearchProps as SearchProps$1 } from "antd/es/input/Search";
21
+ import { TextAreaProps as TextAreaProps$1 } from "antd/es/input/TextArea";
22
+ import { PaginationProps as PaginationProps$1 } from "antd/es/pagination";
23
+ import { RadioGroupProps as RadioGroupProps$1, RadioProps as RadioProps$1 } from "antd/es/radio";
24
+ import { ResultProps as ResultProps$1, ResultStatusType as AntdResultStatusType } from "antd/es/result";
25
+ import { BaseOptionType, DefaultOptionType, RefSelectProps, SelectProps as SelectProps$1 } from "antd/es/select";
26
+ import { StepsProps as StepsProps$1 } from "antd/es/steps";
27
+ import { SwitchProps as SwitchProps$1 } from "antd/es/switch";
28
+ import { TabPaneProps, TabsProps as TabsProps$1, TabsRef, TabsRef as AntdTabsRef } from "antd/es/tabs";
29
+ import { TimelineProps as TimelineProps$1 } from "antd/es/timeline";
30
+ import { TooltipPlacement as TooltipPlacement$1, TooltipProps as TooltipProps$1 } from "antd/es/tooltip";
31
+ import { DataNode, TreeProps as TreeProps$1 } from "antd/es/tree";
32
+ //#region packages/components/src/alert/src/type.d.ts
33
+ /** UI KIT Alert 的状态类型,扩展 Ant Design 不包含的 primary。 */
34
+ type AlertType = "info" | "primary" | "success" | "warning" | "error";
35
+ /** UI KIT Alert 的关闭按钮类型。 */
36
+ type AlertCloseType = "icon" | "text";
37
+ /** 基于 Ant Design Alert 扩展的 UI KIT Alert 属性。 */
38
+ interface AlertProps extends Omit<AlertProps$1, "closeText" | "description" | "message" | "title" | "type"> {
39
+ /** 关闭按钮类型,对应 Figma `close type=icon/text`。 */
40
+ closeType?: AlertCloseType;
41
+ /** 关闭文字,对应 Figma 文本关闭按钮。 */
42
+ closeText?: ReactNode;
43
+ /** 描述内容,存在时对应 Figma `description=on`。 */
44
+ description?: ReactNode;
45
+ /** 标题内容;无 description 时作为主文案,有 description 时作为标题。 */
46
+ title?: ReactNode;
47
+ /** Alert 类型,对应 Figma `type`。 */
48
+ type?: AlertType;
49
+ }
50
+ //#endregion
51
+ //#region packages/components/src/alert/src/alert.d.ts
52
+ /** Alert 复用 Ant Design 关闭、图标和语义能力,并按 UI KIT 类型覆盖视觉。 */
53
+ declare function Alert({ className, closable, closeText, closeType, description, rootClassName, showIcon, title, type, variant, ...restProps }: AlertProps): import("react").JSX.Element;
54
+ declare namespace Alert {
55
+ var displayName: string;
56
+ }
57
+ //#endregion
58
+ //#region packages/components/src/badge/src/type.d.ts
59
+ /** 基于 Ant Design Badge 扩展的 UI KIT Badge 属性。 */
60
+ interface BadgeProps extends BadgeProps$1 {}
61
+ /** 基于 Ant Design Badge.Ribbon 扩展的 UI KIT Ribbon 属性。 */
62
+ interface BadgeRibbonProps extends RibbonProps {}
63
+ /** Badge 对外暴露的根节点实例类型。 */
64
+ type BadgeRef = HTMLSpanElement;
65
+ //#endregion
66
+ //#region packages/components/src/badge/src/badge.d.ts
67
+ /** BadgeRibbon 复用 Ant Design Ribbon 的角标能力,补充独立类名便于样式隔离。 */
68
+ declare function BadgeRibbon({ className, ...restProps }: BadgeRibbonProps): import("react").JSX.Element;
69
+ declare namespace BadgeRibbon {
70
+ var displayName: string;
71
+ }
72
+ /** 保持 Ant Design `Badge.Ribbon` 的组合调用方式。 */
73
+ declare const Badge: import("react").ForwardRefExoticComponent<BadgeProps & import("react").RefAttributes<HTMLSpanElement>> & {
74
+ Ribbon: typeof BadgeRibbon;
75
+ };
76
+ //#endregion
77
+ //#region packages/components/src/button/src/type.d.ts
78
+ /** 设计稿中的按钮展示样式。 */
79
+ type ButtonStyle = "basic" | "icon" | "text" | "link";
80
+ /** UI KIT 中的按钮语义色。 */
81
+ type ButtonColor = "default" | "primary" | "success" | "info" | "warning" | "danger";
82
+ /** 基于 Ant Design Button 扩展的 UI KIT Button 属性。 */
83
+ interface ButtonProps extends Omit<ButtonProps$1, "color"> {
84
+ /** 对应 UI KIT 中的语义色。 */
85
+ color?: ButtonColor;
86
+ /** 对应 Figma 中的 style 变体,避免和 React style 属性冲突所以命名为 buttonStyle。 */
87
+ buttonStyle?: ButtonStyle;
88
+ /** 对应 Figma 中的 plain 描边态。 */
89
+ plain?: boolean;
90
+ /** 对应 Figma 中的 background 开关。 */
91
+ background?: boolean;
92
+ /** 对应 Figma 中的 round 开关。 */
93
+ round?: boolean;
94
+ /** 强制使用纯图标按钮尺寸;未传时会根据 icon 和 children 自动推断。 */
95
+ iconOnly?: boolean;
96
+ }
97
+ /** 组件对外暴露的按钮实例类型。 */
98
+ type ButtonRef = HTMLAnchorElement | HTMLButtonElement;
99
+ /** 基于 Ant Design Button.Group 扩展的 UI KIT ButtonGroup 属性。 */
100
+ interface ButtonGroupProps extends ButtonGroupProps$1 {}
101
+ //#endregion
102
+ //#region packages/components/src/button/src/buttonGroup.d.ts
103
+ /** ButtonGroup 复用 Ant Design Button.Group 的分组能力,并挂载 UI KIT 样式类名。 */
104
+ declare function ButtonGroup({ className, size, ...restProps }: ButtonGroupProps): import("react").JSX.Element;
105
+ declare namespace ButtonGroup {
106
+ var displayName: string;
107
+ }
108
+ //#endregion
109
+ //#region packages/components/src/button/src/button.d.ts
110
+ /** 给 Button 挂载 Group 静态属性,兼容 Ant Design 的 Button.Group 使用方式。 */
111
+ declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement>> & {
112
+ Group: typeof ButtonGroup;
113
+ };
114
+ //#endregion
115
+ //#region packages/components/src/cascader/src/type.d.ts
116
+ /** Cascader 尺寸沿用 Ant Design 的 large / middle / small。 */
117
+ type CascaderSize = NonNullable<CascaderProps$1["size"]>;
118
+ /** Cascader 单选项的展示形态。 */
119
+ type CascaderOptionType = "default" | "radio";
120
+ /** Element Plus Cascader 节点配置。 */
121
+ interface CascaderConfig {
122
+ /** 子项展开方式。 */
123
+ expandTrigger?: "click" | "hover";
124
+ /** 是否启用多选。 */
125
+ multiple?: boolean;
126
+ /** 是否允许选择任意层级。 */
127
+ checkStrictly?: boolean;
128
+ /** 点击节点文案时是否切换选中状态。 */
129
+ checkOnClickNode?: boolean;
130
+ /** 点击叶子节点文案时是否切换选中状态。 */
131
+ checkOnClickLeaf?: boolean;
132
+ /** 多选或任意层级选择时是否显示前缀选择控件。 */
133
+ showPrefix?: boolean;
134
+ /** 是否返回完整路径。 */
135
+ emitPath?: boolean;
136
+ /** 是否动态加载。 */
137
+ lazy?: boolean;
138
+ /** 动态加载回调。 */
139
+ lazyLoad?: CascaderLazyLoad;
140
+ /** value 字段名。 */
141
+ value?: string;
142
+ /** label 字段名。 */
143
+ label?: string;
144
+ /** children 字段名。 */
145
+ children?: string;
146
+ /** disabled 字段名。 */
147
+ disabled?: string;
148
+ /** leaf 字段名。 */
149
+ leaf?: string;
150
+ }
151
+ /** Element Plus lazyLoad 暴露的最小节点信息。 */
152
+ interface CascaderLazyNode {
153
+ /** 当前层级,根节点为 0。 */
154
+ level: number;
155
+ /** 当前节点值。 */
156
+ value?: string | number;
157
+ /** 当前节点文案。 */
158
+ label?: string;
159
+ }
160
+ /** Element Plus 动态加载函数。 */
161
+ type CascaderLazyLoad = (node: CascaderLazyNode, resolve: (options: CascaderOption[]) => void) => void;
162
+ /** 基于 Ant Design Cascader 扩展的 UI KIT Cascader 属性。 */
163
+ interface CascaderOptionContentContext {
164
+ /** 当前选项数据。 */
165
+ data: CascaderOption;
166
+ /** 当前节点的最小状态。 */
167
+ node: {
168
+ isLeaf: boolean;
169
+ };
170
+ }
171
+ interface CascaderSuggestionItem {
172
+ /** 当前搜索结果的完整路径。 */
173
+ pathLabels: string[];
174
+ /** 当前搜索结果默认展示文本。 */
175
+ text: string;
176
+ }
177
+ interface CascaderSuggestionContext {
178
+ /** 当前搜索建议项。 */
179
+ item: CascaderSuggestionItem;
180
+ }
181
+ interface CascaderTagContext {
182
+ /** 当前标签文本。 */
183
+ label: ReactNode;
184
+ /** 当前标签值。 */
185
+ value: unknown;
186
+ /** 当前标签是否可关闭。 */
187
+ closable: boolean;
188
+ /** 删除当前标签。 */
189
+ onClose: () => void;
190
+ }
191
+ /** 基于 Ant Design Cascader 扩展的 UI KIT Cascader 属性。 */
192
+ interface CascaderProps extends Omit<CascaderProps$1<DefaultOptionType$1>, "allowClear" | "defaultValue" | "onChange" | "optionRender" | "showCheckedStrategy" | "tagRender" | "value"> {
193
+ /** 兼容 Ant Design 原始清除配置。 */
194
+ allowClear?: CascaderProps$1<DefaultOptionType$1>["allowClear"];
195
+ /** Element Plus clearable,映射到 Ant Design allowClear。 */
196
+ clearable?: boolean;
197
+ /** 自定义清除图标。 */
198
+ clearIcon?: ReactNode;
199
+ /** 非受控初始值,兼容单选路径和多选路径数组。 */
200
+ defaultValue?: CascaderValue;
201
+ /** 多选时折叠 Tag。 */
202
+ collapseTags?: boolean;
203
+ /** 折叠 Tag 的提示能力。 */
204
+ collapseTagsTooltip?: boolean;
205
+ /** 是否支持搜索。 */
206
+ filterable?: boolean;
207
+ /** 折叠时最多显示的 Tag 数量。 */
208
+ maxCollapseTags?: number;
209
+ /** 自定义节点内容。 */
210
+ optionContent?: (context: CascaderOptionContentContext) => ReactNode;
211
+ /** 单选选项的展示形态,多选时仍使用 Checkbox。 */
212
+ optionType?: CascaderOptionType;
213
+ /** 选中值变化回调。 */
214
+ onChange?: (value: CascaderValue, selectedOptions: CascaderOption[] | CascaderOption[][]) => void;
215
+ /** Element Plus 节点配置。 */
216
+ props?: CascaderConfig;
217
+ /** 自定义搜索建议项。 */
218
+ suggestionItem?: (context: CascaderSuggestionContext) => ReactNode;
219
+ /** 自定义多选标签。 */
220
+ tag?: (context: CascaderTagContext) => ReactElement;
221
+ /** 兼容 Ant Design 原始标签渲染函数。 */
222
+ tagRender?: CascaderProps$1<DefaultOptionType$1>["tagRender"];
223
+ /** 下拉面板顶部内容。 */
224
+ header?: ReactNode;
225
+ /** 下拉面板底部内容。 */
226
+ footer?: ReactNode;
227
+ /** 多选选中项展示策略。 */
228
+ showCheckedStrategy?: "child" | "parent";
229
+ /** 是否显示完整路径。 */
230
+ showAllLevels?: boolean;
231
+ /** 搜索建议面板是否匹配输入框宽度,或使用固定像素宽度。 */
232
+ fitInputWidth?: boolean | number;
233
+ /** 受控值,兼容单选路径和多选路径数组。 */
234
+ value?: CascaderValue;
235
+ }
236
+ /** Cascader 对外暴露的选项类型。 */
237
+ type CascaderOption = DefaultOptionType$1;
238
+ /** 单选路径或多选路径值。 */
239
+ type CascaderValue = Array<string | number | null> | Array<Array<string | number | null>>;
240
+ /** 独立 CascaderPanel 属性。 */
241
+ interface CascaderPanelProps extends Omit<CascaderPanelProps$1<DefaultOptionType$1>, "optionRender"> {
242
+ /** 自定义节点内容。 */
243
+ optionContent?: (context: CascaderOptionContentContext) => ReactNode;
244
+ }
245
+ //#endregion
246
+ //#region packages/components/src/cascader/src/cascader.d.ts
247
+ /** Cascader 复用 Ant Design 级联选择行为,并覆盖输入框和下拉菜单视觉。 */
248
+ declare function Cascader({ allowClear, builtinPlacements, changeOnSelect, className, clearable, clearIcon, collapseTags, collapseTagsTooltip: _collapseTagsTooltip, displayRender, expandIcon, expandTrigger, fieldNames, filterable, fitInputWidth, footer, header, loadData, loadingIcon, maxCollapseTags, maxTagCount, multiple, options, optionContent, optionType, popupClassName, props: cascaderConfig, rootClassName, showAllLevels, showCheckedStrategy, showSearch, size, suggestionItem, suffixIcon, tag, tagRender, ...restProps }: CascaderProps): import("react").JSX.Element;
249
+ declare namespace Cascader {
250
+ var displayName: string;
251
+ }
252
+ /** 不包含输入框的独立级联面板。 */
253
+ declare function CascaderPanel({ optionContent, options, ...restProps }: CascaderPanelProps): import("react").JSX.Element;
254
+ declare namespace CascaderPanel {
255
+ var displayName: string;
256
+ }
257
+ //#endregion
258
+ //#region packages/components/src/checkbox/src/type.d.ts
259
+ /** Checkbox 在 UI KIT 中的尺寸。 */
260
+ type CheckboxSize = "large" | "default" | "small";
261
+ /** 兼容历史命名:CheckboxGroup 尺寸与 Checkbox 使用同一尺寸集合。 */
262
+ type CheckboxGroupSize = CheckboxSize;
263
+ /** CheckboxGroup 在 UI KIT 中的展示形态。 */
264
+ type CheckboxGroupVariant = "icon" | "border" | "button";
265
+ /** Element Plus Checkbox 可选值类型。 */
266
+ type CheckboxValue = string | number | boolean;
267
+ /** CheckboxGroup options 快捷渲染值类型。 */
268
+ type CheckboxGroupValue = Exclude<CheckboxValue, boolean>;
269
+ /** CheckboxGroup options 渲染类型。 */
270
+ type CheckboxGroupType = "checkbox" | "button";
271
+ /** CheckboxGroup options 字段别名。 */
272
+ interface CheckboxOptionProps {
273
+ /** 选项值字段名。 */
274
+ value?: string;
275
+ /** 选项文案字段名。 */
276
+ label?: string;
277
+ /** 选项禁用字段名。 */
278
+ disabled?: string;
279
+ }
280
+ /** CheckboxGroup options 单项。 */
281
+ interface CheckboxOption extends Record<string, unknown> {
282
+ /** 选项值。 */
283
+ value?: CheckboxGroupValue;
284
+ /** 选项文案。 */
285
+ label?: ReactNode;
286
+ /** 是否禁用该选项。 */
287
+ disabled?: boolean;
288
+ }
289
+ /** 基于 Ant Design Checkbox 扩展的 Element Plus 风格 Checkbox 属性。 */
290
+ interface CheckboxProps extends Omit<CheckboxProps$1, "checked" | "value"> {
291
+ /** a11y 兼容字段。 */
292
+ ariaControls?: string;
293
+ /** a11y 兼容字段。 */
294
+ ariaLabel?: string;
295
+ /** 是否显示外层描边容器。 */
296
+ border?: boolean;
297
+ /** 是否选中,优先级高于 modelValue 推断。 */
298
+ checked?: boolean;
299
+ /** 未选中时对应的值。 */
300
+ falseLabel?: string | number;
301
+ /** 未选中时对应的值。 */
302
+ falseValue?: string | number;
303
+ /** Radio 同源兼容:在 group 内无 value 时 label 充当 value。 */
304
+ label?: CheckboxValue | ReactNode;
305
+ /** Element Plus 单项 modelValue。 */
306
+ modelValue?: CheckboxValue;
307
+ /** UI KIT 尺寸。 */
308
+ size?: CheckboxSize;
309
+ /** input tabindex,后续在组件层映射到 React 的 tabIndex。 */
310
+ tabindex?: string | number;
311
+ /** 选中时对应的值。 */
312
+ trueLabel?: string | number;
313
+ /** 选中时对应的值。 */
314
+ trueValue?: string | number;
315
+ /** 当前项值。 */
316
+ value?: CheckboxValue;
317
+ /** 是否触发表单校验;当前 React 版本仅保留兼容字段。 */
318
+ validateEvent?: boolean;
319
+ }
320
+ /** 基于 Ant Design Checkbox.Group 扩展的 Element Plus 风格 CheckboxGroup 属性。 */
321
+ interface CheckboxGroupProps<T extends CheckboxGroupValue = CheckboxGroupValue> extends Omit<CheckboxGroupProps$1<T>, "options"> {
322
+ /** a11y 文案,React 侧会映射到 aria-label。 */
323
+ ariaLabel?: string;
324
+ /** 是否禁用整组。 */
325
+ disabled?: boolean;
326
+ /** button 选中态背景和边框色。 */
327
+ fill?: string;
328
+ /** a11y 兼容字段,Element Plus 已废弃,优先使用 ariaLabel。 */
329
+ label?: string;
330
+ /** 最大可选数量。 */
331
+ max?: number;
332
+ /** 最小可选数量。 */
333
+ min?: number;
334
+ /** native name 属性。 */
335
+ name?: string;
336
+ /** options 快捷渲染数据。 */
337
+ options?: CheckboxOption[];
338
+ /** options 字段别名。 */
339
+ props?: CheckboxOptionProps;
340
+ /** UI KIT 尺寸。 */
341
+ size?: CheckboxSize;
342
+ /** 按钮选中态文字色。 */
343
+ textColor?: string;
344
+ /** options 渲染类型。 */
345
+ type?: CheckboxGroupType;
346
+ /** 是否触发表单校验;当前 React 版本仅保留兼容字段。 */
347
+ validateEvent?: boolean;
348
+ /** CheckboxGroup 展示形态。 */
349
+ variant?: CheckboxGroupVariant;
350
+ }
351
+ //#endregion
352
+ //#region packages/components/src/checkbox/src/checkbox.d.ts
353
+ /** Checkbox 基于 Ant Design 复选框行为,补齐 Element Plus 风格尺寸和描边样式。 */
354
+ declare function Checkbox({ ariaControls, ariaLabel, border, checked, children, className, disabled, falseLabel, falseValue, indeterminate, label, modelValue, size, tabindex, trueLabel, trueValue, validateEvent: _validateEvent, value, ...restProps }: CheckboxProps): import("react").JSX.Element;
355
+ declare namespace Checkbox {
356
+ var displayName: string;
357
+ }
358
+ /** CheckboxButton 使用 Checkbox 行为内核,并挂载独立类名供按钮式样式覆盖。 */
359
+ declare function CheckboxButton({ ariaControls, ariaLabel, checked, children, className, disabled, falseLabel, falseValue, indeterminate, label, modelValue, size, tabindex, trueLabel, trueValue, validateEvent: _validateEvent, value, ...restProps }: CheckboxProps): import("react").JSX.Element;
360
+ declare namespace CheckboxButton {
361
+ var displayName: string;
362
+ }
363
+ /** CheckboxGroup 保持 Ant Design 分组选中能力,并通过类名切换 Element Plus 组形态。 */
364
+ declare function CheckboxGroup<T extends CheckboxGroupValue = CheckboxGroupValue>({ ariaLabel, className, defaultValue, disabled, fill, label, max, min, onChange, options, props: optionProps, size, style, textColor, type, validateEvent: _validateEvent, value, variant, children, ...restProps }: CheckboxGroupProps<T>): import("react").JSX.Element;
365
+ declare namespace CheckboxGroup {
366
+ var displayName: string;
367
+ }
368
+ //#endregion
369
+ //#region packages/components/src/datetime-picker/src/type.d.ts
370
+ /** 基于 Ant Design DatePicker 扩展的 UI KIT DatePicker 属性。 */
371
+ interface DatePickerProps extends DatePickerProps$1 {}
372
+ /** 基于 Ant Design RangePicker 扩展的 UI KIT DateRangePicker 属性。 */
373
+ interface DateRangePickerProps extends RangePickerProps {}
374
+ /** 基于 Ant Design DatePicker showTime 的 UI KIT DatetimePicker 属性。 */
375
+ interface DatetimePickerProps extends DatePickerProps$1 {}
376
+ /** 基于 Ant Design RangePicker showTime 的 UI KIT DatetimeRangePicker 属性。 */
377
+ interface DatetimeRangePickerProps extends RangePickerProps {}
378
+ /** 基于 Ant Design TimePicker 扩展的 UI KIT TimePicker 属性。 */
379
+ interface TimePickerProps extends TimePickerProps$1 {}
380
+ /** 基于 Ant Design TimePicker.RangePicker 扩展的 UI KIT TimeRangePicker 属性。 */
381
+ interface TimeRangePickerProps extends TimeRangePickerProps$1 {}
382
+ //#endregion
383
+ //#region packages/components/src/datetime-picker/src/datetimePicker.d.ts
384
+ /** DatePicker 复用 Ant Design 日期选择能力,并挂载 UI KIT 视觉类名。 */
385
+ declare function DatePicker({ className, popupClassName, rootClassName, ...restProps }: DatePickerProps): import("react").JSX.Element;
386
+ declare namespace DatePicker {
387
+ var displayName: string;
388
+ }
389
+ /** DateRangePicker 复用 Ant Design 日期范围选择能力。 */
390
+ declare function DateRangePicker({ className, popupClassName, rootClassName, ...restProps }: DateRangePickerProps): import("react").JSX.Element;
391
+ declare namespace DateRangePicker {
392
+ var displayName: string;
393
+ }
394
+ /** DatetimePicker 默认开启 showTime,对齐 Figma 中 date&time 类型。 */
395
+ declare function DatetimePicker({ className, popupClassName, rootClassName, showTime, ...restProps }: DatetimePickerProps): import("react").JSX.Element;
396
+ declare namespace DatetimePicker {
397
+ var displayName: string;
398
+ }
399
+ /** DatetimeRangePicker 默认开启 showTime,对齐 Figma 中范围日期时间类型。 */
400
+ declare function DatetimeRangePicker({ className, popupClassName, rootClassName, showTime, ...restProps }: DatetimeRangePickerProps): import("react").JSX.Element;
401
+ declare namespace DatetimeRangePicker {
402
+ var displayName: string;
403
+ }
404
+ /** TimePicker 复用 Ant Design 时间选择能力,并使用同一套 UI KIT 输入视觉。 */
405
+ declare function TimePicker({ className, popupClassName, rootClassName, ...restProps }: TimePickerProps): import("react").JSX.Element;
406
+ declare namespace TimePicker {
407
+ var displayName: string;
408
+ }
409
+ /** TimeRangePicker 复用 Ant Design 时间范围选择能力。 */
410
+ declare function TimeRangePicker({ className, popupClassName, rootClassName, ...restProps }: TimeRangePickerProps): import("react").JSX.Element;
411
+ declare namespace TimeRangePicker {
412
+ var displayName: string;
413
+ }
414
+ //#endregion
415
+ //#region packages/components/src/dialog/src/type.d.ts
416
+ /** Element Plus before-close 的 React 化 done 回调。 */
417
+ type DialogDone = () => void;
418
+ /** Element Plus before-close 兼容签名,支持 done 回调、boolean 和 Promise。 */
419
+ type DialogBeforeClose = (done: DialogDone) => void | boolean | Promise<void | boolean>;
420
+ /** Dialog 挂载容器配置,对齐 Element Plus append-to / append-to-body 语义。 */
421
+ type DialogAppendTo = string | HTMLElement | false;
422
+ /** 基于 Ant Design Modal 扩展的 Element Plus 风格 Dialog 属性。 */
423
+ interface DialogProps extends Omit<ModalProps, "afterClose" | "afterOpenChange" | "cancelButtonProps" | "cancelText" | "centered" | "closable" | "confirmLoading" | "destroyOnClose" | "destroyOnHidden" | "footer" | "getContainer" | "keyboard" | "mask" | "maskClosable" | "onCancel" | "onOk" | "okButtonProps" | "okText" | "okType" | "open" | "scrollLock" | "title" | "width"> {
424
+ /** React 主路径打开态。 */
425
+ open?: boolean;
426
+ /** Element Plus v-model 兼容打开态。 */
427
+ modelValue?: boolean;
428
+ /** 标题内容。 */
429
+ title?: ReactNode;
430
+ /** Element Plus header slot 兼容入口,优先级高于 title。 */
431
+ header?: ReactNode;
432
+ /** Dialog 宽度,默认 50%。 */
433
+ width?: ModalProps["width"];
434
+ /** Dialog 距离顶部距离,默认 15vh。 */
435
+ top?: string;
436
+ /** 是否全屏展示。 */
437
+ fullscreen?: boolean;
438
+ /** 是否显示遮罩。 */
439
+ modal?: boolean;
440
+ /** Element Plus modal-class 兼容类名。 */
441
+ modalClass?: string;
442
+ /** 无遮罩时是否允许页面交互;modal=false 时原生满足该语义。 */
443
+ modalPenetrable?: boolean;
444
+ /** Element Plus append-to-body。 */
445
+ appendToBody?: boolean;
446
+ /** Element Plus append-to。 */
447
+ appendTo?: DialogAppendTo;
448
+ /** Ant Design 原生挂载容器。 */
449
+ getContainer?: ModalProps["getContainer"];
450
+ /** 是否锁定页面滚动。 */
451
+ lockScroll?: boolean;
452
+ /** 点击遮罩是否关闭。 */
453
+ closeOnClickModal?: boolean;
454
+ /** 按 Esc 是否关闭。 */
455
+ closeOnPressEscape?: boolean;
456
+ /** 是否显示关闭按钮。 */
457
+ showClose?: boolean;
458
+ /** 标题和底部是否水平居中。 */
459
+ center?: boolean;
460
+ /** 弹窗是否垂直居中。 */
461
+ alignCenter?: boolean;
462
+ /** 关闭时销毁内容。 */
463
+ destroyOnClose?: boolean;
464
+ /** Dialog footer,未传时默认无 footer。 */
465
+ footer?: ModalProps["footer"];
466
+ /** 关闭前拦截。 */
467
+ beforeClose?: DialogBeforeClose;
468
+ /** 打开时触发,对应 Element Plus open。 */
469
+ onOpen?: () => void;
470
+ /** 打开动画结束后触发,对应 Element Plus opened。 */
471
+ onOpened?: () => void;
472
+ /** 关闭请求触发,对应 Element Plus close。 */
473
+ onClose?: () => void;
474
+ /** 关闭动画结束后触发,对应 Element Plus closed。 */
475
+ onClosed?: () => void;
476
+ /** React 受控状态变化。 */
477
+ onOpenChange?: (open: boolean) => void;
478
+ /** Ant Design 兼容取消事件。 */
479
+ onCancel?: ModalProps["onCancel"];
480
+ /** Ant Design 兼容动画结束事件。 */
481
+ afterOpenChange?: ModalProps["afterOpenChange"];
482
+ /** Ant Design 兼容关闭后事件。 */
483
+ afterClose?: ModalProps["afterClose"];
484
+ /** Ant Design 兼容垂直居中字段。 */
485
+ centered?: ModalProps["centered"];
486
+ /** Ant Design 兼容关闭按钮字段。 */
487
+ closable?: ModalProps["closable"];
488
+ /** Ant Design 兼容遮罩字段。 */
489
+ mask?: ModalProps["mask"];
490
+ /** Ant Design 兼容点击遮罩关闭字段。 */
491
+ maskClosable?: ModalProps["maskClosable"];
492
+ /** Ant Design 兼容 Esc 关闭字段。 */
493
+ keyboard?: ModalProps["keyboard"];
494
+ /** Ant Design 兼容锁定滚动字段。 */
495
+ scrollLock?: ModalProps["scrollLock"];
496
+ /** Ant Design v6 兼容关闭后销毁字段。 */
497
+ destroyOnHidden?: ModalProps["destroyOnHidden"];
498
+ }
499
+ //#endregion
500
+ //#region packages/components/src/dialog/src/dialog.d.ts
501
+ /** Dialog 使用 Ant Design Modal 承接弹层行为,用本包样式对齐 Element Plus 视觉。 */
502
+ declare function Dialog({ afterClose, afterOpenChange, alignCenter, appendTo, appendToBody, beforeClose, center, children, className, closable, closeOnClickModal, closeOnPressEscape, destroyOnClose, destroyOnHidden, footer, fullscreen, getContainer, header, keyboard, lockScroll, mask, maskClosable, modal, modalClass, modalPenetrable: _modalPenetrable, modelValue, onCancel, onClose, onClosed, onOpen, onOpened, onOpenChange, open, rootClassName, scrollLock, showClose, style, title, top, width, wrapClassName, ...restProps }: DialogProps): import("react").JSX.Element;
503
+ declare namespace Dialog {
504
+ var displayName: string;
505
+ }
506
+ //#endregion
507
+ //#region packages/components/src/divider/src/type.d.ts
508
+ /** UI KIT 中 Divider 的线条明暗类型。 */
509
+ type DividerTone = "dark" | "light";
510
+ /** 基于 Ant Design Divider 扩展的 UI KIT Divider 属性。 */
511
+ interface DividerProps extends DividerProps$1 {
512
+ /** 对应 Figma `type=dark/light`,默认使用一级边框色。 */
513
+ tone?: DividerTone;
514
+ }
515
+ //#endregion
516
+ //#region packages/components/src/divider/src/divider.d.ts
517
+ /** Divider 复用 Ant Design 的内容分割能力,并按 UI KIT 线条色覆盖视觉。 */
518
+ declare function Divider({ className, tone, ...restProps }: DividerProps): import("react").JSX.Element;
519
+ declare namespace Divider {
520
+ var displayName: string;
521
+ }
522
+ //#endregion
523
+ //#region packages/components/src/dropdown/src/type.d.ts
524
+ /** 基于 Ant Design Dropdown 扩展的 UI KIT Dropdown 属性。 */
525
+ interface DropdownProps extends DropdownProps$1 {}
526
+ /** 基于 Ant Design Dropdown.Button 扩展的 UI KIT DropdownButton 属性。 */
527
+ interface DropdownButtonProps extends DropdownButtonProps$1 {}
528
+ /** Dropdown 对外暴露的菜单项类型。 */
529
+ type DropdownMenuItem = NonNullable<MenuProps$1["items"]>[number];
530
+ //#endregion
531
+ //#region packages/components/src/dropdown/src/dropdown.d.ts
532
+ /** Dropdown 复用 Ant Design 下拉菜单能力,并覆盖菜单弹层视觉。 */
533
+ declare function InternalDropdown({ align, arrow, children, className, menu, overlayClassName, placement, rootClassName, trigger, ...restProps }: DropdownProps): import("react").JSX.Element;
534
+ /** Dropdown.Button 复用 Ant Design 组合按钮能力,并对齐弹层类名。 */
535
+ declare function DropdownButton({ align, arrow, className, loading, menu, overlayClassName, placement, type, ...restProps }: DropdownButtonProps): import("react").JSX.Element;
536
+ declare namespace DropdownButton {
537
+ var displayName: string;
538
+ }
539
+ /** 挂载 Dropdown.Button,保持调用方式接近 Ant Design。 */
540
+ declare const Dropdown: typeof InternalDropdown & {
541
+ Button: typeof DropdownButton;
542
+ };
543
+ //#endregion
544
+ //#region packages/components/src/empty/src/type.d.ts
545
+ /** 基于 Ant Design Empty 扩展的 UI KIT Empty 属性。 */
546
+ interface EmptyProps extends EmptyProps$1 {}
547
+ //#endregion
548
+ //#region packages/components/src/empty/src/empty.d.ts
549
+ /** Empty 复用 Ant Design 空状态插图和描述能力,补充 UI KIT 类名。 */
550
+ declare function InternalEmpty({ className, ...restProps }: EmptyProps): import("react").JSX.Element;
551
+ /** 保留 Ant Design Empty 的内置图片静态属性。 */
552
+ declare const Empty: typeof InternalEmpty & {
553
+ displayName: string;
554
+ PRESENTED_IMAGE_DEFAULT: import("react").ReactNode;
555
+ PRESENTED_IMAGE_SIMPLE: import("react").ReactNode;
556
+ };
557
+ //#endregion
558
+ //#region packages/components/src/form/src/type.d.ts
559
+ /** 基于 Ant Design Form 扩展的 UI KIT Form 属性。 */
560
+ interface FormProps<Values = unknown> extends FormProps$1<Values> {}
561
+ /** 基于 Ant Design Form.Item 扩展的 UI KIT FormItem 属性。 */
562
+ interface FormItemProps<Values = unknown> extends FormItemProps$1<Values> {}
563
+ //#endregion
564
+ //#region packages/components/src/form/src/form.d.ts
565
+ /** Form 复用 Ant Design 表单能力,并覆盖标签、提示和校验视觉。 */
566
+ declare function InternalForm<Values = unknown>({ className, layout, rootClassName, variant, ...restProps }: FormProps<Values>): import("react").JSX.Element;
567
+ /** Form.Item 复用 Ant Design 字段绑定和校验能力。 */
568
+ declare function FormItem<Values = unknown>({ className, rootClassName, ...restProps }: FormItemProps<Values>): import("react").JSX.Element;
569
+ /** 挂载 Ant Design Form 静态能力,保持 useForm / List / Provider 调用方式。 */
570
+ declare const Form: typeof InternalForm & {
571
+ ErrorList: import("react").FC<import("antd/es/form").ErrorListProps>;
572
+ Item: typeof FormItem & {
573
+ useStatus: () => {
574
+ status?: import("antd/es/form/FormItem").ValidateStatus;
575
+ errors: React.ReactNode[];
576
+ warnings: React.ReactNode[];
577
+ };
578
+ };
579
+ List: import("react").FC<import("antd/es/form").FormListProps>;
580
+ Provider: import("react").FC<import("antd/es/form/context").FormProviderProps>;
581
+ useForm: typeof import("antd/es/form/Form").useForm;
582
+ useFormInstance: typeof import("antd/es/form/hooks/useFormInstance").default;
583
+ useWatch: typeof import("antd/es/form/Form").useWatch;
584
+ };
585
+ //#endregion
586
+ //#region packages/components/src/header/src/type.d.ts
587
+ /** Header 顶部一级导航项。 */
588
+ interface HeaderNavItem {
589
+ disabled?: boolean;
590
+ href?: string;
591
+ key: Key;
592
+ label: ReactNode;
593
+ }
594
+ /** Header 组件属性。 */
595
+ interface HeaderProps extends Omit<HTMLAttributes<HTMLElement>, "onSelect"> {
596
+ activeKey?: Key;
597
+ brand?: ReactNode;
598
+ items?: HeaderNavItem[];
599
+ logo?: ReactNode;
600
+ onNavClick?: (item: HeaderNavItem, event: MouseEvent<HTMLElement>) => void;
601
+ rightExtra?: ReactNode;
602
+ userName?: ReactNode;
603
+ }
604
+ //#endregion
605
+ //#region packages/components/src/header/src/header.d.ts
606
+ /** Header 对齐管理后台 UI KIT 顶部一级导航。 */
607
+ declare function Header({ activeKey, brand, className, items, logo, onNavClick, rightExtra, userName, ...restProps }: HeaderProps): import("react").JSX.Element;
608
+ declare namespace Header {
609
+ var displayName: string;
610
+ }
611
+ //#endregion
612
+ //#region packages/components/src/header/src/items.d.ts
613
+ /** Figma 头部菜单默认一级导航。 */
614
+ declare const headerNavItems: HeaderNavItem[];
615
+ //#endregion
616
+ //#region packages/components/src/icon/src/icons.d.ts
617
+ declare const icons: {
618
+ readonly arrow: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.2189 2.47709C7.61924 1.97631 8.38076 1.97631 8.78109 2.47709L14.4957 9.62559C15.0191 10.2804 14.5529 11.25 13.7146 11.25H2.28543C1.44709 11.25 0.980871 10.2804 1.50434 9.62559L7.2189 2.47709Z\" fill=\"currentColor\"/></svg>";
619
+ readonly boat: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_707)\"><path d=\"M14.3803 8.9882L13.1772 10.449L13.6499 10.492C13.6499 10.492 12.1031 11.738 10.7282 11.8239C9.3533 11.9099 8.70882 10.0623 8.70882 10.0623V7.01179H10.5563V6.10951H8.79475V4.90648C9.56813 4.64869 10.0837 3.91827 10.0837 3.05896C10.0837 1.98483 9.22441 1.12552 8.15027 1.12552H8.1073C7.03317 1.12552 6.17386 1.98483 6.17386 3.05896C6.17386 3.91827 6.73241 4.64869 7.46282 4.90648V6.10951H5.70124V7.01179H7.54875V10.0623C7.54875 10.0623 6.86131 11.8669 5.48641 11.8239C4.11152 11.738 2.56476 10.492 2.56476 10.492L3.03738 10.449L1.79138 8.9882L1.36172 10.7927L1.87731 10.6639C1.87731 10.6639 2.90848 12.5114 4.4982 13.1988C6.08793 13.9292 7.67765 14.8315 8.02137 14.8745C8.3651 14.8315 9.95482 13.9292 11.5016 13.1988C13.0483 12.4684 14.1225 10.6639 14.1225 10.6639L14.6381 10.7927L14.3803 8.9882ZM8.15027 4.1331C7.54875 4.1331 7.07613 3.66048 7.07613 3.05896C7.07613 2.50041 7.54875 2.02779 8.1073 2.02779H8.15027C8.70882 2.02779 9.18144 2.50041 9.18144 3.05896C9.22441 3.66048 8.70882 4.1331 8.15027 4.1331Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_707\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
620
+ readonly "chevron-down": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.54036 5.54039C3.7942 5.28655 4.20575 5.28655 4.45959 5.54039L7.99998 9.08077L11.5404 5.54039C11.7942 5.28655 12.2058 5.28655 12.4596 5.54039C12.7134 5.79423 12.7134 6.20578 12.4596 6.45963L8.4596 10.4596C8.20575 10.7135 7.7942 10.7135 7.54036 10.4596L3.54036 6.45963C3.28652 6.20578 3.28652 5.79423 3.54036 5.54039Z\" fill=\"currentColor\"/></svg>";
621
+ readonly "chevron-left": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4596 3.54039C10.7135 3.79423 10.7135 4.20578 10.4596 4.45963L6.91926 8.00001L10.4596 11.5404C10.7135 11.7942 10.7135 12.2058 10.4596 12.4596C10.2058 12.7135 9.79425 12.7135 9.5404 12.4596L5.5404 8.45963C5.28656 8.20578 5.28656 7.79423 5.5404 7.54039L9.54041 3.54039C9.79425 3.28655 10.2058 3.28655 10.4596 3.54039Z\" fill=\"currentColor\"/></svg>";
622
+ readonly "chevron-right": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.54036 12.4596C5.28652 12.2058 5.28652 11.7942 5.54036 11.5404L9.08074 7.99999L5.54036 4.45961C5.28652 4.20577 5.28652 3.79422 5.54036 3.54037C5.7942 3.28653 6.20575 3.28653 6.45959 3.54037L10.4596 7.54037C10.7134 7.79421 10.7134 8.20577 10.4596 8.45961L6.45959 12.4596C6.20575 12.7135 5.7942 12.7135 5.54036 12.4596Z\" fill=\"currentColor\"/></svg>";
623
+ readonly "chevron-up": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4596 10.4596C12.2058 10.7135 11.7942 10.7135 11.5404 10.4596L8.00002 6.91923L4.45964 10.4596C4.2058 10.7135 3.79425 10.7135 3.54041 10.4596C3.28656 10.2058 3.28656 9.79421 3.54041 9.54037L7.54041 5.54037C7.79425 5.28653 8.2058 5.28653 8.45964 5.54037L12.4596 9.54037C12.7135 9.79422 12.7135 10.2058 12.4596 10.4596Z\" fill=\"currentColor\"/></svg>";
624
+ readonly circle: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_735)\"><path d=\"M8.00098 0.299805C8.87272 0.300221 9.59932 0.920823 9.76465 1.74414C11.9351 2.35515 13.6435 4.06406 14.2549 6.23438C15.079 6.39927 15.7 7.12752 15.7002 8C15.7 8.87242 15.0789 9.5998 14.2549 9.76465C13.6412 11.9441 11.9215 13.658 9.73828 14.2627C9.53395 15.0321 8.83458 15.6002 8.00098 15.6006C7.16699 15.6006 6.46625 15.0324 6.26172 14.2627C4.0784 13.658 2.35772 11.9443 1.74414 9.76465C0.920748 9.59923 0.29999 8.8719 0.299805 8C0.299993 7.12805 0.920672 6.39984 1.74414 6.23438C2.3554 4.06424 4.06424 2.3554 6.23438 1.74414C6.39979 0.92045 7.12878 0.299805 8.00098 0.299805ZM9.63379 2.85156C9.34891 3.46969 8.72608 3.90004 8.00098 3.90039C7.27549 3.90039 6.65136 3.46996 6.36621 2.85156C4.69818 3.38049 3.38077 4.69733 2.85156 6.36523C3.47011 6.65023 3.90023 7.27449 3.90039 8C3.90024 8.72524 3.46973 9.34783 2.85156 9.63281C3.3762 11.2883 4.67733 12.5965 6.32715 13.1338C6.59225 12.4694 7.24232 12 8.00098 12C8.75912 12.0004 9.40694 12.4699 9.67188 13.1338C11.3217 12.5968 12.6225 11.289 13.1475 9.63379C12.5296 9.34863 12.0998 8.72491 12.0996 8C12.0998 7.27496 12.5294 6.65049 13.1475 6.36523C12.6182 4.69746 11.3017 3.38046 9.63379 2.85156Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_735\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
625
+ readonly close: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4419 12.4419C12.1979 12.686 11.8021 12.686 11.5581 12.4419L8 8.88388L4.44194 12.4419C4.19786 12.686 3.80214 12.686 3.55806 12.4419C3.31398 12.1979 3.31398 11.8021 3.55806 11.5581L7.11612 8L3.55806 4.44194C3.31398 4.19786 3.31398 3.80214 3.55806 3.55806C3.80213 3.31398 4.19786 3.31398 4.44194 3.55806L8 7.11612L11.5581 3.55806C11.8021 3.31398 12.1979 3.31398 12.4419 3.55806C12.686 3.80214 12.686 4.19786 12.4419 4.44194L8.88388 8L12.4419 11.5581C12.686 11.8021 12.686 12.1979 12.4419 12.4419Z\" fill=\"currentColor\"/></svg>";
626
+ readonly collapse: "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.51562 14.0106C9.92971 14.0106 10.2655 14.3465 10.2656 14.7606C10.2656 15.1748 9.92979 15.5105 9.51562 15.5106H3C2.58579 15.5106 2.25 15.1748 2.25 14.7606C2.25013 14.3465 2.58587 14.0106 3 14.0106H9.51562Z\" fill=\"currentColor\"/><path d=\"M9.51562 9.18147C9.92979 9.18153 10.2656 9.51729 10.2656 9.93147C10.2655 10.3455 9.92971 10.6814 9.51562 10.6815H3C2.58587 10.6815 2.25012 10.3456 2.25 9.93147C2.25 9.51726 2.58579 9.18148 3 9.18147H9.51562Z\" fill=\"currentColor\"/><path d=\"M17 4.32991C17.4142 4.32991 17.75 4.6657 17.75 5.07991C17.75 5.49412 17.4142 5.82991 17 5.82991H3C2.58579 5.82991 2.25 5.49412 2.25 5.07991C2.25 4.6657 2.58579 4.32991 3 4.32991H17Z\" fill=\"currentColor\"/><path d=\"M16.584 10.2959C16.814 10.1426 17.1098 10.1285 17.3535 10.2588C17.5973 10.3892 17.7499 10.6434 17.75 10.9199V14.9199C17.75 15.1964 17.5973 15.4505 17.3535 15.581C17.1097 15.7114 16.8141 15.6973 16.584 15.5439L13.584 13.5439C13.3754 13.4048 13.25 13.1706 13.25 12.9199C13.2501 12.6693 13.3754 12.4349 13.584 12.2959L16.584 10.2959Z\" fill=\"currentColor\"/></svg>";
627
+ readonly "collapse-2": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 2.86193L8.13805 7L12.2761 2.86193L11.3333 1.91913L8.13805 5.1144L4.94281 1.91913L4 2.86193Z\" fill=\"currentColor\"/><path d=\"M4 13.1381L8.13805 9L12.2761 13.1381L11.3333 14.0809L8.13805 10.8856L4.94281 14.0809L4 13.1381Z\" fill=\"currentColor\"/></svg>";
628
+ readonly "collapse-arrow": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_754)\"><path d=\"M3.86194 6.40237L7.99999 10.5404L12.1381 6.40237L11.1953 5.45956L7.99999 8.65483L4.80475 5.45956L3.86194 6.40237Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_754\"><rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(16) rotate(90)\"/></clipPath></defs></svg>";
629
+ readonly "collapse-arrow-alt": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_749)\"><path d=\"M6.40236 12.1381L10.5404 8.00001L6.40236 3.86194L5.45956 4.80474L8.65483 8.00001L5.45956 11.1953L6.40236 12.1381Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_749\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
630
+ readonly copy: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.2598 2.5C12.9447 2.5 13.5 3.05534 13.5 3.74023V10.1543C13.5 10.8392 12.9447 11.3945 12.2598 11.3945H11.0303C10.7543 11.3943 10.5303 11.1705 10.5303 10.8945C10.5303 10.6185 10.7543 10.3947 11.0303 10.3945H12.2598C12.3924 10.3945 12.5 10.2869 12.5 10.1543V3.74023C12.5 3.60762 12.3924 3.5 12.2598 3.5H5.8457C5.71309 3.5 5.60547 3.60762 5.60547 3.74023V4.95605C5.60524 5.23201 5.38147 5.45605 5.10547 5.45605C4.82947 5.45605 4.60569 5.23201 4.60547 4.95605V3.74023C4.60547 3.05534 5.16081 2.5 5.8457 2.5H12.2598Z\" fill=\"currentColor\"/><path d=\"M10.1543 4.60547C10.8392 4.60547 11.3945 5.16081 11.3945 5.8457V12.2598C11.3944 12.9445 10.8391 13.5 10.1543 13.5H3.74023C3.05542 13.5 2.50013 12.9445 2.5 12.2598V5.8457C2.5 5.16081 3.05534 4.60547 3.74023 4.60547H10.1543Z\" fill=\"currentColor\"/></svg>";
631
+ readonly expand: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.5156 16.0107C18.9297 16.0108 19.2655 16.3467 19.2656 16.7607C19.2656 17.1749 18.9298 17.5107 18.5156 17.5107H12C11.5858 17.5107 11.25 17.175 11.25 16.7607C11.2501 16.3466 11.5859 16.0107 12 16.0107H18.5156Z\" fill=\"currentColor\"/><path d=\"M18.5156 11.1816C18.9298 11.1817 19.2656 11.5175 19.2656 11.9316C19.2655 12.3457 18.9297 12.6816 18.5156 12.6816H12C11.5859 12.6816 11.2501 12.3457 11.25 11.9316C11.25 11.5174 11.5858 11.1816 12 11.1816H18.5156Z\" fill=\"currentColor\"/><path d=\"M19 6.33008C19.4142 6.33008 19.75 6.66586 19.75 7.08008C19.75 7.49429 19.4142 7.83008 19 7.83008H5C4.58579 7.83008 4.25 7.49429 4.25 7.08008C4.25 6.66586 4.58579 6.33008 5 6.33008H19Z\" fill=\"currentColor\"/><path d=\"M4.64648 12.2589C4.89022 12.1287 5.18602 12.1428 5.41602 12.2961L8.41602 14.2961C8.62457 14.4351 8.74989 14.6694 8.75 14.9201C8.75 15.1708 8.62457 15.405 8.41602 15.5441L5.41602 17.5441C5.18595 17.6975 4.89031 17.7116 4.64648 17.5812C4.4027 17.4507 4.25 17.1966 4.25 16.9201V12.9201C4.25013 12.6436 4.40272 12.3894 4.64648 12.2589Z\" fill=\"currentColor\"/></svg>";
632
+ readonly "expand-2": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 6.0572L8.13805 1.91913L12.2761 6.0572L11.3333 7L8.13805 3.80473L4.94281 7L4 6.0572Z\" fill=\"currentColor\"/><path d=\"M4 9.9428L8.13805 14.0809L12.2761 9.9428L11.3333 9L8.13805 12.1953L4.94281 9L4 9.9428Z\" fill=\"currentColor\"/></svg>";
633
+ readonly "expand-arrow": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_749)\"><path d=\"M6.40236 12.1381L10.5404 8.00001L6.40236 3.86194L5.45956 4.80474L8.65483 8.00001L5.45956 11.1953L6.40236 12.1381Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_749\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
634
+ readonly filter: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.5 1.40918C14.7303 1.4092 14.9395 1.54297 15.0362 1.75195C15.1328 1.96102 15.0994 2.20734 14.9502 2.38281L9.89067 8.33203V14C9.89067 14.2045 9.7851 14.3942 9.61137 14.502C9.43757 14.6096 9.22026 14.6202 9.03715 14.5293L6.43657 13.2363C6.23587 13.1364 6.10942 12.9312 6.10942 12.707V8.33203L1.04985 2.38281C0.900637 2.20733 0.867245 1.96103 0.96391 1.75195C1.06061 1.54297 1.26976 1.40918 1.50004 1.40918H14.5Z\" fill=\"currentColor\"/></svg>";
635
+ readonly follow: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.85 2C2.7237 2 1 3.72168 1 5.84546C1 9.69092 5.55 13.1868 8 14C10.45 13.1868 15 9.69092 15 5.84546C15 3.72168 13.2763 2 11.15 2C9.84789 2 8.69674 2.64565 8 3.6339C7.30326 2.64565 6.1521 2 4.85 2Z\" fill=\"currentColor\"/></svg>";
636
+ readonly fullscreen: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.84249 6.13575C10.1109 6.4114 10.5824 6.4114 10.887 6.13575L13.5275 3.53161V5.63523C13.5275 5.94715 13.7596 6.17927 14.0715 6.17927H14.456C14.7679 6.17927 15 5.98342 15 5.71503V1.58031C15 1.42798 14.9637 1.30466 14.8839 1.1886C14.8041 1.10881 14.6518 1.03627 14.4995 1.03627H14.2311L10.3938 1C10.0819 1 9.84974 1.27565 9.84974 1.54404V1.93575C9.88601 2.28394 10.1617 2.47979 10.4736 2.47979H12.4902L9.89326 5.08394C9.53057 5.35233 9.53057 5.82383 9.84249 6.13575ZM6.15751 9.86425C5.88912 9.5886 5.41762 9.5886 5.11295 9.86425L2.47254 12.4684V10.4083C2.47254 10.0964 2.24041 9.86425 1.9285 9.86425H1.54404C1.23212 9.86425 1 10.0601 1 10.3285V14.4124C1 14.5648 1.03627 14.6881 1.11606 14.8041C1.19585 14.8839 1.34819 14.9565 1.50052 14.9565H1.76891L5.60622 14.9927C5.91813 14.9927 6.15026 14.7171 6.15026 14.4487V14.057C6.11399 13.7088 5.83834 13.513 5.52642 13.513H3.52435L6.16477 10.9088C6.42591 10.6477 6.42591 10.1762 6.15751 9.86425ZM9.82798 9.86425C9.55959 10.1762 9.55959 10.6404 9.82798 10.9161L12.4684 13.5202H10.4518C10.1399 13.5202 9.8715 13.7161 9.82798 14.0642V14.456C9.82798 14.7316 10.0601 15 10.372 15L14.2093 14.9637H14.4777C14.6301 14.9637 14.7896 14.8839 14.8622 14.8114C14.942 14.6953 14.9782 14.5793 14.9782 14.4197V10.3358C14.9782 10.0601 14.7461 9.8715 14.4342 9.8715H14.0497C13.7378 9.8715 13.5057 10.1036 13.5057 10.4155V12.4756L10.8653 9.8715C10.5679 9.59585 10.1036 9.59585 9.82798 9.86425ZM3.56062 2.47979H5.5772C5.88912 2.47979 6.15751 2.28394 6.20104 1.93575V1.54404C6.20104 1.23212 5.93264 1 5.65699 1L1.81244 1.03627H1.54404C1.38446 1.03627 1.26839 1.07979 1.15233 1.19585C1.07979 1.27565 1.03627 1.42798 1.03627 1.58031V5.70777C1.03627 6.01969 1.26839 6.17202 1.58031 6.17202H1.96477C2.27668 6.17202 2.50881 5.9399 2.50881 5.62798V3.52435L5.14922 6.1285C5.41762 6.40414 5.88912 6.40414 6.19378 6.1285C6.46218 5.85285 6.46218 5.3886 6.19378 5.07668L3.56062 2.47979Z\" fill=\"currentColor\"/></svg>";
637
+ readonly "green-dot": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.66671 6.93335V2.66669C2.66671 2.2985 2.96519 2.00002 3.33337 2.00002H6.66671V0.666687H9.33337V2.00002H12.6667C13.0349 2.00002 13.3334 2.2985 13.3334 2.66669V6.93335L14.0572 7.15049C14.3983 7.25282 14.5988 7.60522 14.5124 7.95075L13.5011 11.9959C13.4455 11.9986 13.3896 12 13.3334 12C12.243 12 11.2748 11.4765 10.6667 10.667C10.0586 11.4765 9.09044 12 8.00004 12C6.90964 12 5.94153 11.4765 5.33337 10.667C4.72522 11.4765 3.75711 12 2.66671 12C2.61047 12 2.55456 11.9986 2.49901 11.9959L1.48772 7.95075C1.40134 7.60522 1.60179 7.25282 1.94291 7.15049L2.66671 6.93335ZM4.00004 6.53335L8.00004 5.33335L9.83611 5.88418L11.0418 6.2459L12 6.53335V3.33335H4.00004V6.53335ZM2.66671 13.3334C3.69118 13.3334 4.6257 12.9482 5.33337 12.3148C6.04105 12.9482 6.97557 13.3334 8.00004 13.3334C9.02451 13.3334 9.95904 12.9482 10.6667 12.3148C11.3744 12.9482 12.3089 13.3334 13.3334 13.3334H14.6667V14.6667H13.3334C12.362 14.6667 11.4512 14.407 10.6667 13.9532C9.88224 14.407 8.97144 14.6667 8.00004 14.6667C7.02864 14.6667 6.11783 14.407 5.33337 13.9532C4.54891 14.407 3.63814 14.6667 2.66671 14.6667H1.33337V13.3334H2.66671Z\" fill=\"currentColor\"/></svg>";
638
+ readonly info: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.89115 2.95225C6.59608 2.95225 5.36804 3.48795 4.42911 4.45879C3.9766 4.9304 3.61438 5.48095 3.36041 6.08315C3.0992 6.70315 2.95864 7.35132 2.94662 8.0115C2.91986 9.32642 3.44745 10.5758 4.42911 11.532C4.90306 11.9931 5.45845 12.3622 6.06708 12.6207C6.68205 12.887 7.34308 13.0308 8.01312 13.0439H8.10551C9.38453 13.0439 10.6033 12.5163 11.534 11.5589C11.9859 11.0974 12.3491 10.5568 12.6055 9.96398C12.868 9.36339 13.0152 8.71879 13.0394 8.06379V8.03441L13.0434 8.00765V7.99019L13.0407 7.96343V7.93668C13.0008 6.61513 12.4536 5.35967 11.5127 4.43072C10.5689 3.50244 9.30344 2.97388 7.9797 2.95507H7.89125V2.95225H7.89115ZM7.89115 2.0015L7.99707 2C11.254 2.04553 13.8979 4.64477 13.9956 7.89621C13.9984 7.92841 13.9984 7.96184 13.9984 7.99808C14.0023 8.03422 13.9984 8.06642 13.9942 8.09984C13.8818 11.24 11.3344 14 8.10814 14H7.99829C4.78412 13.9396 1.93548 11.315 2.00111 8.00202C2.06008 4.81892 4.62873 2.00009 7.89115 2.0015ZM7.91275 11.0232C7.93679 11.0553 7.97303 11.0754 8.01312 11.0767C8.08074 11.0744 8.14472 11.0455 8.19114 10.9963C8.35452 10.8624 8.54747 10.6241 8.77103 10.276L8.95854 10.3831C8.41752 11.3231 7.84026 11.7959 7.23362 11.7959C7.00198 11.7959 6.81842 11.7302 6.68049 11.5989C6.61322 11.5352 6.56009 11.458 6.52456 11.3724C6.48902 11.2869 6.47187 11.1948 6.47421 11.1021C6.47421 10.9696 6.50369 10.8023 6.56669 10.596L7.31258 8.03272C7.38488 7.78909 7.42103 7.60424 7.42103 7.47975C7.42021 7.4386 7.41045 7.39813 7.39242 7.36113C7.37439 7.32414 7.34853 7.29151 7.31662 7.26551C7.23965 7.20089 7.14103 7.16788 7.04067 7.17313C6.98442 7.17313 6.91889 7.17716 6.84649 7.17848L6.91222 6.96424L8.72831 6.66963H9.04567L7.94618 10.4808C7.88984 10.6991 7.86036 10.8438 7.86036 10.9146C7.8659 10.9549 7.88317 10.9937 7.91275 11.0232ZM9.27468 5.55018C9.20152 5.62371 9.11445 5.68195 9.01855 5.72149C8.92265 5.76103 8.81984 5.78108 8.7161 5.78047C8.61359 5.78117 8.51198 5.76113 8.41741 5.72155C8.32284 5.68197 8.23725 5.62368 8.16579 5.55018C8.09209 5.47778 8.0338 5.39122 7.99444 5.2957C7.95508 5.20018 7.93547 5.09769 7.93679 4.99439C7.93493 4.89066 7.95402 4.78762 7.9929 4.69143C8.03178 4.59524 8.08965 4.50788 8.16307 4.43457C8.23429 4.35987 8.3202 4.30073 8.41539 4.26085C8.51058 4.22098 8.613 4.20123 8.7162 4.20287C8.93854 4.20287 9.12745 4.2806 9.27871 4.43457C9.43007 4.58863 9.50772 4.77743 9.50772 4.99439C9.50988 5.09817 9.49026 5.20125 9.45012 5.29698C9.40998 5.39271 9.35021 5.47897 9.27468 5.55018Z\" fill=\"currentColor\"/></svg>";
639
+ readonly "info-circle": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 1C4.13438 1 1 4.13438 1 8C1 11.8656 4.13438 15 8 15C11.8656 15 15 11.8656 15 8C15 4.13438 11.8656 1 8 1ZM9.3125 6.36094L7.95312 11.0703C7.87813 11.3391 7.84062 11.5172 7.84062 11.6C7.84062 11.6484 7.86094 11.6937 7.9 11.7359C7.93906 11.7781 7.98125 11.7984 8.02656 11.7984C8.10156 11.7984 8.17656 11.7656 8.25156 11.6984C8.45 11.5344 8.68906 11.2391 8.96719 10.8109L9.19219 10.9438C8.525 12.1063 7.81719 12.6875 7.06563 12.6875C6.77813 12.6875 6.55 12.6062 6.37969 12.4453C6.20937 12.2844 6.125 12.0797 6.125 11.8328C6.125 11.6687 6.1625 11.4625 6.2375 11.2094L7.15781 8.04219C7.24688 7.7375 7.29063 7.50781 7.29063 7.35313C7.29063 7.25625 7.24844 7.17031 7.16406 7.09531C7.07969 7.02031 6.96562 6.98281 6.82031 6.98281C6.75469 6.98281 6.675 6.98438 6.58125 6.98906L6.66719 6.72344L8.9125 6.35938H9.3125V6.36094ZM9.59062 4.975C9.4 5.16563 9.17031 5.25938 8.90156 5.25938C8.63594 5.25938 8.40938 5.16406 8.21875 4.975C8.02812 4.78437 7.93437 4.55469 7.93437 4.28594C7.93437 4.01719 8.02812 3.7875 8.21562 3.59687C8.40312 3.40781 8.63125 3.3125 8.90156 3.3125C9.175 3.3125 9.40625 3.40781 9.59375 3.59687C9.78125 3.7875 9.875 4.01719 9.875 4.28594C9.875 4.55469 9.77969 4.78437 9.59062 4.975Z\" fill=\"currentColor\"/></svg>";
640
+ readonly loading: "<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.95404 27.5876C5.74164 27.5876 6.38012 26.9491 6.38012 26.1615C6.38012 25.3739 5.74164 24.7354 4.95404 24.7354C4.16643 24.7354 3.52795 25.3739 3.52795 26.1615C3.52795 26.9491 4.16643 27.5876 4.95404 27.5876Z\" fill=\"currentColor\"/><path d=\"M1.42609 17.7043C2.21369 17.7043 2.85217 17.0659 2.85217 16.2783C2.85217 15.4907 2.21369 14.8522 1.42609 14.8522C0.638481 14.8522 0 15.4907 0 16.2783C0 17.0659 0.638481 17.7043 1.42609 17.7043Z\" fill=\"currentColor\"/><path d=\"M4.95404 8.36273C6.13956 8.36273 7.10062 7.40167 7.10062 6.21615C7.10062 5.03062 6.13956 4.06956 4.95404 4.06956C3.76851 4.06956 2.80745 5.03062 2.80745 6.21615C2.80745 7.40167 3.76851 8.36273 4.95404 8.36273Z\" fill=\"currentColor\"/><path d=\"M14.8373 31.8807C16.0228 31.8807 16.9839 30.9197 16.9839 29.7342C16.9839 28.5486 16.0228 27.5876 14.8373 27.5876C13.6517 27.5876 12.6907 28.5486 12.6907 29.7342C12.6907 30.9197 13.6517 31.8807 14.8373 31.8807Z\" fill=\"currentColor\"/><path d=\"M24.9689 28.8696C26.4646 28.8696 27.677 27.6571 27.677 26.1615C27.677 24.6659 26.4646 23.4534 24.9689 23.4534C23.4733 23.4534 22.2609 24.6659 22.2609 26.1615C22.2609 27.6571 23.4733 28.8696 24.9689 28.8696Z\" fill=\"currentColor\"/><path d=\"M14.8373 5.41615C16.3329 5.41615 17.5453 4.2037 17.5453 2.70807C17.5453 1.21245 16.3329 0 14.8373 0C13.3416 0 12.1292 1.21245 12.1292 2.70807C12.1292 4.2037 13.3416 5.41615 14.8373 5.41615Z\" fill=\"currentColor\"/><path d=\"M24.6857 10.2211C26.7604 10.2211 28.4422 8.53927 28.4422 6.4646C28.4422 4.38993 26.7604 2.70807 24.6857 2.70807C22.611 2.70807 20.9292 4.38993 20.9292 6.4646C20.9292 8.53927 22.611 10.2211 24.6857 10.2211Z\" fill=\"currentColor\"/><path d=\"M28.4422 19.836C30.4071 19.836 32 18.2432 32 16.2783C32 14.3134 30.4071 12.7205 28.4422 12.7205C26.4773 12.7205 24.8845 14.3134 24.8845 16.2783C24.8845 18.2432 26.4773 19.836 28.4422 19.836Z\" fill=\"currentColor\"/></svg>";
641
+ readonly locate: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 14.7402C7.70205 14.74 7.46006 14.4982 7.45996 14.2002L7.45996 13.4639C4.859 13.21 2.79022 11.1409 2.53613 8.54004L1.89941 8.54004C1.60139 8.53981 1.35939 8.29808 1.35937 8C1.35937 7.70191 1.60138 7.46019 1.89941 7.45996L2.53613 7.45996C2.79017 4.8587 4.85952 2.79065 7.46094 2.53711L7.46094 1.90039C7.46094 1.60216 7.70274 1.36035 8.00098 1.36035C8.29899 1.36062 8.54101 1.60232 8.54101 1.90039L8.54101 2.53711C11.1413 2.79172 13.21 4.85949 13.4639 7.45996L14.2002 7.45996C14.4983 7.46006 14.7402 7.70183 14.7402 8C14.7402 8.29815 14.4983 8.53994 14.2002 8.54004L13.4639 8.54004C13.2098 11.1408 11.1407 13.2098 8.54004 13.4639L8.54004 14.2002C8.53994 14.4983 8.29817 14.7402 8 14.7402ZM7.45996 11.7002C7.45996 11.4021 7.70199 11.1604 8 11.1602C8.29823 11.1602 8.54004 11.402 8.54004 11.7002L8.54004 12.376C10.5436 12.1311 12.1312 10.5436 12.376 8.54004L11.7002 8.54004C11.402 8.54004 11.1602 8.29821 11.1602 8C11.1602 7.70177 11.402 7.45996 11.7002 7.45996L12.376 7.45996C12.1313 5.45664 10.5441 3.86934 8.54101 3.62402L8.54101 4.40039C8.5408 4.69828 8.29885 4.94017 8.00098 4.94043C7.70287 4.94043 7.46115 4.69844 7.46094 4.40039L7.46094 3.62402C5.45668 3.86834 3.86886 5.45586 3.62402 7.45996L4.39941 7.45996C4.69765 7.45996 4.93945 7.70177 4.93945 8C4.93944 8.29822 4.69764 8.54004 4.39941 8.54004L3.62402 8.54004C3.86889 10.5437 5.45619 12.1313 7.45996 12.376L7.45996 11.7002Z\" fill=\"currentColor\"/></svg>";
642
+ readonly "measure-distance": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_817)\"><path d=\"M1.01392 0.562507C1.32531 0.433523 1.68379 0.504839 1.92212 0.743171L15.2561 14.0762C15.4943 14.3145 15.5657 14.6731 15.4368 14.9844C15.3078 15.2958 15.0033 15.499 14.6663 15.499H1.33325C0.873015 15.499 0.500244 15.1253 0.500244 14.665V1.33204C0.500244 0.995167 0.702803 0.691609 1.01392 0.562507ZM2.16626 13.832H12.6545L2.16626 3.34278V13.832Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" stroke=\"currentColor\" stroke-width=\"1.66667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" stroke=\"currentColor\" stroke-width=\"1.66667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.33325 11.668H8.33325L4.33325 7.66797V11.668Z\" stroke=\"currentColor\" stroke-width=\"1.66667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.01367 6.89851C4.32502 6.76954 4.68354 6.84092 4.92188 7.07917L8.92188 11.0792C9.1602 11.3175 9.23152 11.676 9.10254 11.9874C8.9734 12.2984 8.66983 12.501 8.33301 12.501H4.33301C3.8729 12.5009 3.50004 12.1282 3.5 11.668V7.66804C3.5 7.33125 3.70269 7.02767 4.01367 6.89851Z\" fill=\"currentColor\"/><path d=\"M9.16699 14.668V13.668C9.16699 13.2077 9.53976 12.835 10 12.835C10.4602 12.835 10.833 13.2077 10.833 13.668V14.668C10.833 15.1282 10.4602 15.501 10 15.501C9.53976 15.501 9.16699 15.1282 9.16699 14.668Z\" fill=\"currentColor\"/><path d=\"M7.16699 14.668V13.668C7.16699 13.2077 7.53976 12.835 8 12.835C8.46024 12.835 8.83301 13.2077 8.83301 13.668V14.668C8.83301 15.1282 8.46024 15.501 8 15.501C7.53976 15.501 7.16699 15.1282 7.16699 14.668Z\" fill=\"currentColor\"/><path d=\"M5.16699 14.668V13.668C5.16699 13.2077 5.53976 12.835 6 12.835C6.46024 12.835 6.83301 13.2077 6.83301 13.668V14.668C6.83301 15.1282 6.46024 15.501 6 15.501C5.53976 15.501 5.16699 15.1282 5.16699 14.668Z\" fill=\"currentColor\"/><path d=\"M3.16699 14.668V13.668C3.16699 13.2077 3.53976 12.835 4 12.835C4.46024 12.835 4.83301 13.2077 4.83301 13.668V14.668C4.83301 15.1282 4.46024 15.501 4 15.501C3.53976 15.501 3.16699 15.1282 3.16699 14.668Z\" fill=\"currentColor\"/><path d=\"M2.33325 11.167C2.79349 11.167 3.16626 11.5398 3.16626 12C3.16626 12.4602 2.79349 12.833 2.33325 12.833H1.33325C0.873015 12.833 0.500244 12.4602 0.500244 12C0.500244 11.5398 0.873015 11.167 1.33325 11.167H2.33325Z\" fill=\"currentColor\"/><path d=\"M2.33325 9.16699C2.79349 9.16699 3.16626 9.53976 3.16626 10C3.16626 10.4602 2.79349 10.833 2.33325 10.833H1.33325C0.873015 10.833 0.500244 10.4602 0.500244 10C0.500244 9.53976 0.873015 9.16699 1.33325 9.16699H2.33325Z\" fill=\"currentColor\"/><path d=\"M2.33325 7.16699C2.79349 7.16699 3.16626 7.53976 3.16626 8C3.16626 8.46024 2.79349 8.83301 2.33325 8.83301H1.33325C0.873015 8.83301 0.500244 8.46024 0.500244 8C0.500244 7.53976 0.873015 7.16699 1.33325 7.16699H2.33325Z\" fill=\"currentColor\"/><path d=\"M2.33325 5.16699C2.79349 5.16699 3.16626 5.53976 3.16626 6C3.16626 6.46024 2.79349 6.83301 2.33325 6.83301H1.33325C0.873015 6.83301 0.500244 6.46024 0.500244 6C0.500244 5.53976 0.873015 5.16699 1.33325 5.16699H2.33325Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_817\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
643
+ readonly monitor: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0.491211 6.43661C0.677161 6.15594 1.05408 6.07959 1.33301 6.26669L11.5186 13.1007L15.0811 10.9503C15.3684 10.777 15.7406 10.8703 15.9131 11.1593C16.0855 11.4485 15.9925 11.8236 15.7051 11.9972L12.0254 14.2188C11.6953 14.4181 11.2802 14.4083 10.96 14.1935L5.11523 10.2726L3.83594 12.2042C3.72342 12.374 3.53388 12.4756 3.33105 12.4757H1.21387V15.3888C1.21387 15.726 0.942465 15.9999 0.607422 16.0001C0.272185 16.0001 0 15.7261 0 15.3888V9.12411C0.000229474 8.78697 0.272326 8.51376 0.607422 8.51376C0.942324 8.51399 1.21364 8.78711 1.21387 9.12411V11.255H3.00586L4.10449 9.59482L0.65918 7.28329C0.380457 7.09612 0.305338 6.71721 0.491211 6.43661Z\" fill=\"currentColor\"/><path d=\"M1.02646 3.92437C0.814339 3.78208 0.793246 3.47637 0.983789 3.30593L3.88631 0.709742C4.01767 0.592236 4.21102 0.577945 4.35806 0.674875L14.8889 7.61764C15.1252 7.77347 15.1229 8.12284 14.8845 8.27547L11.3266 10.5538C11.1966 10.6371 11.0301 10.6353 10.9019 10.5493L1.02646 3.92437Z\" fill=\"currentColor\"/><path d=\"M3.48248 0.253021C3.81874 -0.0477564 4.31416 -0.0837782 4.69049 0.164154L15.2217 7.10654C15.8265 7.50547 15.8203 8.40034 15.21 8.79111L11.6524 11.0694C11.3196 11.2823 10.8925 11.2777 10.5645 11.0577L0.689514 4.43271C0.146816 4.06847 0.0929252 3.28601 0.580139 2.8497L3.48248 0.253021ZM1.59772 3.57333L11.1202 9.96201L14.2735 7.94247L4.1651 1.27744L1.59772 3.57333Z\" fill=\"currentColor\"/></svg>";
644
+ readonly more: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.5 0.75C14.9142 0.75 15.25 1.08579 15.25 1.5C15.25 1.91421 14.9142 2.25 14.5 2.25H1.5C1.08579 2.25 0.75 1.91421 0.75 1.5C0.75 1.08579 1.08579 0.75 1.5 0.75H14.5Z\" fill=\"currentColor\"/><path d=\"M14.5 7.25C14.9142 7.25 15.25 7.58579 15.25 8C15.25 8.41421 14.9142 8.75 14.5 8.75H1.5C1.08579 8.75 0.75 8.41421 0.75 8C0.75 7.58579 1.08579 7.25 1.5 7.25H14.5Z\" fill=\"currentColor\"/><path d=\"M14.5 13.75C14.9142 13.75 15.25 14.0858 15.25 14.5C15.25 14.9142 14.9142 15.25 14.5 15.25H1.5C1.08579 15.25 0.75 14.9142 0.75 14.5C0.75 14.0858 1.08579 13.75 1.5 13.75H14.5Z\" fill=\"currentColor\"/></svg>";
645
+ readonly move: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_933)\"><path d=\"M7.57552 0.909501C7.80983 0.675186 8.18983 0.675186 8.42415 0.909501L10.4241 2.9095C10.6582 3.14377 10.6582 3.52288 10.4241 3.75716C10.1898 3.99147 9.80983 3.99147 9.57552 3.75716L8.59993 2.78157V7.39973H13.2181L12.2425 6.42415C12.0082 6.18983 12.0082 5.80983 12.2425 5.57552C12.4768 5.34136 12.8569 5.34126 13.0911 5.57552L15.0911 7.57552C15.3254 7.80978 15.3253 8.18982 15.0911 8.42415L13.0911 10.4241C12.8568 10.6585 12.4768 10.6585 12.2425 10.4241C12.0082 10.1898 12.0082 9.80983 12.2425 9.57552L13.2181 8.59993H8.59993V13.2181L9.57552 12.2425C9.80983 12.0082 10.1898 12.0082 10.4241 12.2425C10.6585 12.4768 10.6585 12.8568 10.4241 13.0911L8.42415 15.0911C8.18982 15.3253 7.80978 15.3254 7.57552 15.0911L5.57552 13.0911C5.34126 12.8569 5.34136 12.4768 5.57552 12.2425C5.80983 12.0082 6.18983 12.0082 6.42415 12.2425L7.39973 13.2181V8.59993H2.78157L3.75716 9.57552C3.99147 9.80983 3.99147 10.1898 3.75716 10.4241C3.52288 10.6582 3.14377 10.6582 2.9095 10.4241L0.909501 8.42415C0.675186 8.18983 0.675186 7.80983 0.909501 7.57552L2.9095 5.57552C3.14373 5.34164 3.52292 5.34164 3.75716 5.57552C3.99147 5.80983 3.99147 6.18983 3.75716 6.42415L2.78157 7.39973H7.39973V2.78157L6.42415 3.75716C6.18983 3.99147 5.80983 3.99147 5.57552 3.75716C5.34164 3.52292 5.34164 3.14373 5.57552 2.9095L7.57552 0.909501Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_933\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
646
+ readonly "notification-management": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"16\" height=\"16\" rx=\"5\" fill=\"white\"/><path d=\"M15.0478 11.6712C14.5679 11.3425 14.2633 10.8128 14.2633 10.2009V6.63927C14.2633 4.03653 12.3253 1.86301 9.73204 1.3242V1.19635C9.73204 0.52968 9.17831 0 8.49539 0C7.81246 0 7.25873 0.538813 7.25873 1.19635V1.3242C4.66546 1.86301 2.72742 4.0274 2.72742 6.63927V10.1918C2.72742 10.7671 2.45979 11.2694 2.03527 11.5982C1.98912 11.6347 1.96144 11.653 1.83223 11.7443C1.6292 11.8904 1.5 12.1187 1.5 12.3927C1.5 12.8311 1.86915 13.1963 2.32136 13.1963H14.6786C15.1309 13.1963 15.5 12.8402 15.5 12.3927C15.5 12.1096 15.3523 11.863 15.1216 11.7169C15.0847 11.6986 15.0755 11.6804 15.0478 11.6712ZM8.49539 16C9.63052 16 10.5534 15.105 10.5534 14H6.43738C6.43738 15.0959 7.36025 16 8.49539 16Z\" fill=\"currentColor\"/></svg>";
647
+ readonly phone: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_780)\"><path d=\"M4.93943 1.6377C5.35238 1.63797 5.73309 1.86257 5.93357 2.22363L6.8242 3.82715C7.00633 4.15525 7.01429 4.55302 6.84666 4.88867L6.05662 6.46777C6.0611 6.48416 6.0657 6.50232 6.07127 6.52148C6.1069 6.64406 6.16527 6.82102 6.25388 7.02832C6.4319 7.44471 6.72799 7.97606 7.20115 8.44922C7.6742 8.92221 8.20413 9.2167 8.61912 9.39355C8.82579 9.48162 9.00192 9.53996 9.124 9.5752C9.14239 9.5805 9.15994 9.58457 9.17576 9.58887L10.7568 8.79883C11.0926 8.63104 11.4902 8.63997 11.8183 8.82227L13.4267 9.7168C13.7876 9.91743 14.0116 10.2981 14.0117 10.7109V12.5566C14.0117 13.753 12.886 14.6613 11.707 14.2637C9.86872 13.6434 6.94983 12.4439 5.0781 10.5723C3.2064 8.70059 2.00604 5.78171 1.38572 3.94336C0.988099 2.76447 1.89647 1.6378 3.09275 1.6377H4.93943Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_780\"><rect width=\"14\" height=\"14\" fill=\"white\" transform=\"translate(1 1)\"/></clipPath></defs></svg>";
648
+ readonly "pin-top": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_798)\"><path d=\"M14.864 6.64L16 5.504L10.496 0L9.36 1.136L10.456 2.24L7.816 4.88C7.03168 4.66642 6.20501 4.66263 5.41877 4.86902C4.63252 5.07541 3.9143 5.48473 3.336 6.056L2.24 7.16L1.136 6.056L0 7.2L3.832 11.032L1.648 13.216L2.784 14.352L4.976 12.16L8.8 16L9.936 14.864L8.84 13.76L9.936 12.664C10.51 12.0857 10.9217 11.3665 11.1295 10.5787C11.3374 9.79085 11.3341 8.96217 11.12 8.176L13.76 5.536L14.864 6.64Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_798\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
649
+ readonly polygon: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_713)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.501 0.699219C14.4946 0.699694 15.3006 1.50635 15.3008 2.5C15.3006 3.49364 14.4946 4.29933 13.501 4.2998C13.1312 4.2998 12.787 4.18834 12.501 3.99707L10.6133 6.5127C11.088 6.83695 11.4003 7.38195 11.4004 8C11.4003 8.61737 11.0881 9.16115 10.6143 9.48535L12.501 12.002C12.7869 11.8108 13.1314 11.6992 13.501 11.6992C14.4946 11.6997 15.3006 12.5064 15.3008 13.5C15.3006 14.4936 14.4946 15.2993 13.501 15.2998C12.6806 15.2998 11.9895 14.7506 11.7725 14H4.22754C4.01066 14.7505 3.32022 15.2996 2.5 15.2998C1.5062 15.2996 0.69943 14.4938 0.699219 13.5C0.699382 12.6797 1.2493 11.9875 2 11.7705V4.22852C1.24945 4.01159 0.700369 3.32018 0.700195 2.5C0.700393 1.50606 1.50699 0.699219 2.50098 0.699219C3.32097 0.699611 4.01166 1.24956 4.22852 2H11.7715C11.9885 1.24929 12.6806 0.699219 13.501 0.699219ZM4.19629 3.09961C4.01553 3.61082 3.61076 4.01344 3.09961 4.19434V11.8037C3.61091 11.9846 4.01543 12.389 4.19629 12.9004H11.8008L9.46973 9.79297C8.53677 9.72593 7.80001 8.94993 7.7998 8C7.79999 7.05004 8.53673 6.27311 9.46973 6.20605L11.8008 3.09961H4.19629Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_713\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
650
+ readonly port: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_698)\"><path d=\"M7.66132 1.2666C8.73471 1.26661 9.56366 2.14534 9.56366 3.16992C9.56353 3.99904 9.02758 4.73052 8.29608 4.97461L8.24042 6.19434H9.06757V5.80566H11.9455C13.0189 5.80566 13.6051 5.98667 14.1418 6.42578C14.4579 6.68466 14.9219 7.49909 14.8732 8.42578C14.8732 9.30402 14.7761 9.95354 14.1418 10.4902C13.5076 10.9781 12.7268 11.2216 11.7512 11.2217H10.4338V14.4639H9.06757V7.07324H8.28534L8.19843 14.5381C7.95448 14.6357 7.7589 14.7334 7.66132 14.7334C7.36859 14.6846 5.80746 13.8549 4.24628 13.123C2.69586 12.4447 1.67452 10.6596 1.66034 10.6348L1.12323 10.7324L1.51385 8.97559L2.73358 10.4395L2.2453 10.4883C2.2453 10.4883 3.70925 11.708 5.07538 11.7568C6.4415 11.8056 7.07538 10.0488 7.07538 10.0488V7.07324H4.52753V6.19434H6.9787V4.97461C6.24694 4.73069 5.71028 3.99922 5.71014 3.16992C5.71014 2.09654 6.58791 1.26662 7.61249 1.2666H7.66132ZM10.4826 6.68457V10.2461H11.9455C13.2628 10.1485 13.6047 9.31872 13.6535 8.53809V8.44043C13.6535 8.05018 13.5556 7.65981 13.3117 7.31836C13.019 6.92825 12.5313 6.68462 11.6535 6.68457H10.4826ZM7.61249 2.19336C7.02702 2.19337 6.58807 2.63327 6.58807 3.21875C6.58826 3.80406 7.07595 4.24316 7.66132 4.24316C8.24668 4.24316 8.68556 3.80405 8.68573 3.21875C8.68573 2.63327 8.24679 2.19336 7.66132 2.19336H7.61249Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_698\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
651
+ readonly "port-2": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.45509 3.44511C8.45509 3.35433 8.42839 3.26559 8.37839 3.19011C8.32838 3.11463 8.2573 3.0558 8.17414 3.02106C8.09098 2.98632 7.99947 2.97723 7.91119 2.99494C7.8229 3.01265 7.74181 3.05637 7.67816 3.12056C7.61451 3.18475 7.57117 3.26653 7.55361 3.35556C7.53605 3.4446 7.54506 3.53688 7.57951 3.62075C7.61395 3.70462 7.67229 3.7763 7.74713 3.82674C7.82197 3.87717 7.90996 3.90409 7.99998 3.90409C8.12068 3.90409 8.23644 3.85573 8.32179 3.76966C8.40714 3.68358 8.45509 3.56684 8.45509 3.44511ZM14.4 10.129V12.6678C14.3995 12.7137 14.3858 12.7585 14.3606 12.7967C14.3353 12.8349 14.2996 12.8648 14.2578 12.8829H14.1724C14.1119 12.8822 14.0538 12.8592 14.0089 12.8184L13.3404 12.1443C12.6617 12.8829 11.8337 13.4661 10.9125 13.8545C9.99119 14.243 8.99803 14.4277 7.99998 14.3961C7.00299 14.4295 6.01049 14.2471 5.08929 13.8611C4.16809 13.4751 3.33958 12.8946 2.65953 12.1586L1.99109 12.8327C1.94691 12.8748 1.88828 12.8979 1.82753 12.8973H1.7422C1.70035 12.8792 1.66463 12.8492 1.63938 12.811C1.61412 12.7728 1.60043 12.728 1.59998 12.6821L1.59998 10.129C1.59998 10.0989 1.60586 10.0691 1.6173 10.0412C1.62873 10.0134 1.64549 9.98807 1.66663 9.96676C1.68776 9.94545 1.71284 9.92854 1.74045 9.91701C1.76806 9.90548 1.79765 9.89954 1.82753 9.89954H4.34486C4.39065 9.89844 4.4357 9.9113 4.47412 9.93644C4.51254 9.96158 4.54254 9.99782 4.56021 10.0404C4.57788 10.083 4.58239 10.13 4.57315 10.1753C4.56391 10.2205 4.54135 10.2619 4.50842 10.294L3.79731 11.0111C4.63467 11.9842 5.81093 12.5953 7.08264 12.718V8.05644H5.71731C5.59594 8.05646 5.47944 8.00833 5.39296 7.92245C5.30648 7.83658 5.25695 7.71985 5.25509 7.59746V6.67232C5.25695 6.54994 5.30648 6.43321 5.39296 6.34733C5.47944 6.26146 5.59594 6.21333 5.71731 6.21334H7.08264V5.0372C6.73499 4.83373 6.46355 4.52034 6.31036 4.14556C6.15716 3.77078 6.13075 3.35552 6.23523 2.96408C6.33969 2.57263 6.56921 2.22684 6.88825 1.98025C7.20728 1.73365 7.59802 1.60001 7.99998 1.60001C8.40193 1.60001 8.79268 1.73365 9.11171 1.98025C9.43074 2.22684 9.66026 2.57263 9.76473 2.96408C9.8692 3.35552 9.84279 3.77078 9.68959 4.14556C9.5364 4.52034 9.26496 4.83373 8.91731 5.0372V6.21334H10.2826C10.404 6.21333 10.5205 6.26146 10.607 6.34733C10.6935 6.43321 10.743 6.54994 10.7449 6.67232V7.59746C10.743 7.71985 10.6935 7.83658 10.607 7.92245C10.5205 8.00833 10.404 8.05646 10.2826 8.05644H8.91731V12.718C10.1905 12.5989 11.3695 11.9903 12.2098 11.0183L11.4986 10.3012C11.4657 10.2691 11.4432 10.2277 11.4339 10.1824C11.4247 10.1372 11.4292 10.0902 11.4468 10.0476C11.4645 10.005 11.4945 9.96875 11.5329 9.94361C11.5714 9.91848 11.6164 9.90562 11.6622 9.90671H14.1795C14.2374 9.90851 14.2925 9.93251 14.3334 9.97382C14.3744 10.0151 14.3982 10.0706 14.4 10.129Z\" fill=\"currentColor\"/></svg>";
652
+ readonly question: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 1C11.866 1 15 4.13401 15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1ZM8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2ZM8 10.5146C8.19344 10.5146 8.38709 10.5985 8.53223 10.7314C8.67739 10.8766 8.75 11.0711 8.75 11.2646C8.74989 11.4701 8.67727 11.6639 8.53223 11.7969C8.38709 11.9419 8.19344 12.0146 8 12.0146C7.80656 12.0146 7.61291 11.9298 7.46777 11.7969C7.32273 11.6518 7.25012 11.458 7.25 11.2646C7.25 11.059 7.33471 10.8766 7.46777 10.7314C7.61291 10.5864 7.80656 10.5146 8 10.5146ZM7.99023 4C8.64015 4.00006 9.26053 4.2297 9.73047 4.63965C10.2204 5.06964 10.4905 5.64004 10.4805 6.25C10.5005 7.15987 9.90025 7.97001 8.98047 8.33008C8.84054 8.38005 8.71987 8.4797 8.62988 8.59961C8.53988 8.72961 8.5 8.88027 8.5 9.03027C8.49998 9.04111 8.49863 9.37208 8.41016 9.5C8.31016 9.62 8.17 9.71973 8 9.71973C7.83 9.71973 7.68984 9.63 7.58984 9.5C7.46991 9.33998 7.49023 9.0498 7.49023 9.0498C7.49027 8.68992 7.59989 8.32997 7.7998 8.04004C7.9998 7.75004 8.28035 7.53039 8.61035 7.40039C9.14025 7.20036 9.49023 6.74971 9.49023 6.25977C9.49008 5.56994 8.82003 5.00987 7.99023 5.00977C7.2303 5.00977 6.60008 5.47992 6.5 6.08984C6.5 6.10984 6.44985 6.43964 6.37988 6.50977C6.31988 6.59977 6.15 6.66992 6 6.66992C5.85 6.66992 5.71988 6.6 5.62988 6.5C5.55999 6.4201 5.51008 6.31024 5.5 6.19043C5.5 6.17049 5.5097 6.03087 5.50977 5.98047C5.57977 5.47047 5.83 4.99965 6.25 4.63965C6.71998 4.22974 7.34031 4 7.99023 4Z\" fill=\"currentColor\"/></svg>";
653
+ readonly rectangle: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_7055_725)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.501 0.699219C14.4946 0.699694 15.3006 1.50635 15.3008 2.5C15.3006 3.32027 14.7505 4.0107 14 4.22754V11.7705C14.7508 11.9873 15.3006 12.6796 15.3008 13.5C15.3006 14.4936 14.4946 15.2993 13.501 15.2998C12.6806 15.2998 11.9895 14.7506 11.7725 14H4.22754C4.01066 14.7505 3.32022 15.2996 2.5 15.2998C1.5062 15.2996 0.69943 14.4938 0.699219 13.5C0.699382 12.6797 1.2493 11.9875 2 11.7705V4.22852C1.24945 4.01159 0.700369 3.32018 0.700195 2.5C0.700393 1.50606 1.50699 0.699219 2.50098 0.699219C3.32097 0.699611 4.01166 1.24956 4.22852 2H11.7715C11.9885 1.24929 12.6806 0.699219 13.501 0.699219ZM4.19629 3.09961C4.01553 3.61082 3.61076 4.01344 3.09961 4.19434V11.8037C3.61091 11.9846 4.01543 12.389 4.19629 12.9004H11.8037C11.9846 12.3891 12.3892 11.9847 12.9004 11.8037V4.19531C12.3893 4.01442 11.9856 3.61064 11.8047 3.09961H4.19629Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_7055_725\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>";
654
+ readonly satellite: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.8568 10.9036C14.8568 12.8939 13.1533 14.5071 11.0726 14.5071V13.8138C12.7612 13.8137 14.1332 12.5018 14.1332 10.9036H14.8568ZM10.6537 1.33525C10.8883 1.07937 11.2933 1.07937 11.5492 1.33525L13.3822 3.16826C13.6381 3.40282 13.6383 3.8087 13.4037 4.04326L10.7387 6.7083C10.5041 6.96414 10.099 6.96406 9.84315 6.7083L9.22499 6.09014L8.86171 6.45244L9.67226 7.26299C9.1819 7.47621 8.69143 7.81707 8.26503 8.24346C7.83867 8.66982 7.49781 9.16037 7.28456 9.65068L6.47401 8.84111L6.11171 9.20342L6.72987 9.82158C6.98559 10.0561 6.98562 10.4612 6.72987 10.7171L4.06386 13.3821C3.8293 13.638 3.42423 13.638 3.16835 13.3821L1.33534 11.5491C1.07946 11.3146 1.07946 10.9095 1.33534 10.6536L4.00038 7.9876C4.23494 7.73182 4.64004 7.73179 4.89589 7.9876L5.6205 8.71221L5.98378 8.3499L5.74843 8.11553C5.40755 7.77452 5.2583 7.34819 5.25819 6.90068C4.78908 6.32495 4.72528 5.57813 5.15175 5.15166C5.57822 4.72519 6.32504 4.78899 6.90077 5.2581C7.32699 5.25822 7.7746 5.40747 8.11562 5.74834L8.34999 5.98369L8.7123 5.62041L7.98769 4.8958C7.73188 4.66126 7.73191 4.25616 7.98769 4.00029L10.6537 1.33525ZM13.5756 10.9192C13.5603 12.2311 12.4598 13.301 11.0726 13.3011V12.6077C11.5554 12.6077 11.9928 12.4414 12.3246 12.1097C12.671 11.7931 12.8519 11.3714 12.8519 10.9192H13.5756ZM8.60585 8.60576C9.79982 7.41188 11.4204 7.0069 12.4652 7.58232H12.4867C12.5293 7.60362 12.5506 7.62548 12.5932 7.64678C12.5933 7.66691 12.6128 7.66821 12.6146 7.66826C12.6573 7.68959 12.7214 7.73206 12.7641 7.77471C13.0624 8.20118 12.7001 9.1391 11.89 10.1624L11.4633 9.6292C11.9109 9.0536 12.1459 8.60575 12.018 8.47783C11.8259 8.28616 10.8659 8.92582 9.88515 9.90654C8.90439 10.8873 8.26476 11.8473 8.45644 12.0394C8.60569 12.1673 9.11758 11.8899 9.75722 11.3782L10.2904 11.805C9.22441 12.6577 8.22261 13.0409 7.7748 12.7425C7.75346 12.6999 7.70994 12.6579 7.66737 12.594C7.64779 12.5938 7.64695 12.575 7.64687 12.5726C7.6256 12.53 7.60368 12.5085 7.58241 12.4661C7.00668 11.4213 7.39041 9.8212 8.60585 8.60576ZM10.2475 10.056C10.3967 9.90674 10.6312 9.92832 10.7592 10.0774L11.3353 10.7806C11.3735 10.8314 11.3986 10.8906 11.4135 10.9515C11.4674 10.9313 11.5251 10.9192 11.5853 10.9192C11.8567 10.9193 12.0831 11.1151 12.098 11.4017C12.098 11.673 11.8567 11.884 11.5853 11.8841C11.2839 11.8841 11.0727 11.673 11.0726 11.4017C11.0753 11.3574 11.0847 11.3142 11.099 11.2728C11.0388 11.2573 10.9804 11.2299 10.9301 11.1858L10.2055 10.6321C10.0349 10.5042 10.0349 10.2697 10.184 10.1204L10.2475 10.056Z\" fill=\"currentColor\"/></svg>";
655
+ readonly settings: "<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.0996 3.71791C12.0996 3.46305 12.1332 3.21535 12.1943 2.97865C11.644 2.53775 11.0221 2.18456 10.3486 1.93763C9.80809 2.58616 8.99499 3.00111 8.08301 3.00111C7.17079 3.00104 6.3569 2.58652 5.81641 1.93763C5.14352 2.18451 4.52165 2.53712 3.97168 2.97767C4.03302 3.21469 4.06639 3.46267 4.06641 3.71791C4.06641 5.15718 3.03545 6.3535 1.67188 6.61341C1.5591 7.09605 1.5 7.59998 1.5 8.1183C1.50001 8.3722 1.51607 8.62231 1.54395 8.8683C2.97036 9.07546 4.06621 10.3005 4.06641 11.7843C4.06641 12.2497 3.95697 12.6902 3.76465 13.0822C4.30852 13.5558 4.92957 13.9404 5.60742 14.216C6.13279 13.4056 7.04409 12.8684 8.08301 12.8683C9.12174 12.8683 10.0321 13.4059 10.5576 14.216C11.2358 13.9404 11.8572 13.556 12.4014 13.0822C12.2091 12.6903 12.0996 12.2496 12.0996 11.7843C12.0998 10.3007 13.1959 9.07566 14.6221 8.8683C14.65 8.62229 14.667 8.37222 14.667 8.1183C14.667 7.60028 14.6068 7.09678 14.4941 6.61439C13.1307 6.35436 12.0996 5.15707 12.0996 3.71791ZM9.89941 8.1183C9.89941 7.11508 9.08619 6.30203 8.08301 6.30189C7.0797 6.30189 6.2666 7.11499 6.2666 8.1183C6.26674 9.12148 7.07979 9.9347 8.08301 9.9347C9.08611 9.93457 9.89928 9.1214 9.89941 8.1183ZM11.3994 8.1183C11.3993 9.94983 9.91454 11.4346 8.08301 11.4347C6.25136 11.4347 4.76674 9.94991 4.7666 8.1183C4.7666 6.28657 6.25128 4.80189 8.08301 4.80189C9.91462 4.80203 11.3994 6.28665 11.3994 8.1183ZM13.5996 3.71791C13.5996 4.51869 14.249 5.16808 15.0498 5.1681H15.0703L15.1924 5.17591C15.4724 5.21795 15.709 5.41669 15.7959 5.69349C16.0366 6.45987 16.167 7.27471 16.167 8.1183C16.167 8.67495 16.1096 9.21904 16.002 9.74525C15.925 10.1216 15.5766 10.3795 15.1943 10.3419C15.1468 10.3373 15.0986 10.3351 15.0498 10.3351C14.2492 10.3351 13.5998 10.9837 13.5996 11.7843C13.5996 12.1409 13.7274 12.4662 13.9404 12.7189C14.1881 13.0125 14.1746 13.446 13.9082 13.7228C12.9545 14.7138 11.749 15.4627 10.3936 15.8663C10.0023 15.9828 9.5893 15.7649 9.46484 15.3761C9.27771 14.7907 8.72855 14.3683 8.08301 14.3683C7.43757 14.3684 6.88926 14.7908 6.70215 15.3761C6.57776 15.7649 6.16473 15.9828 5.77344 15.8663C4.41794 15.4628 3.21258 14.7138 2.25879 13.7228C1.99242 13.446 1.97788 13.0125 2.22559 12.7189C2.43877 12.4662 2.56641 12.141 2.56641 11.7843C2.5662 10.9837 1.91688 10.3351 1.11621 10.3351C1.06773 10.3351 1.01986 10.3373 0.972656 10.3419C0.590371 10.3795 0.241036 10.1216 0.164062 9.74525C0.0564702 9.21907 1.48401e-05 8.67491 0 8.1183C0 7.27477 0.129441 6.45984 0.370117 5.69349L0.416016 5.57924C0.54366 5.32655 0.806604 5.16396 1.09668 5.1681C1.10315 5.16819 1.10966 5.1681 1.11621 5.1681C1.91701 5.1681 2.56641 4.5187 2.56641 3.71791C2.56637 3.48676 2.51269 3.2704 2.41797 3.07826C2.27151 2.78117 2.3376 2.42302 2.58008 2.1974C3.5141 1.32892 4.65518 0.678001 5.92188 0.327282C6.2652 0.232243 6.62808 0.391841 6.79004 0.709118C7.03075 1.18094 7.52032 1.50102 8.08301 1.50111C8.64578 1.50111 9.13523 1.18099 9.37598 0.709118C9.53789 0.391744 9.90076 0.232243 10.2441 0.327282C11.511 0.677965 12.6518 1.32885 13.5859 2.1974C13.8286 2.42301 13.8946 2.78108 13.748 3.07826C13.6534 3.27035 13.5996 3.48683 13.5996 3.71791Z\" fill=\"currentColor\"/></svg>";
656
+ readonly ship: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.0869 11.0368L13.523 10.8318L13.523 10.8318L14.0869 11.0368ZM13.7421 10.1715L14.0105 9.63485L14.0104 9.63482L13.7421 10.1715ZM8.31313 7.45702L8.0448 7.99367L8.04481 7.99368L8.31313 7.45702ZM7.68705 7.45702L7.95538 7.99368L7.95538 7.99367L7.68705 7.45702ZM2.2581 10.1715L1.98978 9.63482L1.98974 9.63484L2.2581 10.1715ZM1.9133 11.0368L2.47717 10.8318L2.47717 10.8318L1.9133 11.0368ZM3.45 9.4H2.85C2.85 9.60462 2.95427 9.79512 3.12663 9.9054C3.29898 10.0157 3.51565 10.0305 3.70144 9.94478L3.45 9.4ZM7.70667 7.43538L7.45527 6.89059L7.45523 6.8906L7.70667 7.43538ZM8.29333 7.43538L8.54477 6.8906L8.54473 6.89059L8.29333 7.43538ZM12.55 9.4L12.2986 9.94478C12.4843 10.0305 12.701 10.0157 12.8734 9.9054C13.0457 9.79512 13.15 9.60462 13.15 9.4H12.55ZM9.15 4.5C9.15 4.83137 9.41863 5.1 9.75 5.1C10.0814 5.1 10.35 4.83137 10.35 4.5H9.75H9.15ZM5.65 4.5C5.65 4.83137 5.91863 5.1 6.25 5.1C6.58137 5.1 6.85 4.83137 6.85 4.5H6.25H5.65ZM8.6 10.8C8.6 10.4686 8.33137 10.2 8 10.2C7.66863 10.2 7.4 10.4686 7.4 10.8H8H8.6ZM7.4 13.6C7.4 13.9314 7.66863 14.2 8 14.2C8.33137 14.2 8.6 13.9314 8.6 13.6H8H7.4ZM1 14.4C0.668629 14.4 0.4 14.6686 0.4 15C0.4 15.3314 0.668629 15.6 1 15.6V15V14.4ZM15 15.6C15.3314 15.6 15.6 15.3314 15.6 15C15.6 14.6686 15.3314 14.4 15 14.4V15V15.6ZM12.9001 14.3005L13.464 14.5055L14.6507 11.2419L14.0869 11.0368L13.523 10.8318L12.3362 14.0955L12.9001 14.3005ZM14.0869 11.0368L14.6507 11.2419C14.8764 10.6213 14.601 9.93018 14.0105 9.63485L13.7421 10.1715L13.4737 10.7081C13.5192 10.7309 13.5404 10.784 13.523 10.8318L14.0869 11.0368ZM13.7421 10.1715L14.0104 9.63482L8.58146 6.92036L8.31313 7.45702L8.04481 7.99368L13.4738 10.7081L13.7421 10.1715ZM8.31313 7.45702L8.58146 6.92036C8.21549 6.73738 7.78469 6.73738 7.41872 6.92036L7.68705 7.45702L7.95538 7.99367C7.98351 7.97961 8.01667 7.97961 8.0448 7.99367L8.31313 7.45702ZM7.68705 7.45702L7.41873 6.92036L1.98978 9.63482L2.2581 10.1715L2.52643 10.7081L7.95538 7.99368L7.68705 7.45702ZM2.2581 10.1715L1.98974 9.63484C1.39919 9.93017 1.12375 10.6213 1.34942 11.2419L1.9133 11.0368L2.47717 10.8318C2.45982 10.7841 2.48098 10.7309 2.52647 10.7081L2.2581 10.1715ZM1.9133 11.0368L1.34942 11.2419L2.53622 14.5055L3.10009 14.3005L3.66397 14.0955L2.47717 10.8318L1.9133 11.0368ZM11.85 4.5V3.9H4.15V4.5V5.1H11.85V4.5ZM4.15 4.5V3.9C3.43202 3.9 2.85 4.48202 2.85 5.2H3.45H4.05C4.05 5.14476 4.09476 5.1 4.15 5.1V4.5ZM3.45 5.2H2.85V9.4H3.45H4.05V5.2H3.45ZM3.45 9.4L3.70144 9.94478L7.9581 7.98016L7.70667 7.43538L7.45523 6.8906L3.19856 8.85522L3.45 9.4ZM7.70667 7.43538L7.95806 7.98017C7.98468 7.96789 8.01532 7.96789 8.04194 7.98017L8.29333 7.43538L8.54473 6.89059C8.19909 6.73109 7.80091 6.73109 7.45527 6.89059L7.70667 7.43538ZM8.29333 7.43538L8.0419 7.98016L12.2986 9.94478L12.55 9.4L12.8014 8.85522L8.54477 6.8906L8.29333 7.43538ZM12.55 9.4H13.15V5.2H12.55H11.95V9.4H12.55ZM12.55 5.2H13.15C13.15 4.48202 12.568 3.9 11.85 3.9V4.5V5.1C11.9052 5.1 11.95 5.14476 11.95 5.2H12.55ZM9.75 4.5H10.35V1.7H9.75H9.15V4.5H9.75ZM9.75 1.7H10.35C10.35 0.982035 9.76799 0.4 9.05 0.4V1V1.6C9.10523 1.6 9.15 1.64477 9.15 1.7H9.75ZM9.05 1V0.4H6.95V1V1.6H9.05V1ZM6.95 1V0.4C6.23201 0.4 5.65 0.982036 5.65 1.7H6.25H6.85C6.85 1.64477 6.89477 1.6 6.95 1.6V1ZM6.25 1.7H5.65V4.5H6.25H6.85V1.7H6.25ZM8 10.8H7.4V13.6H8H8.6V10.8H8ZM1 15V15.6C1.83427 15.6 2.28704 15.3806 2.65393 15.1709C2.96453 14.9935 3.10133 14.9 3.45 14.9V14.3V13.7C2.74867 13.7 2.36047 13.9565 2.05857 14.1291C1.81296 14.2694 1.56573 14.4 1 14.4V15ZM3.45 14.3V14.9C3.79465 14.9 3.93456 14.9942 4.16718 15.1492C4.45956 15.3442 4.84465 15.6 5.55 15.6V15V14.4C5.20535 14.4 5.06544 14.3058 4.83282 14.1508C4.54044 13.9558 4.15535 13.7 3.45 13.7V14.3ZM5.55 15V15.6C6.23883 15.6 6.66286 15.3548 6.99173 15.1794C7.28611 15.0224 7.53241 14.9 8 14.9V14.3V13.7C7.24259 13.7 6.78889 13.9276 6.42702 14.1206C6.09964 14.2952 5.91117 14.4 5.55 14.4V15ZM8 14.3V14.9C8.46759 14.9 8.71389 15.0224 9.00827 15.1794C9.33714 15.3548 9.76117 15.6 10.45 15.6V15V14.4C10.0888 14.4 9.90036 14.2952 9.57298 14.1206C9.21111 13.9276 8.75741 13.7 8 13.7V14.3ZM10.45 15V15.6C11.1553 15.6 11.5404 15.3442 11.8328 15.1492C12.0654 14.9942 12.2053 14.9 12.55 14.9V14.3V13.7C11.8447 13.7 11.4596 13.9558 11.1672 14.1508C10.9346 14.3058 10.7947 14.4 10.45 14.4V15ZM12.55 14.3V14.9C12.8987 14.9 13.0355 14.9935 13.3461 15.1709C13.713 15.3806 14.1657 15.6 15 15.6V15V14.4C14.4343 14.4 14.187 14.2694 13.9414 14.1291C13.6395 13.9565 13.2513 13.7 12.55 13.7V14.3Z\" fill=\"currentColor\"/></svg>";
657
+ readonly show: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.00024 3.58789C9.98457 3.58801 11.7439 4.6607 12.9768 5.68262C13.599 6.19836 14.1023 6.71273 14.4495 7.09863C14.6233 7.29184 14.7591 7.4542 14.8518 7.56836C14.898 7.62527 14.9338 7.67071 14.9583 7.70215C14.9703 7.71772 14.98 7.7297 14.9866 7.73828C14.9898 7.74251 14.9916 7.74659 14.9934 7.74902L14.9973 7.75293C15.1065 7.89926 15.1065 8.10074 14.9973 8.24707L14.9934 8.25098C14.9916 8.25341 14.9898 8.25749 14.9866 8.26172C14.98 8.2703 14.9703 8.28228 14.9583 8.29785C14.9338 8.32929 14.898 8.37473 14.8518 8.43164C14.7591 8.5458 14.6233 8.70816 14.4495 8.90137C14.1023 9.28727 13.599 9.80164 12.9768 10.3174C11.7439 11.3393 9.98457 12.412 8.00024 12.4121C6.01572 12.4121 4.25568 11.3394 3.02271 10.3174C2.40043 9.80158 1.89721 9.28727 1.55005 8.90137C1.37623 8.70815 1.24137 8.5458 1.14868 8.43164C1.10238 8.37462 1.0667 8.32934 1.04224 8.29785C1.03019 8.28235 1.02046 8.27032 1.01392 8.26172C1.01065 8.25742 1.00794 8.25341 1.0061 8.25098C1.00525 8.24984 1.00468 8.24876 1.00415 8.24805L1.00317 8.24707C0.894013 8.10075 0.894013 7.89925 1.00317 7.75293L1.00415 7.75195C1.00468 7.75124 1.00525 7.75016 1.0061 7.74902C1.00794 7.74659 1.01065 7.74258 1.01392 7.73828C1.02046 7.72968 1.03019 7.71765 1.04224 7.70215C1.0667 7.67066 1.10238 7.62538 1.14868 7.56836C1.24137 7.4542 1.37623 7.29185 1.55005 7.09863C1.89721 6.71273 2.40043 6.19842 3.02271 5.68262C4.25568 4.66061 6.01572 3.58792 8.00024 3.58789ZM8.00024 5.9209C6.85211 5.92095 5.92132 6.8519 5.92114 8C5.92132 9.1481 6.85211 10.0791 8.00024 10.0791C9.14827 10.0789 10.0792 9.14803 10.0793 8C10.0792 6.85198 9.14827 5.92107 8.00024 5.9209ZM8.00024 6.74512C8.69263 6.74529 9.25397 7.30761 9.25415 8C9.25397 8.69239 8.69264 9.25373 8.00024 9.25391C7.30775 9.25386 6.74554 8.69247 6.74536 8C6.74554 7.30754 7.30775 6.74517 8.00024 6.74512Z\" fill=\"currentColor\"/></svg>";
658
+ readonly sort: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.61233 2.23303C7.81241 1.98741 8.18757 1.98741 8.38765 2.23303L11.1495 5.6235C11.4156 5.95015 11.1832 6.43928 10.7618 6.43928H5.23814C4.81683 6.43928 4.5844 5.95015 4.85048 5.6235L7.61233 2.23303Z\" fill=\"currentColor\"/><path d=\"M7.61233 13.767C7.81241 14.0126 8.18757 14.0126 8.38765 13.767L11.1495 10.3765C11.4156 10.0499 11.1832 9.56072 10.7618 9.56072H5.23814C4.81683 9.56072 4.5844 10.0499 4.85048 10.3765L7.61233 13.767Z\" fill=\"currentColor\"/></svg>";
659
+ readonly viewpoint: "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.80078 2C10.0008 2 11.9635 3.23413 13.6846 5.64507C13.7605 5.75117 13.8008 5.87428 13.8008 6C13.8008 6.12572 13.7605 6.24883 13.6846 6.35493C11.9635 8.76587 10.0008 10 7.80078 10C5.60075 10 3.63801 8.76587 1.91693 6.35493C1.84107 6.24883 1.80078 6.12572 1.80078 6C1.80078 5.87428 1.84107 5.75117 1.91693 5.64507C3.63801 3.23413 5.60075 2 7.80078 2ZM7.80078 3.6C6.30964 3.6 5.1008 4.67453 5.1008 6C5.1008 7.32547 6.30964 8.4 7.80078 8.4C9.29192 8.4 10.5008 7.32547 10.5008 6C10.5008 4.67453 9.29192 3.6 7.80078 3.6ZM7.80078 7.6C8.79482 7.6 9.60077 6.8836 9.60077 6C9.60077 5.1164 8.79482 4.4 7.80078 4.4C6.80674 4.4 6.00079 5.1164 6.00079 6C6.00079 6.8836 6.80674 7.6 7.80078 7.6Z\" fill=\"currentColor\"/><path d=\"M7.07933 14.8629L5.7854 15.8734C5.72658 15.9198 5.65887 15.9544 5.58616 15.9754C5.51346 15.9963 5.4372 16.0031 5.36178 15.9953C5.28635 15.9876 5.21325 15.9655 5.14669 15.9303C5.08013 15.8951 5.02141 15.8475 4.97393 15.7902C4.92621 15.7331 4.8906 15.6673 4.86914 15.5968C4.84768 15.5263 4.8408 15.4524 4.84888 15.3793C4.85696 15.3062 4.87985 15.2354 4.91623 15.1709C4.95262 15.1064 5.00179 15.0495 5.06093 15.0034L5.30875 14.8101C4.19436 14.6086 3.18751 14.2772 2.39583 13.8436C1.82266 13.5293 1.36973 13.1679 1.04973 12.7717C0.685376 12.3193 0.50037 11.8341 0.5 11.3283C0.500282 10.2708 1.30782 9.3097 2.77397 8.61688L2.77417 8.88255C2.77522 9.18791 2.89877 9.48093 3.11874 9.69972C2.18528 10.1755 1.65603 10.7614 1.65644 11.3275C1.65683 11.8598 2.1215 12.4082 2.96596 12.8704C3.66052 13.2521 4.55972 13.5436 5.56752 13.7197L5.29604 13.3081C5.21687 13.1831 5.19156 13.033 5.22558 12.8902C5.2596 12.7473 5.35022 12.6231 5.47791 12.5444C5.6056 12.4656 5.76014 12.4386 5.90821 12.4691C6.05628 12.4996 6.18604 12.5853 6.26951 12.7076L7.20435 14.1272C7.2808 14.2431 7.31042 14.3822 7.28755 14.518C7.26467 14.6537 7.19091 14.7766 7.08038 14.8629L7.07933 14.8629Z\" fill=\"currentColor\"/><path d=\"M15.267 11.2914C15.2677 12.2921 14.5337 13.2178 13.2001 13.8999C12.0005 14.5135 10.3795 14.8987 8.63485 14.9857L8.60529 14.9857C8.45567 14.9844 8.31244 14.9269 8.20579 14.8253C8.09914 14.7238 8.03742 14.5861 8.03362 14.4414C8.02981 14.2967 8.08424 14.1562 8.18541 14.0495C8.28659 13.9429 8.42662 13.8784 8.57598 13.8696C10.156 13.7919 11.607 13.4518 12.66 12.9129C13.1412 12.6674 13.5251 12.3833 13.7751 12.09C13.9997 11.8254 14.1124 11.5567 14.1123 11.2932C14.1118 10.7336 13.5942 10.156 12.6819 9.68595L12.6809 9.68595C12.7953 9.57676 12.8862 9.44667 12.9482 9.30323C13.0103 9.15979 13.0422 9.00586 13.0423 8.85037L13.0421 8.60938L13.0432 8.60938C14.4781 9.29762 15.2662 10.2477 15.267 11.2914Z\" fill=\"currentColor\"/></svg>";
660
+ readonly "water-gauge": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.4186 2.1402C10.6225 2.0056 10.8993 2.02808 11.0788 2.20758L13.7878 4.91559C13.9922 5.1208 13.9926 5.45383 13.7878 5.65875L5.66275 13.7838C5.45783 13.9887 5.12481 13.9882 4.91959 13.7838L2.21158 11.0748C2.00641 10.8696 2.00641 10.5377 2.21158 10.3326L10.3366 2.20758L10.4186 2.1402ZM3.49966 9.5152L4.88345 10.899C5.04964 11.0652 5.31883 11.0652 5.48502 10.899C5.65115 10.7328 5.65118 10.4636 5.48502 10.2974L4.10123 8.91364L3.49966 9.5152ZM4.85123 8.16364L6.77701 10.0894C6.94319 10.2556 7.21239 10.2556 7.37857 10.0894C7.5447 9.92323 7.54474 9.65402 7.37857 9.48785L5.45279 7.56207L4.85123 8.16364ZM6.2067 6.81207L7.59048 8.19586C7.75667 8.36205 8.02586 8.36205 8.19205 8.19586C8.35818 8.02967 8.35822 7.76047 8.19205 7.5943L6.80826 6.21051L6.2067 6.81207ZM7.56216 5.4527L9.48795 7.37848C9.65413 7.54466 9.92332 7.54466 10.0895 7.37848C10.2556 7.21229 10.2557 6.94308 10.0895 6.77692L8.16373 4.85114L7.56216 5.4527ZM8.91373 4.10114L10.2975 5.48492C10.4637 5.65111 10.7329 5.65111 10.8991 5.48492C11.0652 5.31874 11.0652 5.04953 10.8991 4.88336L9.51529 3.49957L8.91373 4.10114Z\" fill=\"currentColor\"/></svg>";
661
+ readonly "zoom-in": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.17857 7.17857V2.25H8.82143V7.17857H13.75V8.82143H8.82143V13.75H7.17857V8.82143H2.25V7.17857H7.17857Z\" fill=\"currentColor\"/></svg>";
662
+ readonly "zoom-out": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.25 7.16669V8.83335H13.75V7.16669H2.25Z\" fill=\"currentColor\"/></svg>";
663
+ };
664
+ type IconName = keyof typeof icons;
665
+ declare const iconNames: IconName[];
666
+ //#endregion
667
+ //#region packages/components/src/icon/src/type.d.ts
668
+ /** Icon 组件属性,name 只允许使用内置英文图标名。 */
669
+ interface IconProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children" | "dangerouslySetInnerHTML"> {
670
+ color?: CSSProperties["color"];
671
+ name: IconName;
672
+ size?: number | string;
673
+ title?: string;
674
+ }
675
+ //#endregion
676
+ //#region packages/components/src/icon/src/icon.d.ts
677
+ /** Icon 渲染项目内置 SVG,颜色默认跟随 currentColor。 */
678
+ declare function Icon({ className, color, name, size, style, title, ...restProps }: IconProps): import("react").JSX.Element;
679
+ //#endregion
680
+ //#region packages/components/src/image/src/type.d.ts
681
+ /** Element Plus Image 支持的图片填充模式。 */
682
+ type ImageFit = "fill" | "contain" | "cover" | "none" | "scale-down";
683
+ /** Image 对外暴露的实例方法。 */
684
+ interface ImageRef {
685
+ /** 打开图片预览。 */
686
+ showPreview: () => void;
687
+ }
688
+ /** ImageViewer 对外暴露的实例方法。 */
689
+ interface ImageViewerRef {
690
+ /** 手动切换预览图片。 */
691
+ setActiveItem: (index: number) => void;
692
+ }
693
+ /** ImageViewer 工具栏动作类型,对应 Element Plus ImageViewerAction。 */
694
+ type ImageViewerAction = "zoomIn" | "zoomOut" | "clockwise" | "anticlockwise";
695
+ /** ImageViewer 工具栏动作参数。 */
696
+ interface ImageViewerActionOptions {
697
+ enableTransition?: boolean;
698
+ rotateDeg?: number;
699
+ zoomRate?: number;
700
+ }
701
+ /** ImageViewer 进度插槽上下文。 */
702
+ interface ImageViewerProgressContext {
703
+ activeIndex: number;
704
+ total: number;
705
+ }
706
+ /** ImageViewer 图片加载失败插槽上下文。 */
707
+ interface ImageViewerErrorContext {
708
+ activeIndex: number;
709
+ src: string;
710
+ }
711
+ /** ImageViewer 工具栏插槽上下文。 */
712
+ interface ImageViewerToolbarContext extends ImageViewerProgressContext {
713
+ actions: (action: ImageViewerAction, options?: ImageViewerActionOptions) => void;
714
+ next: () => void;
715
+ prev: () => void;
716
+ reset: () => void;
717
+ setActiveItem: (index: number) => void;
718
+ }
719
+ /** Vue slot 在 React 中对应为节点或带上下文的 render prop。 */
720
+ type ImageViewerSlot<Context> = ReactNode | ((context: Context) => ReactNode);
721
+ /** 独立 ImageViewer 属性,对齐 Element Plus Image Viewer API 的 React 写法。 */
722
+ interface ImageViewerProps {
723
+ /** 预览图片列表,对应 Element Plus url-list。 */
724
+ urlList?: string[];
725
+ /** 图片 alt。 */
726
+ alt?: string;
727
+ /** 预览层级。 */
728
+ zIndex?: number;
729
+ /** 初始预览下标。 */
730
+ initialIndex?: number;
731
+ /** 是否循环切换预览。 */
732
+ infinite?: boolean;
733
+ /** 是否点击遮罩关闭预览。 */
734
+ hideOnClickModal?: boolean;
735
+ /** 是否将预览层传送到 body。 */
736
+ teleported?: boolean;
737
+ /** 缩放倍率。 */
738
+ zoomRate?: number;
739
+ /** 初始缩放。 */
740
+ scale?: number;
741
+ /** 最小缩放。 */
742
+ minScale?: number;
743
+ /** 最大缩放。 */
744
+ maxScale?: number;
745
+ /** 是否允许按 Esc 关闭预览。 */
746
+ closeOnPressEscape?: boolean;
747
+ /** 是否展示预览进度。 */
748
+ showProgress?: boolean;
749
+ /** 自定义进度内容,对应 progress slot。 */
750
+ progress?: ImageViewerSlot<ImageViewerProgressContext>;
751
+ /** 自定义工具栏内容,对应 toolbar slot。 */
752
+ toolbar?: ImageViewerSlot<ImageViewerToolbarContext>;
753
+ /** 自定义预览图片加载失败内容,对应 viewer-error slot。 */
754
+ viewerError?: ImageViewerSlot<ImageViewerErrorContext>;
755
+ /** 关闭事件。 */
756
+ onClose?: () => void;
757
+ /** 预览图片加载失败事件。 */
758
+ onError?: ImgHTMLAttributes<HTMLImageElement>["onError"];
759
+ /** 图片切换事件。 */
760
+ onSwitch?: (index: number) => void;
761
+ /** 旋转事件。 */
762
+ onRotate?: (degree: number) => void;
763
+ }
764
+ /** React 化后的 Element Plus Image 扩展属性。 */
765
+ interface ElementImageProps {
766
+ /** 图片宽度。 */
767
+ width?: CSSProperties["width"];
768
+ /** 图片高度。 */
769
+ height?: CSSProperties["height"];
770
+ /** 图片填充模式,对应 Element Plus fit。 */
771
+ fit?: ImageFit;
772
+ /** 是否使用原生 lazy loading。 */
773
+ lazy?: boolean;
774
+ /** 原生图片 loading 属性。 */
775
+ loading?: ImgHTMLAttributes<HTMLImageElement>["loading"];
776
+ /** Element Plus 历史 lazy 容器参数,第一阶段只接收不主动监听。 */
777
+ scrollContainer?: string | HTMLElement;
778
+ /** 预览图片列表,对应 Element Plus preview-src-list。 */
779
+ previewSrcList?: string[];
780
+ /** 初始预览下标。 */
781
+ initialIndex?: number;
782
+ /** 是否将预览层传送到 body。 */
783
+ previewTeleported?: boolean;
784
+ /** 预览层级。 */
785
+ zIndex?: number;
786
+ /** 是否允许按 Esc 关闭预览。 */
787
+ closeOnPressEscape?: boolean;
788
+ /** 是否点击遮罩关闭预览。 */
789
+ hideOnClickModal?: boolean;
790
+ /** 是否循环切换预览。 */
791
+ infinite?: boolean;
792
+ /** 缩放倍率,阶段一保留类型入口。 */
793
+ zoomRate?: number;
794
+ /** 初始缩放,阶段一保留类型入口。 */
795
+ scale?: number;
796
+ /** 最小缩放,阶段一保留类型入口。 */
797
+ minScale?: number;
798
+ /** 最大缩放,阶段一保留类型入口。 */
799
+ maxScale?: number;
800
+ /** 是否展示预览进度。 */
801
+ showProgress?: boolean;
802
+ /** 自定义预览进度内容,对应 progress slot。 */
803
+ progress?: ImageViewerSlot<ImageViewerProgressContext>;
804
+ /** 自定义预览工具栏内容,对应 toolbar slot。 */
805
+ toolbar?: ImageViewerSlot<ImageViewerToolbarContext>;
806
+ /** 自定义预览图片加载失败内容,对应 viewer-error slot。 */
807
+ viewerError?: ImageViewerSlot<ImageViewerErrorContext>;
808
+ /** 占位内容,对应 placeholder slot。 */
809
+ placeholder?: ReactNode;
810
+ /** 错误内容,对应 error slot。 */
811
+ error?: ReactNode;
812
+ /** 是否开启预览,兼容 Ant Design 历史 preview 配置。 */
813
+ preview?: boolean | ImagePreviewType;
814
+ /** 预览打开事件。 */
815
+ onShow?: () => void;
816
+ /** 预览关闭事件。 */
817
+ onClose?: () => void;
818
+ /** 预览切换事件。 */
819
+ onSwitch?: (index: number) => void;
820
+ /** 预览旋转事件,React 侧透传给内置 ImageViewer。 */
821
+ onRotate?: (degree: number) => void;
822
+ }
823
+ /** Element Plus 风格 Image 属性。 */
824
+ interface ImageProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, "crossOrigin" | "height" | "loading" | "onError" | "onLoad" | "placeholder" | "referrerPolicy" | "src" | "width">, ElementImageProps {
825
+ /** 图片地址。 */
826
+ src?: string;
827
+ /** 原生 alt。 */
828
+ alt?: string;
829
+ /** 原生 referrerPolicy。 */
830
+ referrerPolicy?: ImgHTMLAttributes<HTMLImageElement>["referrerPolicy"];
831
+ /** 原生 crossOrigin。 */
832
+ crossOrigin?: ImgHTMLAttributes<HTMLImageElement>["crossOrigin"];
833
+ /** 加载成功事件。 */
834
+ onLoad?: ImgHTMLAttributes<HTMLImageElement>["onLoad"];
835
+ /** 加载失败事件。 */
836
+ onError?: ImgHTMLAttributes<HTMLImageElement>["onError"];
837
+ }
838
+ /** 基于 Ant Design Image.PreviewGroup 扩展的 UI KIT PreviewGroup 属性。 */
839
+ interface ImagePreviewGroupProps extends PreviewGroupProps {
840
+ /** 预览组根节点类名。 */
841
+ className?: string;
842
+ }
843
+ //#endregion
844
+ //#region packages/components/src/image/src/image.d.ts
845
+ /** 独立 ImageViewer,对齐 Element Plus Image Viewer 的基础 API 和默认工具栏。 */
846
+ declare const ImageViewer: import("react").ForwardRefExoticComponent<ImageViewerProps & import("react").RefAttributes<ImageViewerRef>>;
847
+ /** Image.PreviewGroup 复用 Ant Design 多图预览能力。 */
848
+ declare function PreviewGroup({ children, className, ...restProps }: ImagePreviewGroupProps): import("react").JSX.Element;
849
+ declare namespace PreviewGroup {
850
+ var displayName: string;
851
+ }
852
+ /** 挂载 PreviewGroup,保持调用方式接近 Ant Design Image。 */
853
+ declare const Image: import("react").ForwardRefExoticComponent<ImageProps & import("react").RefAttributes<ImageRef>> & {
854
+ PreviewGroup: typeof PreviewGroup;
855
+ };
856
+ //#endregion
857
+ //#region packages/components/src/input/src/type.d.ts
858
+ /** Input 尺寸对齐 Element Plus 的 large/default/small,并兼容 Ant Design middle。 */
859
+ type InputSize = NonNullable<InputProps$1["size"]>;
860
+ /** Element Plus Input 支持的常用原生输入类型。 */
861
+ type InputType = "text" | "textarea" | "number" | "password" | "email" | "search" | "tel" | "url" | (string & {});
862
+ /** Element Plus autosize 语义,映射到 Ant Design TextArea autoSize。 */
863
+ type InputAutoSize = TextAreaProps$1["autoSize"];
864
+ /** Element Plus textarea resize 语义。 */
865
+ type InputResize = "none" | "both" | "horizontal" | "vertical";
866
+ /** React 化后的 Element Plus Input 扩展属性。 */
867
+ interface ElementInputProps {
868
+ /** 兼容 Element Plus modelValue;React 中优先推荐 value/defaultValue。 */
869
+ modelValue?: string | number | null;
870
+ /** 兼容 Element Plus update:modelValue。 */
871
+ onUpdateModelValue?: (value: string) => void;
872
+ /** 是否展示清空图标,对应 Element Plus clearable。 */
873
+ clearable?: boolean;
874
+ /** 自定义清空图标,对应 Element Plus clearIcon。 */
875
+ clearIcon?: ReactNode;
876
+ /** 是否展示密码显隐切换,对应 Element Plus show-password。 */
877
+ showPassword?: boolean;
878
+ /** 是否展示字数统计,对应 Element Plus show-word-limit。 */
879
+ showWordLimit?: boolean;
880
+ /** 字数统计位置。outside 暂只保留类型,不承诺与 Element Plus 1:1。 */
881
+ wordLimitPosition?: "inside" | "outside";
882
+ /** 后置图标,对应 Element Plus suffix-icon。 */
883
+ suffixIcon?: ReactNode;
884
+ /** 前置图标,对应 Element Plus prefix-icon。 */
885
+ prefixIcon?: ReactNode;
886
+ /** textarea 自适应高度,对应 Element Plus autosize。 */
887
+ autosize?: InputAutoSize;
888
+ /** textarea resize 行为。 */
889
+ resize?: InputResize;
890
+ /** textarea 行数,仅 type="textarea" 时生效。 */
891
+ rows?: number;
892
+ /** Element Plus formatter;第一阶段只兼容类型,不承诺显示转换。 */
893
+ formatter?: (value: string) => string;
894
+ /** Element Plus parser;第一阶段只兼容类型,不承诺显示转换。 */
895
+ parser?: (value: string) => string;
896
+ /** Element Plus inputStyle;第一阶段只兼容类型,不承诺精准作用到内部原生节点。 */
897
+ inputStyle?: CSSProperties;
898
+ /** 是否触发表单校验。React/AntD 体系下暂仅兼容接收。 */
899
+ validateEvent?: boolean;
900
+ /** 旧 UI KIT 填充态兼容属性;迁移后不再改变 Element Plus 视觉目标。 */
901
+ filled?: boolean;
902
+ }
903
+ /** 旧 UI KIT 填充态类型导出兼容。 */
904
+ type InputFilledProps = Pick<ElementInputProps, "filled">;
905
+ /** 基于 Ant Design Input 扩展的 Element Plus 风格 Input 属性。 */
906
+ interface InputProps extends Omit<InputProps$1, "type">, ElementInputProps {
907
+ /** 输入类型;为 textarea 时会使用 TextArea 内核。 */
908
+ type?: InputType;
909
+ }
910
+ /** 基于 Ant Design TextArea 扩展的 Element Plus 风格 TextArea 属性。 */
911
+ interface TextAreaProps extends TextAreaProps$1, ElementInputProps {}
912
+ /** 基于 Ant Design Password 扩展的 Element Plus 风格 Password 属性。 */
913
+ interface PasswordProps extends PasswordProps$1, ElementInputProps {}
914
+ /** 基于 Ant Design Search 扩展的 Element Plus 风格 Search 属性。 */
915
+ interface SearchProps extends SearchProps$1, ElementInputProps {
916
+ /** 搜索按钮加载图标,默认使用组件库统一 Loading SVG。 */
917
+ loadingIcon?: ReactNode;
918
+ }
919
+ /** Input.Group 直接透传 Ant Design 分组属性。 */
920
+ interface InputGroupProps extends GroupProps {}
921
+ //#endregion
922
+ //#region packages/components/src/input/src/input.d.ts
923
+ /** TextArea 复用 Ant Design 多行输入,并对齐 Element Plus type="textarea"。 */
924
+ declare function TextArea({ allowClear, autoSize, autosize, className, clearable, clearIcon, filled, formatter: _formatter, inputStyle: _inputStyle, modelValue, onChange, onUpdateModelValue, parser: _parser, resize, rootClassName, showCount, showWordLimit, size, validateEvent: _validateEvent, value, variant, wordLimitPosition, ...restProps }: TextAreaProps): import("react").JSX.Element;
925
+ declare namespace TextArea {
926
+ var displayName: string;
927
+ }
928
+ /** Password 复用 Ant Design 密码输入的显隐交互。 */
929
+ declare function Password({ allowClear, className, clearable, clearIcon, filled, formatter: _formatter, iconRender, inputStyle: _inputStyle, modelValue, onChange, onUpdateModelValue, parser: _parser, prefix, prefixIcon, rootClassName, showCount, showWordLimit, size, suffix, suffixIcon, validateEvent: _validateEvent, value, variant, wordLimitPosition, ...restProps }: PasswordProps): import("react").JSX.Element;
930
+ declare namespace Password {
931
+ var displayName: string;
932
+ }
933
+ /** Search 保留 Ant Design 搜索输入的按钮和回车触发能力。 */
934
+ declare function Search({ className, filled, formatter: _formatter, inputStyle: _inputStyle, loadingIcon, modelValue, onChange, onUpdateModelValue, parser: _parser, rootClassName, size, validateEvent: _validateEvent, value, variant, ...restProps }: SearchProps): import("react").JSX.Element;
935
+ declare namespace Search {
936
+ var displayName: string;
937
+ }
938
+ /** 挂载 Ant Design Input 子组件,保持调用方式接近原生 Input。 */
939
+ declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<InputRef>> & {
940
+ Group: import("react").FC<import("antd/es/input").GroupProps>;
941
+ Password: typeof Password;
942
+ Search: typeof Search;
943
+ TextArea: typeof TextArea;
944
+ };
945
+ //#endregion
946
+ //#region packages/components/src/loading/src/type.d.ts
947
+ /** UI KIT Loading 的尺寸。 */
948
+ type LoadingSize = "small" | "default" | "large";
949
+ /** UI KIT Loading 的展示类型。 */
950
+ type LoadingType = "icon" | "text" | "text-icon";
951
+ /** UI KIT Loading 遮罩类型。 */
952
+ type LoadingMask = "dark" | "light";
953
+ /** Loading 基础属性。 */
954
+ interface LoadingProps {
955
+ className?: string;
956
+ /** 是否展示加载状态,关闭时返回 children 或 null。 */
957
+ spinning?: boolean;
958
+ style?: CSSProperties;
959
+ /** 对应 Figma `size=小/默认/大`。 */
960
+ size?: LoadingSize;
961
+ /** 加载文案,默认 `加载中...`。 */
962
+ text?: ReactNode;
963
+ /** 对应 Figma `类型=图标/文字/文字+图标`。 */
964
+ type?: LoadingType;
965
+ children?: ReactNode;
966
+ }
967
+ /** Loading 遮罩属性。 */
968
+ interface LoadingOverlayProps extends Omit<LoadingProps, "children"> {
969
+ /** 对应 Figma `Loading(深色)/Loading(浅色)`。 */
970
+ mask?: LoadingMask;
971
+ }
972
+ //#endregion
973
+ //#region packages/components/src/loading/src/loading.d.ts
974
+ /** Loading 按 UI KIT 展示图标、文字和图标文字组合。 */
975
+ declare function InternalLoading({ children, className, size, spinning, style, text, type }: LoadingProps): import("react").JSX.Element | null;
976
+ /** Loading 遮罩用于整块区域加载状态,对应 Figma 深色和浅色遮罩。 */
977
+ declare function LoadingOverlay({ className, mask, ...loadingProps }: LoadingOverlayProps): import("react").JSX.Element;
978
+ declare const Loading: typeof InternalLoading & {
979
+ Overlay: typeof LoadingOverlay;
980
+ };
981
+ //#endregion
982
+ //#region packages/components/src/menu/src/type.d.ts
983
+ /** 基于 Ant Design Menu 扩展的 UI KIT Menu 属性。 */
984
+ interface MenuProps extends MenuProps$1 {}
985
+ /** Menu 对外暴露的菜单项类型。 */
986
+ type MenuItem = NonNullable<MenuProps$1["items"]>[number];
987
+ //#endregion
988
+ //#region packages/components/src/menu/src/menu.d.ts
989
+ /** 保留 Ant Design Menu 子组件兼容入口。 */
990
+ declare const Menu: import("react").ForwardRefExoticComponent<MenuProps & import("react").RefAttributes<AntdMenuRef>> & {
991
+ Divider: import("react").FC<import("antd/es/menu").MenuDividerProps>;
992
+ Item: Omit<import("react").FunctionComponent<import("antd").MenuItemProps>, ""> & (<T extends import("antd").MenuItemProps>(props: T extends (infer U extends import("antd").MenuItemProps) ? unknown extends U ? import("antd").MenuItemProps : U : import("antd").MenuItemProps) => ReturnType<import("react").FunctionComponent<import("antd").MenuItemProps>>);
993
+ ItemGroup: import("react").ForwardRefExoticComponent<Omit<import("antd/es/menu").MenuItemGroupProps, "ref"> & import("react").RefAttributes<HTMLLIElement>>;
994
+ SubMenu: import("react").FC<import("antd").SubMenuProps>;
995
+ };
996
+ //#endregion
997
+ //#region packages/components/src/menu/src/items.d.ts
998
+ /** Figma 侧边导航默认菜单项。 */
999
+ declare const sideMenuItems: MenuItem[];
1000
+ //#endregion
1001
+ //#region packages/components/src/pagination/src/type.d.ts
1002
+ /** 基于 Ant Design Pagination 扩展的 UI KIT Pagination 属性。 */
1003
+ interface PaginationProps extends PaginationProps$1 {}
1004
+ /** Pagination 对外暴露的本地化文案类型。 */
1005
+ type PaginationLocale = NonNullable<PaginationProps$1["locale"]>;
1006
+ //#endregion
1007
+ //#region packages/components/src/pagination/src/pagination.d.ts
1008
+ /** Pagination 复用 Ant Design 分页行为,并覆盖页码、数量选择和快速跳转视觉。 */
1009
+ declare function Pagination({ className, locale, pageSizeOptions, rootClassName, showSizeChanger, ...restProps }: PaginationProps): import("react").JSX.Element;
1010
+ declare namespace Pagination {
1011
+ var displayName: string;
1012
+ }
1013
+ //#endregion
1014
+ //#region packages/components/src/progress/src/type.d.ts
1015
+ /** UI KIT Progress 的展示形态。 */
1016
+ type ProgressVariant = "bar" | "line";
1017
+ /** Progress 基础属性。 */
1018
+ interface ProgressProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
1019
+ /** 进度值,按 0-100 截断。 */
1020
+ percent?: number;
1021
+ /** 对应 Figma 顶部的金额/任务量文本。 */
1022
+ amount?: ReactNode;
1023
+ /** 自定义百分比展示内容。 */
1024
+ format?: (percent: number) => ReactNode;
1025
+ /** 是否展示顶部 amount,默认仅 bar 形态展示。 */
1026
+ showAmount?: boolean;
1027
+ /** 是否展示百分比文本。 */
1028
+ showInfo?: boolean;
1029
+ /** 对应 Figma 中厚进度条和小型百分比进度条。 */
1030
+ progressVariant?: ProgressVariant;
1031
+ style?: CSSProperties;
1032
+ }
1033
+ //#endregion
1034
+ //#region packages/components/src/progress/src/progress.d.ts
1035
+ /** Progress 按 UI KIT 展示金额进度条和小型百分比进度条。 */
1036
+ declare function Progress({ amount, className, format, percent, progressVariant, showAmount, showInfo, style, ...restProps }: ProgressProps): import("react").JSX.Element;
1037
+ declare namespace Progress {
1038
+ var displayName: string;
1039
+ }
1040
+ //#endregion
1041
+ //#region packages/components/src/radio/src/type.d.ts
1042
+ /** Radio 在 UI KIT 中的尺寸。 */
1043
+ type RadioSize = "large" | "default" | "small";
1044
+ /** RadioGroup 在 UI KIT 中的展示形态。 */
1045
+ type RadioGroupVariant = "icon" | "border" | "button";
1046
+ /** Element Plus Radio 可选值类型。 */
1047
+ type RadioValue = string | number | boolean;
1048
+ /** RadioGroup options 快捷渲染类型。 */
1049
+ type RadioGroupType = "radio" | "button";
1050
+ /** RadioGroup options 字段别名。 */
1051
+ interface RadioOptionProps {
1052
+ /** 选项值字段名。 */
1053
+ value?: string;
1054
+ /** 选项文案字段名。 */
1055
+ label?: string;
1056
+ /** 选项禁用字段名。 */
1057
+ disabled?: string;
1058
+ }
1059
+ /** RadioGroup options 单项。 */
1060
+ interface RadioOption extends Record<string, unknown> {
1061
+ /** 选项值。 */
1062
+ value?: RadioValue;
1063
+ /** 选项文案。 */
1064
+ label?: ReactNode;
1065
+ /** 是否禁用该选项。 */
1066
+ disabled?: boolean;
1067
+ }
1068
+ /** 解析后的 Radio options 单项。 */
1069
+ interface ResolvedRadioOption {
1070
+ /** 是否禁用该选项。 */
1071
+ disabled: boolean;
1072
+ /** 选项文案。 */
1073
+ label: ReactNode;
1074
+ /** 选项值。 */
1075
+ value: RadioValue;
1076
+ }
1077
+ /** Radio 解析逻辑需要的最小输入,方便组件和测试复用。 */
1078
+ interface RadioResolveInput {
1079
+ /** 组件显式传入的类名。 */
1080
+ className?: string;
1081
+ /** 是否显示描边。 */
1082
+ border?: boolean;
1083
+ /** 是否禁用。 */
1084
+ disabled?: boolean;
1085
+ /** Radio 尺寸。 */
1086
+ size?: RadioSize;
1087
+ /** Radio 值。 */
1088
+ value?: RadioValue;
1089
+ /** Radio 文案兼历史 value fallback。 */
1090
+ label?: RadioValue;
1091
+ }
1092
+ /** RadioGroup 解析逻辑需要的最小输入。 */
1093
+ interface RadioGroupResolveInput {
1094
+ /** 组件显式传入的类名。 */
1095
+ className?: string;
1096
+ /** 是否禁用整组。 */
1097
+ disabled?: boolean;
1098
+ /** button 选中态背景和边框色。 */
1099
+ fill?: string;
1100
+ /** RadioGroup 尺寸。 */
1101
+ size?: RadioSize;
1102
+ /** button 选中态文字色。 */
1103
+ textColor?: string;
1104
+ /** options 渲染类型。 */
1105
+ type?: RadioGroupType;
1106
+ /** 兼容现有 UI KIT 的展示形态。 */
1107
+ variant?: RadioGroupVariant;
1108
+ }
1109
+ /** 解析后交给 Ant Design Radio 和 CSS 的配置。 */
1110
+ interface ResolvedRadioOptions {
1111
+ /** 最终是否显示描边。 */
1112
+ border: boolean;
1113
+ /** 组件需要挂载的类名。 */
1114
+ className: string;
1115
+ /** 最终是否禁用。 */
1116
+ disabled: boolean;
1117
+ /** 最终尺寸。 */
1118
+ size: RadioSize;
1119
+ /** 兼容 Element Plus label fallback 后的 value。 */
1120
+ value?: RadioValue;
1121
+ }
1122
+ /** 解析后交给 Ant Design Radio.Group 和 CSS 的配置。 */
1123
+ interface ResolvedRadioGroupOptions {
1124
+ /** Ant Design 按钮式 Radio 的样式。 */
1125
+ buttonStyle: NonNullable<RadioGroupProps$1["buttonStyle"]>;
1126
+ /** 组件需要挂载的类名。 */
1127
+ className: string;
1128
+ /** 运行时自定义 button 选中态变量。 */
1129
+ cssVariables: Record<string, string>;
1130
+ /** 最终是否禁用整组。 */
1131
+ disabled: boolean;
1132
+ /** Ant Design options 渲染类型。 */
1133
+ optionType: NonNullable<RadioGroupProps$1["optionType"]>;
1134
+ /** Ant Design 尺寸。 */
1135
+ antdSize: NonNullable<RadioGroupProps$1["size"]>;
1136
+ /** 最终尺寸。 */
1137
+ size: RadioSize;
1138
+ /** options 渲染类型。 */
1139
+ type: RadioGroupType;
1140
+ /** 最终展示形态。 */
1141
+ variant: RadioGroupVariant;
1142
+ }
1143
+ /** 基于 Ant Design Radio 扩展的 UI KIT Radio 属性。 */
1144
+ interface RadioProps extends Omit<RadioProps$1, "value"> {
1145
+ /** 是否显示外层描边容器。 */
1146
+ border?: boolean;
1147
+ /** Radio 文案;无 value 时兼容 Element Plus 历史 fallback。 */
1148
+ label?: RadioValue;
1149
+ /** UI KIT 尺寸。 */
1150
+ size?: RadioSize;
1151
+ /** Radio 值。 */
1152
+ value?: RadioValue;
1153
+ }
1154
+ /** 基于 Ant Design Radio.Group 扩展的 UI KIT RadioGroup 属性。 */
1155
+ interface RadioGroupProps extends Omit<RadioGroupProps$1, "options" | "size"> {
1156
+ /** a11y 文案,React 侧会映射到 aria-label。 */
1157
+ ariaLabel?: string;
1158
+ /** 是否禁用整组。 */
1159
+ disabled?: boolean;
1160
+ /** button 选中态背景和边框色。 */
1161
+ fill?: string;
1162
+ /** a11y 兼容字段,Element Plus 已废弃,优先使用 ariaLabel。 */
1163
+ label?: string;
1164
+ /** native name 属性。 */
1165
+ name?: string;
1166
+ /** options 快捷渲染数据。 */
1167
+ options?: RadioOption[];
1168
+ /** options 字段别名。 */
1169
+ props?: RadioOptionProps;
1170
+ /** UI KIT 尺寸。 */
1171
+ size?: RadioSize;
1172
+ /** button 选中态文字色。 */
1173
+ textColor?: string;
1174
+ /** options 渲染类型。 */
1175
+ type?: RadioGroupType;
1176
+ /** 是否触发表单校验;当前 React 版本仅保留兼容字段。 */
1177
+ validateEvent?: boolean;
1178
+ /** RadioGroup 展示形态。 */
1179
+ variant?: RadioGroupVariant;
1180
+ }
1181
+ //#endregion
1182
+ //#region packages/components/src/radio/src/radio.d.ts
1183
+ /** Radio 基于 Ant Design 单选行为,补齐 UI KIT 尺寸和描边样式。 */
1184
+ declare function Radio({ border, children, className, disabled, label, size, value, ...restProps }: RadioProps): import("react").JSX.Element;
1185
+ declare namespace Radio {
1186
+ var displayName: string;
1187
+ }
1188
+ /** RadioButton 复用 Ant Design 的按钮式单选能力。 */
1189
+ declare function RadioButton({ children, className, disabled, label, size, value, ...restProps }: RadioProps): import("react").JSX.Element;
1190
+ declare namespace RadioButton {
1191
+ var displayName: string;
1192
+ }
1193
+ /** RadioGroup 保持 Ant Design 分组选中能力,并通过类名切换 UI KIT 组形态。 */
1194
+ declare function RadioGroup({ ariaLabel, buttonStyle, className, disabled, fill, label, options, optionType, props: optionProps, size, style, textColor, type, validateEvent: _validateEvent, variant, children, ...restProps }: RadioGroupProps): import("react").JSX.Element;
1195
+ declare namespace RadioGroup {
1196
+ var displayName: string;
1197
+ }
1198
+ //#endregion
1199
+ //#region packages/components/src/result/src/type.d.ts
1200
+ /** 基于 Ant Design Result 扩展的 UI KIT Result 属性。 */
1201
+ interface ResultProps extends Omit<ResultProps$1, "status"> {
1202
+ /** UI KIT 状态命名补充 danger/custom,danger 会映射到 Ant Design error。 */
1203
+ status?: ResultStatusType;
1204
+ }
1205
+ /** Result 对外暴露的状态类型。 */
1206
+ type ResultStatusType = AntdResultStatusType | "danger" | "custom";
1207
+ //#endregion
1208
+ //#region packages/components/src/result/src/result.d.ts
1209
+ /** Result 复用 Ant Design 结果页能力,并覆盖标题、描述和状态图标视觉。 */
1210
+ declare function Result({ className, icon, rootClassName, status, ...restProps }: ResultProps): import("react").JSX.Element;
1211
+ declare namespace Result {
1212
+ var displayName: string;
1213
+ }
1214
+ //#endregion
1215
+ //#region packages/components/src/select/src/type.d.ts
1216
+ /** Select 尺寸沿用 Ant Design 的 large / middle / small。 */
1217
+ type SelectSize = NonNullable<SelectProps$1["size"]>;
1218
+ /** 基于 Ant Design Select 扩展的 UI KIT Select 属性。 */
1219
+ interface SelectProps<ValueType = unknown, OptionType extends BaseOptionType | DefaultOptionType = DefaultOptionType> extends SelectProps$1<ValueType, OptionType> {}
1220
+ //#endregion
1221
+ //#region packages/components/src/select/src/select.d.ts
1222
+ /** Select 复用 Ant Design 下拉选择行为,并覆盖选择框和下拉菜单视觉。 */
1223
+ declare function InternalSelect<ValueType = unknown>({ className, loadingIcon, popupClassName, rootClassName, size, variant, ...restProps }: SelectProps<ValueType>, ref: Ref<RefSelectProps>): import("react").JSX.Element;
1224
+ /** 保留泛型调用能力,同时让 forwardRef 正常暴露 Select 实例。 */
1225
+ declare const Select: <ValueType = unknown>(props: SelectProps<ValueType> & {
1226
+ ref?: Ref<RefSelectProps>;
1227
+ }) => ReturnType<typeof InternalSelect>;
1228
+ //#endregion
1229
+ //#region packages/components/src/steps/src/type.d.ts
1230
+ /** Element Plus Steps 支持的方向。 */
1231
+ type StepsDirection = "horizontal" | "vertical";
1232
+ /** Element Plus Steps 支持的状态。 */
1233
+ type StepsStatus = "error" | "finish" | "process" | "success" | "wait";
1234
+ /** 基于 Ant Design Steps 扩展的 Element Plus 风格 Steps 属性。 */
1235
+ interface StepsProps extends Omit<StepsProps$1, "current" | "direction" | "items" | "orientation" | "status" | "type"> {
1236
+ /** Element Plus 当前激活步骤,从 0 开始。 */
1237
+ active?: number;
1238
+ /** Ant Design 兼容当前步骤,从 0 开始。 */
1239
+ current?: number;
1240
+ /** Element Plus 每步固定间距。 */
1241
+ space?: number | string;
1242
+ /** 展示方向。 */
1243
+ direction?: StepsDirection;
1244
+ /** Ant Design 兼容展示方向。 */
1245
+ orientation?: StepsDirection;
1246
+ /** 当前步骤状态。 */
1247
+ processStatus?: StepsStatus;
1248
+ /** 已完成步骤状态。 */
1249
+ finishStatus?: StepsStatus;
1250
+ /** 标题描述居中。 */
1251
+ alignCenter?: boolean;
1252
+ /** 简洁模式。 */
1253
+ simple?: boolean;
1254
+ /** 步骤项配置。 */
1255
+ items?: StepItem[];
1256
+ /** Element Plus 风格 Step 子节点。 */
1257
+ children?: ReactNode;
1258
+ /** Ant Design 兼容整体状态。 */
1259
+ status?: Exclude<StepsStatus, "success">;
1260
+ /** Ant Design 兼容类型。 */
1261
+ type?: StepsProps$1["type"];
1262
+ }
1263
+ /** Steps 对外暴露的单步配置类型。 */
1264
+ type StepItem = Omit<NonNullable<StepsProps$1["items"]>[number], "status"> & {
1265
+ /** Element Plus success 状态会映射为 Ant Design finish。 */
1266
+ status?: StepsStatus;
1267
+ };
1268
+ /** Element Plus 风格 Step 声明组件属性。 */
1269
+ interface StepProps extends StepItem {
1270
+ /** Step 仅作为数据声明组件,children 不参与渲染。 */
1271
+ children?: ReactNode;
1272
+ }
1273
+ //#endregion
1274
+ //#region packages/components/src/steps/src/steps.d.ts
1275
+ /** Step 是 Element Plus 风格的数据声明组件,实际渲染由 Steps 汇总到 Ant Design items。 */
1276
+ declare function Step(_props: StepProps): null;
1277
+ declare namespace Step {
1278
+ var displayName: string;
1279
+ }
1280
+ /** Steps 复用 Ant Design 步骤条能力,并覆盖节点、连线和文字视觉。 */
1281
+ declare function Steps({ active, alignCenter, children, className, current, direction, finishStatus, iconRender, items, orientation, processStatus, rootClassName, simple, size, space, status, style, titlePlacement, type, onChange, ...restProps }: StepsProps): import("react").JSX.Element;
1282
+ declare namespace Steps {
1283
+ var displayName: string;
1284
+ }
1285
+ //#endregion
1286
+ //#region packages/components/src/switch/src/type.d.ts
1287
+ /** Switch 在 UI KIT 中的尺寸。 */
1288
+ type SwitchSize = "large" | "default" | "small";
1289
+ /** 基于 Ant Design Switch 扩展的 UI KIT Switch 属性。 */
1290
+ interface SwitchProps extends Omit<SwitchProps$1, "size"> {
1291
+ /** UI KIT 尺寸,large 通过组件样式扩展实现。 */
1292
+ size?: SwitchSize;
1293
+ }
1294
+ //#endregion
1295
+ //#region packages/components/src/switch/src/switch.d.ts
1296
+ /** Switch 复用 Ant Design 开关交互,并按 UI KIT 补齐三档尺寸。 */
1297
+ declare function Switch({ className, size, ...restProps }: SwitchProps): import("react").JSX.Element;
1298
+ declare namespace Switch {
1299
+ var displayName: string;
1300
+ }
1301
+ //#endregion
1302
+ //#region packages/components/src/tab-panel/src/type.d.ts
1303
+ /** 页签绑定值,对齐 Element Plus TabPaneName。 */
1304
+ type TabPanelPaneName = string | number;
1305
+ /** 页签风格类型,对外只保留 Element Plus 支持的类型。 */
1306
+ type TabPanelType = "" | "card" | "border-card";
1307
+ /** 页签位置,对齐 Element Plus tab-position。 */
1308
+ type TabPanelPosition = "top" | "right" | "bottom" | "left";
1309
+ /** tab 被选中、关闭等事件中的页签上下文。 */
1310
+ interface TabPanelPaneContext {
1311
+ disabled?: boolean;
1312
+ index: number;
1313
+ label?: ReactNode;
1314
+ name: TabPanelPaneName;
1315
+ }
1316
+ type TabPanelBeforeLeave = (activeName: TabPanelPaneName, oldActiveName: TabPanelPaneName) => boolean | Promise<boolean>;
1317
+ type TabPanelEditAction = "add" | "remove";
1318
+ /** 操作框命令,按 Figma 操作框闭合集合暴露。 */
1319
+ type TabPanelContextMenuAction = "remove-other" | "remove-all";
1320
+ /** 操作框菜单项。 */
1321
+ interface TabPanelContextMenuActionItem {
1322
+ action: TabPanelContextMenuAction;
1323
+ label?: ReactNode;
1324
+ disabled?: boolean;
1325
+ }
1326
+ /** 打开操作框菜单的位置和目标页签。 */
1327
+ interface TabPanelOpenContextMenuOptions {
1328
+ left?: number;
1329
+ name?: TabPanelPaneName;
1330
+ top?: number;
1331
+ }
1332
+ /** TabPanel 对外暴露的页签项配置类型。 */
1333
+ interface TabPanelItem {
1334
+ key?: string;
1335
+ name?: TabPanelPaneName;
1336
+ label?: ReactNode;
1337
+ children?: ReactNode;
1338
+ disabled?: boolean;
1339
+ closable?: boolean;
1340
+ lazy?: boolean;
1341
+ }
1342
+ interface TabPanelPaneProps extends TabPanelItem {}
1343
+ /** 基于 Ant Design Tabs 封装,但公开参数严格对齐 Element Plus/Figma。 */
1344
+ interface TabPanelProps {
1345
+ modelValue?: TabPanelPaneName;
1346
+ defaultValue?: TabPanelPaneName;
1347
+ type?: TabPanelType;
1348
+ closable?: boolean;
1349
+ addable?: boolean;
1350
+ editable?: boolean;
1351
+ tabPosition?: TabPanelPosition;
1352
+ stretch?: boolean;
1353
+ beforeLeave?: TabPanelBeforeLeave;
1354
+ tabIndex?: number;
1355
+ addIcon?: ReactNode;
1356
+ contextMenu?: boolean | TabPanelContextMenuActionItem[];
1357
+ items?: TabPanelItem[];
1358
+ children?: ReactNode;
1359
+ className?: string;
1360
+ style?: CSSProperties;
1361
+ onTabClick?: (tab: TabPanelPaneContext, event: React.MouseEvent | React.KeyboardEvent) => void;
1362
+ onTabChange?: (name: TabPanelPaneName) => void;
1363
+ onTabRemove?: (name: TabPanelPaneName) => void;
1364
+ onTabAdd?: () => void;
1365
+ onEdit?: (targetName: TabPanelPaneName | undefined, action: TabPanelEditAction) => void;
1366
+ onContextMenuAction?: (action: TabPanelContextMenuAction, tab: TabPanelPaneContext) => void;
1367
+ }
1368
+ /** TabPanel 对外暴露的实例类型。 */
1369
+ interface TabPanelRef extends TabsRef {
1370
+ openContextMenu: (options?: TabPanelOpenContextMenuOptions) => void;
1371
+ }
1372
+ //#endregion
1373
+ //#region packages/components/src/tab-panel/src/tabPanel.d.ts
1374
+ /** TabPane 仅作为 Element Plus 风格子节点声明,由 TabPanel 统一转换为 items。 */
1375
+ declare function TabPane(_props: TabPanelPaneProps): null;
1376
+ declare const TabPanel: import("react").ForwardRefExoticComponent<TabPanelProps & import("react").RefAttributes<TabPanelRef>> & {
1377
+ TabPane: typeof TabPane;
1378
+ };
1379
+ //#endregion
1380
+ //#region packages/components/src/tabs/src/type.d.ts
1381
+ /** 基于 Ant Design Tabs 扩展的 UI KIT Tabs 属性。 */
1382
+ interface TabsProps extends TabsProps$1 {}
1383
+ /** Tabs 对外暴露的页签项配置类型。 */
1384
+ type TabItem = NonNullable<TabsProps$1["items"]>[number];
1385
+ //#endregion
1386
+ //#region packages/components/src/tabs/src/tabs.d.ts
1387
+ /** 保留 Ant Design Tabs.TabPane 兼容入口。 */
1388
+ declare const Tabs: import("react").ForwardRefExoticComponent<TabsProps & import("react").RefAttributes<AntdTabsRef>> & {
1389
+ TabPane: import("react").FC<import("antd").TabPaneProps>;
1390
+ };
1391
+ //#endregion
1392
+ //#region packages/components/src/table/src/type.d.ts
1393
+ type TableRowKey = string | number;
1394
+ type TableSize = "large" | "default" | "small";
1395
+ type TableAlign = "left" | "center" | "right";
1396
+ type TableFixed = boolean | "left" | "right";
1397
+ type TableSortOrder = "ascending" | "descending" | null;
1398
+ type TableLayout = "fixed" | "auto";
1399
+ type TableColumnType = "default" | "selection" | "index" | "expand";
1400
+ type TableFilterValue = string | number | boolean;
1401
+ type TableSearchType = "input" | "select" | "select-v2" | "cascader" | "date-picker" | "time-picker" | "switch";
1402
+ type TableSearchParams = Record<string, unknown>;
1403
+ interface TableEnumOption {
1404
+ label?: ReactNode;
1405
+ value?: string | number | boolean | Array<string | number>;
1406
+ disabled?: boolean;
1407
+ children?: TableEnumOption[];
1408
+ [key: string]: unknown;
1409
+ }
1410
+ interface TableFieldNames {
1411
+ label?: string;
1412
+ value?: string;
1413
+ children?: string;
1414
+ }
1415
+ interface TableSearchRenderScope {
1416
+ modelValue: unknown;
1417
+ setModelValue: (value: unknown) => void;
1418
+ searchParam: TableSearchParams;
1419
+ placeholder: string;
1420
+ clearable: boolean;
1421
+ options: TableEnumOption[];
1422
+ data: TableEnumOption[];
1423
+ }
1424
+ interface TableSearchProps {
1425
+ el?: TableSearchType;
1426
+ type?: "default" | "custom";
1427
+ label?: ReactNode;
1428
+ props?: Record<string, unknown>;
1429
+ key?: string;
1430
+ tooltip?: ReactNode;
1431
+ order?: number;
1432
+ defaultValue?: unknown;
1433
+ render?: (scope: TableSearchRenderScope) => ReactNode;
1434
+ width?: number | ((value: unknown) => number);
1435
+ isShow?: boolean;
1436
+ }
1437
+ type TableEnumSource = TableEnumOption[] | (() => Promise<TableEnumOption[] | {
1438
+ data: TableEnumOption[];
1439
+ }>);
1440
+ interface TableFilterItem {
1441
+ text: ReactNode;
1442
+ value: TableFilterValue;
1443
+ children?: TableFilterItem[];
1444
+ }
1445
+ interface TableTreeNode {
1446
+ expanded?: boolean;
1447
+ loading?: boolean;
1448
+ noLazyChildren?: boolean;
1449
+ indent?: number;
1450
+ level?: number;
1451
+ display?: boolean;
1452
+ }
1453
+ interface TableTreeProps {
1454
+ children?: string;
1455
+ hasChildren?: string;
1456
+ }
1457
+ interface TableDefaultSort {
1458
+ prop: string;
1459
+ order?: TableSortOrder;
1460
+ }
1461
+ interface TablePageable {
1462
+ page: number;
1463
+ size: number;
1464
+ total: number;
1465
+ }
1466
+ interface TableRequestResult<RecordType> {
1467
+ list: RecordType[];
1468
+ currentPage: number;
1469
+ pageSize: number;
1470
+ total: number;
1471
+ }
1472
+ type TableRequestData<RecordType> = RecordType[] | TableRequestResult<RecordType>;
1473
+ interface TableSortChangeContext<RecordType> {
1474
+ column?: TableColumnProps<RecordType>;
1475
+ prop?: string;
1476
+ order: TableSortOrder;
1477
+ }
1478
+ interface TableCellContext<RecordType> {
1479
+ row: RecordType;
1480
+ column: TableColumnProps<RecordType>;
1481
+ cellValue: unknown;
1482
+ rowIndex: number;
1483
+ columnIndex: number;
1484
+ }
1485
+ interface TableHeaderContext<RecordType> {
1486
+ column: TableColumnProps<RecordType>;
1487
+ columnIndex: number;
1488
+ }
1489
+ interface TableSpanContext<RecordType> extends TableCellContext<RecordType> {}
1490
+ type TableSpanResult = [rowspan: number, colspan: number] | {
1491
+ rowspan?: number;
1492
+ colspan?: number;
1493
+ rowSpan?: number;
1494
+ colSpan?: number;
1495
+ } | undefined;
1496
+ interface TableSummaryContext<RecordType> {
1497
+ columns: TableColumnProps<RecordType>[];
1498
+ data: RecordType[];
1499
+ }
1500
+ interface TableTooltipContext<RecordType> extends TableCellContext<RecordType> {}
1501
+ type TableRowClassName<RecordType> = string | ((scope: {
1502
+ row: RecordType;
1503
+ rowIndex: number;
1504
+ }) => string);
1505
+ type TableRowStyle<RecordType> = CSSProperties | ((scope: {
1506
+ row: RecordType;
1507
+ rowIndex: number;
1508
+ }) => CSSProperties);
1509
+ type TableCellClassName<RecordType> = string | ((scope: TableCellContext<RecordType>) => string);
1510
+ type TableCellStyle<RecordType> = CSSProperties | ((scope: TableCellContext<RecordType>) => CSSProperties);
1511
+ type TableHeaderCellClassName<RecordType> = string | ((scope: TableHeaderContext<RecordType>) => string);
1512
+ type TableHeaderCellStyle<RecordType> = CSSProperties | ((scope: TableHeaderContext<RecordType>) => CSSProperties);
1513
+ type TableHeaderRowClassName<RecordType> = string | ((scope: {
1514
+ columns: TableColumnProps<RecordType>[];
1515
+ rowIndex: number;
1516
+ }) => string);
1517
+ type TableHeaderRowStyle<RecordType> = CSSProperties | ((scope: {
1518
+ columns: TableColumnProps<RecordType>[];
1519
+ rowIndex: number;
1520
+ }) => CSSProperties);
1521
+ type TableRowKeyGetter<RecordType> = (keyof RecordType & string) | ((row: RecordType) => TableRowKey);
1522
+ type TableLoadHandler<RecordType> = (row: RecordType, treeNode: TableTreeNode, resolve: (children: RecordType[]) => void) => void;
1523
+ type TableSelectHandler<RecordType> = (selection: RecordType[], row: RecordType) => void;
1524
+ type TableSelectAllHandler<RecordType> = (selection: RecordType[]) => void;
1525
+ type TableSelectionChangeHandler<RecordType> = (selection: RecordType[]) => void;
1526
+ type TableCurrentChangeHandler<RecordType> = (currentRow: RecordType | undefined, oldCurrentRow: RecordType | undefined) => void;
1527
+ type TableCellMouseHandler<RecordType> = (row: RecordType, column: TableColumnProps<RecordType>, cell: HTMLElement, event: MouseEvent<HTMLElement>) => void;
1528
+ type TableRowMouseHandler<RecordType> = (row: RecordType, column: TableColumnProps<RecordType> | undefined, event: MouseEvent<HTMLElement>) => void;
1529
+ type TableHeaderMouseHandler<RecordType> = (column: TableColumnProps<RecordType>, event: MouseEvent<HTMLElement>) => void;
1530
+ type TableExpandChangeHandler<RecordType> = (row: RecordType, expanded: boolean | RecordType[]) => void;
1531
+ type TableHeaderDragendHandler<RecordType> = (newWidth: number, oldWidth: number, column: TableColumnProps<RecordType>, event: MouseEvent<HTMLElement>) => void;
1532
+ interface TableColumnProps<RecordType = Record<string, unknown>> {
1533
+ type?: TableColumnType;
1534
+ index?: number | ((index: number) => number);
1535
+ label?: ReactNode;
1536
+ columnKey?: string;
1537
+ prop?: keyof RecordType & string;
1538
+ property?: keyof RecordType & string;
1539
+ key?: string;
1540
+ width?: string | number;
1541
+ minWidth?: string | number;
1542
+ fixed?: TableFixed;
1543
+ renderHeader?: (scope: TableHeaderContext<RecordType>) => ReactNode;
1544
+ sortable?: boolean | "custom";
1545
+ sortMethod?: (a: RecordType, b: RecordType) => number;
1546
+ sortBy?: (keyof RecordType & string) | ((row: RecordType, index: number, array?: RecordType[]) => unknown) | Array<keyof RecordType & string>;
1547
+ sortOrders?: TableSortOrder[];
1548
+ resizable?: boolean;
1549
+ formatter?: (row: RecordType, column: TableColumnProps<RecordType>, cellValue: unknown, index: number) => ReactNode;
1550
+ showOverflowTooltip?: boolean | Record<string, unknown>;
1551
+ align?: TableAlign;
1552
+ headerAlign?: TableAlign;
1553
+ className?: string;
1554
+ labelClassName?: string;
1555
+ selectable?: (row: RecordType, index: number) => boolean;
1556
+ reserveSelection?: boolean;
1557
+ filters?: TableFilterItem[];
1558
+ filterPlacement?: string;
1559
+ filterClassName?: string;
1560
+ filterMultiple?: boolean;
1561
+ filterMethod?: (value: TableFilterValue, row: RecordType, column: TableColumnProps<RecordType>) => boolean;
1562
+ filteredValue?: TableFilterValue[];
1563
+ tooltipFormatter?: (scope: TableTooltipContext<RecordType>) => ReactNode;
1564
+ children?: TableColumnProps<RecordType>[] | ReactNode;
1565
+ render?: (scope: TableCellContext<RecordType>) => ReactNode;
1566
+ header?: (scope: TableHeaderContext<RecordType>) => ReactNode;
1567
+ filterIcon?: ReactNode | ((scope: {
1568
+ filtered: boolean;
1569
+ column: TableColumnProps<RecordType>;
1570
+ }) => ReactNode);
1571
+ expand?: (scope: {
1572
+ row: RecordType;
1573
+ rowIndex: number;
1574
+ }) => ReactNode;
1575
+ search?: TableSearchProps;
1576
+ enum?: TableEnumSource;
1577
+ fieldNames?: TableFieldNames;
1578
+ }
1579
+ type NativeTableHostProps = Omit<HTMLAttributes<HTMLDivElement>, "children" | "data" | "onChange" | "onScroll" | "onSelect">;
1580
+ interface TableProps<RecordType = Record<string, unknown>> extends NativeTableHostProps {
1581
+ data?: RecordType[];
1582
+ columns?: TableColumnProps<RecordType>[];
1583
+ height?: string | number;
1584
+ maxHeight?: string | number;
1585
+ stripe?: boolean;
1586
+ border?: boolean;
1587
+ size?: TableSize;
1588
+ fit?: boolean;
1589
+ showHeader?: boolean;
1590
+ highlightCurrentRow?: boolean;
1591
+ currentRowKey?: TableRowKey;
1592
+ rowClassName?: TableRowClassName<RecordType>;
1593
+ rowStyle?: TableRowStyle<RecordType>;
1594
+ cellClassName?: TableCellClassName<RecordType>;
1595
+ cellStyle?: TableCellStyle<RecordType>;
1596
+ headerRowClassName?: TableHeaderRowClassName<RecordType>;
1597
+ headerRowStyle?: TableHeaderRowStyle<RecordType>;
1598
+ headerCellClassName?: TableHeaderCellClassName<RecordType>;
1599
+ headerCellStyle?: TableHeaderCellStyle<RecordType>;
1600
+ rowKey?: TableRowKeyGetter<RecordType>;
1601
+ emptyText?: ReactNode;
1602
+ defaultExpandAll?: boolean;
1603
+ expandRowKeys?: TableRowKey[];
1604
+ defaultSort?: TableDefaultSort;
1605
+ tooltipEffect?: "dark" | "light";
1606
+ tooltipOptions?: Record<string, unknown>;
1607
+ appendFilterPanelTo?: string;
1608
+ showSummary?: boolean;
1609
+ sumText?: ReactNode;
1610
+ summaryMethod?: (scope: TableSummaryContext<RecordType>) => ReactNode[];
1611
+ spanMethod?: (scope: TableSpanContext<RecordType>) => TableSpanResult;
1612
+ selectOnIndeterminate?: boolean;
1613
+ indent?: number;
1614
+ lazy?: boolean;
1615
+ load?: TableLoadHandler<RecordType>;
1616
+ treeProps?: TableTreeProps;
1617
+ tableLayout?: TableLayout;
1618
+ scrollbarAlwaysOn?: boolean;
1619
+ showOverflowTooltip?: boolean | Record<string, unknown>;
1620
+ flexible?: boolean;
1621
+ scrollbarTabindex?: string | number;
1622
+ allowDragLastColumn?: boolean;
1623
+ tooltipFormatter?: (scope: TableTooltipContext<RecordType>) => ReactNode;
1624
+ preserveExpandedContent?: boolean;
1625
+ nativeScrollbar?: boolean;
1626
+ pagination?: boolean;
1627
+ requestApi?: (params: unknown) => Promise<TableRequestData<RecordType>>;
1628
+ requestAuto?: boolean;
1629
+ requestError?: (error: unknown) => void;
1630
+ handleParam?: (params: Record<string, unknown>) => unknown;
1631
+ dataCallback?: (data: TableRequestData<RecordType>) => TableRequestData<RecordType> | Promise<TableRequestData<RecordType>>;
1632
+ initParam?: Record<string, unknown>;
1633
+ isShowSearch?: boolean;
1634
+ isShowSearchBtn?: boolean;
1635
+ isShowResetBtn?: boolean;
1636
+ beforeReset?: () => void;
1637
+ searchClearSelection?: boolean;
1638
+ rowExpandable?: (row: RecordType) => boolean;
1639
+ empty?: ReactNode;
1640
+ append?: ReactNode;
1641
+ children?: ReactNode;
1642
+ onSelect?: TableSelectHandler<RecordType>;
1643
+ onSelectAll?: TableSelectAllHandler<RecordType>;
1644
+ onSelectionChange?: TableSelectionChangeHandler<RecordType>;
1645
+ onCellMouseEnter?: TableCellMouseHandler<RecordType>;
1646
+ onCellMouseLeave?: TableCellMouseHandler<RecordType>;
1647
+ onCellClick?: TableCellMouseHandler<RecordType>;
1648
+ onCellDblclick?: TableCellMouseHandler<RecordType>;
1649
+ onCellContextmenu?: TableCellMouseHandler<RecordType>;
1650
+ onRowClick?: TableRowMouseHandler<RecordType>;
1651
+ onRowContextmenu?: TableRowMouseHandler<RecordType>;
1652
+ onRowDblclick?: TableRowMouseHandler<RecordType>;
1653
+ onHeaderClick?: TableHeaderMouseHandler<RecordType>;
1654
+ onHeaderContextmenu?: TableHeaderMouseHandler<RecordType>;
1655
+ onSortChange?: (sort: TableSortChangeContext<RecordType>) => void;
1656
+ onSearch?: () => void;
1657
+ onReset?: () => void;
1658
+ onFilterChange?: (filters: Record<string, TableFilterValue[] | null>) => void;
1659
+ onCurrentChange?: TableCurrentChangeHandler<RecordType>;
1660
+ onHeaderDragend?: TableHeaderDragendHandler<RecordType>;
1661
+ onExpandChange?: TableExpandChangeHandler<RecordType>;
1662
+ onScroll?: UIEventHandler<HTMLDivElement>;
1663
+ }
1664
+ interface TableRef<RecordType = Record<string, unknown>> {
1665
+ nativeElement: HTMLDivElement | null;
1666
+ clearSelection: () => void;
1667
+ getSelectionRows: () => RecordType[];
1668
+ getHalfSelectionRows: () => RecordType[];
1669
+ toggleRowSelection: (row: RecordType, selected?: boolean) => void;
1670
+ toggleAllSelection: () => void;
1671
+ toggleRowExpansion: (row: RecordType, expanded?: boolean) => void;
1672
+ setCurrentRow: (row?: RecordType) => void;
1673
+ clearSort: () => void;
1674
+ clearFilter: (columnKeys?: string[]) => void;
1675
+ sort: (prop: string, order: TableSortOrder) => void;
1676
+ scrollTo: (position: {
1677
+ left?: number;
1678
+ top?: number;
1679
+ }) => void;
1680
+ setScrollTop: (top: number) => void;
1681
+ setScrollLeft: (left: number) => void;
1682
+ columns: TableColumnProps<RecordType>[];
1683
+ updateKeyChildren: (key: TableRowKey, children: RecordType[]) => void;
1684
+ pageable: TablePageable;
1685
+ setPageTotal: (total: number) => void;
1686
+ getTableList: () => Promise<void>;
1687
+ handleSizeChange: (size: number) => void;
1688
+ handleCurrentChange: (page: number) => void;
1689
+ searchParam: TableSearchParams;
1690
+ searchInitParam: TableSearchParams;
1691
+ search: () => void;
1692
+ reset: () => void;
1693
+ }
1694
+ //#endregion
1695
+ //#region packages/components/src/table/src/table.d.ts
1696
+ type DefaultRecord = Record<string, unknown>;
1697
+ type TableColumnMarker = {
1698
+ __ZH_TABLE_COLUMN?: "column" | "group";
1699
+ };
1700
+ type TableColumnComponent = (<RecordType extends object = DefaultRecord>(props: TableColumnProps<RecordType>) => null) & TableColumnMarker;
1701
+ declare const Table: (<RecordType extends object = DefaultRecord>(props: TableProps<RecordType> & {
1702
+ ref?: Ref<TableRef<RecordType>>;
1703
+ }) => ReactElement | null) & {
1704
+ Column: TableColumnComponent;
1705
+ ColumnGroup: TableColumnComponent;
1706
+ displayName?: string;
1707
+ } & {
1708
+ Column: TableColumnComponent;
1709
+ ColumnGroup: TableColumnComponent;
1710
+ };
1711
+ //#endregion
1712
+ //#region packages/components/src/tag/src/type.d.ts
1713
+ /** Element Plus Tag 支持的语义类型。 */
1714
+ type TagType = "primary" | "success" | "info" | "warning" | "danger";
1715
+ /** Element Plus Tag 支持的尺寸。 */
1716
+ type TagSize = "large" | "default" | "small";
1717
+ /** Element Plus Tag 支持的主题。 */
1718
+ type TagEffect = "dark" | "light" | "plain";
1719
+ type NativeTagProps = Omit<HTMLAttributes<HTMLSpanElement>, "color" | "onClose">;
1720
+ /** 基于 Ant Design Tag 封装,但公开参数严格对齐 Element Plus Tag API。 */
1721
+ interface TagProps extends NativeTagProps {
1722
+ type?: TagType;
1723
+ closable?: boolean;
1724
+ disableTransitions?: boolean;
1725
+ hit?: boolean;
1726
+ color?: string;
1727
+ size?: TagSize;
1728
+ effect?: TagEffect;
1729
+ round?: boolean;
1730
+ children?: ReactNode;
1731
+ className?: string;
1732
+ style?: CSSProperties;
1733
+ onClose?: (event: MouseEvent<HTMLElement>) => void;
1734
+ }
1735
+ /** 基于 Ant Design CheckableTag 封装,但公开参数严格对齐 Element Plus CheckTag API。 */
1736
+ interface CheckTagProps extends Omit<HTMLAttributes<HTMLSpanElement>, "onChange"> {
1737
+ checked?: boolean;
1738
+ disabled?: boolean;
1739
+ type?: TagType;
1740
+ children?: ReactNode;
1741
+ className?: string;
1742
+ style?: CSSProperties;
1743
+ onChange?: (checked: boolean) => void;
1744
+ }
1745
+ //#endregion
1746
+ //#region packages/components/src/tag/src/tag.d.ts
1747
+ /** Tag 基础导出,完整 Ant Design 行为映射在后续 TDD 任务补齐。 */
1748
+ declare function Tag({ children, className, closable, color, disableTransitions, effect, hit, onClose, round, size, type, ...restProps }: TagProps): import("react").JSX.Element;
1749
+ declare namespace Tag {
1750
+ var displayName: string;
1751
+ }
1752
+ /** CheckTag 基础导出,完整受控交互在后续 TDD 任务补齐。 */
1753
+ declare function CheckTag({ checked, children, className, disabled, onChange, type, ...restProps }: CheckTagProps): import("react").JSX.Element;
1754
+ declare namespace CheckTag {
1755
+ var displayName: string;
1756
+ }
1757
+ //#endregion
1758
+ //#region packages/components/src/timeline/src/type.d.ts
1759
+ /** 对齐 Element Plus 的内容相对时间线位置。 */
1760
+ type TimelineMode = "start" | "alternate" | "alternate-reverse" | "end";
1761
+ /** 时间戳相对内容的位置。 */
1762
+ type TimelineItemPlacement = "top" | "bottom";
1763
+ /** 节点语义类型沿用 Element Plus Timeline-Item API。 */
1764
+ type TimelineItemType = "" | "primary" | "success" | "warning" | "danger" | "info";
1765
+ /** 节点尺寸沿用 Element Plus Timeline-Item API。 */
1766
+ type TimelineItemSize = "normal" | "large";
1767
+ /** Timeline 对外暴露的单项配置类型,只保留 Element Plus/Figma 支持的能力。 */
1768
+ interface TimelineItem {
1769
+ key?: Key;
1770
+ className?: string;
1771
+ style?: CSSProperties;
1772
+ timestamp?: ReactNode;
1773
+ hideTimestamp?: boolean;
1774
+ center?: boolean;
1775
+ placement?: TimelineItemPlacement;
1776
+ type?: TimelineItemType;
1777
+ color?: string;
1778
+ size?: TimelineItemSize;
1779
+ icon?: ReactNode;
1780
+ hollow?: boolean;
1781
+ content?: ReactNode;
1782
+ children?: ReactNode;
1783
+ /** 对齐 Element Plus 的 dot 插槽语义,内部映射为 Ant Design icon。 */
1784
+ dot?: ReactNode;
1785
+ }
1786
+ /** Timeline.Item 子组件参数,对齐 Element Plus Timeline-Item API。 */
1787
+ interface TimelineItemProps extends Omit<TimelineItem, "content" | "key"> {
1788
+ children?: ReactNode;
1789
+ }
1790
+ /** 基于 Ant Design Timeline 封装,但公开参数严格对齐 Element Plus/Figma 纵向设计。 */
1791
+ interface TimelineProps extends Pick<TimelineProps$1, "className" | "style"> {
1792
+ items?: TimelineItem[];
1793
+ mode?: TimelineMode;
1794
+ reverse?: boolean;
1795
+ children?: ReactNode;
1796
+ }
1797
+ //#endregion
1798
+ //#region packages/components/src/timeline/src/timeline.d.ts
1799
+ /** Timeline 复用 Ant Design 能力,对外参数按 Element Plus/Figma 纵向设计收口。 */
1800
+ declare function InternalTimeline({ className, items, mode, ...restProps }: TimelineProps): import("react").JSX.Element;
1801
+ /** Timeline.Item 子组件,对外参数按 Element Plus Timeline-Item 收口。 */
1802
+ declare function TimelineItem$1(props: TimelineItemProps): import("react").JSX.Element;
1803
+ declare namespace TimelineItem$1 {
1804
+ var displayName: string;
1805
+ }
1806
+ declare const Timeline: typeof InternalTimeline & {
1807
+ Item: typeof TimelineItem$1;
1808
+ };
1809
+ //#endregion
1810
+ //#region packages/components/src/tooltip/src/type.d.ts
1811
+ /** UI KIT 中 Tooltip 的视觉类型。 */
1812
+ type TooltipEffect = "dark" | "light" | "custom";
1813
+ /** Figma Tooltip 组件使用的方向命名。 */
1814
+ type FigmaTooltipPlacement = "top-start" | "top" | "top-end" | "right-start" | "right" | "right-end" | "bottom-start" | "bottom" | "bottom-end" | "left-start" | "left" | "left-end";
1815
+ /** Tooltip 同时支持 Figma 方向命名和 Ant Design 原生方向。 */
1816
+ type TooltipPlacement = FigmaTooltipPlacement | TooltipPlacement$1;
1817
+ /** 基于 Ant Design Tooltip 扩展的 UI KIT Tooltip 属性。 */
1818
+ interface TooltipProps extends Omit<TooltipProps$1, "color" | "placement"> {
1819
+ /** 对应 Figma `effect=dark/light/custom`,默认 dark。 */
1820
+ effect?: TooltipEffect;
1821
+ /** 对应 Figma `multiple=on`,用于 160px 多行提示。 */
1822
+ multiple?: boolean;
1823
+ /** 对应 Figma `placement`,也兼容 Ant Design 原生方向。 */
1824
+ placement?: TooltipPlacement;
1825
+ }
1826
+ //#endregion
1827
+ //#region packages/components/src/tooltip/src/tooltip.d.ts
1828
+ /** Tooltip 复用 Ant Design 浮层能力,并按 UI KIT effect 和 placement 覆盖视觉。 */
1829
+ declare function Tooltip({ effect, multiple, placement, rootClassName, ...restProps }: TooltipProps): import("react").JSX.Element;
1830
+ declare namespace Tooltip {
1831
+ var displayName: string;
1832
+ }
1833
+ //#endregion
1834
+ //#region packages/components/src/tree/src/type.d.ts
1835
+ /** 基于 Ant Design Tree 扩展的 UI KIT Tree 属性。 */
1836
+ interface TreeProps extends TreeProps$1 {}
1837
+ /** Tree.Actions 按钮型树节点标题属性。 */
1838
+ interface TreeActionsProps extends Omit<HTMLAttributes<HTMLSpanElement>, "onClick"> {
1839
+ appendText?: ReactNode;
1840
+ deleteText?: ReactNode;
1841
+ label?: ReactNode;
1842
+ onAppend?: (event: MouseEvent<HTMLButtonElement>) => void;
1843
+ onDelete?: (event: MouseEvent<HTMLButtonElement>) => void;
1844
+ }
1845
+ //#endregion
1846
+ //#region packages/components/src/tree/src/tree.d.ts
1847
+ /** Tree.Actions 对齐设计稿中按钮型树节点的 Append/Delete 操作。 */
1848
+ declare function TreeActions({ appendText, className, deleteText, label, onAppend, onDelete, ...restProps }: TreeActionsProps): import("react").JSX.Element;
1849
+ declare namespace TreeActions {
1850
+ var displayName: string;
1851
+ }
1852
+ /** Tree 复用 Ant Design 树形控件能力,并覆盖节点、选中和悬浮视觉。 */
1853
+ declare function InternalTree({ blockNode, className, switcherIcon, switcherLoadingIcon, ...restProps }: TreeProps): import("react").JSX.Element;
1854
+ declare const Tree: typeof InternalTree & {
1855
+ Actions: typeof TreeActions;
1856
+ };
1857
+ //#endregion
1858
+ //#region packages/components/src/upload/src/type.d.ts
1859
+ type Awaitable<T> = Promise<T> | T;
1860
+ type UploadStatus = "ready" | "uploading" | "success" | "fail";
1861
+ type UploadListType = "text" | "picture" | "picture-card";
1862
+ interface UploadRawFile extends File {
1863
+ uid: number;
1864
+ isDirectory?: boolean;
1865
+ }
1866
+ interface UploadProgressEvent extends ProgressEvent {
1867
+ percent: number;
1868
+ }
1869
+ interface UploadFile {
1870
+ name: string;
1871
+ percentage?: number;
1872
+ raw?: UploadRawFile;
1873
+ response?: unknown;
1874
+ size?: number;
1875
+ status: UploadStatus;
1876
+ uid: number;
1877
+ url?: string;
1878
+ }
1879
+ type UploadFiles = UploadFile[];
1880
+ type UploadUserFile = Omit<UploadFile, "status" | "uid"> & Partial<Pick<UploadFile, "status" | "uid">>;
1881
+ interface UploadRequestOptions {
1882
+ action: string;
1883
+ data: Record<string, unknown>;
1884
+ file: File;
1885
+ filename: string;
1886
+ headers: Headers | Record<string, string>;
1887
+ method: string;
1888
+ onError: (error: Error) => void;
1889
+ onProgress: (event: UploadProgressEvent) => void;
1890
+ onSuccess: (response: unknown) => void;
1891
+ withCredentials: boolean;
1892
+ }
1893
+ interface UploadRef {
1894
+ abort: (file?: UploadFile) => void;
1895
+ clearFiles: (status?: UploadStatus[]) => void;
1896
+ handleRemove: (file: UploadFile | UploadRawFile, rawFile?: UploadRawFile) => void;
1897
+ handleStart: (rawFile: UploadRawFile) => void;
1898
+ submit: () => void;
1899
+ }
1900
+ /** 基于 Ant Design Upload 封装,但公开参数严格对齐 Element Plus Upload API。 */
1901
+ interface UploadProps {
1902
+ accept?: string;
1903
+ action: string;
1904
+ autoUpload?: boolean;
1905
+ beforeRemove?: (uploadFile: UploadFile, uploadFiles: UploadFiles) => Awaitable<boolean | void>;
1906
+ beforeUpload?: (rawFile: UploadRawFile) => Awaitable<boolean | void>;
1907
+ children?: ReactNode;
1908
+ className?: string;
1909
+ crossOrigin?: "" | "anonymous" | "use-credentials";
1910
+ data?: Record<string, unknown> | Awaitable<Record<string, unknown>> | ((rawFile: UploadRawFile) => Awaitable<Record<string, unknown>>);
1911
+ directory?: boolean;
1912
+ disabled?: boolean;
1913
+ drag?: boolean;
1914
+ fileList?: UploadUserFile[];
1915
+ headers?: Headers | Record<string, string>;
1916
+ httpRequest?: (options: UploadRequestOptions) => XMLHttpRequest | Promise<unknown> | void;
1917
+ limit?: number;
1918
+ listType?: UploadListType;
1919
+ method?: string;
1920
+ multiple?: boolean;
1921
+ name?: string;
1922
+ onChange?: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
1923
+ onError?: (error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
1924
+ onExceed?: (files: File[], uploadFiles: UploadUserFile[]) => void;
1925
+ onPreview?: (uploadFile: UploadFile) => void;
1926
+ onProgress?: (event: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
1927
+ onRemove?: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
1928
+ onSuccess?: (response: unknown, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
1929
+ showFileList?: boolean;
1930
+ style?: CSSProperties;
1931
+ tip?: ReactNode;
1932
+ trigger?: ReactNode;
1933
+ withCredentials?: boolean;
1934
+ }
1935
+ //#endregion
1936
+ //#region packages/components/src/upload/src/upload.d.ts
1937
+ declare const Upload: import("react").ForwardRefExoticComponent<UploadProps & import("react").RefAttributes<UploadRef>>;
1938
+ //#endregion
1939
+ //#region packages/theme/src/utils.d.ts
1940
+ /**
1941
+ * 统一调用方传入的十六进制格式,保证色板覆盖表可以稳定命中。
1942
+ * @param hexColor 十六进制颜色
1943
+ * @returns 标准化后的十六进制颜色
1944
+ * @example normalizeHexColor("#fff") // "#FFFFFF"
1945
+ */
1946
+ declare function normalizeHexColor(hexColor: string): string;
1947
+ /**
1948
+ * RGB 颜色通道对象。
1949
+ * @property r 红色通道,取值范围 0-255
1950
+ * @property g 绿色通道,取值范围 0-255
1951
+ * @property b 蓝色通道,取值范围 0-255
1952
+ */
1953
+ type RgbColor = {
1954
+ readonly r: number;
1955
+ readonly g: number;
1956
+ readonly b: number;
1957
+ };
1958
+ /**
1959
+ * 将十六进制颜色转换为 RGB 通道对象。
1960
+ * @param hexColor 十六进制颜色,支持三位或六位格式
1961
+ * @returns RGB 颜色通道对象
1962
+ * @example hexToRgb("#3370FF") // { r: 51, g: 112, b: 255 }
1963
+ */
1964
+ declare function hexToRgb(hexColor: string): RgbColor;
1965
+ /**
1966
+ * 将 RGB 通道数值转换为两位十六进制片段。
1967
+ * @param channel RGB 通道值
1968
+ * @returns 两位大写十六进制字符串
1969
+ * @example toHexChannel(15) // "0F"
1970
+ */
1971
+ declare function toHexChannel(channel: number): string;
1972
+ /**
1973
+ * 按透明度将前景色叠加到背景色上,并返回混合后的十六进制颜色。
1974
+ * @param foreground 前景色 RGB 通道对象
1975
+ * @param background 背景色 RGB 通道对象
1976
+ * @param opacity 前景色透明度,取值范围 0-1
1977
+ * @returns 混合后的大写十六进制颜色
1978
+ * @example blendColor({ r: 51, g: 112, b: 255 }, { r: 255, g: 255, b: 255 }, 0.1) // "#EBF1FF"
1979
+ */
1980
+ declare function blendColor(foreground: RgbColor, background: RgbColor, opacity: number): string;
1981
+ //#endregion
1982
+ //#region packages/theme/src/tokens.d.ts
1983
+ /**
1984
+ * 种子色
1985
+ * @description 颜色种子色,用于生成色板。
1986
+ */
1987
+ declare const paletteSeedColors: {
1988
+ readonly primary: "#3370FF";
1989
+ readonly success: "#0BBB7D";
1990
+ readonly error: "#F14646";
1991
+ readonly warning: "#FF9900";
1992
+ readonly info: "#BFBFBF";
1993
+ };
1994
+ /**
1995
+ * 通过种子色生成透明度 10% - 90% 的命名颜色。
1996
+ */
1997
+ declare function createColorPalette(name: string, seedColor: string): {
1998
+ [k: string]: string;
1999
+ };
2000
+ declare const seedToken: {
2001
+ primary: "#3370FF";
2002
+ success: "#0BBB7D";
2003
+ error: "#F14646";
2004
+ warning: "#FF9900";
2005
+ info: "#BFBFBF";
2006
+ white: string;
2007
+ black: string;
2008
+ };
2009
+ //#endregion
2010
+ //#region packages/theme/src/antdTheme.d.ts
2011
+ declare const antdTheme: {
2012
+ token: {
2013
+ colorPrimary: "#3370FF";
2014
+ colorPrimaryBg: string;
2015
+ colorPrimaryBgHover: string;
2016
+ colorPrimaryBorder: string;
2017
+ colorPrimaryBorderHover: string;
2018
+ colorPrimaryHover: string;
2019
+ colorPrimaryActive: string;
2020
+ colorPrimaryTextHover: string;
2021
+ colorPrimaryText: "#3370FF";
2022
+ colorPrimaryTextActive: string;
2023
+ colorSuccess: "#0BBB7D";
2024
+ colorSuccessBg: string;
2025
+ colorSuccessBorder: string;
2026
+ colorWarning: "#FF9900";
2027
+ colorWarningBg: string;
2028
+ colorWarningBorder: string;
2029
+ colorError: "#F14646";
2030
+ colorErrorBg: string;
2031
+ colorErrorBorder: string;
2032
+ colorInfo: "#BFBFBF";
2033
+ colorInfoBg: string;
2034
+ colorInfoBorder: string;
2035
+ colorLink: "#3370FF";
2036
+ colorLinkHover: string;
2037
+ colorLinkActive: string;
2038
+ colorHighlight: "#F14646";
2039
+ colorText: string;
2040
+ colorTextSecondary: string;
2041
+ colorTextTertiary: string;
2042
+ colorTextQuaternary: string;
2043
+ colorTextDisabled: string;
2044
+ colorTextLightSolid: string;
2045
+ colorTextPlaceholder: string;
2046
+ colorBgLayout: string;
2047
+ colorBgContainer: string;
2048
+ colorBgElevated: string;
2049
+ colorBgContainerDisabled: string;
2050
+ colorFillAlter: string;
2051
+ colorFillSecondary: string;
2052
+ colorBorder: string;
2053
+ colorBorderSecondary: string;
2054
+ colorSplit: string;
2055
+ controlItemBgHover: string;
2056
+ controlItemBgActive: string;
2057
+ controlItemBgActiveHover: string;
2058
+ controlOutline: string;
2059
+ fontFamily: string;
2060
+ fontSize: number;
2061
+ fontSizeSM: number;
2062
+ fontSizeLG: number;
2063
+ fontSizeXL: number;
2064
+ borderRadius: number;
2065
+ borderRadiusXS: number;
2066
+ borderRadiusSM: number;
2067
+ borderRadiusLG: number;
2068
+ controlHeight: number;
2069
+ controlHeightSM: number;
2070
+ controlHeightLG: number;
2071
+ };
2072
+ components: {
2073
+ Button: {
2074
+ borderRadius: number;
2075
+ defaultBg: string;
2076
+ defaultColor: string;
2077
+ defaultBorderColor: string;
2078
+ defaultHoverBg: string;
2079
+ defaultHoverColor: "#3370FF";
2080
+ defaultHoverBorderColor: "#3370FF";
2081
+ defaultActiveBg: string;
2082
+ defaultActiveColor: string;
2083
+ defaultActiveBorderColor: string;
2084
+ primaryColor: string;
2085
+ primaryShadow: string;
2086
+ defaultShadow: string;
2087
+ dangerShadow: string;
2088
+ fontWeight: number;
2089
+ };
2090
+ Input: {
2091
+ hoverBorderColor: "#3370FF";
2092
+ activeBorderColor: "#3370FF";
2093
+ activeShadow: string;
2094
+ };
2095
+ Select: {
2096
+ selectorBg: string;
2097
+ optionSelectedBg: string;
2098
+ optionSelectedColor: "#3370FF";
2099
+ optionActiveBg: string;
2100
+ hoverBorderColor: "#3370FF";
2101
+ activeBorderColor: "#3370FF";
2102
+ activeOutlineColor: string;
2103
+ };
2104
+ DatePicker: {
2105
+ hoverBorderColor: "#3370FF";
2106
+ activeBorderColor: "#3370FF";
2107
+ activeShadow: string;
2108
+ };
2109
+ Cascader: {
2110
+ optionSelectedBg: string;
2111
+ optionSelectedColor: "#3370FF";
2112
+ optionSelectedFontWeight: number;
2113
+ controlItemWidth: number;
2114
+ dropdownHeight: number;
2115
+ };
2116
+ Table: {
2117
+ headerBg: string;
2118
+ headerColor: string;
2119
+ rowHoverBg: string;
2120
+ rowSelectedBg: string;
2121
+ rowSelectedHoverBg: string;
2122
+ borderColor: string;
2123
+ headerSplitColor: string;
2124
+ headerBorderRadius: number;
2125
+ cellFontSize: number;
2126
+ cellFontSizeMD: number;
2127
+ cellFontSizeSM: number;
2128
+ };
2129
+ Tabs: {
2130
+ inkBarColor: "#3370FF";
2131
+ itemSelectedColor: "#3370FF";
2132
+ itemHoverColor: string;
2133
+ itemActiveColor: "#3370FF";
2134
+ };
2135
+ Radio: {
2136
+ buttonSolidCheckedBg: "#3370FF";
2137
+ buttonSolidCheckedHoverBg: string;
2138
+ buttonSolidCheckedActiveBg: "#3370FF";
2139
+ buttonSolidCheckedColor: string;
2140
+ };
2141
+ };
2142
+ };
2143
+ declare function createAntdTheme(overrides?: ThemeConfig): ThemeConfig;
2144
+ //#endregion
2145
+ //#region packages/utils/src/className.d.ts
2146
+ /** 可参与类名合并的输入值,空值会在输出前过滤。 */
2147
+ type ClassNameValue = string | false | null | undefined;
2148
+ /** 合并类名,过滤空值并保持传入顺序稳定。 */
2149
+ declare function mergeClassNames(...classNames: ClassNameValue[]): string;
2150
+ //#endregion
2151
+ export { Alert, type AlertCloseType, type AlertProps, type AlertType, Awaitable, Badge, type BadgeProps, type BadgeRef, BadgeRibbon, type BadgeRibbonProps, type BaseOptionType, Button, type ButtonColor, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonRef, type ButtonStyle, Cascader, type CascaderConfig, type CascaderLazyLoad, type CascaderLazyNode, type CascaderOption, type CascaderOptionContentContext, type CascaderOptionType, CascaderPanel, type CascaderPanelProps, type CascaderProps, type CascaderSize, type CascaderSuggestionContext, type CascaderSuggestionItem, type CascaderTagContext, type CascaderValue, CheckTag, type CheckTagProps, Checkbox, CheckboxButton, CheckboxGroup, type CheckboxGroupProps, type CheckboxGroupSize, type CheckboxGroupType, type CheckboxGroupValue, type CheckboxGroupVariant, type CheckboxOption, type CheckboxOptionProps, type CheckboxProps, type CheckboxSize, type CheckboxValue, type ClassNameValue, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DatetimePicker, type DatetimePickerProps, DatetimeRangePicker, type DatetimeRangePickerProps, Dialog, type DialogBeforeClose, type DialogProps, Divider, type DividerProps, type DividerTone, Dropdown, type DropdownButtonProps, type DropdownMenuItem, type DropdownProps, Empty, type EmptyProps, type FigmaTooltipPlacement, Form, type FormInstance, type FormItemProps, type FormListFieldData, type FormListOperation, type FormListProps, type FormProps, Header, type HeaderNavItem, type HeaderProps, Icon, type IconName, type IconProps, Image, type ImagePreviewGroupProps, type GroupPreviewConfig as ImagePreviewGroupType, type ImagePreviewType, type ImageProps, type ImageRef, ImageViewer, type ImageViewerAction, type ImageViewerActionOptions, type ImageViewerErrorContext, type ImageViewerProgressContext, type ImageViewerProps, type ImageViewerRef, type ImageViewerSlot, type ImageViewerToolbarContext, Input, type InputFilledProps, type InputGroupProps, type InputProps, type InputRef, type InputSize, Loading, type LoadingMask, type LoadingOverlayProps, type LoadingProps, type LoadingSize, type LoadingType, Menu, type MenuItem, type MenuProps, type AntdMenuRef as MenuRef, Pagination, type PaginationLocale, type PaginationProps, type PasswordProps, Progress, type ProgressProps, type ProgressVariant, Radio, RadioButton, RadioGroup, type RadioGroupProps, type RadioGroupResolveInput, type RadioGroupType, type RadioGroupVariant, type RadioOption, type RadioOptionProps, type RadioProps, type RadioResolveInput, type RadioSize, type RadioValue, type RefSelectProps, type ResolvedRadioGroupOptions, type ResolvedRadioOption, type ResolvedRadioOptions, Result, type ResultProps, type ResultStatusType, RgbColor, type Rule, type RuleObject, type RuleRender, type SearchProps, Select, type DefaultOptionType as SelectOption, type SelectProps, type SelectSize, Step, type StepItem, type StepProps, Steps, type StepsProps, Switch, type SwitchProps, type SwitchSize, type TabItem, type TabPaneProps, TabPanel, type TabPanelBeforeLeave, type TabPanelContextMenuAction, type TabPanelContextMenuActionItem, type TabPanelEditAction, type TabPanelItem, type TabPanelOpenContextMenuOptions, type TabPanelPaneContext, type TabPanelPaneName, type TabPanelPaneProps, type TabPanelPosition, type TabPanelProps, type TabPanelRef, type TabPanelType, Table, type TableAlign, type TableCellContext, type TableColumnProps, type TableColumnType, type TableCurrentChangeHandler, type TableDefaultSort, type TableEnumOption, type TableEnumSource, type TableFieldNames, type TableFilterItem, type TableFilterValue, type TableFixed, type TableLayout, type TablePageable, type TableProps, type TableRef, type TableRequestData, type TableRequestResult, type TableRowKey, type TableSearchParams, type TableSearchProps, type TableSearchRenderScope, type TableSearchType, type TableSize, type TableSortChangeContext, type TableSortOrder, type TableTreeNode, type TableTreeProps, Tabs, type TabsProps, type AntdTabsRef as TabsRef, Tag, type TagEffect, type TagProps, type TagSize, type TagType, type TextAreaProps, TimePicker, type TimePickerProps, TimeRangePicker, type TimeRangePickerProps, Timeline, TimelineItem, TimelineItemPlacement, TimelineItemProps, TimelineItemSize, TimelineItemType, TimelineMode, TimelineProps, Tooltip, type TooltipEffect, type TooltipPlacement, type TooltipProps, Tree, type TreeActionsProps, type DataNode as TreeDataNode, type TreeProps, Upload, UploadFile, UploadFiles, UploadListType, UploadProgressEvent, UploadProps, UploadRawFile, UploadRef, UploadRequestOptions, UploadStatus, UploadUserFile, antdTheme, blendColor, createAntdTheme, createColorPalette, headerNavItems, hexToRgb, iconNames, icons, mergeClassNames, normalizeHexColor, paletteSeedColors, seedToken, sideMenuItems, toHexChannel };