@lambo-design/shared 1.0.0-beta.325 → 1.0.0-beta.328
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/config/themes/index.js +3 -1
- package/package.json +1 -1
- package/utils/locale/en-US.js +3 -2
- package/utils/locale/zh-CN.js +2 -1
package/config/themes/index.js
CHANGED
|
@@ -15,6 +15,7 @@ import themeWhite from "./theme-white";
|
|
|
15
15
|
import themeCuiWei from "./theme-cuiwei";
|
|
16
16
|
import themeBwb from "./theme-bwb";
|
|
17
17
|
import themeCL from "./theme-canglan";
|
|
18
|
+
import themeBlueDigital from "./theme-blue-digital";
|
|
18
19
|
export default [
|
|
19
20
|
themeDefault,
|
|
20
21
|
themeGold,
|
|
@@ -32,5 +33,6 @@ export default [
|
|
|
32
33
|
themeWhite,
|
|
33
34
|
themeCuiWei,
|
|
34
35
|
themeBwb,
|
|
35
|
-
themeCL
|
|
36
|
+
themeCL,
|
|
37
|
+
themeBlueDigital
|
|
36
38
|
]
|
package/package.json
CHANGED
package/utils/locale/en-US.js
CHANGED
|
@@ -21,7 +21,8 @@ let enUSData = {
|
|
|
21
21
|
'orange': 'Orange',
|
|
22
22
|
'red': 'Red',
|
|
23
23
|
'white': 'White',
|
|
24
|
-
'canglan':'Canglan'
|
|
24
|
+
'canglan':'Canglan',
|
|
25
|
+
'bd':'Blue Digital'
|
|
25
26
|
},
|
|
26
27
|
'pro-layout':{
|
|
27
28
|
'common': {
|
|
@@ -171,4 +172,4 @@ let enUSData = {
|
|
|
171
172
|
}
|
|
172
173
|
}
|
|
173
174
|
}
|
|
174
|
-
export default enUSData;
|
|
175
|
+
export default enUSData;
|