@regenbio/regenbio-components-react 1.2.102 → 1.3.2

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.
@@ -114,4 +114,8 @@ export type RbDataTableProps<DataSource, U, ValueType = 'text'> = {
114
114
  * @param loading 等待状态
115
115
  */
116
116
  loadChange?: (loading: boolean) => void;
117
+ /**
118
+ * 幽灵模式
119
+ */
120
+ ghost?: boolean;
117
121
  };
@@ -49,4 +49,10 @@ export type RbUserCardProps = {
49
49
  * @param guid 头像文件主键ID
50
50
  */
51
51
  getPreviewUrl: (guid: any) => null | string;
52
+ /**
53
+ * 请求远程用户数据的方法
54
+ *
55
+ * @param guid 用户主键ID
56
+ */
57
+ request?: (guid: string) => Promise<any>;
52
58
  };