@sia.soul/sia-react-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/THIRD_PARTY_NOTICES.md +12 -0
- package/dist/Select-CJJ5LQap.d.cts +44 -0
- package/dist/Select-CJJ5LQap.d.ts +44 -0
- package/dist/chart.cjs +7523 -0
- package/dist/chart.css +1036 -0
- package/dist/chart.d.cts +2061 -0
- package/dist/chart.d.ts +2061 -0
- package/dist/chart.js +120 -0
- package/dist/chunk-34TTF4Y7.js +812 -0
- package/dist/chunk-6VXOLMKZ.js +381 -0
- package/dist/chunk-DZ45HRVP.js +583 -0
- package/dist/chunk-I342FGQY.js +7344 -0
- package/dist/chunk-JKZGAZMB.js +318 -0
- package/dist/chunk-MBS2HXLZ.js +59 -0
- package/dist/chunk-NZAT2RUM.js +60 -0
- package/dist/chunk-OMA75YLM.js +298 -0
- package/dist/chunk-ULEGTKXR.js +2138 -0
- package/dist/chunk-YCVXUMGP.js +945 -0
- package/dist/core-BeiAQiDY.d.ts +1076 -0
- package/dist/core-DRICIs2n.d.cts +1076 -0
- package/dist/core.cjs +3353 -0
- package/dist/core.css +8734 -0
- package/dist/core.d.cts +3 -0
- package/dist/core.d.ts +3 -0
- package/dist/core.js +45 -0
- package/dist/index.cjs +19658 -0
- package/dist/index.css +9762 -0
- package/dist/index.d.cts +1222 -0
- package/dist/index.d.ts +1222 -0
- package/dist/index.js +6843 -0
- package/dist/markdown-editor.cjs +417 -0
- package/dist/markdown-editor.d.cts +28 -0
- package/dist/markdown-editor.d.ts +28 -0
- package/dist/markdown-editor.js +6 -0
- package/dist/rich-text-editor.cjs +1853 -0
- package/dist/rich-text-editor.d.cts +27 -0
- package/dist/rich-text-editor.d.ts +27 -0
- package/dist/rich-text-editor.js +11 -0
- package/dist/select-date-range-BDWdo7qt.d.ts +84 -0
- package/dist/select-date-range-DWik3ADr.d.cts +84 -0
- package/dist/select-date-range.cjs +2074 -0
- package/dist/select-date-range.d.cts +3 -0
- package/dist/select-date-range.d.ts +3 -0
- package/dist/select-date-range.js +8 -0
- package/package.json +129 -0
|
@@ -0,0 +1,1076 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { ButtonHTMLAttributes, ReactNode, HTMLAttributes, CSSProperties, MouseEvent, ReactElement, ImgHTMLAttributes, InputHTMLAttributes, MouseEventHandler, AnchorHTMLAttributes } from 'react';
|
|
3
|
+
import { C as ControlSize, a as ControlStatus, I as InputPlaceholderMode } from './Select-CJJ5LQap.js';
|
|
4
|
+
|
|
5
|
+
type ButtonVariant = "primary" | "default" | "dashed" | "filled" | "text" | "link";
|
|
6
|
+
type ButtonSize = ControlSize;
|
|
7
|
+
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
8
|
+
variant?: ButtonVariant;
|
|
9
|
+
size?: ButtonSize;
|
|
10
|
+
loading?: boolean;
|
|
11
|
+
block?: boolean;
|
|
12
|
+
danger?: boolean;
|
|
13
|
+
icon?: ReactNode;
|
|
14
|
+
iconPosition?: "start" | "end";
|
|
15
|
+
}
|
|
16
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
17
|
+
|
|
18
|
+
type CardAccent = "primary" | "success" | "warning" | "error";
|
|
19
|
+
interface CardProps extends Omit<HTMLAttributes<HTMLElement>, "title"> {
|
|
20
|
+
title?: ReactNode;
|
|
21
|
+
description?: ReactNode;
|
|
22
|
+
extra?: ReactNode;
|
|
23
|
+
accent?: CardAccent;
|
|
24
|
+
accentColor?: string;
|
|
25
|
+
collapsible?: boolean;
|
|
26
|
+
collapsed?: boolean;
|
|
27
|
+
defaultCollapsed?: boolean;
|
|
28
|
+
onCollapsedChange?: (collapsed: boolean) => void;
|
|
29
|
+
bodyHeight?: number | string;
|
|
30
|
+
bodyClassName?: string;
|
|
31
|
+
bodyStyle?: CSSProperties;
|
|
32
|
+
}
|
|
33
|
+
declare function Card({ title, description, extra, accent, accentColor, collapsible, collapsed, defaultCollapsed, onCollapsedChange, bodyHeight, bodyClassName, bodyStyle, className, style, children, ...props }: CardProps): react.JSX.Element;
|
|
34
|
+
|
|
35
|
+
declare const iconPaths: {
|
|
36
|
+
"notepad-file": react.JSX.Element;
|
|
37
|
+
"notepad-folder": react.JSX.Element;
|
|
38
|
+
"notepad-virtual-folder": react.JSX.Element;
|
|
39
|
+
"step-backward": react.JSX.Element;
|
|
40
|
+
"step-forward": react.JSX.Element;
|
|
41
|
+
"fast-backward": react.JSX.Element;
|
|
42
|
+
"fast-forward": react.JSX.Element;
|
|
43
|
+
"corner-up-left": react.JSX.Element;
|
|
44
|
+
"corner-up-right": react.JSX.Element;
|
|
45
|
+
"swap-horizontal": react.JSX.Element;
|
|
46
|
+
"swap-vertical": react.JSX.Element;
|
|
47
|
+
expand: react.JSX.Element;
|
|
48
|
+
shrink: react.JSX.Element;
|
|
49
|
+
fullscreen: react.JSX.Element;
|
|
50
|
+
"fullscreen-exit": react.JSX.Element;
|
|
51
|
+
"menu-fold": react.JSX.Element;
|
|
52
|
+
"menu-unfold": react.JSX.Element;
|
|
53
|
+
login: react.JSX.Element;
|
|
54
|
+
logout: react.JSX.Element;
|
|
55
|
+
move: react.JSX.Element;
|
|
56
|
+
"vertical-align-top": react.JSX.Element;
|
|
57
|
+
"vertical-align-middle": react.JSX.Element;
|
|
58
|
+
"vertical-align-bottom": react.JSX.Element;
|
|
59
|
+
"square-plus": react.JSX.Element;
|
|
60
|
+
"square-minus": react.JSX.Element;
|
|
61
|
+
"square-check": react.JSX.Element;
|
|
62
|
+
"square-close": react.JSX.Element;
|
|
63
|
+
"tab-plus": react.JSX.Element;
|
|
64
|
+
"folder-plus": react.JSX.Element;
|
|
65
|
+
pin: react.JSX.Element;
|
|
66
|
+
"pin-off": react.JSX.Element;
|
|
67
|
+
stop: react.JSX.Element;
|
|
68
|
+
"help-circle": react.JSX.Element;
|
|
69
|
+
save: react.JSX.Element;
|
|
70
|
+
clipboard: react.JSX.Element;
|
|
71
|
+
"clipboard-check": react.JSX.Element;
|
|
72
|
+
"file-plus": react.JSX.Element;
|
|
73
|
+
"file-check": react.JSX.Element;
|
|
74
|
+
"file-warning": react.JSX.Element;
|
|
75
|
+
"file-spreadsheet": react.JSX.Element;
|
|
76
|
+
"align-left": react.JSX.Element;
|
|
77
|
+
"align-center": react.JSX.Element;
|
|
78
|
+
"align-right": react.JSX.Element;
|
|
79
|
+
"align-justify": react.JSX.Element;
|
|
80
|
+
bold: react.JSX.Element;
|
|
81
|
+
italic: react.JSX.Element;
|
|
82
|
+
underline: react.JSX.Element;
|
|
83
|
+
strikethrough: react.JSX.Element;
|
|
84
|
+
"list-ordered": react.JSX.Element;
|
|
85
|
+
"list-unordered": react.JSX.Element;
|
|
86
|
+
eraser: react.JSX.Element;
|
|
87
|
+
highlighter: react.JSX.Element;
|
|
88
|
+
table: react.JSX.Element;
|
|
89
|
+
columns: react.JSX.Element;
|
|
90
|
+
rows: react.JSX.Element;
|
|
91
|
+
"bar-chart": react.JSX.Element;
|
|
92
|
+
"line-chart": react.JSX.Element;
|
|
93
|
+
"pie-chart": react.JSX.Element;
|
|
94
|
+
"area-chart": react.JSX.Element;
|
|
95
|
+
activity: react.JSX.Element;
|
|
96
|
+
"trending-up": react.JSX.Element;
|
|
97
|
+
"trending-down": react.JSX.Element;
|
|
98
|
+
database: react.JSX.Element;
|
|
99
|
+
cloud: react.JSX.Element;
|
|
100
|
+
"cloud-download": react.JSX.Element;
|
|
101
|
+
"cloud-upload": react.JSX.Element;
|
|
102
|
+
server: react.JSX.Element;
|
|
103
|
+
desktop: react.JSX.Element;
|
|
104
|
+
laptop: react.JSX.Element;
|
|
105
|
+
mobile: react.JSX.Element;
|
|
106
|
+
tablet: react.JSX.Element;
|
|
107
|
+
printer: react.JSX.Element;
|
|
108
|
+
camera: react.JSX.Element;
|
|
109
|
+
video: react.JSX.Element;
|
|
110
|
+
microphone: react.JSX.Element;
|
|
111
|
+
"volume-up": react.JSX.Element;
|
|
112
|
+
"volume-off": react.JSX.Element;
|
|
113
|
+
"speaker-wave": react.JSX.Element;
|
|
114
|
+
"speaker-muted": react.JSX.Element;
|
|
115
|
+
wifi: react.JSX.Element;
|
|
116
|
+
power: react.JSX.Element;
|
|
117
|
+
key: react.JSX.Element;
|
|
118
|
+
shield: react.JSX.Element;
|
|
119
|
+
"shield-check": react.JSX.Element;
|
|
120
|
+
bug: react.JSX.Element;
|
|
121
|
+
bulb: react.JSX.Element;
|
|
122
|
+
rocket: react.JSX.Element;
|
|
123
|
+
target: react.JSX.Element;
|
|
124
|
+
trophy: react.JSX.Element;
|
|
125
|
+
"shopping-cart": react.JSX.Element;
|
|
126
|
+
"shopping-bag": react.JSX.Element;
|
|
127
|
+
shop: react.JSX.Element;
|
|
128
|
+
wallet: react.JSX.Element;
|
|
129
|
+
bank: react.JSX.Element;
|
|
130
|
+
calculator: react.JSX.Element;
|
|
131
|
+
tag: react.JSX.Element;
|
|
132
|
+
tags: react.JSX.Element;
|
|
133
|
+
message: react.JSX.Element;
|
|
134
|
+
comments: react.JSX.Element;
|
|
135
|
+
send: react.JSX.Element;
|
|
136
|
+
share: react.JSX.Element;
|
|
137
|
+
paperclip: react.JSX.Element;
|
|
138
|
+
location: react.JSX.Element;
|
|
139
|
+
compass: react.JSX.Element;
|
|
140
|
+
car: react.JSX.Element;
|
|
141
|
+
truck: react.JSX.Element;
|
|
142
|
+
gift: react.JSX.Element;
|
|
143
|
+
coffee: react.JSX.Element;
|
|
144
|
+
experiment: react.JSX.Element;
|
|
145
|
+
tool: react.JSX.Element;
|
|
146
|
+
appstore: react.JSX.Element;
|
|
147
|
+
puzzle: react.JSX.Element;
|
|
148
|
+
partition: react.JSX.Element;
|
|
149
|
+
branches: react.JSX.Element;
|
|
150
|
+
scan: react.JSX.Element;
|
|
151
|
+
"qr-code": react.JSX.Element;
|
|
152
|
+
barcode: react.JSX.Element;
|
|
153
|
+
"user-plus": react.JSX.Element;
|
|
154
|
+
"user-minus": react.JSX.Element;
|
|
155
|
+
smile: react.JSX.Element;
|
|
156
|
+
meh: react.JSX.Element;
|
|
157
|
+
frown: react.JSX.Element;
|
|
158
|
+
"game-cultivator": react.JSX.Element;
|
|
159
|
+
"game-swordsman": react.JSX.Element;
|
|
160
|
+
"game-spirit-wolf": react.JSX.Element;
|
|
161
|
+
"game-gem": react.JSX.Element;
|
|
162
|
+
"game-ingot": react.JSX.Element;
|
|
163
|
+
"game-sword": react.JSX.Element;
|
|
164
|
+
"game-robe": react.JSX.Element;
|
|
165
|
+
"game-pants": react.JSX.Element;
|
|
166
|
+
"game-pendant": react.JSX.Element;
|
|
167
|
+
"game-necklace": react.JSX.Element;
|
|
168
|
+
"game-pill": react.JSX.Element;
|
|
169
|
+
"game-potion": react.JSX.Element;
|
|
170
|
+
"game-elixir-jar": react.JSX.Element;
|
|
171
|
+
"game-flame": react.JSX.Element;
|
|
172
|
+
"game-soul-elixir": react.JSX.Element;
|
|
173
|
+
"game-herb": react.JSX.Element;
|
|
174
|
+
"game-meditate": react.JSX.Element;
|
|
175
|
+
"game-backpack": react.JSX.Element;
|
|
176
|
+
"game-qi": react.JSX.Element;
|
|
177
|
+
search: react.JSX.Element;
|
|
178
|
+
plus: react.JSX.Element;
|
|
179
|
+
minus: react.JSX.Element;
|
|
180
|
+
close: react.JSX.Element;
|
|
181
|
+
check: react.JSX.Element;
|
|
182
|
+
info: react.JSX.Element;
|
|
183
|
+
question: react.JSX.Element;
|
|
184
|
+
warning: react.JSX.Element;
|
|
185
|
+
"circle-check": react.JSX.Element;
|
|
186
|
+
"circle-close": react.JSX.Element;
|
|
187
|
+
"circle-plus": react.JSX.Element;
|
|
188
|
+
"circle-minus": react.JSX.Element;
|
|
189
|
+
"chevron-left": react.JSX.Element;
|
|
190
|
+
"chevron-right": react.JSX.Element;
|
|
191
|
+
"chevron-up": react.JSX.Element;
|
|
192
|
+
"chevron-down": react.JSX.Element;
|
|
193
|
+
"double-left": react.JSX.Element;
|
|
194
|
+
"double-right": react.JSX.Element;
|
|
195
|
+
"arrow-left": react.JSX.Element;
|
|
196
|
+
"arrow-right": react.JSX.Element;
|
|
197
|
+
"arrow-up": react.JSX.Element;
|
|
198
|
+
"arrow-down": react.JSX.Element;
|
|
199
|
+
menu: react.JSX.Element;
|
|
200
|
+
"more-horizontal": react.JSX.Element;
|
|
201
|
+
"more-vertical": react.JSX.Element;
|
|
202
|
+
home: react.JSX.Element;
|
|
203
|
+
user: react.JSX.Element;
|
|
204
|
+
users: react.JSX.Element;
|
|
205
|
+
settings: react.JSX.Element;
|
|
206
|
+
edit: react.JSX.Element;
|
|
207
|
+
copy: react.JSX.Element;
|
|
208
|
+
trash: react.JSX.Element;
|
|
209
|
+
scissors: react.JSX.Element;
|
|
210
|
+
undo: react.JSX.Element;
|
|
211
|
+
redo: react.JSX.Element;
|
|
212
|
+
"zoom-in": react.JSX.Element;
|
|
213
|
+
"zoom-out": react.JSX.Element;
|
|
214
|
+
download: react.JSX.Element;
|
|
215
|
+
upload: react.JSX.Element;
|
|
216
|
+
refresh: react.JSX.Element;
|
|
217
|
+
loader: react.JSX.Element;
|
|
218
|
+
calendar: react.JSX.Element;
|
|
219
|
+
clock: react.JSX.Element;
|
|
220
|
+
mail: react.JSX.Element;
|
|
221
|
+
phone: react.JSX.Element;
|
|
222
|
+
link: react.JSX.Element;
|
|
223
|
+
"external-link": react.JSX.Element;
|
|
224
|
+
eye: react.JSX.Element;
|
|
225
|
+
"eye-off": react.JSX.Element;
|
|
226
|
+
lock: react.JSX.Element;
|
|
227
|
+
unlock: react.JSX.Element;
|
|
228
|
+
bell: react.JSX.Element;
|
|
229
|
+
star: react.JSX.Element;
|
|
230
|
+
heart: react.JSX.Element;
|
|
231
|
+
file: react.JSX.Element;
|
|
232
|
+
folder: react.JSX.Element;
|
|
233
|
+
image: react.JSX.Element;
|
|
234
|
+
filter: react.JSX.Element;
|
|
235
|
+
"sort-ascending": react.JSX.Element;
|
|
236
|
+
"sort-descending": react.JSX.Element;
|
|
237
|
+
play: react.JSX.Element;
|
|
238
|
+
pause: react.JSX.Element;
|
|
239
|
+
book: react.JSX.Element;
|
|
240
|
+
component: react.JSX.Element;
|
|
241
|
+
token: react.JSX.Element;
|
|
242
|
+
sun: react.JSX.Element;
|
|
243
|
+
moon: react.JSX.Element;
|
|
244
|
+
code: react.JSX.Element;
|
|
245
|
+
github: react.JSX.Element;
|
|
246
|
+
};
|
|
247
|
+
type IconName = keyof typeof iconPaths;
|
|
248
|
+
declare const ICON_NAMES: readonly ("warning" | "link" | "copy" | "move" | "zoom-in" | "zoom-out" | "table" | "italic" | "bold" | "underline" | "menu" | "search" | "send" | "notepad-file" | "notepad-folder" | "notepad-virtual-folder" | "step-backward" | "step-forward" | "fast-backward" | "fast-forward" | "corner-up-left" | "corner-up-right" | "swap-horizontal" | "swap-vertical" | "expand" | "shrink" | "fullscreen" | "fullscreen-exit" | "menu-fold" | "menu-unfold" | "login" | "logout" | "vertical-align-top" | "vertical-align-middle" | "vertical-align-bottom" | "square-plus" | "square-minus" | "square-check" | "square-close" | "tab-plus" | "folder-plus" | "pin" | "pin-off" | "stop" | "help-circle" | "save" | "clipboard" | "clipboard-check" | "file-plus" | "file-check" | "file-warning" | "file-spreadsheet" | "align-left" | "align-center" | "align-right" | "align-justify" | "strikethrough" | "list-ordered" | "list-unordered" | "eraser" | "highlighter" | "columns" | "rows" | "bar-chart" | "line-chart" | "pie-chart" | "area-chart" | "activity" | "trending-up" | "trending-down" | "database" | "cloud" | "cloud-download" | "cloud-upload" | "server" | "desktop" | "laptop" | "mobile" | "tablet" | "printer" | "camera" | "video" | "microphone" | "volume-up" | "volume-off" | "speaker-wave" | "speaker-muted" | "wifi" | "power" | "key" | "shield" | "shield-check" | "bug" | "bulb" | "rocket" | "target" | "trophy" | "shopping-cart" | "shopping-bag" | "shop" | "wallet" | "bank" | "calculator" | "tag" | "tags" | "message" | "comments" | "share" | "paperclip" | "location" | "compass" | "car" | "truck" | "gift" | "coffee" | "experiment" | "tool" | "appstore" | "puzzle" | "partition" | "branches" | "scan" | "qr-code" | "barcode" | "user-plus" | "user-minus" | "smile" | "meh" | "frown" | "game-cultivator" | "game-swordsman" | "game-spirit-wolf" | "game-gem" | "game-ingot" | "game-sword" | "game-robe" | "game-pants" | "game-pendant" | "game-necklace" | "game-pill" | "game-potion" | "game-elixir-jar" | "game-flame" | "game-soul-elixir" | "game-herb" | "game-meditate" | "game-backpack" | "game-qi" | "plus" | "minus" | "close" | "check" | "info" | "question" | "circle-check" | "circle-close" | "circle-plus" | "circle-minus" | "chevron-left" | "chevron-right" | "chevron-up" | "chevron-down" | "double-left" | "double-right" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-down" | "more-horizontal" | "more-vertical" | "home" | "user" | "users" | "settings" | "edit" | "trash" | "scissors" | "undo" | "redo" | "download" | "upload" | "refresh" | "loader" | "calendar" | "clock" | "mail" | "phone" | "external-link" | "eye" | "eye-off" | "lock" | "unlock" | "bell" | "star" | "heart" | "file" | "folder" | "image" | "filter" | "sort-ascending" | "sort-descending" | "play" | "pause" | "book" | "component" | "token" | "sun" | "moon" | "code" | "github")[];
|
|
249
|
+
declare const filledIconPaths: {
|
|
250
|
+
info: react.JSX.Element;
|
|
251
|
+
question: react.JSX.Element;
|
|
252
|
+
warning: react.JSX.Element;
|
|
253
|
+
"circle-check": react.JSX.Element;
|
|
254
|
+
"circle-close": react.JSX.Element;
|
|
255
|
+
"circle-plus": react.JSX.Element;
|
|
256
|
+
"circle-minus": react.JSX.Element;
|
|
257
|
+
home: react.JSX.Element;
|
|
258
|
+
user: react.JSX.Element;
|
|
259
|
+
users: react.JSX.Element;
|
|
260
|
+
trash: react.JSX.Element;
|
|
261
|
+
bell: react.JSX.Element;
|
|
262
|
+
star: react.JSX.Element;
|
|
263
|
+
heart: react.JSX.Element;
|
|
264
|
+
mail: react.JSX.Element;
|
|
265
|
+
lock: react.JSX.Element;
|
|
266
|
+
unlock: react.JSX.Element;
|
|
267
|
+
calendar: react.JSX.Element;
|
|
268
|
+
clock: react.JSX.Element;
|
|
269
|
+
file: react.JSX.Element;
|
|
270
|
+
folder: react.JSX.Element;
|
|
271
|
+
image: react.JSX.Element;
|
|
272
|
+
filter: react.JSX.Element;
|
|
273
|
+
play: react.JSX.Element;
|
|
274
|
+
pause: react.JSX.Element;
|
|
275
|
+
book: react.JSX.Element;
|
|
276
|
+
component: react.JSX.Element;
|
|
277
|
+
token: react.JSX.Element;
|
|
278
|
+
};
|
|
279
|
+
type FilledIconName = keyof typeof filledIconPaths;
|
|
280
|
+
type IconVariant = "outline" | "filled";
|
|
281
|
+
declare const FILLED_ICON_NAMES: readonly ("warning" | "info" | "question" | "circle-check" | "circle-close" | "circle-plus" | "circle-minus" | "home" | "user" | "users" | "trash" | "calendar" | "clock" | "mail" | "lock" | "unlock" | "bell" | "star" | "heart" | "file" | "folder" | "image" | "filter" | "play" | "pause" | "book" | "component" | "token")[];
|
|
282
|
+
interface IconProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
283
|
+
name: IconName;
|
|
284
|
+
size?: number | string;
|
|
285
|
+
strokeWidth?: number;
|
|
286
|
+
rotate?: number;
|
|
287
|
+
spin?: boolean;
|
|
288
|
+
pulse?: boolean;
|
|
289
|
+
label?: string;
|
|
290
|
+
variant?: IconVariant;
|
|
291
|
+
}
|
|
292
|
+
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<HTMLSpanElement>>;
|
|
293
|
+
|
|
294
|
+
type TagStatus = "default" | "success" | "processing" | "warning" | "error";
|
|
295
|
+
type TagVariant = "soft" | "outlined" | "filled";
|
|
296
|
+
interface TagProps extends HTMLAttributes<HTMLSpanElement> {
|
|
297
|
+
status?: TagStatus;
|
|
298
|
+
compact?: boolean;
|
|
299
|
+
variant?: TagVariant;
|
|
300
|
+
icon?: ReactNode;
|
|
301
|
+
closable?: boolean;
|
|
302
|
+
disabled?: boolean;
|
|
303
|
+
onClose?: (event: MouseEvent<HTMLButtonElement>) => void;
|
|
304
|
+
}
|
|
305
|
+
declare function Tag({ status, compact, variant, icon, closable, disabled, onClose, className, children, ...props }: TagProps): react.JSX.Element;
|
|
306
|
+
|
|
307
|
+
type MenuMode = "vertical" | "horizontal" | "inline";
|
|
308
|
+
type MenuTheme = "light" | "dark";
|
|
309
|
+
type MenuItem = {
|
|
310
|
+
key: string;
|
|
311
|
+
label?: ReactNode;
|
|
312
|
+
icon?: ReactNode;
|
|
313
|
+
extra?: ReactNode;
|
|
314
|
+
title?: string;
|
|
315
|
+
disabled?: boolean;
|
|
316
|
+
danger?: boolean;
|
|
317
|
+
type?: "item" | "group" | "divider";
|
|
318
|
+
children?: readonly MenuItem[];
|
|
319
|
+
};
|
|
320
|
+
type MenuClickInfo = {
|
|
321
|
+
key: string;
|
|
322
|
+
keyPath: string[];
|
|
323
|
+
domEvent: React.MouseEvent;
|
|
324
|
+
item: MenuItem;
|
|
325
|
+
};
|
|
326
|
+
interface MenuProps extends Omit<HTMLAttributes<HTMLUListElement>, "onClick" | "onSelect"> {
|
|
327
|
+
items: readonly MenuItem[];
|
|
328
|
+
mode?: MenuMode;
|
|
329
|
+
theme?: MenuTheme;
|
|
330
|
+
selectedKeys?: readonly string[];
|
|
331
|
+
defaultSelectedKeys?: readonly string[];
|
|
332
|
+
openKeys?: readonly string[];
|
|
333
|
+
defaultOpenKeys?: readonly string[];
|
|
334
|
+
multiple?: boolean;
|
|
335
|
+
selectable?: boolean;
|
|
336
|
+
inlineCollapsed?: boolean;
|
|
337
|
+
inlineIndent?: number;
|
|
338
|
+
triggerSubMenuAction?: "hover" | "click";
|
|
339
|
+
onClick?: (info: MenuClickInfo) => void;
|
|
340
|
+
onSelect?: (info: MenuClickInfo & {
|
|
341
|
+
selectedKeys: string[];
|
|
342
|
+
}) => void;
|
|
343
|
+
onDeselect?: (info: MenuClickInfo & {
|
|
344
|
+
selectedKeys: string[];
|
|
345
|
+
}) => void;
|
|
346
|
+
onOpenChange?: (keys: string[]) => void;
|
|
347
|
+
}
|
|
348
|
+
declare function Menu({ items, mode, theme, selectedKeys, defaultSelectedKeys, openKeys, defaultOpenKeys, multiple, selectable, inlineCollapsed, inlineIndent, triggerSubMenuAction, onClick, onSelect, onDeselect, onOpenChange, className, ...rest }: MenuProps): react.JSX.Element;
|
|
349
|
+
type StepStatus = "wait" | "process" | "finish" | "error";
|
|
350
|
+
type StepItem = {
|
|
351
|
+
title: ReactNode;
|
|
352
|
+
description?: ReactNode;
|
|
353
|
+
subTitle?: ReactNode;
|
|
354
|
+
icon?: ReactNode;
|
|
355
|
+
status?: StepStatus;
|
|
356
|
+
disabled?: boolean;
|
|
357
|
+
};
|
|
358
|
+
interface StepsProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
359
|
+
items: readonly StepItem[];
|
|
360
|
+
current?: number;
|
|
361
|
+
initial?: number;
|
|
362
|
+
direction?: "horizontal" | "vertical";
|
|
363
|
+
type?: "default" | "navigation" | "dot";
|
|
364
|
+
size?: "default" | "small";
|
|
365
|
+
status?: "process" | "error";
|
|
366
|
+
progressDot?: boolean | ((dot: ReactNode, info: {
|
|
367
|
+
index: number;
|
|
368
|
+
status: StepStatus;
|
|
369
|
+
title: ReactNode;
|
|
370
|
+
description?: ReactNode;
|
|
371
|
+
}) => ReactNode);
|
|
372
|
+
onChange?: (current: number) => void;
|
|
373
|
+
}
|
|
374
|
+
declare function Steps({ items, current, initial, direction, type, size, status, progressDot, onChange, className, ...props }: StepsProps): react.JSX.Element;
|
|
375
|
+
type SegmentedValue = string | number;
|
|
376
|
+
type SegmentedOption = SegmentedValue | {
|
|
377
|
+
label?: ReactNode;
|
|
378
|
+
value: SegmentedValue;
|
|
379
|
+
icon?: ReactNode;
|
|
380
|
+
disabled?: boolean;
|
|
381
|
+
title?: string;
|
|
382
|
+
};
|
|
383
|
+
interface SegmentedProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
384
|
+
options: readonly SegmentedOption[];
|
|
385
|
+
value?: SegmentedValue;
|
|
386
|
+
defaultValue?: SegmentedValue;
|
|
387
|
+
size?: "small" | "medium" | "large";
|
|
388
|
+
block?: boolean;
|
|
389
|
+
vertical?: boolean;
|
|
390
|
+
disabled?: boolean;
|
|
391
|
+
onChange?: (value: SegmentedValue) => void;
|
|
392
|
+
}
|
|
393
|
+
declare function Segmented({ options, value, defaultValue, size, block, vertical, disabled, onChange, className, onKeyDown, ...props }: SegmentedProps): react.JSX.Element;
|
|
394
|
+
|
|
395
|
+
interface TabItem {
|
|
396
|
+
key: string;
|
|
397
|
+
label: ReactNode;
|
|
398
|
+
children?: ReactNode;
|
|
399
|
+
disabled?: boolean;
|
|
400
|
+
icon?: ReactNode;
|
|
401
|
+
closable?: boolean;
|
|
402
|
+
}
|
|
403
|
+
type TabsType = "line" | "card" | "pill" | "tech" | "tech-line";
|
|
404
|
+
type TabsOrientation = "horizontal" | "vertical";
|
|
405
|
+
type TabsPosition = "top" | "right" | "bottom" | "left";
|
|
406
|
+
type TabsContextMenuClickInfo = MenuClickInfo & {
|
|
407
|
+
tabKey: string;
|
|
408
|
+
tab: TabItem;
|
|
409
|
+
};
|
|
410
|
+
interface TabsProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
411
|
+
items: readonly TabItem[];
|
|
412
|
+
activeKey?: string;
|
|
413
|
+
defaultActiveKey?: string;
|
|
414
|
+
onChange?: (key: string) => void;
|
|
415
|
+
type?: TabsType;
|
|
416
|
+
size?: ControlSize;
|
|
417
|
+
tabPosition?: TabsPosition;
|
|
418
|
+
orientation?: TabsOrientation;
|
|
419
|
+
centered?: boolean;
|
|
420
|
+
tabBarTitle?: ReactNode;
|
|
421
|
+
tabBarExtraContent?: ReactNode;
|
|
422
|
+
destroyInactiveTabPane?: boolean;
|
|
423
|
+
closable?: boolean;
|
|
424
|
+
onEdit?: (key: string, action: "remove") => void;
|
|
425
|
+
tabContextMenu?: readonly MenuItem[] | ((tab: TabItem) => readonly MenuItem[]);
|
|
426
|
+
onTabContextMenuClick?: (info: TabsContextMenuClickInfo) => void;
|
|
427
|
+
}
|
|
428
|
+
declare function Tabs({ items, activeKey, defaultActiveKey, onChange, type, size, tabPosition, orientation, centered, tabBarTitle, tabBarExtraContent, destroyInactiveTabPane, closable, onEdit, tabContextMenu, onTabContextMenuClick, className, ...props }: TabsProps): react.JSX.Element;
|
|
429
|
+
|
|
430
|
+
type DropdownTrigger = "click" | "hover" | "contextMenu";
|
|
431
|
+
type DropdownPlacement = "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
|
432
|
+
type DropdownOpenSource = "trigger" | "menu";
|
|
433
|
+
interface DropdownMenuProps extends Pick<MenuProps, "multiple" | "selectable" | "selectedKeys" | "defaultSelectedKeys" | "onSelect" | "onDeselect"> {
|
|
434
|
+
items: readonly MenuItem[];
|
|
435
|
+
theme?: MenuTheme;
|
|
436
|
+
onClick?: (info: MenuClickInfo) => void;
|
|
437
|
+
}
|
|
438
|
+
interface DropdownProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children" | "onOpenChange"> {
|
|
439
|
+
menu: DropdownMenuProps;
|
|
440
|
+
children: ReactNode;
|
|
441
|
+
trigger?: readonly DropdownTrigger[];
|
|
442
|
+
placement?: DropdownPlacement;
|
|
443
|
+
open?: boolean;
|
|
444
|
+
defaultOpen?: boolean;
|
|
445
|
+
disabled?: boolean;
|
|
446
|
+
arrow?: boolean | {
|
|
447
|
+
pointAtCenter?: boolean;
|
|
448
|
+
};
|
|
449
|
+
autoFocus?: boolean;
|
|
450
|
+
openDelay?: number;
|
|
451
|
+
closeDelay?: number;
|
|
452
|
+
popupClassName?: string;
|
|
453
|
+
popupStyle?: CSSProperties;
|
|
454
|
+
popupRender?: (menu: ReactNode) => ReactNode;
|
|
455
|
+
onOpenChange?: (open: boolean, info: {
|
|
456
|
+
source: DropdownOpenSource;
|
|
457
|
+
}) => void;
|
|
458
|
+
}
|
|
459
|
+
declare function DropdownRoot({ menu, children, trigger, placement, open, defaultOpen, disabled, arrow, autoFocus, openDelay, closeDelay, popupClassName, popupStyle, popupRender, onOpenChange, className, onClick, onMouseEnter, onMouseLeave, onContextMenu, onKeyDown, ...props }: DropdownProps): react.JSX.Element;
|
|
460
|
+
interface DropdownButtonProps extends Omit<DropdownProps, "children" | "className"> {
|
|
461
|
+
children?: ReactNode;
|
|
462
|
+
className?: string;
|
|
463
|
+
buttonProps?: Omit<ButtonProps, "children" | "onClick" | "disabled">;
|
|
464
|
+
onClick?: ButtonProps["onClick"];
|
|
465
|
+
}
|
|
466
|
+
declare function DropdownButton({ children, className, buttonProps, onClick, disabled, trigger, ...dropdownProps }: DropdownButtonProps): react.JSX.Element;
|
|
467
|
+
declare const Dropdown: typeof DropdownRoot & {
|
|
468
|
+
Button: typeof DropdownButton;
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
type FloatingPlacement = "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "right";
|
|
472
|
+
type FloatingTrigger = "hover" | "focus" | "click";
|
|
473
|
+
interface TooltipProps {
|
|
474
|
+
title?: ReactNode;
|
|
475
|
+
children: ReactElement;
|
|
476
|
+
placement?: FloatingPlacement;
|
|
477
|
+
trigger?: FloatingTrigger | readonly FloatingTrigger[];
|
|
478
|
+
role?: string;
|
|
479
|
+
open?: boolean;
|
|
480
|
+
defaultOpen?: boolean;
|
|
481
|
+
mouseEnterDelay?: number;
|
|
482
|
+
mouseLeaveDelay?: number;
|
|
483
|
+
arrow?: boolean;
|
|
484
|
+
color?: string;
|
|
485
|
+
className?: string;
|
|
486
|
+
overlayClassName?: string;
|
|
487
|
+
onOpenChange?: (open: boolean) => void;
|
|
488
|
+
}
|
|
489
|
+
declare function Tooltip(props: TooltipProps): react.JSX.Element;
|
|
490
|
+
interface PopoverProps extends Omit<TooltipProps, "title"> {
|
|
491
|
+
title?: ReactNode;
|
|
492
|
+
content?: ReactNode;
|
|
493
|
+
}
|
|
494
|
+
declare function Popover({ title, content, trigger, overlayClassName, ...props }: PopoverProps): react.JSX.Element;
|
|
495
|
+
type TimelineItem = {
|
|
496
|
+
children?: ReactNode;
|
|
497
|
+
label?: ReactNode;
|
|
498
|
+
color?: "blue" | "red" | "green" | "gray" | string;
|
|
499
|
+
dot?: ReactNode;
|
|
500
|
+
position?: "left" | "right";
|
|
501
|
+
};
|
|
502
|
+
interface TimelineProps extends HTMLAttributes<HTMLUListElement> {
|
|
503
|
+
items?: readonly TimelineItem[];
|
|
504
|
+
mode?: "left" | "alternate" | "right";
|
|
505
|
+
pending?: ReactNode | boolean;
|
|
506
|
+
pendingDot?: ReactNode;
|
|
507
|
+
reverse?: boolean;
|
|
508
|
+
}
|
|
509
|
+
declare function Timeline({ items, mode, pending, pendingDot, reverse, className, ...props }: TimelineProps): react.JSX.Element;
|
|
510
|
+
type TreeKey = string | number;
|
|
511
|
+
type TreeDropPosition = "before" | "inside" | "after";
|
|
512
|
+
interface TreeNode {
|
|
513
|
+
key: TreeKey;
|
|
514
|
+
title: ReactNode;
|
|
515
|
+
prefix?: ReactNode;
|
|
516
|
+
extra?: ReactNode;
|
|
517
|
+
disabled?: boolean;
|
|
518
|
+
disableCheckbox?: boolean;
|
|
519
|
+
selectable?: boolean;
|
|
520
|
+
checkable?: boolean;
|
|
521
|
+
isLeaf?: boolean;
|
|
522
|
+
loaded?: boolean;
|
|
523
|
+
icon?: ReactNode;
|
|
524
|
+
loadingText?: ReactNode;
|
|
525
|
+
draggable?: boolean;
|
|
526
|
+
droppable?: boolean;
|
|
527
|
+
contextMenu?: DropdownMenuProps;
|
|
528
|
+
contextMenuPopupClassName?: string;
|
|
529
|
+
rowProps?: Omit<HTMLAttributes<HTMLDivElement>, "children"> & Partial<Record<`data-${string}`, string | number>>;
|
|
530
|
+
children?: readonly TreeNode[];
|
|
531
|
+
[key: string]: unknown;
|
|
532
|
+
}
|
|
533
|
+
interface TreeProps extends Omit<HTMLAttributes<HTMLDivElement>, "onSelect" | "onDrop"> {
|
|
534
|
+
treeData: readonly TreeNode[];
|
|
535
|
+
selectedKeys?: readonly TreeKey[];
|
|
536
|
+
defaultSelectedKeys?: readonly TreeKey[];
|
|
537
|
+
expandedKeys?: readonly TreeKey[];
|
|
538
|
+
defaultExpandedKeys?: readonly TreeKey[];
|
|
539
|
+
defaultExpandAll?: boolean;
|
|
540
|
+
checkedKeys?: readonly TreeKey[];
|
|
541
|
+
defaultCheckedKeys?: readonly TreeKey[];
|
|
542
|
+
loadingKeys?: readonly TreeKey[];
|
|
543
|
+
checkable?: boolean;
|
|
544
|
+
checkStrictly?: boolean;
|
|
545
|
+
multiple?: boolean;
|
|
546
|
+
selectable?: boolean;
|
|
547
|
+
showLine?: boolean;
|
|
548
|
+
showIcon?: boolean;
|
|
549
|
+
blockNode?: boolean;
|
|
550
|
+
indentSize?: number;
|
|
551
|
+
switcherWidth?: number;
|
|
552
|
+
stickyAncestors?: boolean;
|
|
553
|
+
stickyRowHeight?: number;
|
|
554
|
+
draggable?: boolean;
|
|
555
|
+
loadData?: (node: TreeNode) => void | Promise<void>;
|
|
556
|
+
onSelect?: (keys: TreeKey[], info: {
|
|
557
|
+
selected: boolean;
|
|
558
|
+
node: TreeNode;
|
|
559
|
+
nativeEvent: React.MouseEvent;
|
|
560
|
+
}) => void;
|
|
561
|
+
onCheck?: (keys: TreeKey[], info: {
|
|
562
|
+
checked: boolean;
|
|
563
|
+
node: TreeNode;
|
|
564
|
+
}) => void;
|
|
565
|
+
onExpand?: (keys: TreeKey[], info: {
|
|
566
|
+
expanded: boolean;
|
|
567
|
+
node: TreeNode;
|
|
568
|
+
}) => void;
|
|
569
|
+
onDrop?: (info: {
|
|
570
|
+
dragNode: TreeNode;
|
|
571
|
+
node: TreeNode;
|
|
572
|
+
dropPosition: TreeDropPosition;
|
|
573
|
+
}) => void;
|
|
574
|
+
}
|
|
575
|
+
declare function Tree({ treeData, selectedKeys, defaultSelectedKeys, expandedKeys, defaultExpandedKeys, defaultExpandAll, checkedKeys, defaultCheckedKeys, loadingKeys, checkable, checkStrictly, multiple, selectable, showLine, showIcon, blockNode, indentSize, switcherWidth, stickyAncestors, stickyRowHeight, draggable, loadData, onSelect, onCheck, onExpand, onDrop, className, ...props }: TreeProps): react.JSX.Element;
|
|
576
|
+
|
|
577
|
+
interface PopconfirmProps {
|
|
578
|
+
children: ReactElement;
|
|
579
|
+
title: ReactNode;
|
|
580
|
+
description?: ReactNode;
|
|
581
|
+
okText?: ReactNode;
|
|
582
|
+
cancelText?: ReactNode;
|
|
583
|
+
okButtonProps?: React.ComponentProps<typeof Button>;
|
|
584
|
+
cancelButtonProps?: React.ComponentProps<typeof Button>;
|
|
585
|
+
placement?: FloatingPlacement;
|
|
586
|
+
trigger?: "click" | "hover" | "focus";
|
|
587
|
+
open?: boolean;
|
|
588
|
+
defaultOpen?: boolean;
|
|
589
|
+
disabled?: boolean;
|
|
590
|
+
showCancel?: boolean;
|
|
591
|
+
icon?: ReactNode;
|
|
592
|
+
onConfirm?: (event?: React.MouseEvent) => void | boolean | Promise<void | boolean>;
|
|
593
|
+
onCancel?: (event?: React.MouseEvent) => void;
|
|
594
|
+
onOpenChange?: (open: boolean) => void;
|
|
595
|
+
}
|
|
596
|
+
declare function Popconfirm({ children, title, description, okText, cancelText, okButtonProps, cancelButtonProps, placement, trigger, open, defaultOpen, disabled, showCancel, icon, onConfirm, onCancel, onOpenChange, }: PopconfirmProps): react.JSX.Element;
|
|
597
|
+
type ProgressStatus = "normal" | "active" | "success" | "exception";
|
|
598
|
+
interface ProgressProps extends HTMLAttributes<HTMLDivElement> {
|
|
599
|
+
percent?: number;
|
|
600
|
+
type?: "line" | "circle" | "dashboard";
|
|
601
|
+
status?: ProgressStatus;
|
|
602
|
+
showInfo?: boolean;
|
|
603
|
+
format?: (percent?: number, successPercent?: number) => ReactNode;
|
|
604
|
+
strokeColor?: string | {
|
|
605
|
+
from: string;
|
|
606
|
+
to: string;
|
|
607
|
+
};
|
|
608
|
+
trailColor?: string;
|
|
609
|
+
strokeWidth?: number;
|
|
610
|
+
width?: number;
|
|
611
|
+
steps?: number;
|
|
612
|
+
success?: {
|
|
613
|
+
percent?: number;
|
|
614
|
+
strokeColor?: string;
|
|
615
|
+
};
|
|
616
|
+
size?: "small" | "default" | number | readonly [number, number];
|
|
617
|
+
}
|
|
618
|
+
declare function Progress({ percent, type, status, showInfo, format, strokeColor, trailColor, strokeWidth, width, steps, success, size, className, style, ...props }: ProgressProps): react.JSX.Element;
|
|
619
|
+
interface SpinProps extends HTMLAttributes<HTMLDivElement> {
|
|
620
|
+
spinning?: boolean;
|
|
621
|
+
size?: "small" | "default" | "large";
|
|
622
|
+
tip?: ReactNode;
|
|
623
|
+
indicator?: ReactNode;
|
|
624
|
+
delay?: number;
|
|
625
|
+
fullscreen?: boolean;
|
|
626
|
+
}
|
|
627
|
+
declare function Spin({ spinning, size, tip, indicator, delay, fullscreen, className, children, ...props }: SpinProps): react.JSX.Element | null;
|
|
628
|
+
interface WatermarkFont {
|
|
629
|
+
color?: string;
|
|
630
|
+
fontSize?: number;
|
|
631
|
+
fontWeight?: number | string;
|
|
632
|
+
fontFamily?: string;
|
|
633
|
+
fontStyle?: string;
|
|
634
|
+
textAlign?: CanvasTextAlign;
|
|
635
|
+
}
|
|
636
|
+
interface WatermarkProps extends Omit<HTMLAttributes<HTMLDivElement>, "content"> {
|
|
637
|
+
content?: string | readonly string[];
|
|
638
|
+
image?: string;
|
|
639
|
+
width?: number;
|
|
640
|
+
height?: number;
|
|
641
|
+
rotate?: number;
|
|
642
|
+
zIndex?: number;
|
|
643
|
+
gap?: readonly [number, number];
|
|
644
|
+
offset?: readonly [number, number];
|
|
645
|
+
font?: WatermarkFont;
|
|
646
|
+
}
|
|
647
|
+
declare function Watermark({ content, image, width, height, rotate, zIndex, gap, offset, font, className, children, ...props }: WatermarkProps): react.JSX.Element;
|
|
648
|
+
type NotificationType = "info" | "success" | "warning" | "error";
|
|
649
|
+
type NotificationPlacement = "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
|
|
650
|
+
interface NotificationConfig {
|
|
651
|
+
key?: string | number;
|
|
652
|
+
type?: NotificationType;
|
|
653
|
+
message: ReactNode;
|
|
654
|
+
description?: ReactNode;
|
|
655
|
+
duration?: number;
|
|
656
|
+
placement?: NotificationPlacement;
|
|
657
|
+
icon?: ReactNode;
|
|
658
|
+
btn?: ReactNode;
|
|
659
|
+
closeIcon?: ReactNode;
|
|
660
|
+
role?: string;
|
|
661
|
+
onClick?: () => void;
|
|
662
|
+
onClose?: () => void;
|
|
663
|
+
}
|
|
664
|
+
declare function openNotification(config: NotificationConfig): {
|
|
665
|
+
key: string | number;
|
|
666
|
+
close: () => void;
|
|
667
|
+
};
|
|
668
|
+
declare const notification: {
|
|
669
|
+
open: typeof openNotification;
|
|
670
|
+
info: (config: Omit<NotificationConfig, "type">) => {
|
|
671
|
+
key: string | number;
|
|
672
|
+
close: () => void;
|
|
673
|
+
};
|
|
674
|
+
success: (config: Omit<NotificationConfig, "type">) => {
|
|
675
|
+
key: string | number;
|
|
676
|
+
close: () => void;
|
|
677
|
+
};
|
|
678
|
+
warning: (config: Omit<NotificationConfig, "type">) => {
|
|
679
|
+
key: string | number;
|
|
680
|
+
close: () => void;
|
|
681
|
+
};
|
|
682
|
+
error: (config: Omit<NotificationConfig, "type">) => {
|
|
683
|
+
key: string | number;
|
|
684
|
+
close: () => void;
|
|
685
|
+
};
|
|
686
|
+
destroy: (key?: string | number) => void;
|
|
687
|
+
};
|
|
688
|
+
interface TourStep {
|
|
689
|
+
title?: ReactNode;
|
|
690
|
+
description?: ReactNode;
|
|
691
|
+
cover?: ReactNode;
|
|
692
|
+
target?: HTMLElement | null | (() => HTMLElement | null);
|
|
693
|
+
placement?: FloatingPlacement | "center";
|
|
694
|
+
nextButtonProps?: React.ComponentProps<typeof Button> & {
|
|
695
|
+
children?: ReactNode;
|
|
696
|
+
};
|
|
697
|
+
prevButtonProps?: React.ComponentProps<typeof Button> & {
|
|
698
|
+
children?: ReactNode;
|
|
699
|
+
};
|
|
700
|
+
}
|
|
701
|
+
interface TourProps {
|
|
702
|
+
open?: boolean;
|
|
703
|
+
steps: readonly TourStep[];
|
|
704
|
+
current?: number;
|
|
705
|
+
defaultCurrent?: number;
|
|
706
|
+
mask?: boolean;
|
|
707
|
+
closable?: boolean;
|
|
708
|
+
disabledInteraction?: boolean;
|
|
709
|
+
onChange?: (current: number) => void;
|
|
710
|
+
onClose?: (current: number) => void;
|
|
711
|
+
onFinish?: () => void;
|
|
712
|
+
}
|
|
713
|
+
declare function Tour({ open, steps, current, defaultCurrent, mask, closable, disabledInteraction, onChange, onClose, onFinish }: TourProps): react.ReactPortal | null;
|
|
714
|
+
|
|
715
|
+
interface RateProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
716
|
+
value?: number;
|
|
717
|
+
defaultValue?: number;
|
|
718
|
+
count?: number;
|
|
719
|
+
allowHalf?: boolean;
|
|
720
|
+
allowClear?: boolean;
|
|
721
|
+
disabled?: boolean;
|
|
722
|
+
character?: ReactNode | ((index: number) => ReactNode);
|
|
723
|
+
tooltips?: readonly string[];
|
|
724
|
+
onChange?: (value: number) => void;
|
|
725
|
+
onHoverChange?: (value: number) => void;
|
|
726
|
+
}
|
|
727
|
+
declare function Rate({ value, defaultValue, count, allowHalf, allowClear, disabled, character, tooltips, onChange, onHoverChange, className, ...props }: RateProps): react.JSX.Element;
|
|
728
|
+
type BadgeStatus = "success" | "processing" | "default" | "error" | "warning";
|
|
729
|
+
interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
730
|
+
count?: ReactNode;
|
|
731
|
+
showZero?: boolean;
|
|
732
|
+
overflowCount?: number;
|
|
733
|
+
dot?: boolean;
|
|
734
|
+
status?: BadgeStatus;
|
|
735
|
+
text?: ReactNode;
|
|
736
|
+
color?: string;
|
|
737
|
+
offset?: readonly [number, number];
|
|
738
|
+
size?: "default" | "small";
|
|
739
|
+
}
|
|
740
|
+
interface BadgeRibbonProps extends HTMLAttributes<HTMLDivElement> {
|
|
741
|
+
text?: ReactNode;
|
|
742
|
+
color?: string;
|
|
743
|
+
placement?: "start" | "end";
|
|
744
|
+
}
|
|
745
|
+
declare function BadgeRibbon({ text, color, placement, className, children, ...props }: BadgeRibbonProps): react.JSX.Element;
|
|
746
|
+
declare function Badge({ count, showZero, overflowCount, dot, status, text, color, offset, size, className, children, style, ...props }: BadgeProps): react.JSX.Element;
|
|
747
|
+
declare namespace Badge {
|
|
748
|
+
var Ribbon: typeof BadgeRibbon;
|
|
749
|
+
}
|
|
750
|
+
interface CalendarProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange" | "onSelect"> {
|
|
751
|
+
value?: string;
|
|
752
|
+
defaultValue?: string;
|
|
753
|
+
mode?: "month" | "year";
|
|
754
|
+
fullscreen?: boolean;
|
|
755
|
+
validRange?: readonly [string, string];
|
|
756
|
+
disabledDate?: (date: string) => boolean;
|
|
757
|
+
dateCellRender?: (date: string) => ReactNode;
|
|
758
|
+
fullCellRender?: (date: string, info: {
|
|
759
|
+
originNode: ReactNode;
|
|
760
|
+
type: "date";
|
|
761
|
+
}) => ReactNode;
|
|
762
|
+
headerRender?: (config: {
|
|
763
|
+
value: string;
|
|
764
|
+
mode: "month" | "year";
|
|
765
|
+
onChange: (value: string) => void;
|
|
766
|
+
onTypeChange: (mode: "month" | "year") => void;
|
|
767
|
+
}) => ReactNode;
|
|
768
|
+
onChange?: (date: string) => void;
|
|
769
|
+
onSelect?: (date: string) => void;
|
|
770
|
+
onPanelChange?: (date: string, mode: "month" | "year") => void;
|
|
771
|
+
}
|
|
772
|
+
declare function Calendar({ value, defaultValue, mode, fullscreen, validRange, disabledDate, dateCellRender, fullCellRender, headerRender, onChange, onSelect, onPanelChange, className, ...props }: CalendarProps): react.JSX.Element;
|
|
773
|
+
interface CarouselRef {
|
|
774
|
+
goTo: (slide: number) => void;
|
|
775
|
+
next: () => void;
|
|
776
|
+
prev: () => void;
|
|
777
|
+
}
|
|
778
|
+
interface CarouselProps extends HTMLAttributes<HTMLDivElement> {
|
|
779
|
+
autoplay?: boolean | {
|
|
780
|
+
dotDuration?: boolean;
|
|
781
|
+
};
|
|
782
|
+
autoplaySpeed?: number;
|
|
783
|
+
arrows?: boolean;
|
|
784
|
+
dots?: boolean | {
|
|
785
|
+
className?: string;
|
|
786
|
+
};
|
|
787
|
+
effect?: "scroll" | "fade";
|
|
788
|
+
infinite?: boolean;
|
|
789
|
+
initialSlide?: number;
|
|
790
|
+
pauseOnHover?: boolean;
|
|
791
|
+
beforeChange?: (current: number, next: number) => void;
|
|
792
|
+
afterChange?: (current: number) => void;
|
|
793
|
+
}
|
|
794
|
+
declare function Carousel({ autoplay, autoplaySpeed, arrows, dots, effect, infinite, initialSlide, pauseOnHover, beforeChange, afterChange, className, children, ...props }: CarouselProps): react.JSX.Element;
|
|
795
|
+
type CollapseKey = string | number;
|
|
796
|
+
type CollapseItem = {
|
|
797
|
+
key: CollapseKey;
|
|
798
|
+
label: ReactNode;
|
|
799
|
+
children?: ReactNode;
|
|
800
|
+
extra?: ReactNode;
|
|
801
|
+
disabled?: boolean;
|
|
802
|
+
collapsible?: "header" | "icon" | "disabled";
|
|
803
|
+
showArrow?: boolean;
|
|
804
|
+
forceRender?: boolean;
|
|
805
|
+
className?: string;
|
|
806
|
+
};
|
|
807
|
+
interface CollapseProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
808
|
+
items: readonly CollapseItem[];
|
|
809
|
+
activeKey?: CollapseKey | readonly CollapseKey[];
|
|
810
|
+
defaultActiveKey?: CollapseKey | readonly CollapseKey[];
|
|
811
|
+
accordion?: boolean;
|
|
812
|
+
bordered?: boolean;
|
|
813
|
+
ghost?: boolean;
|
|
814
|
+
destroyInactivePanel?: boolean;
|
|
815
|
+
expandIconPosition?: "start" | "end";
|
|
816
|
+
onChange?: (key: CollapseKey | CollapseKey[]) => void;
|
|
817
|
+
}
|
|
818
|
+
declare function Collapse({ items, activeKey, defaultActiveKey, accordion, bordered, ghost, destroyInactivePanel, expandIconPosition, onChange, className, ...props }: CollapseProps): react.JSX.Element;
|
|
819
|
+
interface ImagePreviewProps {
|
|
820
|
+
open: boolean;
|
|
821
|
+
src?: string;
|
|
822
|
+
alt?: string;
|
|
823
|
+
onOpenChange: (open: boolean) => void;
|
|
824
|
+
}
|
|
825
|
+
declare function ImagePreview({ open, src, alt, onOpenChange }: ImagePreviewProps): react.ReactPortal | null;
|
|
826
|
+
interface ImagePreviewConfig {
|
|
827
|
+
src?: string;
|
|
828
|
+
open?: boolean;
|
|
829
|
+
onOpenChange?: (open: boolean) => void;
|
|
830
|
+
mask?: ReactNode;
|
|
831
|
+
}
|
|
832
|
+
interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
833
|
+
fallback?: string;
|
|
834
|
+
placeholder?: ReactNode;
|
|
835
|
+
preview?: boolean | ImagePreviewConfig;
|
|
836
|
+
rootClassName?: string;
|
|
837
|
+
}
|
|
838
|
+
declare function Image({ fallback, placeholder, preview, rootClassName, className, src, alt, onError, style, ...props }: ImageProps): react.JSX.Element;
|
|
839
|
+
|
|
840
|
+
interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "prefix" | "size"> {
|
|
841
|
+
label?: ReactNode;
|
|
842
|
+
hint?: ReactNode;
|
|
843
|
+
status?: ControlStatus;
|
|
844
|
+
size?: ControlSize;
|
|
845
|
+
prefix?: ReactNode;
|
|
846
|
+
suffix?: ReactNode;
|
|
847
|
+
allowClear?: boolean;
|
|
848
|
+
onClear?: () => void;
|
|
849
|
+
showCount?: boolean;
|
|
850
|
+
placeholderMode?: InputPlaceholderMode;
|
|
851
|
+
}
|
|
852
|
+
declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
853
|
+
|
|
854
|
+
declare const LIST_IGNORE: unique symbol;
|
|
855
|
+
type UploadFileStatus = "ready" | "uploading" | "done" | "error";
|
|
856
|
+
interface UploadFile {
|
|
857
|
+
uid: string;
|
|
858
|
+
name: string;
|
|
859
|
+
size?: number;
|
|
860
|
+
type?: string;
|
|
861
|
+
status?: UploadFileStatus;
|
|
862
|
+
percent?: number;
|
|
863
|
+
url?: string;
|
|
864
|
+
response?: unknown;
|
|
865
|
+
error?: unknown;
|
|
866
|
+
originFileObj?: File;
|
|
867
|
+
}
|
|
868
|
+
interface UploadRequestOptions {
|
|
869
|
+
file: File;
|
|
870
|
+
filename: string;
|
|
871
|
+
onProgress: (percent: number) => void;
|
|
872
|
+
onSuccess: (response?: unknown) => void;
|
|
873
|
+
onError: (error: unknown) => void;
|
|
874
|
+
}
|
|
875
|
+
interface UploadChangeInfo {
|
|
876
|
+
file: UploadFile;
|
|
877
|
+
fileList: readonly UploadFile[];
|
|
878
|
+
}
|
|
879
|
+
interface UploadProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
880
|
+
accept?: string;
|
|
881
|
+
multiple?: boolean;
|
|
882
|
+
directory?: boolean;
|
|
883
|
+
disabled?: boolean;
|
|
884
|
+
maxCount?: number;
|
|
885
|
+
fileList?: readonly UploadFile[];
|
|
886
|
+
defaultFileList?: readonly UploadFile[];
|
|
887
|
+
listType?: "text" | "picture" | "picture-card";
|
|
888
|
+
showUploadList?: boolean;
|
|
889
|
+
beforeUpload?: (file: File, fileList: readonly File[]) => boolean | File | typeof LIST_IGNORE | Promise<boolean | File | typeof LIST_IGNORE>;
|
|
890
|
+
customRequest?: (options: UploadRequestOptions) => void | {
|
|
891
|
+
abort?: () => void;
|
|
892
|
+
};
|
|
893
|
+
onChange?: (info: UploadChangeInfo) => void;
|
|
894
|
+
onRemove?: (file: UploadFile) => boolean | Promise<boolean>;
|
|
895
|
+
children?: ReactNode;
|
|
896
|
+
}
|
|
897
|
+
interface UploadDraggerProps extends UploadProps {
|
|
898
|
+
hint?: ReactNode;
|
|
899
|
+
}
|
|
900
|
+
declare function UploadRoot({ accept, multiple, directory, disabled, maxCount, fileList, defaultFileList, listType, showUploadList, beforeUpload, customRequest, onChange, onRemove, children, className, onDragOver, onDrop, ...props }: UploadProps): react.JSX.Element;
|
|
901
|
+
declare function UploadDragger({ hint, children, className, ...props }: UploadDraggerProps): react.JSX.Element;
|
|
902
|
+
declare const Upload: typeof UploadRoot & {
|
|
903
|
+
Dragger: typeof UploadDragger;
|
|
904
|
+
LIST_IGNORE: symbol;
|
|
905
|
+
};
|
|
906
|
+
|
|
907
|
+
type OverlayContainer = HTMLElement | (() => HTMLElement);
|
|
908
|
+
|
|
909
|
+
type ModalType = "default" | "info" | "success" | "warning" | "error" | "confirm";
|
|
910
|
+
type ModalActionResult = void | boolean | Promise<void | boolean>;
|
|
911
|
+
interface ModalProps extends Omit<HTMLAttributes<HTMLDivElement>, "title" | "onSubmit"> {
|
|
912
|
+
open: boolean;
|
|
913
|
+
title?: ReactNode;
|
|
914
|
+
children?: ReactNode;
|
|
915
|
+
footer?: ReactNode | null;
|
|
916
|
+
type?: ModalType;
|
|
917
|
+
okText?: ReactNode;
|
|
918
|
+
cancelText?: ReactNode;
|
|
919
|
+
showCancel?: boolean;
|
|
920
|
+
confirmLoading?: boolean;
|
|
921
|
+
okButtonProps?: ButtonProps;
|
|
922
|
+
cancelButtonProps?: ButtonProps;
|
|
923
|
+
closable?: boolean;
|
|
924
|
+
maskClosable?: boolean;
|
|
925
|
+
keyboard?: boolean;
|
|
926
|
+
centered?: boolean;
|
|
927
|
+
width?: number | string;
|
|
928
|
+
zIndex?: number;
|
|
929
|
+
getContainer?: OverlayContainer;
|
|
930
|
+
onOk?: () => ModalActionResult;
|
|
931
|
+
onCancel?: () => void;
|
|
932
|
+
onOpenChange?: (open: boolean) => void;
|
|
933
|
+
}
|
|
934
|
+
interface ModalOpenConfig extends Omit<ModalProps, "open"> {
|
|
935
|
+
}
|
|
936
|
+
interface OverlayApiHandle<T> {
|
|
937
|
+
destroy: () => void;
|
|
938
|
+
update: (next: Partial<T>) => void;
|
|
939
|
+
}
|
|
940
|
+
declare function openModal(config: ModalOpenConfig): OverlayApiHandle<ModalOpenConfig>;
|
|
941
|
+
declare const Modal: react.ForwardRefExoticComponent<ModalProps & react.RefAttributes<HTMLDivElement>> & {
|
|
942
|
+
open: typeof openModal;
|
|
943
|
+
info: (config: ModalOpenConfig) => OverlayApiHandle<ModalOpenConfig>;
|
|
944
|
+
success: (config: ModalOpenConfig) => OverlayApiHandle<ModalOpenConfig>;
|
|
945
|
+
warning: (config: ModalOpenConfig) => OverlayApiHandle<ModalOpenConfig>;
|
|
946
|
+
error: (config: ModalOpenConfig) => OverlayApiHandle<ModalOpenConfig>;
|
|
947
|
+
confirm: (config: ModalOpenConfig) => OverlayApiHandle<ModalOpenConfig>;
|
|
948
|
+
destroyAll(): void;
|
|
949
|
+
};
|
|
950
|
+
|
|
951
|
+
type MessageType = "info" | "success" | "warning" | "error" | "loading";
|
|
952
|
+
type MessageKey = string | number;
|
|
953
|
+
interface MessageConfig {
|
|
954
|
+
key?: MessageKey;
|
|
955
|
+
type?: MessageType;
|
|
956
|
+
content: ReactNode;
|
|
957
|
+
duration?: number;
|
|
958
|
+
closable?: boolean;
|
|
959
|
+
onClose?: () => void;
|
|
960
|
+
}
|
|
961
|
+
interface MessageHandle {
|
|
962
|
+
close: () => void;
|
|
963
|
+
update: (next: Partial<MessageConfig>) => void;
|
|
964
|
+
}
|
|
965
|
+
declare function openMessage(input: ReactNode | MessageConfig): MessageHandle;
|
|
966
|
+
declare const message: {
|
|
967
|
+
open: typeof openMessage;
|
|
968
|
+
info: (content: ReactNode, duration?: number) => MessageHandle;
|
|
969
|
+
success: (content: ReactNode, duration?: number) => MessageHandle;
|
|
970
|
+
warning: (content: ReactNode, duration?: number) => MessageHandle;
|
|
971
|
+
error: (content: ReactNode, duration?: number) => MessageHandle;
|
|
972
|
+
loading: (content: ReactNode, duration?: number) => MessageHandle;
|
|
973
|
+
destroy(key?: MessageKey): void;
|
|
974
|
+
config(config: {
|
|
975
|
+
duration?: number;
|
|
976
|
+
maxCount?: number;
|
|
977
|
+
}): void;
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
interface BreadcrumbItem {
|
|
981
|
+
key?: string;
|
|
982
|
+
title: ReactNode;
|
|
983
|
+
icon?: ReactNode;
|
|
984
|
+
href?: string;
|
|
985
|
+
target?: string;
|
|
986
|
+
disabled?: boolean;
|
|
987
|
+
onClick?: MouseEventHandler<HTMLElement>;
|
|
988
|
+
/** 覆盖当前项后方的分隔符,null 可隐藏分隔符。 */
|
|
989
|
+
separator?: ReactNode;
|
|
990
|
+
menu?: DropdownMenuProps;
|
|
991
|
+
}
|
|
992
|
+
interface BreadcrumbProps extends HTMLAttributes<HTMLElement> {
|
|
993
|
+
items: readonly BreadcrumbItem[];
|
|
994
|
+
separator?: ReactNode;
|
|
995
|
+
itemRender?: (item: BreadcrumbItem, index: number, items: readonly BreadcrumbItem[]) => ReactNode;
|
|
996
|
+
}
|
|
997
|
+
declare function Breadcrumb({ items, separator, itemRender, className, ...props }: BreadcrumbProps): react.JSX.Element;
|
|
998
|
+
|
|
999
|
+
type TypographyType = "secondary" | "success" | "warning" | "danger";
|
|
1000
|
+
interface TypographyProps extends HTMLAttributes<HTMLElement> {
|
|
1001
|
+
type?: TypographyType;
|
|
1002
|
+
disabled?: boolean;
|
|
1003
|
+
strong?: boolean;
|
|
1004
|
+
italic?: boolean;
|
|
1005
|
+
underline?: boolean;
|
|
1006
|
+
delete?: boolean;
|
|
1007
|
+
mark?: boolean;
|
|
1008
|
+
code?: boolean;
|
|
1009
|
+
keyboard?: boolean;
|
|
1010
|
+
copyable?: boolean | {
|
|
1011
|
+
text?: string;
|
|
1012
|
+
onCopy?: () => void;
|
|
1013
|
+
};
|
|
1014
|
+
editable?: boolean | {
|
|
1015
|
+
text?: string;
|
|
1016
|
+
onChange?: (text: string) => void;
|
|
1017
|
+
maxLength?: number;
|
|
1018
|
+
};
|
|
1019
|
+
ellipsis?: boolean | {
|
|
1020
|
+
rows?: number;
|
|
1021
|
+
expandable?: boolean;
|
|
1022
|
+
};
|
|
1023
|
+
}
|
|
1024
|
+
interface TypographyTitleProps extends TypographyProps {
|
|
1025
|
+
level?: 1 | 2 | 3 | 4 | 5;
|
|
1026
|
+
}
|
|
1027
|
+
interface TypographyLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1028
|
+
disabled?: boolean;
|
|
1029
|
+
}
|
|
1030
|
+
declare function Title({ level, ...props }: TypographyTitleProps): react.JSX.Element;
|
|
1031
|
+
declare function Text(props: TypographyProps): react.JSX.Element;
|
|
1032
|
+
declare function Paragraph(props: TypographyProps): react.JSX.Element;
|
|
1033
|
+
declare function Link({ disabled, className, onClick, href, target, rel, ...props }: TypographyLinkProps): react.JSX.Element;
|
|
1034
|
+
declare function TypographyRoot({ className, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
|
|
1035
|
+
declare const Typography: typeof TypographyRoot & {
|
|
1036
|
+
Title: typeof Title;
|
|
1037
|
+
Text: typeof Text;
|
|
1038
|
+
Paragraph: typeof Paragraph;
|
|
1039
|
+
Link: typeof Link;
|
|
1040
|
+
};
|
|
1041
|
+
|
|
1042
|
+
type FloatButtonShape = "circle" | "square";
|
|
1043
|
+
interface FloatButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "type" | "content"> {
|
|
1044
|
+
icon?: ReactNode;
|
|
1045
|
+
description?: ReactNode;
|
|
1046
|
+
tooltip?: ReactNode;
|
|
1047
|
+
type?: "default" | "primary";
|
|
1048
|
+
shape?: FloatButtonShape;
|
|
1049
|
+
badge?: Pick<BadgeProps, "count" | "dot" | "overflowCount" | "showZero" | "color">;
|
|
1050
|
+
htmlType?: "button" | "submit" | "reset";
|
|
1051
|
+
}
|
|
1052
|
+
interface FloatButtonGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
1053
|
+
shape?: FloatButtonShape;
|
|
1054
|
+
type?: "default" | "primary";
|
|
1055
|
+
icon?: ReactNode;
|
|
1056
|
+
closeIcon?: ReactNode;
|
|
1057
|
+
tooltip?: ReactNode;
|
|
1058
|
+
trigger?: "click" | "hover";
|
|
1059
|
+
placement?: "top" | "bottom" | "left" | "right";
|
|
1060
|
+
open?: boolean;
|
|
1061
|
+
defaultOpen?: boolean;
|
|
1062
|
+
onOpenChange?: (open: boolean) => void;
|
|
1063
|
+
}
|
|
1064
|
+
declare function FloatButtonGroup({ shape, type, icon, closeIcon, tooltip, trigger, placement, open, defaultOpen, onOpenChange, children, className, onMouseEnter, onMouseLeave, onKeyDown, onBlur, ...props }: FloatButtonGroupProps): react.JSX.Element;
|
|
1065
|
+
interface FloatButtonBackTopProps extends FloatButtonProps {
|
|
1066
|
+
target?: () => HTMLElement | Window | null;
|
|
1067
|
+
visibilityHeight?: number;
|
|
1068
|
+
behavior?: ScrollBehavior;
|
|
1069
|
+
}
|
|
1070
|
+
declare function FloatButtonBackTop({ target, visibilityHeight, behavior, onClick, icon, tooltip, ...props }: FloatButtonBackTopProps): react.JSX.Element | null;
|
|
1071
|
+
declare const FloatButton: react.ForwardRefExoticComponent<FloatButtonProps & react.RefAttributes<HTMLButtonElement>> & {
|
|
1072
|
+
Group: typeof FloatButtonGroup;
|
|
1073
|
+
BackTop: typeof FloatButtonBackTop;
|
|
1074
|
+
};
|
|
1075
|
+
|
|
1076
|
+
export { Menu as $, type DropdownProps as A, Badge as B, Calendar as C, Dropdown as D, type DropdownTrigger as E, FILLED_ICON_NAMES as F, type FilledIconName as G, FloatButton as H, type FloatButtonBackTopProps as I, type FloatButtonGroupProps as J, type FloatButtonProps as K, type FloatButtonShape as L, type FloatingPlacement as M, type FloatingTrigger as N, type OverlayContainer as O, ICON_NAMES as P, Icon as Q, type IconName as R, type IconProps as S, type IconVariant as T, Image as U, ImagePreview as V, type ImagePreviewConfig as W, type ImagePreviewProps as X, type ImageProps as Y, Input as Z, type InputProps as _, type OverlayApiHandle as a, type TypographyTitleProps as a$, type MenuClickInfo as a0, type MenuItem as a1, type MenuMode as a2, type MenuProps as a3, type MenuTheme as a4, type MessageConfig as a5, type MessageHandle as a6, type MessageKey as a7, type MessageType as a8, Modal as a9, type TabItem as aA, Tabs as aB, type TabsContextMenuClickInfo as aC, type TabsOrientation as aD, type TabsPosition as aE, type TabsProps as aF, type TabsType as aG, Tag as aH, type TagProps as aI, type TagStatus as aJ, type TagVariant as aK, Timeline as aL, type TimelineItem as aM, type TimelineProps as aN, Tooltip as aO, type TooltipProps as aP, Tour as aQ, type TourProps as aR, type TourStep as aS, Tree as aT, type TreeDropPosition as aU, type TreeKey as aV, type TreeNode as aW, type TreeProps as aX, Typography as aY, type TypographyLinkProps as aZ, type TypographyProps as a_, type ModalActionResult as aa, type ModalOpenConfig as ab, type ModalProps as ac, type ModalType as ad, type NotificationConfig as ae, type NotificationPlacement as af, type NotificationType as ag, Popconfirm as ah, type PopconfirmProps as ai, Popover as aj, type PopoverProps as ak, Progress as al, type ProgressProps as am, type ProgressStatus as an, Rate as ao, type RateProps as ap, Segmented as aq, type SegmentedOption as ar, type SegmentedProps as as, type SegmentedValue as at, Spin as au, type SpinProps as av, type StepItem as aw, type StepStatus as ax, Steps as ay, type StepsProps as az, type BadgeProps as b, type TypographyType as b0, Upload as b1, type UploadChangeInfo as b2, type UploadDraggerProps as b3, type UploadFile as b4, type UploadFileStatus as b5, type UploadProps as b6, type UploadRequestOptions as b7, Watermark as b8, type WatermarkFont as b9, type WatermarkProps as ba, message as bb, notification as bc, type BadgeRibbonProps as c, type BadgeStatus as d, Breadcrumb as e, type BreadcrumbItem as f, type BreadcrumbProps as g, Button as h, type ButtonProps as i, type ButtonSize as j, type ButtonVariant as k, type CalendarProps as l, Card as m, type CardAccent as n, type CardProps as o, Carousel as p, type CarouselProps as q, type CarouselRef as r, Collapse as s, type CollapseItem as t, type CollapseKey as u, type CollapseProps as v, type DropdownButtonProps as w, type DropdownMenuProps as x, type DropdownOpenSource as y, type DropdownPlacement as z };
|