@regenbio/regenbio-components-react 1.4.4 → 1.4.7
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/build/components/DataEntry/UserSelector/type.d.ts +2 -1
- package/build/index.d.ts +4 -3
- package/build/index.js +2 -2
- package/build/services/hooks/feedback/useRbFeedback.d.ts +12 -0
- package/package.json +1 -1
- /package/build/services/hooks/{useRbMessage.d.ts → feedback/useRbMessage.d.ts} +0 -0
- /package/build/services/hooks/{useRbNotification.d.ts → feedback/useRbNotification.d.ts} +0 -0
|
@@ -45,9 +45,10 @@ export type RbUserSelectorProps<ValueType = any, OptionType extends BaseOptionTy
|
|
|
45
45
|
*
|
|
46
46
|
* @param param 参数
|
|
47
47
|
* @param guidList 已选中的用户主键ID列表
|
|
48
|
+
* @param fillUser 是否填充用户
|
|
48
49
|
* @param userType 用户类型
|
|
49
50
|
*/
|
|
50
|
-
request: (param: string, guidList: string[], userType?: number[]) => Promise<any>;
|
|
51
|
+
request: (param: string, guidList: string[], fillUser?: boolean, userType?: number[]) => Promise<any>;
|
|
51
52
|
/**
|
|
52
53
|
* 头像预览方法
|
|
53
54
|
*
|
package/build/index.d.ts
CHANGED
|
@@ -50,8 +50,9 @@ import StorageEnum from "./services/enums/storageEnum";
|
|
|
50
50
|
import useRbDictionary from "./services/hooks/useRbDictionary";
|
|
51
51
|
import useRbValueEnum from "./services/hooks/useRbValueEnum";
|
|
52
52
|
import useRbAuthorize from "./services/hooks/useRbAuthorize";
|
|
53
|
-
import useRbMessage from "./services/hooks/useRbMessage";
|
|
54
|
-
import useRbNotification from "./services/hooks/useRbNotification";
|
|
53
|
+
import useRbMessage from "./services/hooks/feedback/useRbMessage";
|
|
54
|
+
import useRbNotification from "./services/hooks/feedback/useRbNotification";
|
|
55
|
+
import useRbFeedback from "./services/hooks/feedback/useRbFeedback";
|
|
55
56
|
import CommonConstant from "./services/constants/commonConstant";
|
|
56
57
|
import IconConstant from "./services/constants/iconConstant";
|
|
57
58
|
import DbConstant from "./services/constants/dbConstant";
|
|
@@ -100,7 +101,7 @@ export { EventEnum, StorageEnum };
|
|
|
100
101
|
export { CommonConstant, IconConstant, DbConstant };
|
|
101
102
|
export { RespDTO, ConstantListItem, DictListItem, PageParams, RbInitialStateReqProps, RbInitialStateRespProps, RbGlobalStateType, RbGlobalFunctionType };
|
|
102
103
|
export { BaseDO, BaseRelativeDO, TokenDO };
|
|
103
|
-
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification };
|
|
104
|
+
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbFeedback };
|
|
104
105
|
export { zhCN, enUS };
|
|
105
106
|
declare const _default: {
|
|
106
107
|
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
|