Skip to content

Commit 7944250

Browse files
authored
Merge pull request #15 from artdong/1.0.0
1.0.0
2 parents f0f82b1 + 0ef0365 commit 7944250

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.umirc.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ export default defineConfig({
2020
],
2121
navs: {
2222
en: [
23-
null,
23+
{ title: 'Demo', path: '/demo' },
2424
{ title: 'GitHub', path: 'https://github.com/artdong/react-org-tree' },
2525
],
2626
zh: [
27-
null,
27+
{ title: '示例', path: '/demo' },
2828
{ title: 'GitHub', path: 'https://github.com/artdong/react-org-tree' },
2929
],
3030
},
@@ -34,6 +34,10 @@ export default defineConfig({
3434
content:
3535
'react, react-org-tree, react-components, javascript',
3636
},
37+
{
38+
name: 'description',
39+
content: '🏆 一个react组织树组件',
40+
},
3741
],
3842
exportStatic: {},
3943
// theme: {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-org-tree",
3-
"version": "0.2.8",
3+
"version": "1.0.0",
44
"description": "a simple organization tree component based on react",
55
"main": "dist/bundle.js",
66
"files": [

src/org_tree.less

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
.org-tree-node-label-inner {
3737
padding: 10px 15px;
3838
text-align: center;
39+
color: black;
3940
border-radius: 3px;
4041
box-shadow: 0 1px 5px rgba(0, 0, 0, .15);
4142
}

0 commit comments

Comments
 (0)