@jiangood/admin-spring-boot-starter 0.2.3 → 0.2.4
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/package.json +2 -2
- package/src/layouts/index.jsx +2 -7
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"typescript": "^5.0.0"
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"@ant-design/icons": "^
|
|
10
|
+
"@ant-design/icons": "^6.0.0",
|
|
11
11
|
"@bpmn-io/properties-panel": "^3.34.0",
|
|
12
12
|
"@tinymce/tinymce-react": "^6.0.0",
|
|
13
13
|
"@umijs/types": "^3.5.43",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"!src/.umi"
|
|
34
34
|
],
|
|
35
35
|
"main": "src/index.ts",
|
|
36
|
-
"version": "0.2.
|
|
36
|
+
"version": "0.2.4",
|
|
37
37
|
"scripts": {
|
|
38
38
|
"dev": "umi dev",
|
|
39
39
|
"build": "tsc --outDir config/dist --skipLibCheck --noEmitOnError false config/index.ts"
|
package/src/layouts/index.jsx
CHANGED
|
@@ -112,16 +112,11 @@ class _Layouts extends React.Component {
|
|
|
112
112
|
triggerBg: ThemeUtils.getColor("primary-color-click"),
|
|
113
113
|
headerBg: 'white',
|
|
114
114
|
triggerHeight: 32
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
}
|
|
118
116
|
}
|
|
119
117
|
}}>
|
|
120
|
-
|
|
121
|
-
{this.renderContent()}
|
|
122
|
-
|
|
123
118
|
<MessageHolder />
|
|
124
|
-
|
|
119
|
+
{this.renderContent()}
|
|
125
120
|
</ConfigProvider>
|
|
126
121
|
}
|
|
127
122
|
|