@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.
Files changed (40) hide show
  1. package/dist/EditorNodes.js +4 -2
  2. package/dist/EditorNodes.js.flow +4 -2
  3. package/dist/HeadingNodeSpec.js +11 -17
  4. package/dist/HeadingNodeSpec.js.flow +12 -14
  5. package/dist/MathEditCommand.js +1 -1
  6. package/dist/TableCellMenuPlugin.js +1 -1
  7. package/dist/TableResizePlugin.js +25 -1
  8. package/dist/bom.xml +726 -602
  9. package/dist/client/CollabConnector.js +2 -0
  10. package/dist/client/EditorConnection.js +2 -4
  11. package/dist/client/Licit.js +18 -22
  12. package/dist/client/Licit.js.flow +1 -3
  13. package/dist/client/SimpleConnector.js +7 -4
  14. package/dist/ui/CustomNodeView.js +1 -1
  15. package/dist/ui/DocLayoutEditor.js +3 -4
  16. package/dist/ui/Editor.js +2 -0
  17. package/dist/ui/Icon.js +3 -1
  18. package/dist/ui/LinkURLEditor.js +3 -0
  19. package/dist/ui/ListItemNodeView.js +4 -6
  20. package/dist/ui/ListTypeButton.js +3 -1
  21. package/dist/ui/ListTypeCommandButton.js +3 -1
  22. package/dist/ui/ListTypeMenu.js +0 -1
  23. package/dist/ui/MathEditor.js +3 -0
  24. package/dist/ui/PasteMenu.js +0 -1
  25. package/dist/ui/ResizeObserver.js +8 -1
  26. package/dist/ui/TableNodeView.js +3 -0
  27. package/dist/ui/TableNodeView.js.flow +3 -0
  28. package/dist/ui/czi-form.css +3 -0
  29. package/dist/ui/czi-indent.css +10 -10
  30. package/dist/ui/handleEditorPaste.js +2 -0
  31. package/dist/ui/mathquill-editor/MathQuillEditor.js +3 -1
  32. package/jest.config.js +8 -8
  33. package/package.json +2 -2
  34. package/src/EditorNodes.js +4 -2
  35. package/src/HeadingNodeSpec.js +12 -14
  36. package/src/client/Licit.js +1 -3
  37. package/src/ui/TableNodeView.js +3 -0
  38. package/src/ui/czi-form.css +3 -0
  39. package/src/ui/czi-indent.css +10 -10
  40. package/webpack.config.js +1 -1
@@ -1,43 +1,43 @@
1
1
  /* Indent */
2
2
 
3
3
  .ProseMirror p[data-indent='1'] {
4
- margin-left: 18pt;
4
+ margin-left: 30pt !important;
5
5
  }
6
6
 
7
7
  .ProseMirror p[data-indent='2'] {
8
- margin-left: 42pt;
8
+ margin-left: 58pt !important;
9
9
  }
10
10
 
11
11
  .ProseMirror p[data-indent='3'] {
12
- margin-left: 66pt;
12
+ margin-left: 91pt !important;
13
13
  }
14
14
 
15
15
  .ProseMirror p[data-indent='4'] {
16
- margin-left: 80pt;
16
+ margin-left: 117pt !important;
17
17
  }
18
18
 
19
19
  .ProseMirror p[data-indent='5'] {
20
- margin-left: 98pt;
20
+ margin-left: 144pt !important;
21
21
  }
22
22
 
23
23
  .ProseMirror p[data-indent='6'] {
24
- margin-left: 122pt;
24
+ margin-left: 178pt !important;
25
25
  }
26
26
 
27
27
  .ProseMirror p[data-indent='7'] {
28
- margin-left: 150pt;
28
+ margin-left: 215pt !important;
29
29
  }
30
30
 
31
31
  .ProseMirror p[data-indent='8'] {
32
- margin-left: 178pt;
32
+ margin-left: 251pt !important;
33
33
  }
34
34
 
35
35
  .ProseMirror p[data-indent='9'] {
36
- margin-left: 206pt;
36
+ margin-left: 291pt !important;
37
37
  }
38
38
 
39
39
  .ProseMirror p[data-indent='10'] {
40
- margin-left: 234pt;
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