@regenbio/regenbio-components-react 1.2.18 → 1.2.19
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/index.d.ts +4 -2
- package/build/index.js +3 -3
- package/build/services/constants/localeConstant.d.ts +4 -0
- package/build/services/enums/storageEnum.d.ts +6 -2
- package/build/services/utils/storageUtil.d.ts +2 -0
- package/build/services/utils/stringUtil.d.ts +5 -0
- package/package.json +2 -2
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: {
|