@sia.soul/sia-react-ui 0.1.23 → 0.1.25
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-BoVx-D0D.d.ts → Select-O_yY51vc.d.ts} +4 -2
- package/dist/{Select-BO3VyE2n.d.cts → Select-W_xpkpOW.d.cts} +4 -2
- package/dist/chart.cjs +1401 -1160
- package/dist/chart.css +21 -0
- package/dist/chart.js +4 -4
- package/dist/{chunk-KLI65JVD.js → chunk-27ZYAKII.js} +68 -186
- package/dist/{chunk-TZGUBGA4.js → chunk-IYNS423D.js} +4 -3
- package/dist/{chunk-GM47DAAN.js → chunk-IYO2JSGQ.js} +8 -7
- package/dist/{chunk-QJ4OQNQ4.js → chunk-PXHBIRQW.js} +4 -3
- package/dist/{chunk-VX2JECOU.js → chunk-QCBKT5FV.js} +20 -16
- package/dist/chunk-RAO3JHDL.js +284 -0
- package/dist/{chunk-RWGSZW32.js → chunk-RWODH2LW.js} +7 -6
- package/dist/{chunk-OKP4DIQH.js → chunk-TZROBD65.js} +29 -26
- package/dist/{chunk-NPB33IXJ.js → chunk-W52CNNWW.js} +349 -278
- package/dist/{chunk-YT6E3X2K.js → chunk-YQDHCORW.js} +4 -3
- package/dist/{core-Cqgl6Z7h.d.ts → core-BOzLwiXG.d.ts} +44 -5
- package/dist/{core-DF0pknX6.d.cts → core-tbb9ZiBY.d.cts} +44 -5
- package/dist/core.cjs +1637 -1443
- package/dist/core.css +53 -0
- package/dist/core.d.cts +2 -2
- package/dist/core.d.ts +2 -2
- package/dist/core.js +8 -6
- package/dist/index.cjs +3797 -3583
- package/dist/index.css +53 -0
- package/dist/index.d.cts +36 -17
- package/dist/index.d.ts +36 -17
- package/dist/index.js +104 -83
- package/dist/markdown-editor.cjs +269 -28
- package/dist/markdown-editor.css +20 -0
- package/dist/markdown-editor.js +2 -2
- package/dist/rich-text-editor.cjs +1156 -1031
- package/dist/rich-text-editor.css +20 -0
- package/dist/rich-text-editor.js +4 -4
- package/dist/{select-date-range-a6nzK7Wu.d.ts → select-date-range-BjqFUeU6.d.ts} +1 -1
- package/dist/{select-date-range-IOe6MMqu.d.cts → select-date-range-C9w8z3G8.d.cts} +1 -1
- package/dist/select-date-range.cjs +1188 -1059
- package/dist/select-date-range.css +20 -0
- package/dist/select-date-range.d.cts +2 -2
- package/dist/select-date-range.d.ts +2 -2
- package/dist/select-date-range.js +5 -5
- package/package.json +2 -2
- package/dist/chunk-3VJ4CZDQ.js +0 -43
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useControlSize,
|
|
3
|
-
useFloatingPlaceholder
|
|
4
|
-
|
|
3
|
+
useFloatingPlaceholder,
|
|
4
|
+
withTitleTooltip
|
|
5
|
+
} from "./chunk-RAO3JHDL.js";
|
|
5
6
|
|
|
6
7
|
// src/components/TextArea.tsx
|
|
7
8
|
import { forwardRef, useId, useState } from "react";
|
|
@@ -39,7 +40,7 @@ var TextArea = forwardRef(function TextArea2({
|
|
|
39
40
|
/* @__PURE__ */ jsx(
|
|
40
41
|
"textarea",
|
|
41
42
|
{
|
|
42
|
-
...props,
|
|
43
|
+
...withTitleTooltip(props),
|
|
43
44
|
ref,
|
|
44
45
|
id: textAreaId,
|
|
45
46
|
className: "sia-textarea",
|
|
@@ -1,8 +1,47 @@
|
|
|
1
|
-
import { B as ButtonProps, f as Button } from './Select-BoVx-D0D.js';
|
|
2
1
|
import * as react from 'react';
|
|
3
|
-
import {
|
|
2
|
+
import { ReactNode, HTMLAttributes, CSSProperties, MouseEvent, ReactElement, ImgHTMLAttributes, InputHTMLAttributes, MouseEventHandler, AnchorHTMLAttributes, ButtonHTMLAttributes } from 'react';
|
|
3
|
+
import { B as ButtonProps, f as Button } from './Select-O_yY51vc.js';
|
|
4
4
|
import { C as ControlSize, a as ControlStatus, I as InputPlaceholderMode } from './shared-Bx4B28Wh.js';
|
|
5
5
|
|
|
6
|
+
/** 单个工具栏操作及其下拉菜单。 */
|
|
7
|
+
interface ToolbarItem {
|
|
8
|
+
/** 操作唯一标识,点击后由 onAction 返回。 */
|
|
9
|
+
key: string;
|
|
10
|
+
/** 按钮与溢出菜单共用的文案。 */
|
|
11
|
+
label: ReactNode;
|
|
12
|
+
/** 按钮与菜单图标。 */
|
|
13
|
+
icon?: ReactNode;
|
|
14
|
+
/** 禁用该操作及其下级操作。 */
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
/** 主按钮的等待状态,等待期间不可再次触发。 */
|
|
17
|
+
loading?: boolean;
|
|
18
|
+
/** 危险操作样式。 */
|
|
19
|
+
danger?: boolean;
|
|
20
|
+
/** 完全隐藏该操作,不占宽度,也不进入溢出菜单。 */
|
|
21
|
+
hidden?: boolean;
|
|
22
|
+
/** 下拉操作;split 为 true 时主按钮和下拉箭头可分别操作。 */
|
|
23
|
+
children?: readonly ToolbarItem[];
|
|
24
|
+
/** 使用独立的主操作按钮和下拉箭头。 */
|
|
25
|
+
split?: boolean;
|
|
26
|
+
}
|
|
27
|
+
/** 单行自适应工具栏的配置。 */
|
|
28
|
+
interface ToolbarProps {
|
|
29
|
+
/** 按展示顺序排列的操作配置。 */
|
|
30
|
+
items: readonly ToolbarItem[];
|
|
31
|
+
/** 业务处理回调;异步状态由调用方通过 loading/disabled 控制。 */
|
|
32
|
+
onAction?: (key: string) => void | Promise<void>;
|
|
33
|
+
/** 禁用全部操作。 */
|
|
34
|
+
disabled?: boolean;
|
|
35
|
+
/** 按钮尺寸,默认 small。 */
|
|
36
|
+
size?: ButtonProps["size"];
|
|
37
|
+
/** 按钮样式,默认 link。 */
|
|
38
|
+
variant?: ButtonProps["variant"];
|
|
39
|
+
/** 溢出入口的无障碍名称与提示,默认“更多操作”。 */
|
|
40
|
+
overflowLabel?: string;
|
|
41
|
+
}
|
|
42
|
+
/** 单行操作栏;宽度不足时按原顺序将尾部操作收纳到 hover 菜单。 */
|
|
43
|
+
declare function Toolbar({ items, onAction, disabled, size, variant, overflowLabel }: ToolbarProps): react.JSX.Element;
|
|
44
|
+
|
|
6
45
|
/** 卡片强调装饰的显示方式。 */
|
|
7
46
|
type CardAccent = "primary" | "success" | "warning" | "error";
|
|
8
47
|
/** 卡片的属性配置。 */
|
|
@@ -259,7 +298,7 @@ declare const iconPaths: {
|
|
|
259
298
|
/** 可用的线框图标名称。 */
|
|
260
299
|
type IconName = keyof typeof iconPaths;
|
|
261
300
|
/** 可用线框图标名称集合。 */
|
|
262
|
-
declare const ICON_NAMES: readonly ("
|
|
301
|
+
declare const ICON_NAMES: readonly ("search" | "bold" | "link" | "copy" | "move" | "zoom-in" | "zoom-out" | "table" | "italic" | "underline" | "menu" | "send" | "close" | "pause" | "play" | "message" | "code" | "video" | "filter" | "image" | "stop" | "warning" | "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" | "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" | "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" | "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" | "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" | "sort-ascending" | "sort-descending" | "book" | "component" | "token" | "sun" | "moon" | "github")[];
|
|
263
302
|
declare const filledIconPaths: {
|
|
264
303
|
info: react.JSX.Element;
|
|
265
304
|
question: react.JSX.Element;
|
|
@@ -295,7 +334,7 @@ type FilledIconName = keyof typeof filledIconPaths;
|
|
|
295
334
|
/** 图标采用线框还是填充样式。 */
|
|
296
335
|
type IconVariant = "outline" | "filled";
|
|
297
336
|
/** 可用填充图标名称集合。 */
|
|
298
|
-
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" | "
|
|
337
|
+
declare const FILLED_ICON_NAMES: readonly ("pause" | "play" | "filter" | "image" | "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" | "book" | "component" | "token")[];
|
|
299
338
|
/** 图标的属性配置。 */
|
|
300
339
|
interface IconProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
301
340
|
/** 名称或字段标识。 */
|
|
@@ -2128,4 +2167,4 @@ declare const FloatButton: react.ForwardRefExoticComponent<FloatButtonProps & re
|
|
|
2128
2167
|
BackTop: typeof FloatButtonBackTop;
|
|
2129
2168
|
};
|
|
2130
2169
|
|
|
2131
|
-
export { type MenuTheme as $, type FloatButtonGroupProps as A, type BadgeProps as B, Calendar as C, Dropdown as D, type FloatButtonProps as E, FILLED_ICON_NAMES as F, type FloatButtonShape as G, type FloatingPlacement as H, type FloatingTrigger as I, ICON_NAMES as J, Icon as K, type IconName as L, type IconProps as M, type IconVariant as N, Image as O, ImagePreview as P, type ImagePreviewConfig as Q, type ImagePreviewProps as R, type ImageProps as S, type TagStatus as T, Input as U, type InputProps as V, Menu as W, type MenuClickInfo as X, type MenuItem as Y, type MenuMode as Z, type MenuProps as _, Badge as a, type
|
|
2170
|
+
export { type MenuTheme as $, type FloatButtonGroupProps as A, type BadgeProps as B, Calendar as C, Dropdown as D, type FloatButtonProps as E, FILLED_ICON_NAMES as F, type FloatButtonShape as G, type FloatingPlacement as H, type FloatingTrigger as I, ICON_NAMES as J, Icon as K, type IconName as L, type IconProps as M, type IconVariant as N, Image as O, ImagePreview as P, type ImagePreviewConfig as Q, type ImagePreviewProps as R, type ImageProps as S, type TagStatus as T, Input as U, type InputProps as V, Menu as W, type MenuClickInfo as X, type MenuItem as Y, type MenuMode as Z, type MenuProps as _, Badge as a, type UploadRequestOptions as a$, type MessageConfig as a0, type MessageHandle as a1, type MessageKey as a2, type MessageType as a3, type NotificationConfig as a4, type NotificationPlacement as a5, type NotificationType as a6, Popconfirm as a7, type PopconfirmProps as a8, Popover as a9, Timeline as aA, type TimelineItem as aB, type TimelineProps as aC, Toolbar as aD, type ToolbarItem as aE, type ToolbarProps as aF, Tooltip as aG, type TooltipProps as aH, Tour as aI, type TourProps as aJ, type TourStep as aK, Tree as aL, type TreeDropPosition as aM, type TreeKey as aN, type TreeNode as aO, type TreeProps as aP, Typography as aQ, type TypographyLinkProps as aR, type TypographyProps as aS, type TypographyTitleProps as aT, type TypographyType as aU, Upload as aV, type UploadChangeInfo as aW, type UploadDraggerProps as aX, type UploadFile as aY, type UploadFileStatus as aZ, type UploadProps as a_, type PopoverProps as aa, Progress as ab, type ProgressProps as ac, type ProgressStatus as ad, Rate as ae, type RateProps as af, Segmented as ag, type SegmentedOption as ah, type SegmentedProps as ai, type SegmentedValue as aj, Spin as ak, type SpinProps as al, type StepItem as am, type StepStatus as an, Steps as ao, type StepsProps as ap, type TabItem as aq, Tabs as ar, type TabsContextMenuClickInfo as as, type TabsOrientation as at, type TabsPosition as au, type TabsProps as av, type TabsType as aw, Tag as ax, type TagProps as ay, type TagVariant as az, type BadgeRibbonProps as b, Watermark as b0, type WatermarkFont as b1, type WatermarkProps as b2, message as b3, notification as b4, type BadgeStatus as c, Breadcrumb as d, type BreadcrumbItem as e, type BreadcrumbProps as f, type CalendarProps as g, Card as h, type CardAccent as i, type CardProps as j, Carousel as k, type CarouselProps as l, type CarouselRef as m, Collapse as n, type CollapseItem as o, type CollapseKey as p, type CollapseProps as q, type DropdownButtonProps as r, type DropdownMenuProps as s, type DropdownOpenSource as t, type DropdownPlacement as u, type DropdownProps as v, type DropdownTrigger as w, type FilledIconName as x, FloatButton as y, type FloatButtonBackTopProps as z };
|
|
@@ -1,8 +1,47 @@
|
|
|
1
|
-
import { B as ButtonProps, f as Button } from './Select-BO3VyE2n.cjs';
|
|
2
1
|
import * as react from 'react';
|
|
3
|
-
import {
|
|
2
|
+
import { ReactNode, HTMLAttributes, CSSProperties, MouseEvent, ReactElement, ImgHTMLAttributes, InputHTMLAttributes, MouseEventHandler, AnchorHTMLAttributes, ButtonHTMLAttributes } from 'react';
|
|
3
|
+
import { B as ButtonProps, f as Button } from './Select-W_xpkpOW.cjs';
|
|
4
4
|
import { C as ControlSize, a as ControlStatus, I as InputPlaceholderMode } from './shared-Bx4B28Wh.cjs';
|
|
5
5
|
|
|
6
|
+
/** 单个工具栏操作及其下拉菜单。 */
|
|
7
|
+
interface ToolbarItem {
|
|
8
|
+
/** 操作唯一标识,点击后由 onAction 返回。 */
|
|
9
|
+
key: string;
|
|
10
|
+
/** 按钮与溢出菜单共用的文案。 */
|
|
11
|
+
label: ReactNode;
|
|
12
|
+
/** 按钮与菜单图标。 */
|
|
13
|
+
icon?: ReactNode;
|
|
14
|
+
/** 禁用该操作及其下级操作。 */
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
/** 主按钮的等待状态,等待期间不可再次触发。 */
|
|
17
|
+
loading?: boolean;
|
|
18
|
+
/** 危险操作样式。 */
|
|
19
|
+
danger?: boolean;
|
|
20
|
+
/** 完全隐藏该操作,不占宽度,也不进入溢出菜单。 */
|
|
21
|
+
hidden?: boolean;
|
|
22
|
+
/** 下拉操作;split 为 true 时主按钮和下拉箭头可分别操作。 */
|
|
23
|
+
children?: readonly ToolbarItem[];
|
|
24
|
+
/** 使用独立的主操作按钮和下拉箭头。 */
|
|
25
|
+
split?: boolean;
|
|
26
|
+
}
|
|
27
|
+
/** 单行自适应工具栏的配置。 */
|
|
28
|
+
interface ToolbarProps {
|
|
29
|
+
/** 按展示顺序排列的操作配置。 */
|
|
30
|
+
items: readonly ToolbarItem[];
|
|
31
|
+
/** 业务处理回调;异步状态由调用方通过 loading/disabled 控制。 */
|
|
32
|
+
onAction?: (key: string) => void | Promise<void>;
|
|
33
|
+
/** 禁用全部操作。 */
|
|
34
|
+
disabled?: boolean;
|
|
35
|
+
/** 按钮尺寸,默认 small。 */
|
|
36
|
+
size?: ButtonProps["size"];
|
|
37
|
+
/** 按钮样式,默认 link。 */
|
|
38
|
+
variant?: ButtonProps["variant"];
|
|
39
|
+
/** 溢出入口的无障碍名称与提示,默认“更多操作”。 */
|
|
40
|
+
overflowLabel?: string;
|
|
41
|
+
}
|
|
42
|
+
/** 单行操作栏;宽度不足时按原顺序将尾部操作收纳到 hover 菜单。 */
|
|
43
|
+
declare function Toolbar({ items, onAction, disabled, size, variant, overflowLabel }: ToolbarProps): react.JSX.Element;
|
|
44
|
+
|
|
6
45
|
/** 卡片强调装饰的显示方式。 */
|
|
7
46
|
type CardAccent = "primary" | "success" | "warning" | "error";
|
|
8
47
|
/** 卡片的属性配置。 */
|
|
@@ -259,7 +298,7 @@ declare const iconPaths: {
|
|
|
259
298
|
/** 可用的线框图标名称。 */
|
|
260
299
|
type IconName = keyof typeof iconPaths;
|
|
261
300
|
/** 可用线框图标名称集合。 */
|
|
262
|
-
declare const ICON_NAMES: readonly ("
|
|
301
|
+
declare const ICON_NAMES: readonly ("search" | "bold" | "link" | "copy" | "move" | "zoom-in" | "zoom-out" | "table" | "italic" | "underline" | "menu" | "send" | "close" | "pause" | "play" | "message" | "code" | "video" | "filter" | "image" | "stop" | "warning" | "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" | "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" | "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" | "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" | "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" | "sort-ascending" | "sort-descending" | "book" | "component" | "token" | "sun" | "moon" | "github")[];
|
|
263
302
|
declare const filledIconPaths: {
|
|
264
303
|
info: react.JSX.Element;
|
|
265
304
|
question: react.JSX.Element;
|
|
@@ -295,7 +334,7 @@ type FilledIconName = keyof typeof filledIconPaths;
|
|
|
295
334
|
/** 图标采用线框还是填充样式。 */
|
|
296
335
|
type IconVariant = "outline" | "filled";
|
|
297
336
|
/** 可用填充图标名称集合。 */
|
|
298
|
-
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" | "
|
|
337
|
+
declare const FILLED_ICON_NAMES: readonly ("pause" | "play" | "filter" | "image" | "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" | "book" | "component" | "token")[];
|
|
299
338
|
/** 图标的属性配置。 */
|
|
300
339
|
interface IconProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
301
340
|
/** 名称或字段标识。 */
|
|
@@ -2128,4 +2167,4 @@ declare const FloatButton: react.ForwardRefExoticComponent<FloatButtonProps & re
|
|
|
2128
2167
|
BackTop: typeof FloatButtonBackTop;
|
|
2129
2168
|
};
|
|
2130
2169
|
|
|
2131
|
-
export { type MenuTheme as $, type FloatButtonGroupProps as A, type BadgeProps as B, Calendar as C, Dropdown as D, type FloatButtonProps as E, FILLED_ICON_NAMES as F, type FloatButtonShape as G, type FloatingPlacement as H, type FloatingTrigger as I, ICON_NAMES as J, Icon as K, type IconName as L, type IconProps as M, type IconVariant as N, Image as O, ImagePreview as P, type ImagePreviewConfig as Q, type ImagePreviewProps as R, type ImageProps as S, type TagStatus as T, Input as U, type InputProps as V, Menu as W, type MenuClickInfo as X, type MenuItem as Y, type MenuMode as Z, type MenuProps as _, Badge as a, type
|
|
2170
|
+
export { type MenuTheme as $, type FloatButtonGroupProps as A, type BadgeProps as B, Calendar as C, Dropdown as D, type FloatButtonProps as E, FILLED_ICON_NAMES as F, type FloatButtonShape as G, type FloatingPlacement as H, type FloatingTrigger as I, ICON_NAMES as J, Icon as K, type IconName as L, type IconProps as M, type IconVariant as N, Image as O, ImagePreview as P, type ImagePreviewConfig as Q, type ImagePreviewProps as R, type ImageProps as S, type TagStatus as T, Input as U, type InputProps as V, Menu as W, type MenuClickInfo as X, type MenuItem as Y, type MenuMode as Z, type MenuProps as _, Badge as a, type UploadRequestOptions as a$, type MessageConfig as a0, type MessageHandle as a1, type MessageKey as a2, type MessageType as a3, type NotificationConfig as a4, type NotificationPlacement as a5, type NotificationType as a6, Popconfirm as a7, type PopconfirmProps as a8, Popover as a9, Timeline as aA, type TimelineItem as aB, type TimelineProps as aC, Toolbar as aD, type ToolbarItem as aE, type ToolbarProps as aF, Tooltip as aG, type TooltipProps as aH, Tour as aI, type TourProps as aJ, type TourStep as aK, Tree as aL, type TreeDropPosition as aM, type TreeKey as aN, type TreeNode as aO, type TreeProps as aP, Typography as aQ, type TypographyLinkProps as aR, type TypographyProps as aS, type TypographyTitleProps as aT, type TypographyType as aU, Upload as aV, type UploadChangeInfo as aW, type UploadDraggerProps as aX, type UploadFile as aY, type UploadFileStatus as aZ, type UploadProps as a_, type PopoverProps as aa, Progress as ab, type ProgressProps as ac, type ProgressStatus as ad, Rate as ae, type RateProps as af, Segmented as ag, type SegmentedOption as ah, type SegmentedProps as ai, type SegmentedValue as aj, Spin as ak, type SpinProps as al, type StepItem as am, type StepStatus as an, Steps as ao, type StepsProps as ap, type TabItem as aq, Tabs as ar, type TabsContextMenuClickInfo as as, type TabsOrientation as at, type TabsPosition as au, type TabsProps as av, type TabsType as aw, Tag as ax, type TagProps as ay, type TagVariant as az, type BadgeRibbonProps as b, Watermark as b0, type WatermarkFont as b1, type WatermarkProps as b2, message as b3, notification as b4, type BadgeStatus as c, Breadcrumb as d, type BreadcrumbItem as e, type BreadcrumbProps as f, type CalendarProps as g, Card as h, type CardAccent as i, type CardProps as j, Carousel as k, type CarouselProps as l, type CarouselRef as m, Collapse as n, type CollapseItem as o, type CollapseKey as p, type CollapseProps as q, type DropdownButtonProps as r, type DropdownMenuProps as s, type DropdownOpenSource as t, type DropdownPlacement as u, type DropdownProps as v, type DropdownTrigger as w, type FilledIconName as x, FloatButton as y, type FloatButtonBackTopProps as z };
|