lingee-ui 0.0.7 → 0.0.8

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.
Files changed (44) hide show
  1. package/dist/button/index.d.mts +1 -1
  2. package/dist/button/index.d.ts +1 -1
  3. package/dist/chunk-3U36GSZF.js +2 -0
  4. package/dist/chunk-7TZ6IXXG.js +1 -0
  5. package/dist/{chunk-T5QR25R6.js → chunk-AEPAJEIR.js} +1 -1
  6. package/dist/{chunk-RM4W5RV7.mjs → chunk-AP6UHKTU.mjs} +1 -1
  7. package/dist/chunk-PKNSR23I.mjs +2 -0
  8. package/dist/chunk-QBEHOXXU.mjs +1 -0
  9. package/dist/{chunk-FQRDHJQZ.mjs → chunk-TO3JLUBX.mjs} +1 -1
  10. package/dist/{chunk-KT3HSLBA.js → chunk-VHOWVMZ3.js} +1 -1
  11. package/dist/{index-BVXwKHfX.d.mts → index-7pb5YOcq.d.mts} +1 -1
  12. package/dist/{index-BVXwKHfX.d.ts → index-7pb5YOcq.d.ts} +1 -1
  13. package/dist/index.css +1 -1
  14. package/dist/index.d.mts +207 -53
  15. package/dist/index.d.ts +207 -53
  16. package/dist/index.js +2 -2
  17. package/dist/index.mjs +2 -2
  18. package/dist/input/index.js +1 -1
  19. package/dist/input/index.mjs +1 -1
  20. package/dist/tabs/index.d.mts +1 -1
  21. package/dist/tabs/index.d.ts +1 -1
  22. package/dist/tabs/index.js +1 -1
  23. package/dist/tabs/index.mjs +1 -1
  24. package/dist/toast/index.js +1 -1
  25. package/dist/toast/index.mjs +1 -1
  26. package/dist/tree/index.css +1 -0
  27. package/dist/tree/index.d.mts +229 -0
  28. package/dist/tree/index.d.ts +229 -0
  29. package/dist/tree/index.js +1 -0
  30. package/dist/tree/index.mjs +1 -0
  31. package/package.json +7 -2
  32. package/skill/AGENTS-SNIPPET.md +5 -4
  33. package/skill/SKILL.md +6 -5
  34. package/skill/VERSION.json +3 -3
  35. package/skill/references/components/dropdown.md +3 -0
  36. package/skill/references/components/empty.md +28 -2
  37. package/skill/references/components/sidebar.md +45 -29
  38. package/skill/references/components/tree.md +118 -0
  39. package/skill/references/components/upload.md +4 -1
  40. package/skill/references/setup.md +2 -1
  41. package/skill/references/tokens.md +1 -1
  42. package/CHANGELOG.md +0 -119
  43. package/dist/chunk-KQ733636.mjs +0 -1
  44. package/dist/chunk-PQVYDWUK.js +0 -1
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { B as ButtonProps } from './index-BVXwKHfX.js';
2
- export { a as Button, b as ButtonShape, c as ButtonSize, d as ButtonVariant } from './index-BVXwKHfX.js';
1
+ import { B as ButtonProps } from './index-7pb5YOcq.js';
2
+ export { a as Button, b as ButtonShape, c as ButtonSize, d as ButtonVariant } from './index-7pb5YOcq.js';
3
3
  export { TabItem, Tabs, TabsProps, TabsSize, TabsVariant } from './tabs/index.js';
4
4
  export { Tooltip, TooltipPlacement, TooltipProps } from './tooltip/index.js';
5
5
  import { PopoverContentProps } from './popover/index.js';
@@ -14,6 +14,7 @@ import React__default, { ReactNode, HTMLAttributes, MouseEvent, CSSProperties, C
14
14
  import { L as LgSize } from './index-B5SLxsZP.js';
15
15
  export { a as LgShape, b as LgVariant } from './index-B5SLxsZP.js';
16
16
  import { SvgIconProps } from 'lingee-icon';
17
+ export { Tree, TreeAllowDropOptions, TreeCheckInfo, TreeDropInfo, TreeExpandAction, TreeExpandInfo, TreeFieldNames, TreeIndentGuide, TreeNodeData, TreeNodeState, TreeProps, TreeSelectInfo, TreeSize } from './tree/index.js';
17
18
  import { FormInstance as FormInstance$1, Rule } from 'rc-field-form/es/interface';
18
19
  export { Rule } from 'rc-field-form/es/interface';
19
20
  import { ClassValue } from 'clsx';
@@ -88,6 +89,9 @@ declare const zhCN: {
88
89
  Table: {
89
90
  empty: string;
90
91
  };
92
+ Tree: {
93
+ empty: string;
94
+ };
91
95
  Pagination: {
92
96
  total: string;
93
97
  prevPage: string;
@@ -192,6 +196,9 @@ declare const enUS: {
192
196
  Table: {
193
197
  empty: string;
194
198
  };
199
+ Tree: {
200
+ empty: string;
201
+ };
195
202
  Pagination: {
196
203
  total: string;
197
204
  prevPage: string;
@@ -564,6 +571,13 @@ interface DropdownContentProps extends Pick<PopoverContentProps, "side" | "align
564
571
  footer?: ReactNode;
565
572
  /** 隐藏面板默认描边,默认 false(显示描边) */
566
573
  borderless?: boolean;
574
+ /**
575
+ * 打开面板时是否聚焦第一个菜单项
576
+ * 不传时按输入模态自动判断:键盘(Enter / Space / Tab / 方向键)打开则聚焦首项,
577
+ * 鼠标点击打开则把焦点留在菜单容器上,避免首项呈现 hover 态
578
+ * 仅在需要强制某一行为时显式传值
579
+ */
580
+ autoFocusFirstItem?: boolean;
567
581
  }
568
582
  interface DropdownItemProps {
569
583
  /** 菜单项内容 */
@@ -1087,17 +1101,56 @@ interface EmptyProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
1087
1101
  /** 自定义内联样式 */
1088
1102
  style?: CSSProperties;
1089
1103
  }
1104
+ /**
1105
+ * 卡片占位状态。
1106
+ * - loading: 加载中,默认旋转的 LoaderCircle
1107
+ * - empty: 加载结束无数据,默认 Inbox
1108
+ * - error: 加载结束失败,默认 ExclamationCircle
1109
+ */
1110
+ type EmptyCardStatus = "loading" | "empty" | "error";
1111
+ /**
1112
+ * 布局形态。
1113
+ * - block: 块级居中,用于区块级占位
1114
+ * - inline: 行内小字,用于「加载更多」这类轻量提示
1115
+ */
1116
+ type EmptyCardVariant = "block" | "inline";
1117
+ /** 上下留白档位 */
1118
+ type EmptyCardSpacing = "none" | "normal" | "loose";
1119
+ interface EmptyCardProps extends Omit<HTMLAttributes<HTMLDivElement>, "children" | "onClick"> {
1120
+ status: EmptyCardStatus;
1121
+ /** 描述文案。组件不内置文案,由消费方传入 */
1122
+ description: ReactNode;
1123
+ /** 覆盖默认图标;传 null 则不渲染图标 */
1124
+ icon?: ReactNode | null;
1125
+ variant?: EmptyCardVariant;
1126
+ spacing?: EmptyCardSpacing;
1127
+ /** 重试回调。仅 status="error" 时生效,传入后整体渲染为可点击按钮 */
1128
+ onRetry?: () => void;
1129
+ className?: string;
1130
+ style?: CSSProperties;
1131
+ }
1090
1132
 
1091
1133
  /**
1092
- * Empty 空状态组件
1093
- * 支持 lg / md / sm 三种尺寸,覆盖搜索无结果、加载中、加载失败等场景
1134
+ * Empty.Card — 等高三态占位
1135
+ *
1136
+ * 统一「加载中 / 加载结束空 / 加载结束失败」三态:图标 + 文案横向排列,
1137
+ * 同一 spacing 档位下三态 min-height 一致,状态切换时容器高度不变,
1138
+ * 避免列表或卡片区域跳动。
1094
1139
  *
1095
- * icon 支持三种传法:
1096
- * 1. 传 lingee-icon 组件(如 Search)→ 自动注入 size + fill 渐变
1097
- * 2. 传 ReactNode → 完全自定义渲染(加载中旋转等行为随图标一起传入自行处理)
1098
- * 3. 不传 → 使用默认图标(带渐变)
1140
+ * 收敛为单组件的原因:这类占位在列表与折叠区块内散落出现十余处,
1141
+ * 各处自行拼装会导致图标尺寸、间距、灰度层层漂移。
1099
1142
  */
1100
- declare const Empty: React__default.ForwardRefExoticComponent<EmptyProps & React__default.RefAttributes<HTMLDivElement>>;
1143
+ declare const EmptyCard: React__default.ForwardRefExoticComponent<EmptyCardProps & React__default.RefAttributes<HTMLDivElement>>;
1144
+
1145
+ /**
1146
+ * Empty 复合组件。
1147
+ *
1148
+ * 用 Object.assign 而非对象字面量挂载子组件:
1149
+ * 保留 EmptyRoot 的 forwardRef 类型,使 <Empty ref={...} /> 仍可直接使用。
1150
+ */
1151
+ declare const Empty: React__default.ForwardRefExoticComponent<EmptyProps & React__default.RefAttributes<HTMLDivElement>> & {
1152
+ Card: React__default.ForwardRefExoticComponent<EmptyCardProps & React__default.RefAttributes<HTMLDivElement>>;
1153
+ };
1101
1154
 
1102
1155
  interface SidebarRootProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
1103
1156
  /** 展开宽度(px),默认 280 */
@@ -1208,12 +1261,20 @@ interface SidebarListItemProps extends Omit<HTMLAttributes<HTMLDivElement>, "tit
1208
1261
  className?: string;
1209
1262
  style?: CSSProperties;
1210
1263
  }
1264
+ /**
1265
+ * 箭头位置。
1266
+ * - title: 紧跟标题之后(文件夹节点用法,标题短时箭头也靠左)
1267
+ * - end: 恒在行尾(定时任务分组用法)
1268
+ */
1269
+ type SidebarCaretPlacement = "title" | "end";
1211
1270
  interface SidebarCollapsibleListItemProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1212
1271
  /** 头部左侧图标。需随展开态切换图标时由消费方自行传入对应图标 */
1213
1272
  icon?: ReactNode;
1214
1273
  title: ReactNode;
1215
1274
  expanded?: boolean;
1216
1275
  onToggle?: () => void;
1276
+ /** 箭头位置,默认 title(紧跟标题) */
1277
+ caretPlacement?: SidebarCaretPlacement;
1217
1278
  /** 头部悬停操作区插槽 */
1218
1279
  actions?: ReactNode;
1219
1280
  /** 操作区常显。菜单打开时置 true,避免指针移出后按钮消失 */
@@ -1228,34 +1289,6 @@ interface SidebarCollapsibleListItemProps extends Omit<HTMLAttributes<HTMLDivEle
1228
1289
  className?: string;
1229
1290
  style?: CSSProperties;
1230
1291
  }
1231
- /**
1232
- * 占位状态。
1233
- * - loading: 加载中,默认旋转的 LoaderCircle
1234
- * - empty: 无数据,默认 Inbox
1235
- * - error: 加载失败,默认 ExclamationCircle
1236
- */
1237
- type SidebarSkeletonItemStatus = "loading" | "empty" | "error";
1238
- /**
1239
- * 布局形态。
1240
- * - block: 块级居中,用于区块级占位
1241
- * - inline: 行内小字,用于「加载更多」这类轻量提示
1242
- */
1243
- type SidebarSkeletonItemVariant = "block" | "inline";
1244
- /** 上下留白档位 */
1245
- type SidebarSkeletonItemSpacing = "none" | "normal" | "loose";
1246
- interface SidebarSkeletonItemProps extends Omit<HTMLAttributes<HTMLDivElement>, "children" | "onClick"> {
1247
- status: SidebarSkeletonItemStatus;
1248
- /** 提示文案。组件不内置文案,由消费方传入 */
1249
- text: ReactNode;
1250
- /** 覆盖默认图标;传 null 则不渲染图标 */
1251
- icon?: ReactNode | null;
1252
- variant?: SidebarSkeletonItemVariant;
1253
- spacing?: SidebarSkeletonItemSpacing;
1254
- /** 重试回调。仅 status="error" 时生效,传入后整体渲染为可点击按钮 */
1255
- onRetry?: () => void;
1256
- className?: string;
1257
- style?: CSSProperties;
1258
- }
1259
1292
  interface SidebarFooterProps extends HTMLAttributes<HTMLDivElement> {
1260
1293
  /** 头像插槽 */
1261
1294
  avatar?: ReactNode;
@@ -1272,6 +1305,67 @@ interface SidebarFooterProps extends HTMLAttributes<HTMLDivElement> {
1272
1305
  className?: string;
1273
1306
  style?: CSSProperties;
1274
1307
  }
1308
+ interface SidebarFooterMenuStaticRowProps extends HTMLAttributes<HTMLDivElement> {
1309
+ /** 行首图标 */
1310
+ icon?: ReactNode;
1311
+ children?: ReactNode;
1312
+ className?: string;
1313
+ style?: CSSProperties;
1314
+ }
1315
+ interface SidebarFooterBadgeProps extends HTMLAttributes<HTMLSpanElement> {
1316
+ /** 是否显示未读红点 */
1317
+ dot?: boolean;
1318
+ /** 被包裹的按钮 */
1319
+ children?: ReactNode;
1320
+ className?: string;
1321
+ style?: CSSProperties;
1322
+ }
1323
+ /**
1324
+ * 用量色阶。
1325
+ * - normal: 正常
1326
+ * - warning: 已用 85% 以上
1327
+ * - exhausted: 已用满
1328
+ */
1329
+ type SidebarUsageTone = "normal" | "warning" | "exhausted";
1330
+ interface SidebarUsageBarProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
1331
+ /** 已用量 */
1332
+ used: number;
1333
+ /** 总量。为 0 或负数时视为无额度,进度为 0 */
1334
+ total: number;
1335
+ /**
1336
+ * 数字格式化。千分位与小数位依赖语言环境,
1337
+ * 组件库不持有 locale,故由消费方注入
1338
+ */
1339
+ formatNumber?: (n: number) => string;
1340
+ /** 总量后缀,如「(60%)」 */
1341
+ percentSuffix?: ReactNode;
1342
+ /** 剩余量前缀,如「剩余 」 */
1343
+ remainingPrefix?: ReactNode;
1344
+ /** 进度条无障碍标签 */
1345
+ ariaLabel?: string;
1346
+ className?: string;
1347
+ style?: CSSProperties;
1348
+ }
1349
+ interface SidebarUsagePanelProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1350
+ /** 面板标题 */
1351
+ title?: ReactNode;
1352
+ /** 加载态,展示骨架屏 */
1353
+ loading?: boolean;
1354
+ /** 各额度分区 */
1355
+ children?: ReactNode;
1356
+ className?: string;
1357
+ style?: CSSProperties;
1358
+ }
1359
+ interface SidebarUsagePanelSectionProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1360
+ /** 分区标题 */
1361
+ title: ReactNode;
1362
+ /** 标题行右侧附加信息,如到期日 */
1363
+ extra?: ReactNode;
1364
+ /** 分区内容,通常是一个 UsageBar */
1365
+ children?: ReactNode;
1366
+ className?: string;
1367
+ style?: CSSProperties;
1368
+ }
1275
1369
 
1276
1370
  /**
1277
1371
  * Sidebar.Root — 侧边栏根容器
@@ -1352,17 +1446,6 @@ declare const SidebarListItem: React__default.ForwardRefExoticComponent<SidebarL
1352
1446
  */
1353
1447
  declare const SidebarCollapsibleListItem: React__default.ForwardRefExoticComponent<SidebarCollapsibleListItemProps & React__default.RefAttributes<HTMLDivElement>>;
1354
1448
 
1355
- /**
1356
- * Sidebar.SkeletonItem — 列表占位项
1357
- *
1358
- * 统一「加载中 / 无数据 / 加载失败」三态:图标 + 文案横向排列,
1359
- * 三态间仅图标与文案不同。
1360
- *
1361
- * 收敛为单组件的原因:这类占位在列表与折叠区块内散落出现十余处,
1362
- * 各处自行拼装会导致图标尺寸、间距、灰度层层漂移。
1363
- */
1364
- declare const SidebarSkeletonItem: React__default.ForwardRefExoticComponent<SidebarSkeletonItemProps & React__default.RefAttributes<HTMLDivElement>>;
1365
-
1366
1449
  /**
1367
1450
  * Sidebar.Footer — 底部用户信息条
1368
1451
  *
@@ -1374,6 +1457,51 @@ declare const SidebarSkeletonItem: React__default.ForwardRefExoticComponent<Side
1374
1457
  */
1375
1458
  declare const SidebarFooter: React__default.ForwardRefExoticComponent<SidebarFooterProps & React__default.RefAttributes<HTMLDivElement>>;
1376
1459
 
1460
+ /**
1461
+ * Sidebar.FooterMenuStaticRow — 底栏菜单中的静态信息行
1462
+ *
1463
+ * 与 DropdownItem 尺寸一致但不可点击,用于「当前租户」这类只读信息 ——
1464
+ * 同一位置在可切换时渲染为二级菜单、不可切换时渲染为此行,
1465
+ * 两种形态必须等高等距,否则菜单会在两种状态间跳动。
1466
+ */
1467
+ declare const SidebarFooterMenuStaticRow: React__default.ForwardRefExoticComponent<SidebarFooterMenuStaticRowProps & React__default.RefAttributes<HTMLDivElement>>;
1468
+
1469
+ /**
1470
+ * Sidebar.FooterBadge — 底栏动作按钮的未读角标
1471
+ *
1472
+ * 包裹按钮而非改按钮自身:角标绝对定位不占位,
1473
+ * 否则会撑开按钮尺寸导致底栏其余元素位移。
1474
+ */
1475
+ declare const SidebarFooterBadge: React__default.ForwardRefExoticComponent<SidebarFooterBadgeProps & React__default.RefAttributes<HTMLSpanElement>>;
1476
+
1477
+ /**
1478
+ * Sidebar.UsageBar — 分段式用量条
1479
+ *
1480
+ * 用离散色块而非连续条:额度类数据的观感需要「格子」的计量意味,
1481
+ * 连续进度条更像任务进度。
1482
+ *
1483
+ * 数字格式化交由消费方通过 formatNumber 注入 —— 千分位与小数位
1484
+ * 依赖当前语言环境,组件库不持有 locale。
1485
+ */
1486
+ declare const SidebarUsageBar: React__default.ForwardRefExoticComponent<SidebarUsageBarProps & React__default.RefAttributes<HTMLDivElement>>;
1487
+
1488
+ /**
1489
+ * Sidebar.UsagePanel — 用量面板
1490
+ *
1491
+ * 用于底栏菜单的二级浮层(如「点数用量」)。只负责骨架与加载骨架屏,
1492
+ * 各额度分区由消费方以 UsagePanel.Section + UsageBar 组合。
1493
+ *
1494
+ * 作为 DropdownSubContent 的内容使用时,需消掉外层浮层自带的
1495
+ * 边框与阴影,避免双层描边(见 README)。
1496
+ */
1497
+ declare const SidebarUsagePanel: React__default.ForwardRefExoticComponent<SidebarUsagePanelProps & React__default.RefAttributes<HTMLDivElement>>;
1498
+ /**
1499
+ * Sidebar.UsagePanelSection — 用量面板中的一个额度分区
1500
+ *
1501
+ * 标题行左侧为分区名、右侧为附加信息(如到期日),下方放 UsageBar。
1502
+ */
1503
+ declare const SidebarUsagePanelSection: React__default.ForwardRefExoticComponent<SidebarUsagePanelSectionProps & React__default.RefAttributes<HTMLDivElement>>;
1504
+
1377
1505
  /**
1378
1506
  * Sidebar 侧边栏
1379
1507
  *
@@ -1387,7 +1515,7 @@ declare const SidebarFooter: React__default.ForwardRefExoticComponent<SidebarFoo
1387
1515
  * <Sidebar.CollapsibleNavItem label="分组" items={items} />
1388
1516
  * <Sidebar.GroupHeader title="置顶" collapsible expanded onToggle={fn} />
1389
1517
  * <Sidebar.ListItem title="会话" indicator="running" menu={<Dropdown />} />
1390
- * <Sidebar.SkeletonItem status="empty" text="暂无内容" />
1518
+ * <Empty.Card status="empty" description="暂无内容" />
1391
1519
  * </ScrollArea>
1392
1520
  * <Sidebar.Footer avatar={avatar} name="用户" actions={actions} />
1393
1521
  * </Sidebar.Root>
@@ -1402,8 +1530,12 @@ declare const Sidebar: {
1402
1530
  GroupHeader: React$1.ForwardRefExoticComponent<SidebarGroupHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
1403
1531
  ListItem: React$1.ForwardRefExoticComponent<SidebarListItemProps & React$1.RefAttributes<HTMLDivElement>>;
1404
1532
  CollapsibleListItem: React$1.ForwardRefExoticComponent<SidebarCollapsibleListItemProps & React$1.RefAttributes<HTMLDivElement>>;
1405
- SkeletonItem: React$1.ForwardRefExoticComponent<SidebarSkeletonItemProps & React$1.RefAttributes<HTMLDivElement>>;
1406
1533
  Footer: React$1.ForwardRefExoticComponent<SidebarFooterProps & React$1.RefAttributes<HTMLDivElement>>;
1534
+ FooterMenuStaticRow: React$1.ForwardRefExoticComponent<SidebarFooterMenuStaticRowProps & React$1.RefAttributes<HTMLDivElement>>;
1535
+ FooterBadge: React$1.ForwardRefExoticComponent<SidebarFooterBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
1536
+ UsageBar: React$1.ForwardRefExoticComponent<SidebarUsageBarProps & React$1.RefAttributes<HTMLDivElement>>;
1537
+ UsagePanel: React$1.ForwardRefExoticComponent<SidebarUsagePanelProps & React$1.RefAttributes<HTMLDivElement>>;
1538
+ UsagePanelSection: React$1.ForwardRefExoticComponent<SidebarUsagePanelSectionProps & React$1.RefAttributes<HTMLDivElement>>;
1407
1539
  };
1408
1540
 
1409
1541
  /** 主轴方向类型 */
@@ -2130,8 +2262,30 @@ interface UploadProps {
2130
2262
  fileList?: UploadFile[];
2131
2263
  /** 非受控默认文件列表 */
2132
2264
  defaultFileList?: UploadFile[];
2133
- /** 自定义上传实现(必传,组件不内置上传逻辑) */
2134
- customRequest: (options: CustomRequestOptions) => CustomRequestReturn | void;
2265
+ /**
2266
+ * 自定义上传实现,组件不内置上传逻辑。传入即「选中后立即上传」。
2267
+ *
2268
+ * 省略则为「仅收集」模式:不发起任何请求,文件入列后直接置为 `done`,
2269
+ * 用于随表单一次性提交的场景 —— 文件先攒在 `fileList` 里,
2270
+ * 由消费方在提交时自行携带。
2271
+ */
2272
+ customRequest?: (options: CustomRequestOptions) => CustomRequestReturn | void;
2273
+ /**
2274
+ * 粘贴上传。开启后监听容器内的 paste 事件,
2275
+ * 取剪贴板中的文件(如截图)走同一套校验与收集流程。
2276
+ *
2277
+ * 默认 false。
2278
+ */
2279
+ pasteable?: boolean;
2280
+ /**
2281
+ * 按 `accept` 校验文件类型,不通过时以 `type` 原因触发 `onReject`。
2282
+ *
2283
+ * 原生 input 的 accept 只约束选择器,拖拽与粘贴可绕过它,
2284
+ * 需要拦住这两条路径时开启。
2285
+ *
2286
+ * 默认 false,保持原有不校验类型的行为不变。
2287
+ */
2288
+ validateAccept?: boolean;
2135
2289
  /** 文件列表变更回调 */
2136
2290
  onChange?: (fileList: UploadFile[]) => void;
2137
2291
  /** 文件校验拒绝回调 */
@@ -2225,4 +2379,4 @@ declare const ScrollBar: React__default.ForwardRefExoticComponent<ScrollBarProps
2225
2379
  */
2226
2380
  declare function cn(...inputs: ClassValue[]): string;
2227
2381
 
2228
- export { Alert, type AlertProps, type AlertType, AvatarWithGroup as Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, type ColorPickerSize, type CoverConfig, type CustomRequestOptions, type CustomRequestReturn, DatePicker, type DatePickerProps, type DatePickerSize, type DateRange, Dialog, type DialogConfirmOptions, type DialogProps, Divider, type DividerOrientation, type DividerProps, type DividerVariant, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownButton, type DropdownButtonProps, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemData, type DropdownItemProps, DropdownLabel, type DropdownLabelData, type DropdownLabelProps, type DropdownMenuItemData, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorData, type DropdownSeparatorProps, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyIconComponent, type EmptyProps, type EmptySize, type FileItemActions, Flex, type FlexGapSize, type FlexOrientation, type FlexProps, Form, type FormInstance, type FormItemProps, type FormLayout, type FormProps, Image, type ImagePreviewGroupProps, type ImageProps, type ImgInfo, LgSize, LingeeProvider, type LingeeProviderProps, type Locale, Pagination, type PaginationProps, type PaginationVariant, PopoverContentProps, type PreviewGroupType, type PreviewType, Progress, type ProgressProps, type ProgressStatus, type ProgressType, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, type RadioSize, RangePicker, type RangePickerProps, type RangePickerSize, type RejectReason, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, type SelectDropdownProps, type SelectMode, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectSize, Sidebar, SidebarCollapsibleListItem, type SidebarCollapsibleListItemProps, SidebarCollapsibleNavItem, type SidebarCollapsibleNavItemChild, type SidebarCollapsibleNavItemProps, SidebarFooter, type SidebarFooterProps, SidebarGroupHeader, type SidebarGroupHeaderProps, SidebarHeader, type SidebarHeaderProps, type SidebarIndicatorType, SidebarListItem, type SidebarListItemProps, SidebarNavItem, type SidebarNavItemProps, SidebarRoot, type SidebarRootProps, SidebarSkeletonItem, type SidebarSkeletonItemProps, type SidebarSkeletonItemSpacing, type SidebarSkeletonItemStatus, type SidebarSkeletonItemVariant, SidebarTabBar, type SidebarTabBarProps, type SidebarTabItem, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, Slider, type SliderProps, type SliderSize, Spin, type SpinProps, type SpinSize, type StepItem, type StepStatus, Steps, type StepsProps, type StepsSize, type StepsTitlePlacement, Table, type TableColumnType, type TableProps, type TableRowSelection, type TableSize, type TableSorterState, Tag, type TagPresetColor, type TagProps, type TagShape, type TagSize, TimePicker, type TimePickerProps, type TimePickerSize, type TimeValue, type TransformAction, type TransformType, Upload, type UploadFile, type UploadFileStatus, type UploadProps, cn, enUS, useComponentLocale, useLocale, zhCN };
2382
+ export { Alert, type AlertProps, type AlertType, AvatarWithGroup as Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, type ColorPickerSize, type CoverConfig, type CustomRequestOptions, type CustomRequestReturn, DatePicker, type DatePickerProps, type DatePickerSize, type DateRange, Dialog, type DialogConfirmOptions, type DialogProps, Divider, type DividerOrientation, type DividerProps, type DividerVariant, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownButton, type DropdownButtonProps, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemData, type DropdownItemProps, DropdownLabel, type DropdownLabelData, type DropdownLabelProps, type DropdownMenuItemData, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorData, type DropdownSeparatorProps, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Empty, EmptyCard, type EmptyCardProps, type EmptyCardSpacing, type EmptyCardStatus, type EmptyCardVariant, type EmptyIconComponent, type EmptyProps, type EmptySize, type FileItemActions, Flex, type FlexGapSize, type FlexOrientation, type FlexProps, Form, type FormInstance, type FormItemProps, type FormLayout, type FormProps, Image, type ImagePreviewGroupProps, type ImageProps, type ImgInfo, LgSize, LingeeProvider, type LingeeProviderProps, type Locale, Pagination, type PaginationProps, type PaginationVariant, PopoverContentProps, type PreviewGroupType, type PreviewType, Progress, type ProgressProps, type ProgressStatus, type ProgressType, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, type RadioSize, RangePicker, type RangePickerProps, type RangePickerSize, type RejectReason, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, type SelectDropdownProps, type SelectMode, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectSize, Sidebar, type SidebarCaretPlacement, SidebarCollapsibleListItem, type SidebarCollapsibleListItemProps, SidebarCollapsibleNavItem, type SidebarCollapsibleNavItemChild, type SidebarCollapsibleNavItemProps, SidebarFooter, SidebarFooterBadge, type SidebarFooterBadgeProps, SidebarFooterMenuStaticRow, type SidebarFooterMenuStaticRowProps, type SidebarFooterProps, SidebarGroupHeader, type SidebarGroupHeaderProps, SidebarHeader, type SidebarHeaderProps, type SidebarIndicatorType, SidebarListItem, type SidebarListItemProps, SidebarNavItem, type SidebarNavItemProps, SidebarRoot, type SidebarRootProps, SidebarTabBar, type SidebarTabBarProps, type SidebarTabItem, SidebarUsageBar, type SidebarUsageBarProps, SidebarUsagePanel, type SidebarUsagePanelProps, SidebarUsagePanelSection, type SidebarUsagePanelSectionProps, type SidebarUsageTone, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, Slider, type SliderProps, type SliderSize, Spin, type SpinProps, type SpinSize, type StepItem, type StepStatus, Steps, type StepsProps, type StepsSize, type StepsTitlePlacement, Table, type TableColumnType, type TableProps, type TableRowSelection, type TableSize, type TableSorterState, Tag, type TagPresetColor, type TagProps, type TagShape, type TagSize, TimePicker, type TimePickerProps, type TimePickerSize, type TimeValue, type TransformAction, type TransformType, Upload, type UploadFile, type UploadFileStatus, type UploadProps, cn, enUS, useComponentLocale, useLocale, zhCN };