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