@voplus/morpho-workspace 1.0.0-dev02 → 1.0.0-dev04
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/es/components/AvatarList/index.js +1 -1
- package/es/components/AvatarList/index.js.map +1 -1
- package/es/components/PageListView/data/index.js +1 -1
- package/es/components/PageListView/index.js +8 -8
- package/es/components/PageListView/index.js.map +1 -1
- package/es/components/RichTextEditor/BlockStyleControls.d.ts +3 -0
- package/es/components/RichTextEditor/BlockStyleControls.js +27 -0
- package/es/components/RichTextEditor/BlockStyleControls.js.map +1 -0
- package/es/components/RichTextEditor/InlineStyleControls.d.ts +3 -0
- package/es/components/RichTextEditor/InlineStyleControls.js +18 -0
- package/es/components/RichTextEditor/InlineStyleControls.js.map +1 -0
- package/es/components/RichTextEditor/StyleButton.d.ts +3 -0
- package/es/components/RichTextEditor/StyleButton.js +14 -0
- package/es/components/RichTextEditor/StyleButton.js.map +1 -0
- package/es/components/RichTextEditor/index.d.ts +20 -0
- package/es/components/RichTextEditor/index.js +117 -0
- package/es/components/RichTextEditor/index.js.map +1 -0
- package/es/components/RichTextEditor/index.less +99 -0
- package/es/components/SortDnD/Card.d.ts +3 -2
- package/es/components/SortDnD/Card.js +4 -2
- package/es/components/SortDnD/Card.js.map +1 -1
- package/es/components/SortDnD/Container.d.ts +2 -2
- package/es/components/SortDnD/Container.js +2 -2
- package/es/components/SortDnD/Container.js.map +1 -1
- package/es/components/SortDnD/index.d.ts +1 -1
- package/es/components/SortDnD/index.js +1 -1
- package/es/components/SortDnD/index.js.map +1 -1
- package/es/components/VoLayout/index.js +9 -10
- package/es/components/VoLayout/index.js.map +1 -1
- package/es/controls/DocumentStatusLabel/index.js.map +1 -1
- package/es/data/contexts/StoreContext/index.js +0 -1
- package/es/data/contexts/StoreContext/index.js.map +1 -1
- package/es/data/task/TaskStore.d.ts +2 -0
- package/es/data/task/TaskStore.js +5 -0
- package/es/data/task/TaskStore.js.map +1 -1
- package/es/modules/meeting/components/MeetingDetail/index.js +2 -2
- package/es/modules/meeting/components/MeetingDetail/index.js.map +1 -1
- package/es/modules/meeting/components/MeetingList/index.js +0 -1
- package/es/modules/meeting/components/MeetingList/index.js.map +1 -1
- package/es/modules/tasks/components/SubTaskList/index.js +9 -11
- package/es/modules/tasks/components/SubTaskList/index.js.map +1 -1
- package/es/modules/tasks/components/SubTaskList/index.less +2 -2
- package/es/modules/tasks/components/SubTaskList/state.d.ts +0 -1
- package/es/modules/tasks/components/SubTaskList/state.js +0 -4
- package/es/modules/tasks/components/SubTaskList/state.js.map +1 -1
- package/es/modules/tasks/components/TaskDetail/index.js +3 -3
- package/es/modules/tasks/components/TaskDetail/index.js.map +1 -1
- package/es/modules/tasks/components/TaskItem/TaskItem.js +5 -4
- package/es/modules/tasks/components/TaskItem/TaskItem.js.map +1 -1
- package/es/modules/tasks/components/TaskItem/index.less +1 -1
- package/es/modules/tasks/components/TaskList/index.js +12 -4
- package/es/modules/tasks/components/TaskList/index.js.map +1 -1
- package/es/modules/tasks/components/TaskList/state.d.ts +0 -1
- package/es/modules/tasks/components/TaskList/state.js +0 -4
- package/es/modules/tasks/components/TaskList/state.js.map +1 -1
- package/es/modules/tasks/pages/TaskTestView/index.js +23 -17
- package/es/modules/tasks/pages/TaskTestView/index.js.map +1 -1
- package/es/modules/tasks/pages/TaskTestView/index.less +8 -12
- package/es/styles/common.less +7 -5
- package/package.json +3 -1
@@ -1,12 +1,10 @@
|
|
1
1
|
@import "../../../../styles/common.less";
|
2
2
|
:global {
|
3
3
|
.task-text-view {
|
4
|
-
// display: flex;
|
5
4
|
position: absolute;
|
6
5
|
width: 100%;
|
7
6
|
height: 100%;
|
8
7
|
box-sizing: border-box;
|
9
|
-
// justify-content: space-between;
|
10
8
|
background: #f2f2f2;
|
11
9
|
.task-text-view_left,
|
12
10
|
.task-text-view_right {
|
@@ -23,27 +21,25 @@
|
|
23
21
|
.task-text-view_right {
|
24
22
|
display: flex;
|
25
23
|
flex-direction: column;
|
26
|
-
// width: 0;
|
27
24
|
height: 100%;
|
28
|
-
// margin-left: 10px;
|
29
|
-
// transform: translateX(100%);
|
30
|
-
&.show {
|
31
|
-
// flex: 1;
|
32
|
-
// transform: translateX(0%);
|
33
|
-
// transition: transform 0.3s ease-in;
|
34
|
-
}
|
35
25
|
.ant-tabs {
|
36
26
|
display: flex;
|
37
27
|
flex-direction: column;
|
28
|
+
height: 100%;
|
38
29
|
.ant-tabs-content {
|
39
30
|
height: 100%;
|
40
|
-
|
31
|
+
.ant-tabs-tabpane {
|
32
|
+
position: relative;
|
33
|
+
}
|
41
34
|
}
|
42
35
|
.ant-tabs-bar {
|
43
|
-
margin: 0
|
36
|
+
margin: 0;
|
44
37
|
}
|
45
38
|
.module-box {
|
39
|
+
height: 100%;
|
46
40
|
padding: 10px 20px;
|
41
|
+
box-sizing: border-box;
|
42
|
+
overflow-x: hidden;
|
47
43
|
}
|
48
44
|
}
|
49
45
|
}
|
package/es/styles/common.less
CHANGED
@@ -24,15 +24,14 @@
|
|
24
24
|
flex-direction: column;
|
25
25
|
.ant-tabs-content {
|
26
26
|
height: 100%;
|
27
|
-
padding-bottom: 45px;
|
28
27
|
}
|
29
28
|
}
|
30
29
|
}
|
31
30
|
.module-detail-view,
|
32
31
|
.module-tab-view {
|
33
|
-
|
34
|
-
|
35
|
-
|
32
|
+
display: flex;
|
33
|
+
flex-direction: column;
|
34
|
+
height: 100%;
|
36
35
|
.module-view-header {
|
37
36
|
padding: 15px 20px;
|
38
37
|
background: #fff;
|
@@ -42,9 +41,12 @@
|
|
42
41
|
.ant-tabs {
|
43
42
|
display: flex;
|
44
43
|
flex-direction: column;
|
44
|
+
height: 100%;
|
45
45
|
.ant-tabs-content {
|
46
46
|
height: 100%;
|
47
|
-
|
47
|
+
}
|
48
|
+
.ant-tabs-tabpane {
|
49
|
+
position: relative;
|
48
50
|
}
|
49
51
|
.ant-tabs-bar {
|
50
52
|
margin: 0 20px;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@voplus/morpho-workspace",
|
3
|
-
"version": "1.0.0-
|
3
|
+
"version": "1.0.0-dev04",
|
4
4
|
"description": "morpho workspace module",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -37,6 +37,7 @@
|
|
37
37
|
"@storybook/addon-knobs": "^5.2.1",
|
38
38
|
"@storybook/react": "^5.2.1",
|
39
39
|
"@types/classnames": "^2.2.9",
|
40
|
+
"@types/draft-js": "^0.10.35",
|
40
41
|
"@types/emoji-mart": "^2.11.0",
|
41
42
|
"@types/enzyme": "^3.10.3",
|
42
43
|
"@types/enzyme-adapter-react-16": "^1.0.3",
|
@@ -67,6 +68,7 @@
|
|
67
68
|
"cpx": "^1.5.0",
|
68
69
|
"css-loader": "^2.1.1",
|
69
70
|
"del-cli": "^2.0.0",
|
71
|
+
"draft-js": "^0.11.1",
|
70
72
|
"emoji-mart": "^2.9.2",
|
71
73
|
"enzyme": "^3.10.0",
|
72
74
|
"enzyme-adapter-react-16": "^1.14.0",
|