@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
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* 缓存枚举
|
|
3
3
|
*/
|
|
4
4
|
declare enum StorageEnum {
|
|
5
5
|
/**
|
|
6
6
|
* 全局主题
|
|
7
7
|
*/
|
|
8
|
-
THEME_MODE = "REGENBIO_STORAGE_THEME_MODE"
|
|
8
|
+
THEME_MODE = "REGENBIO_STORAGE_THEME_MODE",
|
|
9
|
+
/**
|
|
10
|
+
* 本地语言
|
|
11
|
+
*/
|
|
12
|
+
LOCALE = "umi_locale"
|
|
9
13
|
}
|
|
10
14
|
export default StorageEnum;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regenbio/regenbio-components-react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.19",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"description": "",
|
|
7
|
+
"description": "@regenbio/regenbio-components-react",
|
|
8
8
|
"main": "build/index.js",
|
|
9
9
|
"types": "build/index.d.ts",
|
|
10
10
|
"scripts": {
|