@modusoperandi/licit 1.0.5 → 1.0.8

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 (253) hide show
  1. package/BlockquoteInsertNewLineCommand.js +10 -11
  2. package/BlockquoteInsertNewLineCommand.js.flow +1 -2
  3. package/BlockquoteNodeSpec.js +2 -3
  4. package/BlockquoteNodeSpec.js.flow +1 -2
  5. package/BlockquoteToggleCommand.js +9 -9
  6. package/BookmarkNodeSpec.js +1 -1
  7. package/CodeBlockCommand.js +10 -10
  8. package/CodeBlockCommand.js.flow +1 -1
  9. package/ContentPlaceholderPlugin.js +17 -18
  10. package/ContentPlaceholderPlugin.js.flow +10 -14
  11. package/CursorPlaceholderPlugin.js +8 -9
  12. package/CursorPlaceholderPlugin.js.flow +0 -2
  13. package/DocLayoutCommand.js +10 -12
  14. package/DocLayoutCommand.js.flow +1 -3
  15. package/EditorKeyMap.js +0 -1
  16. package/EditorKeyMap.js.flow +0 -2
  17. package/EditorMarks.js +1 -1
  18. package/EditorNodes.js +1 -2
  19. package/EditorNodes.js.flow +0 -1
  20. package/EditorPageLayoutPlugin.js +8 -8
  21. package/FontTypeMarkSpec.js +1 -1
  22. package/FontTypeMarkSpec.js.flow +1 -1
  23. package/HTMLMutator.js +6 -7
  24. package/HTMLMutator.js.flow +2 -3
  25. package/HeadingNodeSpec.js +2 -12
  26. package/HeadingNodeSpec.js.flow +4 -14
  27. package/HistoryRedoCommand.js +9 -9
  28. package/HistoryUndoCommand.js +9 -9
  29. package/HorizontalRuleCommand.js +9 -9
  30. package/ImageUploadPlaceholderPlugin.js +14 -18
  31. package/ImageUploadPlaceholderPlugin.js.flow +6 -11
  32. package/LinkMarkSpec.js +6 -1
  33. package/LinkMarkSpec.js.flow +5 -0
  34. package/LinkSetURLCommand.js +126 -55
  35. package/LinkSetURLCommand.js.flow +61 -37
  36. package/LinkTooltipPlugin.js +119 -31
  37. package/LinkTooltipPlugin.js.flow +91 -22
  38. package/ListItemInsertNewLineCommand.js +10 -11
  39. package/ListItemInsertNewLineCommand.js.flow +1 -2
  40. package/ListItemMergeCommand.js +17 -16
  41. package/ListItemMergeCommand.js.flow +4 -6
  42. package/ListSplitCommand.js +9 -9
  43. package/ListToggleCommand.js +9 -9
  44. package/MarksClearCommand.js +9 -9
  45. package/MathEditCommand.js +10 -11
  46. package/MathEditCommand.js.flow +1 -2
  47. package/OrderedListNodeSpec.js +1 -1
  48. package/ParagraphNodeSpec.js +11 -2
  49. package/ParagraphNodeSpec.js.flow +9 -2
  50. package/ParagraphSpacingCommand.js +13 -14
  51. package/ParagraphSpacingCommand.js.flow +4 -9
  52. package/PrintCommand.js +9 -9
  53. package/SelectionPlaceholderPlugin.js +8 -9
  54. package/SelectionPlaceholderPlugin.js.flow +0 -2
  55. package/SpacerMarkSpec.js +1 -1
  56. package/StyleView.js +3 -4
  57. package/StyleView.js.flow +0 -1
  58. package/TableBackgroundColorCommand.js +13 -16
  59. package/TableBackgroundColorCommand.js.flow +14 -18
  60. package/TableBorderColorCommand.js +13 -16
  61. package/TableBorderColorCommand.js.flow +14 -20
  62. package/TableCellColorCommand.js +11 -13
  63. package/TableCellColorCommand.js.flow +2 -4
  64. package/TableCellMenuPlugin.js +16 -16
  65. package/TableCellMenuPlugin.js.flow +5 -8
  66. package/TableInsertCommand.js +12 -15
  67. package/TableInsertCommand.js.flow +3 -6
  68. package/TableMergeCellsCommand.js +13 -12
  69. package/TableMergeCellsCommand.js.flow +4 -3
  70. package/TableNodesSpecs.js +4 -2
  71. package/TableNodesSpecs.js.flow +4 -2
  72. package/TableResizePlugin.js +18 -18
  73. package/TableResizePlugin.js.flow +2 -3
  74. package/TextInsertTabSpaceCommand.js +9 -9
  75. package/Types.js +1 -0
  76. package/Types.js.flow +2 -5
  77. package/WebFontLoader.js +4 -4
  78. package/bom.xml +20047 -28206
  79. package/buildEditorPlugins.js +4 -4
  80. package/buildInputRules.js +8 -4
  81. package/buildInputRules.js.flow +8 -4
  82. package/client/CollabConnector.js +9 -9
  83. package/client/EditorConnection.js +8 -6
  84. package/client/EditorConnection.js.flow +3 -2
  85. package/client/Licit.js +22 -59
  86. package/client/Licit.js.flow +12 -45
  87. package/client/Licit.test.js +49 -39
  88. package/client/Licit.test.js.flow +40 -34
  89. package/client/Reporter.js +3 -3
  90. package/client/SimpleConnector.js +4 -4
  91. package/client/http.js +0 -6
  92. package/client/http.js.flow +0 -8
  93. package/client/throttle.js +8 -2
  94. package/client/throttle.js.flow +2 -2
  95. package/convertFromDOMElement.js +2 -4
  96. package/convertFromDOMElement.js.flow +2 -5
  97. package/convertFromHTML.js +2 -3
  98. package/convertFromHTML.js.flow +2 -4
  99. package/convertFromJSON.js +1 -2
  100. package/convertFromJSON.js.flow +1 -2
  101. package/convertToCSSPTValue.js +6 -10
  102. package/convertToCSSPTValue.js.flow +8 -11
  103. package/createCommand.js +9 -9
  104. package/createEditorKeyMap.js +1 -1
  105. package/createEmptyEditorState.js +2 -3
  106. package/createEmptyEditorState.js.flow +2 -4
  107. package/createTableResizingPlugin.js +6 -6
  108. package/createTableResizingPlugin.js.flow +1 -1
  109. package/findActiveMark.js +1 -1
  110. package/findActiveMark.js.flow +1 -1
  111. package/insertTable.js +0 -3
  112. package/insertTable.js.flow +0 -2
  113. package/joinDown.js +1 -3
  114. package/joinDown.js.flow +1 -3
  115. package/joinUp.js +1 -3
  116. package/joinUp.js.flow +1 -3
  117. package/lookUpElement.js +2 -1
  118. package/lookUpElement.js.flow +1 -1
  119. package/normalizeHTML.js +3 -1
  120. package/normalizeHTML.js.flow +3 -1
  121. package/package.json +23 -17
  122. package/patchAnchorElements.js +1 -1
  123. package/patchAnchorElements.js.flow +1 -1
  124. package/patchBreakElements.js +3 -2
  125. package/patchBreakElements.js.flow +2 -2
  126. package/patchElementInlineStyles.js +1 -1
  127. package/patchElementInlineStyles.js.flow +1 -1
  128. package/patchListElements.js +6 -7
  129. package/patchListElements.js.flow +7 -8
  130. package/patchMathElements.js +5 -7
  131. package/patchMathElements.js.flow +2 -4
  132. package/patchStyleElements.js +1 -1
  133. package/patchStyleElements.js.flow +7 -6
  134. package/patchTableElements.js +2 -3
  135. package/patchTableElements.js.flow +2 -3
  136. package/sanitizeURL.js +1 -1
  137. package/sanitizeURL.js.flow +1 -1
  138. package/splitListItem.js +2 -2
  139. package/splitListItem.js.flow +1 -1
  140. package/styles.css +32 -3
  141. package/toggleBlockquote.js +4 -5
  142. package/toggleBlockquote.js.flow +5 -12
  143. package/toggleCodeBlock.js +6 -6
  144. package/toggleCodeBlock.js.flow +10 -10
  145. package/ui/AlertInfo.js +9 -10
  146. package/ui/AlertInfo.js.flow +0 -1
  147. package/ui/BookmarkNodeView.js +13 -13
  148. package/ui/BookmarkNodeView.js.flow +0 -2
  149. package/ui/CommandButton.js +9 -9
  150. package/ui/CommandMenu.js +12 -12
  151. package/ui/CommandMenu.js.flow +1 -1
  152. package/ui/CommandMenuButton.js +11 -13
  153. package/ui/CommandMenuButton.js.flow +2 -5
  154. package/ui/CustomEditorView.js +13 -12
  155. package/ui/CustomEditorView.js.flow +1 -0
  156. package/ui/CustomMenu.js +8 -10
  157. package/ui/CustomMenu.js.flow +0 -3
  158. package/ui/CustomMenuItem.js +10 -11
  159. package/ui/CustomMenuItem.js.flow +0 -1
  160. package/ui/CustomNodeView.js +27 -16
  161. package/ui/CustomNodeView.js.flow +16 -9
  162. package/ui/CustomRadioButton.js +13 -16
  163. package/ui/CustomRadioButton.js.flow +2 -4
  164. package/ui/DocLayoutEditor.js +10 -13
  165. package/ui/DocLayoutEditor.js.flow +1 -5
  166. package/ui/Editor.js +16 -16
  167. package/ui/Editor.js.flow +7 -12
  168. package/ui/EditorFrameset.js +9 -10
  169. package/ui/EditorFrameset.js.flow +0 -2
  170. package/ui/EditorToolbar.js +24 -30
  171. package/ui/EditorToolbar.js.flow +22 -43
  172. package/ui/EditorToolbarConfig.js +5 -5
  173. package/ui/EditorToolbarConfig.js.flow +1 -1
  174. package/ui/FontSizeCommandMenuButton.js +10 -10
  175. package/ui/FontSizeCommandMenuButton.js.flow +1 -1
  176. package/ui/FontTypeCommandMenuButton.js +11 -12
  177. package/ui/FontTypeCommandMenuButton.js.flow +4 -5
  178. package/ui/Frag.js +8 -9
  179. package/ui/Frag.js.flow +0 -2
  180. package/ui/Icon.js +12 -18
  181. package/ui/Icon.js.flow +0 -7
  182. package/ui/ImageInlineEditor.js +9 -10
  183. package/ui/ImageInlineEditor.js.flow +0 -1
  184. package/ui/LinkTooltip.js +62 -28
  185. package/ui/LinkTooltip.js.flow +55 -24
  186. package/ui/LinkURLEditor.js +151 -36
  187. package/ui/LinkURLEditor.js.flow +176 -54
  188. package/ui/ListItemNodeView.js +4 -4
  189. package/ui/ListTypeButton.js +11 -15
  190. package/ui/ListTypeButton.js.flow +2 -6
  191. package/ui/ListTypeCommandButton.js +10 -10
  192. package/ui/ListTypeCommandButton.js.flow +1 -1
  193. package/ui/ListTypeMenu.js +11 -12
  194. package/ui/ListTypeMenu.js.flow +1 -2
  195. package/ui/LoadingIndicator.js +8 -9
  196. package/ui/LoadingIndicator.js.flow +0 -1
  197. package/ui/MathEditor.js +10 -15
  198. package/ui/MathEditor.js.flow +1 -9
  199. package/ui/MathInlineEditor.js +13 -14
  200. package/ui/MathInlineEditor.js.flow +3 -5
  201. package/ui/MathNodeView.js +16 -16
  202. package/ui/MathNodeView.js.flow +10 -21
  203. package/ui/PasteMenu.js +11 -15
  204. package/ui/PasteMenu.js.flow +0 -5
  205. package/ui/ResizeObserver.js +4 -4
  206. package/ui/ResizeObserver.js.flow +3 -4
  207. package/ui/RichTextEditor.js +9 -9
  208. package/ui/SelectionObserver.js +6 -6
  209. package/ui/SelectionObserver.js.flow +2 -2
  210. package/ui/TableCellMenu.js +9 -10
  211. package/ui/TableCellMenu.js.flow +0 -2
  212. package/ui/TableGridSizeEditor.js +12 -15
  213. package/ui/TableGridSizeEditor.js.flow +7 -6
  214. package/ui/TableNodeView.js +15 -13
  215. package/ui/TableNodeView.js.flow +3 -3
  216. package/ui/bindScrollHandler.js +2 -1
  217. package/ui/bindScrollHandler.js.flow +1 -1
  218. package/ui/canUseCSSFont.js +5 -4
  219. package/ui/canUseCSSFont.js.flow +4 -5
  220. package/ui/czi-editor.css +1 -4
  221. package/ui/czi-form.css +102 -8
  222. package/ui/czi-image-view.css +1 -5
  223. package/ui/czi-link-tooltip.css +41 -0
  224. package/ui/czi-list.css +0 -4
  225. package/ui/czi-loading-indicator.css +1 -46
  226. package/ui/czi-table-cell-menu.css +3 -1
  227. package/ui/findActiveFontSize.js +2 -1
  228. package/ui/findActiveFontSize.js.flow +1 -4
  229. package/ui/findActiveFontType.js +4 -3
  230. package/ui/findActiveFontType.js.flow +3 -6
  231. package/ui/handleEditorDrop.js +1 -1
  232. package/ui/handleEditorDrop.js.flow +1 -1
  233. package/ui/handleEditorKeyDown.js +1 -1
  234. package/ui/handleEditorKeyDown.js.flow +1 -1
  235. package/ui/handleEditorPaste.js +1 -1
  236. package/ui/handleEditorPaste.js.flow +1 -1
  237. package/ui/injectStyleSheet.js +2 -2
  238. package/ui/injectStyleSheet.js.flow +2 -4
  239. package/ui/isElementFullyVisible.js +1 -10
  240. package/ui/isElementFullyVisible.js.flow +1 -13
  241. package/ui/mathquill-editor/MathQuillEditor.js +12 -14
  242. package/ui/mathquill-editor/MathQuillEditor.js.flow +0 -2
  243. package/ui/mathquill-editor/MathQuillEditorSymbolsPanel.js +9 -10
  244. package/ui/mathquill-editor/MathQuillEditorSymbolsPanel.js.flow +0 -1
  245. package/ui/mathquill-editor/mathquill-import-kludge.js +1 -9
  246. package/ui/mathquill-editor/mathquill-import-kludge.js.flow +0 -9
  247. package/ui/renderLaTeXAsHTML.js +3 -7
  248. package/ui/renderLaTeXAsHTML.js.flow +0 -4
  249. package/ui/resolveImage.js +4 -5
  250. package/ui/resolveImage.js.flow +3 -5
  251. package/ui/toCSSLineSpacing.js +2 -3
  252. package/ui/toCSSLineSpacing.js.flow +2 -4
  253. package/styles0.css +0 -29
@@ -32,7 +32,7 @@ export default function handleEditorKeyDown(
32
32
  // An atomic node (e.g. Image) is selected.
33
33
  // Only whitelisted keyCode should be allowed, which prevents user
34
34
  // from typing letter after the atomic node selected.
35
- return !AtomicNodeKeyCodes.has(event.keyCode);
35
+ return !AtomicNodeKeyCodes.has(event.key);
36
36
  }
37
37
  }
38
38
  return false;
@@ -10,7 +10,7 @@ export default function handleEditorPaste(view, event) {
10
10
  return false;
11
11
  }
12
12
  var files = clipboardData.files;
13
- if (!files || !files.length) {
13
+ if (!(files !== null && files !== void 0 && files.length)) {
14
14
  return false;
15
15
  }
16
16
  var filesList = Array.from(files);
@@ -20,7 +20,7 @@ export default function handleEditorPaste(
20
20
  }
21
21
 
22
22
  const { files } = clipboardData;
23
- if (!files || !files.length) {
23
+ if (!files?.length) {
24
24
  return false;
25
25
  }
26
26
  const filesList = Array.from(files);
@@ -12,7 +12,7 @@ function createElement(tag, attrs) {
12
12
  return el;
13
13
  }
14
14
  export default function injectStyleSheet(urlStr) {
15
- var parsedURL = url.parse(urlStr);
15
+ var parsedURL = new URL(urlStr);
16
16
  var protocol = parsedURL.protocol;
17
17
  var protocolPattern = /^(http:|https:)/;
18
18
  if (!protocolPattern.test(protocol || '')) {
@@ -33,5 +33,5 @@ export default function injectStyleSheet(urlStr) {
33
33
  });
34
34
  addedElements.set(href, el);
35
35
  var root = document.head || document.documentElement || document.body;
36
- root && root.appendChild(el);
36
+ root === null || root === void 0 || root.appendChild(el);
37
37
  }
@@ -1,7 +1,5 @@
1
1
  // @flow
2
-
3
2
  import url from 'url';
4
-
5
3
  const addedElements = new Map();
6
4
 
7
5
  function createElement(tag: string, attrs: Object): Element {
@@ -17,7 +15,7 @@ function createElement(tag: string, attrs: Object): Element {
17
15
  }
18
16
 
19
17
  export default function injectStyleSheet(urlStr: string): void {
20
- const parsedURL = url.parse(urlStr);
18
+ const parsedURL = new URL(urlStr);
21
19
  const { protocol } = parsedURL;
22
20
  const protocolPattern = /^(http:|https:)/;
23
21
  if (!protocolPattern.test(protocol || '')) {
@@ -38,5 +36,5 @@ export default function injectStyleSheet(urlStr: string): void {
38
36
  });
39
37
  addedElements.set(href, el);
40
38
  const root = document.head || document.documentElement || document.body;
41
- root && root.appendChild(el);
39
+ root?.appendChild(el);
42
40
  }
@@ -9,14 +9,5 @@ export default function isElementFullyVisible(el) {
9
9
  var factor = '10px' === el.style.borderRadius ? 3 : 1;
10
10
  // Only checks the top-left point.
11
11
  var nwEl = w && h ? el.ownerDocument.elementFromPoint(x + factor, y + factor) : null;
12
- if (!nwEl) {
13
- return false;
14
- }
15
- if (nwEl === el) {
16
- return true;
17
- }
18
- if (el.contains(nwEl)) {
19
- return true;
20
- }
21
- return false;
12
+ return !nwEl ? false : nwEl === el || el.contains(nwEl);
22
13
  }
@@ -10,17 +10,5 @@ export default function isElementFullyVisible(el: HTMLElement): boolean {
10
10
  const nwEl =
11
11
  w && h ? el.ownerDocument.elementFromPoint(x + factor, y + factor) : null;
12
12
 
13
- if (!nwEl) {
14
- return false;
15
- }
16
-
17
- if (nwEl === el) {
18
- return true;
19
- }
20
-
21
- if (el.contains(nwEl)) {
22
- return true;
23
- }
24
-
25
- return false;
13
+ return !nwEl ? false : nwEl === el || el.contains(nwEl);
26
14
  }
@@ -1,21 +1,20 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
3
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
4
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
5
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
3
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
4
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
5
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
6
6
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
7
7
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
8
8
  function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
9
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
10
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
9
+ function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
10
+ function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
11
11
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
12
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
13
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
14
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
12
+ function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
13
+ function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
14
+ function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
15
15
  function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
16
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
17
- function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
18
- import './czi-mathquill-editor.css';
16
+ function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
17
+ function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
19
18
  import * as MathQuillEditorSymbols from './MathQuillEditorSymbols.js';
20
19
  import MathQuillEditorSymbolsPanel from './MathQuillEditorSymbolsPanel.js';
21
20
  import * as React from 'react';
@@ -30,7 +29,7 @@ import { MathQuill } from './mathquill-import-kludge.js';
30
29
  var CSS_CDN_URL = '//cdnjs.cloudflare.com/ajax/libs/mathquill/0.10.1/mathquill.css';
31
30
  var CSS_FONT = 'Symbola';
32
31
  var MQ = MathQuill.getInterface(2);
33
- _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
32
+ _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
34
33
  var fontSupported;
35
34
  return _regeneratorRuntime().wrap(function _callee$(_context) {
36
35
  while (1) switch (_context.prev = _context.next) {
@@ -45,7 +44,6 @@ _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
45
44
  // Now loaded locally, so that it work in closed network as well.
46
45
  //injectStyleSheet(CSS_CDN_URL);
47
46
  }
48
- // injectStyleSheet(CSS_CDN_URL);
49
47
  case 4:
50
48
  case "end":
51
49
  return _context.stop();
@@ -1,6 +1,5 @@
1
1
  // @flow
2
2
 
3
- import './czi-mathquill-editor.css';
4
3
  import * as MathQuillEditorSymbols from './MathQuillEditorSymbols.js';
5
4
  import MathQuillEditorSymbolsPanel from './MathQuillEditorSymbolsPanel.js';
6
5
  import * as React from 'react';
@@ -27,7 +26,6 @@ const MQ = MathQuill.getInterface(2);
27
26
  // Now loaded locally, so that it work in closed network as well.
28
27
  //injectStyleSheet(CSS_CDN_URL);
29
28
  }
30
- // injectStyleSheet(CSS_CDN_URL);
31
29
  })();
32
30
 
33
31
  class MathQuillElement extends React.Component<any, any> {
@@ -1,19 +1,18 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
3
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
4
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
3
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
4
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
5
5
  function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
6
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
7
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
6
+ function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
7
+ function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
8
8
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
9
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
10
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
11
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
12
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
9
+ function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
10
+ function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
11
+ function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
12
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
13
13
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
14
14
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
15
15
  import renderLaTeXAsHTML from '../renderLaTeXAsHTML.js';
16
- import './czi-mathquill-editor-symbols-panel.css';
17
16
  import { CustomButton } from '@modusoperandi/licit-ui-commands';
18
17
  import * as React from 'react';
19
18
  var MathQuillEditorSymbolsPanel = /*#__PURE__*/function (_React$PureComponent) {
@@ -1,7 +1,6 @@
1
1
  // @flow
2
2
 
3
3
  import renderLaTeXAsHTML from '../renderLaTeXAsHTML.js';
4
- import './czi-mathquill-editor-symbols-panel.css';
5
4
  import { CustomButton } from '@modusoperandi/licit-ui-commands';
6
5
  import * as React from 'react';
7
6
 
@@ -10,12 +10,4 @@ import jquery from 'jquery';
10
10
  window.jQuery = window.jQuery || jquery;
11
11
  import mathquill from 'node-mathquill/build/mathquill.js';
12
12
  window.MathQuill = window.MathQuill || mathquill;
13
- import 'node-mathquill/build/mathquill.css';
14
- export var MathQuill = window.MathQuill || mathquill;
15
-
16
- // // [FS] IRAD-1010 2020-07-24
17
- // // With the latest to generate export default MathQuill these options need to
18
- // // be passed into exports loader. Moved this from webpack config to here, so
19
- // // that package could load fine with other application.
20
- // const MQLoader = require('exports-loader?exports=default|MathQuill&type=module!node-mathquill/build/mathquill.js');
21
- // export const MathQuill = MQLoader.default;
13
+ export var MathQuill = window.MathQuill || mathquill;
@@ -12,13 +12,4 @@ window.jQuery = window.jQuery || jquery;
12
12
  import mathquill from 'node-mathquill/build/mathquill.js';
13
13
  window.MathQuill = window.MathQuill || mathquill;
14
14
 
15
- import 'node-mathquill/build/mathquill.css';
16
-
17
15
  export const MathQuill = window.MathQuill || mathquill;
18
-
19
- // // [FS] IRAD-1010 2020-07-24
20
- // // With the latest to generate export default MathQuill these options need to
21
- // // be passed into exports loader. Moved this from webpack config to here, so
22
- // // that package could load fine with other application.
23
- // const MQLoader = require('exports-loader?exports=default|MathQuill&type=module!node-mathquill/build/mathquill.js');
24
- // export const MathQuill = MQLoader.default;
@@ -1,17 +1,13 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
2
  function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
3
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
4
- function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
3
+ function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
4
+ function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
5
5
  import canUseCSSFont from './canUseCSSFont.js';
6
6
  import katex from 'katex';
7
-
8
- // [FS] IRAD-1061 2020-09-19
9
- // Now loaded locally, so that it work in closed network as well.
10
- import 'katex/dist/katex.min.css';
11
7
  var latexEl = document.createElement('div');
12
8
  var cached = {};
13
9
  var CSS_FONT = 'KaTeX_Main';
14
- _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
10
+ _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
15
11
  var fontSupported;
16
12
  return _regeneratorRuntime().wrap(function _callee$(_context) {
17
13
  while (1) switch (_context.prev = _context.next) {
@@ -3,10 +3,6 @@
3
3
  import canUseCSSFont from './canUseCSSFont.js';
4
4
  import katex from 'katex';
5
5
 
6
- // [FS] IRAD-1061 2020-09-19
7
- // Now loaded locally, so that it work in closed network as well.
8
- import 'katex/dist/katex.min.css';
9
-
10
6
  const latexEl: any = document.createElement('div');
11
7
  const cached: Object = {};
12
8
 
@@ -1,10 +1,9 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
2
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
3
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
5
5
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
6
6
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
- import url from 'url';
8
7
  import isOffline from './isOffline';
9
8
  var bpfrpt_proptype_ImageResult = {
10
9
  "complete": PropTypes.bool.isRequired,
@@ -51,11 +50,11 @@ function processPromise(src, resolve, reject) {
51
50
  resolve(result);
52
51
  return;
53
52
  } else if (cache[srcStr]) {
54
- var cachedResult = Object.assign({}, cache[srcStr]);
53
+ var cachedResult = _objectSpread({}, cache[srcStr]);
55
54
  resolve(cachedResult);
56
55
  return;
57
56
  }
58
- var parsedURL = url.parse(srcStr);
57
+ var parsedURL = new URL(srcStr);
59
58
  // [FS] IRAD-1007 2020-07-13
60
59
  // Removed the port validation from here
61
60
  var protocol = parsedURL.protocol;
@@ -68,7 +67,7 @@ function processPromise(src, resolve, reject) {
68
67
  if (img) {
69
68
  if (img instanceof HTMLElement) {
70
69
  var pe = img.parentNode;
71
- pe && pe.removeChild(img);
70
+ pe === null || pe === void 0 || pe.removeChild(img);
72
71
  }
73
72
  img.onload = null;
74
73
  img.onerror = null;
@@ -1,7 +1,5 @@
1
1
  // @flow
2
2
 
3
- import url from 'url';
4
-
5
3
  import isOffline from './isOffline';
6
4
 
7
5
  export type ImageResult = {
@@ -55,12 +53,12 @@ function processPromise(
55
53
  resolve(result);
56
54
  return;
57
55
  } else if (cache[srcStr]) {
58
- const cachedResult = Object.assign({}, cache[srcStr]);
56
+ const cachedResult = { ...cache[srcStr] };
59
57
  resolve(cachedResult);
60
58
  return;
61
59
  }
62
60
 
63
- const parsedURL = url.parse(srcStr);
61
+ const parsedURL = new URL(srcStr);
64
62
  // [FS] IRAD-1007 2020-07-13
65
63
  // Removed the port validation from here
66
64
  const { protocol } = parsedURL;
@@ -75,7 +73,7 @@ function processPromise(
75
73
  if (img) {
76
74
  if (img instanceof HTMLElement) {
77
75
  const pe = img.parentNode;
78
- pe && pe.removeChild(img);
76
+ pe?.removeChild(img);
79
77
  }
80
78
  img.onload = null;
81
79
  img.onerror = null;
@@ -3,7 +3,6 @@ export var LINE_SPACING_100 = '125%';
3
3
  export var LINE_SPACING_115 = '138%';
4
4
  export var LINE_SPACING_150 = '165%';
5
5
  export var LINE_SPACING_200 = '232%';
6
- var NUMBER_VALUE_PATTERN = /^\d+(.\d+)?$/;
7
6
 
8
7
  // Normalize the css line-height vlaue to percentage-based value if applicable.
9
8
  // Also, it calibrates the incorrect line spacing value exported from Google
@@ -15,8 +14,8 @@ export default function toCSSLineSpacing(source) {
15
14
  var strValue = String(source);
16
15
 
17
16
  // e.g. line-height: 1.5;
18
- if (NUMBER_VALUE_PATTERN.test(strValue)) {
19
- var numValue = parseFloat(strValue);
17
+ if (!isNaN(Number(strValue))) {
18
+ var numValue = Number(strValue);
20
19
  strValue = String(Math.round(numValue * 100)) + '%';
21
20
  }
22
21
 
@@ -6,8 +6,6 @@ export const LINE_SPACING_115 = '138%';
6
6
  export const LINE_SPACING_150 = '165%';
7
7
  export const LINE_SPACING_200 = '232%';
8
8
 
9
- const NUMBER_VALUE_PATTERN = /^\d+(.\d+)?$/;
10
-
11
9
  // Normalize the css line-height vlaue to percentage-based value if applicable.
12
10
  // Also, it calibrates the incorrect line spacing value exported from Google
13
11
  // Doc.
@@ -19,8 +17,8 @@ export default function toCSSLineSpacing(source: any): string {
19
17
  let strValue = String(source);
20
18
 
21
19
  // e.g. line-height: 1.5;
22
- if (NUMBER_VALUE_PATTERN.test(strValue)) {
23
- const numValue = parseFloat(strValue);
20
+ if (!isNaN(Number(strValue))) {
21
+ const numValue = Number(strValue);
24
22
  strValue = String(Math.round(numValue * 100)) + '%';
25
23
  }
26
24
 
package/styles0.css DELETED
@@ -1,29 +0,0 @@
1
- @import './ui/czi-vars.css';
2
- @import './ui/czi-heading.css';
3
- @import './ui/czi-indent.css';
4
- @import './ui/czi-list.css';
5
- @import './ui/czi-table.css';
6
- @import '@modusoperandi/licit-ui-commands/ui/czi-custom-button.css';
7
- @import '@modusoperandi/licit-ui-commands/ui/czi-animations.css';
8
- @import '@modusoperandi/licit-ui-commands/ui/czi-color-editor.css';
9
- @import './ui/czi-bookmark-view.css';
10
- @import './ui/czi-body-layout-editor.css';
11
- @import './ui/czi-cursor-placeholder.css';
12
- @import './ui/czi-custom-menu.css';
13
- @import './ui/czi-custom-menu-button.css';
14
- @import './ui/czi-custom-menu-item.css';
15
- @import './ui/czi-custom-radio-button.css';
16
- @import './ui/czi-custom-scrollbar.css';
17
- @import './ui/czi-editor.css';
18
- @import './ui/czi-editor-frameset.css';
19
- @import './ui/czi-editor-toolbar.css';
20
- @import './ui/czi-form.css';
21
- @import './ui/czi-frag.css';
22
- @import './ui/czi-icon.css';
23
- @import './ui/czi-image-resize-box.css';
24
- @import './ui/czi-image-upload-editor.css';
25
- @import './ui/czi-image-upload-placeholder.css';
26
- @import './ui/czi-image-url-editor.css';
27
- @import './ui/czi-image-view.css';
28
- @import './ui/czi-inline-editor.css';
29
- @import './ui/czi-link-tooltip.css';