@regenbio/regenbio-components-react 1.2.18 → 1.2.20

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.
@@ -57,4 +57,8 @@ export type RbUserSelectorProps<ValueType = any, OptionType extends BaseOptionTy
57
57
  * 国际化
58
58
  */
59
59
  intl: any;
60
+ /**
61
+ * useContext(FieldContext) 的内容,单独封装的组件无法正常获取到 formRef
62
+ */
63
+ context: any;
60
64
  } & ProFormFieldRemoteProps;
package/build/index.d.ts CHANGED
@@ -25,11 +25,13 @@ import EventUtil from "./services/utils/eventUtil";
25
25
  import StorageUtil from "./services/utils/storageUtil";
26
26
  import ResourceUtil from "./services/utils/resourceUtil";
27
27
  import RenderUtil from "./services/utils/renderUtil";
28
+ import StringUtil from "./services/utils/stringUtil";
28
29
  import EventEnum from "./services/enums/eventEnum";
29
30
  import StorageEnum from "./services/enums/storageEnum";
30
31
  import CommonConstant from "./services/constants/commonConstant";
31
32
  import IconConstant from "./services/constants/iconConstant";
32
33
  import DbConstant from "./services/constants/dbConstant";
34
+ import LocaleConstant from "./services/constants/localeConstant";
33
35
  import { RespDTO, ConstantListItem } from "./services/types/commonType";
34
36
  import zhCN from "./locales/zh-CN";
35
37
  import enUS from "./locales/en-US";
@@ -54,9 +56,9 @@ export { RbDragTable };
54
56
  export type { RbDragTableProps };
55
57
  export { RbUserSelector };
56
58
  export type { RbUserSelectorProps };
57
- export { DbUtil, ObjectUtil, EventUtil, StorageUtil, ResourceUtil, RenderUtil };
59
+ export { DbUtil, ObjectUtil, EventUtil, StorageUtil, ResourceUtil, RenderUtil, StringUtil };
58
60
  export { EventEnum, StorageEnum };
59
- export { CommonConstant, IconConstant, DbConstant };
61
+ export { CommonConstant, IconConstant, DbConstant, LocaleConstant };
60
62
  export { RespDTO, ConstantListItem };
61
63
  export { zhCN, enUS };
62
64
  declare const _default: {