@modusoperandi/licit 0.14.14 → 0.14.16
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/dist/EditorNodes.js +4 -2
- package/dist/EditorNodes.js.flow +4 -2
- package/dist/HeadingNodeSpec.js +11 -17
- package/dist/HeadingNodeSpec.js.flow +12 -14
- package/dist/MathEditCommand.js +1 -1
- package/dist/TableCellMenuPlugin.js +1 -1
- package/dist/TableResizePlugin.js +25 -1
- package/dist/bom.xml +726 -602
- package/dist/client/CollabConnector.js +2 -0
- package/dist/client/EditorConnection.js +2 -4
- package/dist/client/Licit.js +18 -22
- package/dist/client/Licit.js.flow +1 -3
- package/dist/client/SimpleConnector.js +7 -4
- package/dist/ui/CustomNodeView.js +1 -1
- package/dist/ui/DocLayoutEditor.js +3 -4
- package/dist/ui/Editor.js +2 -0
- package/dist/ui/Icon.js +3 -1
- package/dist/ui/LinkURLEditor.js +3 -0
- package/dist/ui/ListItemNodeView.js +4 -6
- package/dist/ui/ListTypeButton.js +3 -1
- package/dist/ui/ListTypeCommandButton.js +3 -1
- package/dist/ui/ListTypeMenu.js +0 -1
- package/dist/ui/MathEditor.js +3 -0
- package/dist/ui/PasteMenu.js +0 -1
- package/dist/ui/ResizeObserver.js +8 -1
- package/dist/ui/TableNodeView.js +3 -0
- package/dist/ui/TableNodeView.js.flow +3 -0
- package/dist/ui/czi-form.css +3 -0
- package/dist/ui/czi-indent.css +10 -10
- package/dist/ui/handleEditorPaste.js +2 -0
- package/dist/ui/mathquill-editor/MathQuillEditor.js +3 -1
- package/jest.config.js +8 -8
- package/package.json +2 -2
- package/src/EditorNodes.js +4 -2
- package/src/HeadingNodeSpec.js +12 -14
- package/src/client/Licit.js +1 -3
- package/src/ui/TableNodeView.js +3 -0
- package/src/ui/czi-form.css +3 -0
- package/src/ui/czi-indent.css +10 -10
- package/webpack.config.js +1 -1
package/src/ui/czi-indent.css
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
/* Indent */
|
|
2
2
|
|
|
3
3
|
.ProseMirror p[data-indent='1'] {
|
|
4
|
-
margin-left:
|
|
4
|
+
margin-left: 30pt !important;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.ProseMirror p[data-indent='2'] {
|
|
8
|
-
margin-left:
|
|
8
|
+
margin-left: 58pt !important;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.ProseMirror p[data-indent='3'] {
|
|
12
|
-
margin-left:
|
|
12
|
+
margin-left: 91pt !important;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.ProseMirror p[data-indent='4'] {
|
|
16
|
-
margin-left:
|
|
16
|
+
margin-left: 117pt !important;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.ProseMirror p[data-indent='5'] {
|
|
20
|
-
margin-left:
|
|
20
|
+
margin-left: 144pt !important;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.ProseMirror p[data-indent='6'] {
|
|
24
|
-
margin-left:
|
|
24
|
+
margin-left: 178pt !important;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.ProseMirror p[data-indent='7'] {
|
|
28
|
-
margin-left:
|
|
28
|
+
margin-left: 215pt !important;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.ProseMirror p[data-indent='8'] {
|
|
32
|
-
margin-left:
|
|
32
|
+
margin-left: 251pt !important;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.ProseMirror p[data-indent='9'] {
|
|
36
|
-
margin-left:
|
|
36
|
+
margin-left: 291pt !important;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.ProseMirror p[data-indent='10'] {
|
|
40
|
-
margin-left:
|
|
40
|
+
margin-left: 326pt !important;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
/* list item indents */
|
package/webpack.config.js
CHANGED
|
@@ -86,7 +86,7 @@ var options = {
|
|
|
86
86
|
'window.jQuery': 'jquery',
|
|
87
87
|
}),
|
|
88
88
|
// type checker
|
|
89
|
-
... (isDev ? [new FlowWebpackPlugin({flowArgs: ['--show-all-errors']})] : []),
|
|
89
|
+
// ... (isDev ? [new FlowWebpackPlugin({flowArgs: ['--show-all-errors']})] : []),
|
|
90
90
|
// clean the web folder
|
|
91
91
|
new CleanWebpackPlugin(),
|
|
92
92
|
// expose and write the allowed env vars on the compiled bundle
|