@vkzstudio/muza-ui 1.0.9 → 1.0.10
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/components/Button/buttonVariants.d.ts.map +1 -1
- package/dist/components/Button/buttonVariants.js +0 -1
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.d.ts +1 -0
- package/dist/components/Icons/CustomIcons.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.js +38 -27
- package/dist/components/TextEditor/EditorToolbar.d.ts +18 -0
- package/dist/components/TextEditor/EditorToolbar.d.ts.map +1 -0
- package/dist/components/TextEditor/EditorToolbar.js +175 -0
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts +52 -0
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts.map +1 -0
- package/dist/components/TextEditor/LinkBubbleMenu.js +97 -0
- package/dist/components/TextEditor/TextEditor.d.ts +134 -0
- package/dist/components/TextEditor/TextEditor.d.ts.map +1 -0
- package/dist/components/TextEditor/TextEditor.js +240 -0
- package/dist/components/TextEditor/TextEditor.stories.d.ts +51 -0
- package/dist/components/TextEditor/TextEditor.stories.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarButton.d.ts +38 -0
- package/dist/components/TextEditor/ToolbarButton.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarButton.js +68 -0
- package/dist/components/TextEditor/ToolbarSeparator.d.ts +22 -0
- package/dist/components/TextEditor/ToolbarSeparator.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarSeparator.js +23 -0
- package/dist/components/TextEditor/index.d.ts +4 -0
- package/dist/components/TextEditor/index.d.ts.map +1 -0
- package/dist/components/TextEditor/useLinkEditor.d.ts +37 -0
- package/dist/components/TextEditor/useLinkEditor.d.ts.map +1 -0
- package/dist/components/TextEditor/useLinkEditor.js +32 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.js +140 -132
- package/dist/muza-ui.css +1 -1
- package/dist/node_modules/@popperjs/core/lib/createPopper.js +122 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/contains.js +18 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js +23 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js +37 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js +32 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js +17 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js +13 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js +35 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js +18 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js +21 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindow.js +12 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js +20 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js +8 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js +16 -0
- package/dist/node_modules/@popperjs/core/lib/enums.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/applyStyles.js +47 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/arrow.js +37 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/computeStyles.js +99 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/eventListeners.js +26 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/flip.js +74 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/hide.js +44 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/offset.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js +19 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js +54 -0
- package/dist/node_modules/@popperjs/core/lib/popper.js +27 -0
- package/dist/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js +27 -0
- package/dist/node_modules/@popperjs/core/lib/utils/computeOffsets.js +54 -0
- package/dist/node_modules/@popperjs/core/lib/utils/debounce.js +13 -0
- package/dist/node_modules/@popperjs/core/lib/utils/detectOverflow.js +33 -0
- package/dist/node_modules/@popperjs/core/lib/utils/expandToHashMap.js +8 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getAltAxis.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getBasePlacement.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js +14 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js +12 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getVariation.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/math.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/mergeByName.js +15 -0
- package/dist/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/utils/orderModifiers.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/utils/rectToClientRect.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/utils/userAgent.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/utils/within.js +12 -0
- package/dist/node_modules/@tiptap/core/dist/index.js +2857 -0
- package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +45 -0
- package/dist/node_modules/@tiptap/extension-bold/dist/index.js +76 -0
- package/dist/node_modules/@tiptap/extension-bubble-menu/dist/index.js +129 -0
- package/dist/node_modules/@tiptap/extension-bullet-list/dist/index.js +55 -0
- package/dist/node_modules/@tiptap/extension-code/dist/index.js +54 -0
- package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +136 -0
- package/dist/node_modules/@tiptap/extension-document/dist/index.js +10 -0
- package/dist/node_modules/@tiptap/extension-dropcursor/dist/index.js +21 -0
- package/dist/node_modules/@tiptap/extension-gapcursor/dist/index.js +25 -0
- package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +56 -0
- package/dist/node_modules/@tiptap/extension-heading/dist/index.js +55 -0
- package/dist/node_modules/@tiptap/extension-history/dist/index.js +36 -0
- package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +59 -0
- package/dist/node_modules/@tiptap/extension-italic/dist/index.js +75 -0
- package/dist/node_modules/@tiptap/extension-link/dist/index.js +272 -0
- package/dist/node_modules/@tiptap/extension-list-item/dist/index.js +34 -0
- package/dist/node_modules/@tiptap/extension-ordered-list/dist/index.js +73 -0
- package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +34 -0
- package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js +53 -0
- package/dist/node_modules/@tiptap/extension-strike/dist/index.js +64 -0
- package/dist/node_modules/@tiptap/extension-text/dist/index.js +9 -0
- package/dist/node_modules/@tiptap/react/dist/index.js +709 -0
- package/dist/node_modules/@tiptap/starter-kit/dist/index.js +30 -0
- package/dist/node_modules/linkifyjs/dist/linkify.js +707 -0
- package/dist/node_modules/orderedmap/dist/index.js +103 -0
- package/dist/node_modules/prosemirror-commands/dist/index.js +388 -0
- package/dist/node_modules/prosemirror-dropcursor/dist/index.js +86 -0
- package/dist/node_modules/prosemirror-gapcursor/dist/index.js +204 -0
- package/dist/node_modules/prosemirror-history/dist/index.js +248 -0
- package/dist/node_modules/prosemirror-keymap/dist/index.js +62 -0
- package/dist/node_modules/prosemirror-model/dist/index.js +2733 -0
- package/dist/node_modules/prosemirror-schema-list/dist/index.js +88 -0
- package/dist/node_modules/prosemirror-state/dist/index.js +822 -0
- package/dist/node_modules/prosemirror-transform/dist/index.js +1520 -0
- package/dist/node_modules/prosemirror-view/dist/index.js +3794 -0
- package/dist/node_modules/rope-sequence/dist/index.js +100 -0
- package/dist/node_modules/tippy.js/dist/tippy.esm.js +813 -0
- package/dist/node_modules/w3c-keyname/index.js +93 -0
- package/dist/translations/locales/cs.d.ts.map +1 -1
- package/dist/translations/locales/cs.js +18 -0
- package/dist/translations/locales/en.d.ts.map +1 -1
- package/dist/translations/locales/en.js +18 -0
- package/dist/translations/locales/sk.d.ts.map +1 -1
- package/dist/translations/locales/sk.js +18 -0
- package/dist/translations/types.d.ts +22 -0
- package/dist/translations/types.d.ts.map +1 -1
- package/package.json +17 -1
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
function e(t) {
|
|
2
|
+
this.content = t;
|
|
3
|
+
}
|
|
4
|
+
e.prototype = {
|
|
5
|
+
constructor: e,
|
|
6
|
+
find: function(t) {
|
|
7
|
+
for (var n = 0; n < this.content.length; n += 2)
|
|
8
|
+
if (this.content[n] === t) return n;
|
|
9
|
+
return -1;
|
|
10
|
+
},
|
|
11
|
+
// :: (string) → ?any
|
|
12
|
+
// Retrieve the value stored under `key`, or return undefined when
|
|
13
|
+
// no such key exists.
|
|
14
|
+
get: function(t) {
|
|
15
|
+
var n = this.find(t);
|
|
16
|
+
return n == -1 ? void 0 : this.content[n + 1];
|
|
17
|
+
},
|
|
18
|
+
// :: (string, any, ?string) → OrderedMap
|
|
19
|
+
// Create a new map by replacing the value of `key` with a new
|
|
20
|
+
// value, or adding a binding to the end of the map. If `newKey` is
|
|
21
|
+
// given, the key of the binding will be replaced with that key.
|
|
22
|
+
update: function(t, n, r) {
|
|
23
|
+
var i = r && r != t ? this.remove(r) : this, o = i.find(t), c = i.content.slice();
|
|
24
|
+
return o == -1 ? c.push(r || t, n) : (c[o + 1] = n, r && (c[o] = r)), new e(c);
|
|
25
|
+
},
|
|
26
|
+
// :: (string) → OrderedMap
|
|
27
|
+
// Return a map with the given key removed, if it existed.
|
|
28
|
+
remove: function(t) {
|
|
29
|
+
var n = this.find(t);
|
|
30
|
+
if (n == -1) return this;
|
|
31
|
+
var r = this.content.slice();
|
|
32
|
+
return r.splice(n, 2), new e(r);
|
|
33
|
+
},
|
|
34
|
+
// :: (string, any) → OrderedMap
|
|
35
|
+
// Add a new key to the start of the map.
|
|
36
|
+
addToStart: function(t, n) {
|
|
37
|
+
return new e([t, n].concat(this.remove(t).content));
|
|
38
|
+
},
|
|
39
|
+
// :: (string, any) → OrderedMap
|
|
40
|
+
// Add a new key to the end of the map.
|
|
41
|
+
addToEnd: function(t, n) {
|
|
42
|
+
var r = this.remove(t).content.slice();
|
|
43
|
+
return r.push(t, n), new e(r);
|
|
44
|
+
},
|
|
45
|
+
// :: (string, string, any) → OrderedMap
|
|
46
|
+
// Add a key after the given key. If `place` is not found, the new
|
|
47
|
+
// key is added to the end.
|
|
48
|
+
addBefore: function(t, n, r) {
|
|
49
|
+
var i = this.remove(n), o = i.content.slice(), c = i.find(t);
|
|
50
|
+
return o.splice(c == -1 ? o.length : c, 0, n, r), new e(o);
|
|
51
|
+
},
|
|
52
|
+
// :: ((key: string, value: any))
|
|
53
|
+
// Call the given function for each key/value pair in the map, in
|
|
54
|
+
// order.
|
|
55
|
+
forEach: function(t) {
|
|
56
|
+
for (var n = 0; n < this.content.length; n += 2)
|
|
57
|
+
t(this.content[n], this.content[n + 1]);
|
|
58
|
+
},
|
|
59
|
+
// :: (union<Object, OrderedMap>) → OrderedMap
|
|
60
|
+
// Create a new map by prepending the keys in this map that don't
|
|
61
|
+
// appear in `map` before the keys in `map`.
|
|
62
|
+
prepend: function(t) {
|
|
63
|
+
return t = e.from(t), t.size ? new e(t.content.concat(this.subtract(t).content)) : this;
|
|
64
|
+
},
|
|
65
|
+
// :: (union<Object, OrderedMap>) → OrderedMap
|
|
66
|
+
// Create a new map by appending the keys in this map that don't
|
|
67
|
+
// appear in `map` after the keys in `map`.
|
|
68
|
+
append: function(t) {
|
|
69
|
+
return t = e.from(t), t.size ? new e(this.subtract(t).content.concat(t.content)) : this;
|
|
70
|
+
},
|
|
71
|
+
// :: (union<Object, OrderedMap>) → OrderedMap
|
|
72
|
+
// Create a map containing all the keys in this map that don't
|
|
73
|
+
// appear in `map`.
|
|
74
|
+
subtract: function(t) {
|
|
75
|
+
var n = this;
|
|
76
|
+
t = e.from(t);
|
|
77
|
+
for (var r = 0; r < t.content.length; r += 2)
|
|
78
|
+
n = n.remove(t.content[r]);
|
|
79
|
+
return n;
|
|
80
|
+
},
|
|
81
|
+
// :: () → Object
|
|
82
|
+
// Turn ordered map into a plain object.
|
|
83
|
+
toObject: function() {
|
|
84
|
+
var t = {};
|
|
85
|
+
return this.forEach(function(n, r) {
|
|
86
|
+
t[n] = r;
|
|
87
|
+
}), t;
|
|
88
|
+
},
|
|
89
|
+
// :: number
|
|
90
|
+
// The amount of keys in this map.
|
|
91
|
+
get size() {
|
|
92
|
+
return this.content.length >> 1;
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
e.from = function(t) {
|
|
96
|
+
if (t instanceof e) return t;
|
|
97
|
+
var n = [];
|
|
98
|
+
if (t) for (var r in t) n.push(r, t[r]);
|
|
99
|
+
return new e(n);
|
|
100
|
+
};
|
|
101
|
+
export {
|
|
102
|
+
e as default
|
|
103
|
+
};
|
|
@@ -0,0 +1,388 @@
|
|
|
1
|
+
import { findWrapping as J, canSplit as h, liftTarget as T, canJoin as A, joinPoint as F, replaceStep as B, ReplaceStep as U, ReplaceAroundStep as v } from "../../prosemirror-transform/dist/index.js";
|
|
2
|
+
import { Slice as y, Fragment as S } from "../../prosemirror-model/dist/index.js";
|
|
3
|
+
import { TextSelection as I, NodeSelection as d, Selection as V, AllSelection as P } from "../../prosemirror-state/dist/index.js";
|
|
4
|
+
const M = (t, e) => t.selection.empty ? !1 : (e && e(t.tr.deleteSelection().scrollIntoView()), !0);
|
|
5
|
+
function N(t, e) {
|
|
6
|
+
let { $cursor: r } = t.selection;
|
|
7
|
+
return !r || (e ? !e.endOfTextblock("backward", t) : r.parentOffset > 0) ? null : r;
|
|
8
|
+
}
|
|
9
|
+
const G = (t, e, r) => {
|
|
10
|
+
let n = N(t, r);
|
|
11
|
+
if (!n)
|
|
12
|
+
return !1;
|
|
13
|
+
let o = z(n);
|
|
14
|
+
if (!o) {
|
|
15
|
+
let i = n.blockRange(), f = i && T(i);
|
|
16
|
+
return f == null ? !1 : (e && e(t.tr.lift(i, f).scrollIntoView()), !0);
|
|
17
|
+
}
|
|
18
|
+
let l = o.nodeBefore;
|
|
19
|
+
if (D(t, o, e, -1))
|
|
20
|
+
return !0;
|
|
21
|
+
if (n.parent.content.size == 0 && (x(l, "end") || d.isSelectable(l)))
|
|
22
|
+
for (let i = n.depth; ; i--) {
|
|
23
|
+
let f = B(t.doc, n.before(i), n.after(i), y.empty);
|
|
24
|
+
if (f && f.slice.size < f.to - f.from) {
|
|
25
|
+
if (e) {
|
|
26
|
+
let c = t.tr.step(f);
|
|
27
|
+
c.setSelection(x(l, "end") ? V.findFrom(c.doc.resolve(c.mapping.map(o.pos, -1)), -1) : d.create(c.doc, o.pos - l.nodeSize)), e(c.scrollIntoView());
|
|
28
|
+
}
|
|
29
|
+
return !0;
|
|
30
|
+
}
|
|
31
|
+
if (i == 1 || n.node(i - 1).childCount > 1)
|
|
32
|
+
break;
|
|
33
|
+
}
|
|
34
|
+
return l.isAtom && o.depth == n.depth - 1 ? (e && e(t.tr.delete(o.pos - l.nodeSize, o.pos).scrollIntoView()), !0) : !1;
|
|
35
|
+
}, oe = (t, e, r) => {
|
|
36
|
+
let n = N(t, r);
|
|
37
|
+
if (!n)
|
|
38
|
+
return !1;
|
|
39
|
+
let o = z(n);
|
|
40
|
+
return o ? E(t, o, e) : !1;
|
|
41
|
+
}, le = (t, e, r) => {
|
|
42
|
+
let n = W(t, r);
|
|
43
|
+
if (!n)
|
|
44
|
+
return !1;
|
|
45
|
+
let o = R(n);
|
|
46
|
+
return o ? E(t, o, e) : !1;
|
|
47
|
+
};
|
|
48
|
+
function E(t, e, r) {
|
|
49
|
+
let n = e.nodeBefore, o = n, l = e.pos - 1;
|
|
50
|
+
for (; !o.isTextblock; l--) {
|
|
51
|
+
if (o.type.spec.isolating)
|
|
52
|
+
return !1;
|
|
53
|
+
let s = o.lastChild;
|
|
54
|
+
if (!s)
|
|
55
|
+
return !1;
|
|
56
|
+
o = s;
|
|
57
|
+
}
|
|
58
|
+
let i = e.nodeAfter, f = i, c = e.pos + 1;
|
|
59
|
+
for (; !f.isTextblock; c++) {
|
|
60
|
+
if (f.type.spec.isolating)
|
|
61
|
+
return !1;
|
|
62
|
+
let s = f.firstChild;
|
|
63
|
+
if (!s)
|
|
64
|
+
return !1;
|
|
65
|
+
f = s;
|
|
66
|
+
}
|
|
67
|
+
let p = B(t.doc, l, c, y.empty);
|
|
68
|
+
if (!p || p.from != l || p instanceof U && p.slice.size >= c - l)
|
|
69
|
+
return !1;
|
|
70
|
+
if (r) {
|
|
71
|
+
let s = t.tr.step(p);
|
|
72
|
+
s.setSelection(I.create(s.doc, l)), r(s.scrollIntoView());
|
|
73
|
+
}
|
|
74
|
+
return !0;
|
|
75
|
+
}
|
|
76
|
+
function x(t, e, r = !1) {
|
|
77
|
+
for (let n = t; n; n = e == "start" ? n.firstChild : n.lastChild) {
|
|
78
|
+
if (n.isTextblock)
|
|
79
|
+
return !0;
|
|
80
|
+
if (r && n.childCount != 1)
|
|
81
|
+
return !1;
|
|
82
|
+
}
|
|
83
|
+
return !1;
|
|
84
|
+
}
|
|
85
|
+
const H = (t, e, r) => {
|
|
86
|
+
let { $head: n, empty: o } = t.selection, l = n;
|
|
87
|
+
if (!o)
|
|
88
|
+
return !1;
|
|
89
|
+
if (n.parent.isTextblock) {
|
|
90
|
+
if (r ? !r.endOfTextblock("backward", t) : n.parentOffset > 0)
|
|
91
|
+
return !1;
|
|
92
|
+
l = z(n);
|
|
93
|
+
}
|
|
94
|
+
let i = l && l.nodeBefore;
|
|
95
|
+
return !i || !d.isSelectable(i) ? !1 : (e && e(t.tr.setSelection(d.create(t.doc, l.pos - i.nodeSize)).scrollIntoView()), !0);
|
|
96
|
+
};
|
|
97
|
+
function z(t) {
|
|
98
|
+
if (!t.parent.type.spec.isolating)
|
|
99
|
+
for (let e = t.depth - 1; e >= 0; e--) {
|
|
100
|
+
if (t.index(e) > 0)
|
|
101
|
+
return t.doc.resolve(t.before(e + 1));
|
|
102
|
+
if (t.node(e).type.spec.isolating)
|
|
103
|
+
break;
|
|
104
|
+
}
|
|
105
|
+
return null;
|
|
106
|
+
}
|
|
107
|
+
function W(t, e) {
|
|
108
|
+
let { $cursor: r } = t.selection;
|
|
109
|
+
return !r || (e ? !e.endOfTextblock("forward", t) : r.parentOffset < r.parent.content.size) ? null : r;
|
|
110
|
+
}
|
|
111
|
+
const K = (t, e, r) => {
|
|
112
|
+
let n = W(t, r);
|
|
113
|
+
if (!n)
|
|
114
|
+
return !1;
|
|
115
|
+
let o = R(n);
|
|
116
|
+
if (!o)
|
|
117
|
+
return !1;
|
|
118
|
+
let l = o.nodeAfter;
|
|
119
|
+
if (D(t, o, e, 1))
|
|
120
|
+
return !0;
|
|
121
|
+
if (n.parent.content.size == 0 && (x(l, "start") || d.isSelectable(l))) {
|
|
122
|
+
let i = B(t.doc, n.before(), n.after(), y.empty);
|
|
123
|
+
if (i && i.slice.size < i.to - i.from) {
|
|
124
|
+
if (e) {
|
|
125
|
+
let f = t.tr.step(i);
|
|
126
|
+
f.setSelection(x(l, "start") ? V.findFrom(f.doc.resolve(f.mapping.map(o.pos)), 1) : d.create(f.doc, f.mapping.map(o.pos))), e(f.scrollIntoView());
|
|
127
|
+
}
|
|
128
|
+
return !0;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
return l.isAtom && o.depth == n.depth - 1 ? (e && e(t.tr.delete(o.pos, o.pos + l.nodeSize).scrollIntoView()), !0) : !1;
|
|
132
|
+
}, L = (t, e, r) => {
|
|
133
|
+
let { $head: n, empty: o } = t.selection, l = n;
|
|
134
|
+
if (!o)
|
|
135
|
+
return !1;
|
|
136
|
+
if (n.parent.isTextblock) {
|
|
137
|
+
if (r ? !r.endOfTextblock("forward", t) : n.parentOffset < n.parent.content.size)
|
|
138
|
+
return !1;
|
|
139
|
+
l = R(n);
|
|
140
|
+
}
|
|
141
|
+
let i = l && l.nodeAfter;
|
|
142
|
+
return !i || !d.isSelectable(i) ? !1 : (e && e(t.tr.setSelection(d.create(t.doc, l.pos)).scrollIntoView()), !0);
|
|
143
|
+
};
|
|
144
|
+
function R(t) {
|
|
145
|
+
if (!t.parent.type.spec.isolating)
|
|
146
|
+
for (let e = t.depth - 1; e >= 0; e--) {
|
|
147
|
+
let r = t.node(e);
|
|
148
|
+
if (t.index(e) + 1 < r.childCount)
|
|
149
|
+
return t.doc.resolve(t.after(e + 1));
|
|
150
|
+
if (r.type.spec.isolating)
|
|
151
|
+
break;
|
|
152
|
+
}
|
|
153
|
+
return null;
|
|
154
|
+
}
|
|
155
|
+
const ie = (t, e) => {
|
|
156
|
+
let r = t.selection, n = r instanceof d, o;
|
|
157
|
+
if (n) {
|
|
158
|
+
if (r.node.isTextblock || !A(t.doc, r.from))
|
|
159
|
+
return !1;
|
|
160
|
+
o = r.from;
|
|
161
|
+
} else if (o = F(t.doc, r.from, -1), o == null)
|
|
162
|
+
return !1;
|
|
163
|
+
if (e) {
|
|
164
|
+
let l = t.tr.join(o);
|
|
165
|
+
n && l.setSelection(d.create(l.doc, o - t.doc.resolve(o).nodeBefore.nodeSize)), e(l.scrollIntoView());
|
|
166
|
+
}
|
|
167
|
+
return !0;
|
|
168
|
+
}, fe = (t, e) => {
|
|
169
|
+
let r = t.selection, n;
|
|
170
|
+
if (r instanceof d) {
|
|
171
|
+
if (r.node.isTextblock || !A(t.doc, r.to))
|
|
172
|
+
return !1;
|
|
173
|
+
n = r.to;
|
|
174
|
+
} else if (n = F(t.doc, r.to, 1), n == null)
|
|
175
|
+
return !1;
|
|
176
|
+
return e && e(t.tr.join(n).scrollIntoView()), !0;
|
|
177
|
+
}, ce = (t, e) => {
|
|
178
|
+
let { $from: r, $to: n } = t.selection, o = r.blockRange(n), l = o && T(o);
|
|
179
|
+
return l == null ? !1 : (e && e(t.tr.lift(o, l).scrollIntoView()), !0);
|
|
180
|
+
}, Q = (t, e) => {
|
|
181
|
+
let { $head: r, $anchor: n } = t.selection;
|
|
182
|
+
return !r.parent.type.spec.code || !r.sameParent(n) ? !1 : (e && e(t.tr.insertText(`
|
|
183
|
+
`).scrollIntoView()), !0);
|
|
184
|
+
};
|
|
185
|
+
function j(t) {
|
|
186
|
+
for (let e = 0; e < t.edgeCount; e++) {
|
|
187
|
+
let { type: r } = t.edge(e);
|
|
188
|
+
if (r.isTextblock && !r.hasRequiredAttrs())
|
|
189
|
+
return r;
|
|
190
|
+
}
|
|
191
|
+
return null;
|
|
192
|
+
}
|
|
193
|
+
const se = (t, e) => {
|
|
194
|
+
let { $head: r, $anchor: n } = t.selection;
|
|
195
|
+
if (!r.parent.type.spec.code || !r.sameParent(n))
|
|
196
|
+
return !1;
|
|
197
|
+
let o = r.node(-1), l = r.indexAfter(-1), i = j(o.contentMatchAt(l));
|
|
198
|
+
if (!i || !o.canReplaceWith(l, l, i))
|
|
199
|
+
return !1;
|
|
200
|
+
if (e) {
|
|
201
|
+
let f = r.after(), c = t.tr.replaceWith(f, f, i.createAndFill());
|
|
202
|
+
c.setSelection(V.near(c.doc.resolve(f), 1)), e(c.scrollIntoView());
|
|
203
|
+
}
|
|
204
|
+
return !0;
|
|
205
|
+
}, X = (t, e) => {
|
|
206
|
+
let r = t.selection, { $from: n, $to: o } = r;
|
|
207
|
+
if (r instanceof P || n.parent.inlineContent || o.parent.inlineContent)
|
|
208
|
+
return !1;
|
|
209
|
+
let l = j(o.parent.contentMatchAt(o.indexAfter()));
|
|
210
|
+
if (!l || !l.isTextblock)
|
|
211
|
+
return !1;
|
|
212
|
+
if (e) {
|
|
213
|
+
let i = (!n.parentOffset && o.index() < o.parent.childCount ? n : o).pos, f = t.tr.insert(i, l.createAndFill());
|
|
214
|
+
f.setSelection(I.create(f.doc, i + 1)), e(f.scrollIntoView());
|
|
215
|
+
}
|
|
216
|
+
return !0;
|
|
217
|
+
}, Y = (t, e) => {
|
|
218
|
+
let { $cursor: r } = t.selection;
|
|
219
|
+
if (!r || r.parent.content.size)
|
|
220
|
+
return !1;
|
|
221
|
+
if (r.depth > 1 && r.after() != r.end(-1)) {
|
|
222
|
+
let l = r.before();
|
|
223
|
+
if (h(t.doc, l))
|
|
224
|
+
return e && e(t.tr.split(l).scrollIntoView()), !0;
|
|
225
|
+
}
|
|
226
|
+
let n = r.blockRange(), o = n && T(n);
|
|
227
|
+
return o == null ? !1 : (e && e(t.tr.lift(n, o).scrollIntoView()), !0);
|
|
228
|
+
};
|
|
229
|
+
function Z(t) {
|
|
230
|
+
return (e, r) => {
|
|
231
|
+
let { $from: n, $to: o } = e.selection;
|
|
232
|
+
if (e.selection instanceof d && e.selection.node.isBlock)
|
|
233
|
+
return !n.parentOffset || !h(e.doc, n.pos) ? !1 : (r && r(e.tr.split(n.pos).scrollIntoView()), !0);
|
|
234
|
+
if (!n.depth)
|
|
235
|
+
return !1;
|
|
236
|
+
let l = [], i, f, c = !1, p = !1;
|
|
237
|
+
for (let u = n.depth; ; u--)
|
|
238
|
+
if (n.node(u).isBlock) {
|
|
239
|
+
c = n.end(u) == n.pos + (n.depth - u), p = n.start(u) == n.pos - (n.depth - u), f = j(n.node(u - 1).contentMatchAt(n.indexAfter(u - 1))), l.unshift(c && f ? { type: f } : null), i = u;
|
|
240
|
+
break;
|
|
241
|
+
} else {
|
|
242
|
+
if (u == 1)
|
|
243
|
+
return !1;
|
|
244
|
+
l.unshift(null);
|
|
245
|
+
}
|
|
246
|
+
let s = e.tr;
|
|
247
|
+
(e.selection instanceof I || e.selection instanceof P) && s.deleteSelection();
|
|
248
|
+
let m = s.mapping.map(n.pos), k = h(s.doc, m, l.length, l);
|
|
249
|
+
if (k || (l[0] = f ? { type: f } : null, k = h(s.doc, m, l.length, l)), !k)
|
|
250
|
+
return !1;
|
|
251
|
+
if (s.split(m, l.length, l), !c && p && n.node(i).type != f) {
|
|
252
|
+
let u = s.mapping.map(n.before(i)), a = s.doc.resolve(u);
|
|
253
|
+
f && n.node(i - 1).canReplaceWith(a.index(), a.index() + 1, f) && s.setNodeMarkup(s.mapping.map(n.before(i)), f);
|
|
254
|
+
}
|
|
255
|
+
return r && r(s.scrollIntoView()), !0;
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
const _ = Z(), ue = (t, e) => {
|
|
259
|
+
let { $from: r, to: n } = t.selection, o, l = r.sharedDepth(n);
|
|
260
|
+
return l == 0 ? !1 : (o = r.before(l), e && e(t.tr.setSelection(d.create(t.doc, o))), !0);
|
|
261
|
+
};
|
|
262
|
+
function ee(t, e, r) {
|
|
263
|
+
let n = e.nodeBefore, o = e.nodeAfter, l = e.index();
|
|
264
|
+
return !n || !o || !n.type.compatibleContent(o.type) ? !1 : !n.content.size && e.parent.canReplace(l - 1, l) ? (r && r(t.tr.delete(e.pos - n.nodeSize, e.pos).scrollIntoView()), !0) : !e.parent.canReplace(l, l + 1) || !(o.isTextblock || A(t.doc, e.pos)) ? !1 : (r && r(t.tr.join(e.pos).scrollIntoView()), !0);
|
|
265
|
+
}
|
|
266
|
+
function D(t, e, r, n) {
|
|
267
|
+
let o = e.nodeBefore, l = e.nodeAfter, i, f, c = o.type.spec.isolating || l.type.spec.isolating;
|
|
268
|
+
if (!c && ee(t, e, r))
|
|
269
|
+
return !0;
|
|
270
|
+
let p = !c && e.parent.canReplace(e.index(), e.index() + 1);
|
|
271
|
+
if (p && (i = (f = o.contentMatchAt(o.childCount)).findWrapping(l.type)) && f.matchType(i[0] || l.type).validEnd) {
|
|
272
|
+
if (r) {
|
|
273
|
+
let u = e.pos + l.nodeSize, a = S.empty;
|
|
274
|
+
for (let w = i.length - 1; w >= 0; w--)
|
|
275
|
+
a = S.from(i[w].create(null, a));
|
|
276
|
+
a = S.from(o.copy(a));
|
|
277
|
+
let b = t.tr.step(new v(e.pos - 1, u, e.pos, u, new y(a, 1, 0), i.length, !0)), g = b.doc.resolve(u + 2 * i.length);
|
|
278
|
+
g.nodeAfter && g.nodeAfter.type == o.type && A(b.doc, g.pos) && b.join(g.pos), r(b.scrollIntoView());
|
|
279
|
+
}
|
|
280
|
+
return !0;
|
|
281
|
+
}
|
|
282
|
+
let s = l.type.spec.isolating || n > 0 && c ? null : V.findFrom(e, 1), m = s && s.$from.blockRange(s.$to), k = m && T(m);
|
|
283
|
+
if (k != null && k >= e.depth)
|
|
284
|
+
return r && r(t.tr.lift(m, k).scrollIntoView()), !0;
|
|
285
|
+
if (p && x(l, "start", !0) && x(o, "end")) {
|
|
286
|
+
let u = o, a = [];
|
|
287
|
+
for (; a.push(u), !u.isTextblock; )
|
|
288
|
+
u = u.lastChild;
|
|
289
|
+
let b = l, g = 1;
|
|
290
|
+
for (; !b.isTextblock; b = b.firstChild)
|
|
291
|
+
g++;
|
|
292
|
+
if (u.canReplace(u.childCount, u.childCount, b.content)) {
|
|
293
|
+
if (r) {
|
|
294
|
+
let w = S.empty;
|
|
295
|
+
for (let C = a.length - 1; C >= 0; C--)
|
|
296
|
+
w = S.from(a[C].copy(w));
|
|
297
|
+
let q = t.tr.step(new v(e.pos - a.length, e.pos + l.nodeSize, e.pos + g, e.pos + l.nodeSize - g, new y(w, a.length, 0), 0, !0));
|
|
298
|
+
r(q.scrollIntoView());
|
|
299
|
+
}
|
|
300
|
+
return !0;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return !1;
|
|
304
|
+
}
|
|
305
|
+
function $(t) {
|
|
306
|
+
return function(e, r) {
|
|
307
|
+
let n = e.selection, o = t < 0 ? n.$from : n.$to, l = o.depth;
|
|
308
|
+
for (; o.node(l).isInline; ) {
|
|
309
|
+
if (!l)
|
|
310
|
+
return !1;
|
|
311
|
+
l--;
|
|
312
|
+
}
|
|
313
|
+
return o.node(l).isTextblock ? (r && r(e.tr.setSelection(I.create(e.doc, t < 0 ? o.start(l) : o.end(l)))), !0) : !1;
|
|
314
|
+
};
|
|
315
|
+
}
|
|
316
|
+
const ae = $(-1), pe = $(1);
|
|
317
|
+
function de(t, e = null) {
|
|
318
|
+
return function(r, n) {
|
|
319
|
+
let { $from: o, $to: l } = r.selection, i = o.blockRange(l), f = i && J(i, t, e);
|
|
320
|
+
return f ? (n && n(r.tr.wrap(i, f).scrollIntoView()), !0) : !1;
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
function me(t, e = null) {
|
|
324
|
+
return function(r, n) {
|
|
325
|
+
let o = !1;
|
|
326
|
+
for (let l = 0; l < r.selection.ranges.length && !o; l++) {
|
|
327
|
+
let { $from: { pos: i }, $to: { pos: f } } = r.selection.ranges[l];
|
|
328
|
+
r.doc.nodesBetween(i, f, (c, p) => {
|
|
329
|
+
if (o)
|
|
330
|
+
return !1;
|
|
331
|
+
if (!(!c.isTextblock || c.hasMarkup(t, e)))
|
|
332
|
+
if (c.type == t)
|
|
333
|
+
o = !0;
|
|
334
|
+
else {
|
|
335
|
+
let s = r.doc.resolve(p), m = s.index();
|
|
336
|
+
o = s.parent.canReplaceWith(m, m + 1, t);
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
}
|
|
340
|
+
if (!o)
|
|
341
|
+
return !1;
|
|
342
|
+
if (n) {
|
|
343
|
+
let l = r.tr;
|
|
344
|
+
for (let i = 0; i < r.selection.ranges.length; i++) {
|
|
345
|
+
let { $from: { pos: f }, $to: { pos: c } } = r.selection.ranges[i];
|
|
346
|
+
l.setBlockType(f, c, t, e);
|
|
347
|
+
}
|
|
348
|
+
n(l.scrollIntoView());
|
|
349
|
+
}
|
|
350
|
+
return !0;
|
|
351
|
+
};
|
|
352
|
+
}
|
|
353
|
+
function O(...t) {
|
|
354
|
+
return function(e, r, n) {
|
|
355
|
+
for (let o = 0; o < t.length; o++)
|
|
356
|
+
if (t[o](e, r, n))
|
|
357
|
+
return !0;
|
|
358
|
+
return !1;
|
|
359
|
+
};
|
|
360
|
+
}
|
|
361
|
+
O(M, G, H);
|
|
362
|
+
O(M, K, L);
|
|
363
|
+
O(Q, X, Y, _);
|
|
364
|
+
typeof navigator < "u" ? /Mac|iP(hone|[oa]d)/.test(navigator.platform) : typeof os < "u" && os.platform && os.platform() == "darwin";
|
|
365
|
+
export {
|
|
366
|
+
O as chainCommands,
|
|
367
|
+
X as createParagraphNear,
|
|
368
|
+
M as deleteSelection,
|
|
369
|
+
se as exitCode,
|
|
370
|
+
G as joinBackward,
|
|
371
|
+
fe as joinDown,
|
|
372
|
+
K as joinForward,
|
|
373
|
+
oe as joinTextblockBackward,
|
|
374
|
+
le as joinTextblockForward,
|
|
375
|
+
ie as joinUp,
|
|
376
|
+
ce as lift,
|
|
377
|
+
Y as liftEmptyBlock,
|
|
378
|
+
Q as newlineInCode,
|
|
379
|
+
H as selectNodeBackward,
|
|
380
|
+
L as selectNodeForward,
|
|
381
|
+
ue as selectParentNode,
|
|
382
|
+
pe as selectTextblockEnd,
|
|
383
|
+
ae as selectTextblockStart,
|
|
384
|
+
me as setBlockType,
|
|
385
|
+
_ as splitBlock,
|
|
386
|
+
Z as splitBlockAs,
|
|
387
|
+
de as wrapIn
|
|
388
|
+
};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Plugin as w } from "../../prosemirror-state/dist/index.js";
|
|
2
|
+
import { dropPoint as v } from "../../prosemirror-transform/dist/index.js";
|
|
3
|
+
function y(m = {}) {
|
|
4
|
+
return new w({
|
|
5
|
+
view(e) {
|
|
6
|
+
return new C(e, m);
|
|
7
|
+
}
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
class C {
|
|
11
|
+
constructor(e, t) {
|
|
12
|
+
var i;
|
|
13
|
+
this.editorView = e, this.cursorPos = null, this.element = null, this.timeout = -1, this.width = (i = t.width) !== null && i !== void 0 ? i : 1, this.color = t.color === !1 ? void 0 : t.color || "black", this.class = t.class, this.handlers = ["dragover", "dragend", "drop", "dragleave"].map((s) => {
|
|
14
|
+
let d = (r) => {
|
|
15
|
+
this[s](r);
|
|
16
|
+
};
|
|
17
|
+
return e.dom.addEventListener(s, d), { name: s, handler: d };
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
destroy() {
|
|
21
|
+
this.handlers.forEach(({ name: e, handler: t }) => this.editorView.dom.removeEventListener(e, t));
|
|
22
|
+
}
|
|
23
|
+
update(e, t) {
|
|
24
|
+
this.cursorPos != null && t.doc != e.state.doc && (this.cursorPos > e.state.doc.content.size ? this.setCursor(null) : this.updateOverlay());
|
|
25
|
+
}
|
|
26
|
+
setCursor(e) {
|
|
27
|
+
e != this.cursorPos && (this.cursorPos = e, e == null ? (this.element.parentNode.removeChild(this.element), this.element = null) : this.updateOverlay());
|
|
28
|
+
}
|
|
29
|
+
updateOverlay() {
|
|
30
|
+
let e = this.editorView.state.doc.resolve(this.cursorPos), t = !e.parent.inlineContent, i, s = this.editorView.dom, d = s.getBoundingClientRect(), r = d.width / s.offsetWidth, h = d.height / s.offsetHeight;
|
|
31
|
+
if (t) {
|
|
32
|
+
let o = e.nodeBefore, n = e.nodeAfter;
|
|
33
|
+
if (o || n) {
|
|
34
|
+
let a = this.editorView.nodeDOM(this.cursorPos - (o ? o.nodeSize : 0));
|
|
35
|
+
if (a) {
|
|
36
|
+
let c = a.getBoundingClientRect(), u = o ? c.bottom : c.top;
|
|
37
|
+
o && n && (u = (u + this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top) / 2);
|
|
38
|
+
let g = this.width / 2 * h;
|
|
39
|
+
i = { left: c.left, right: c.right, top: u - g, bottom: u + g };
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
if (!i) {
|
|
44
|
+
let o = this.editorView.coordsAtPos(this.cursorPos), n = this.width / 2 * r;
|
|
45
|
+
i = { left: o.left - n, right: o.left + n, top: o.top, bottom: o.bottom };
|
|
46
|
+
}
|
|
47
|
+
let l = this.editorView.dom.offsetParent;
|
|
48
|
+
this.element || (this.element = l.appendChild(document.createElement("div")), this.class && (this.element.className = this.class), this.element.style.cssText = "position: absolute; z-index: 50; pointer-events: none;", this.color && (this.element.style.backgroundColor = this.color)), this.element.classList.toggle("prosemirror-dropcursor-block", t), this.element.classList.toggle("prosemirror-dropcursor-inline", !t);
|
|
49
|
+
let f, p;
|
|
50
|
+
if (!l || l == document.body && getComputedStyle(l).position == "static")
|
|
51
|
+
f = -pageXOffset, p = -pageYOffset;
|
|
52
|
+
else {
|
|
53
|
+
let o = l.getBoundingClientRect(), n = o.width / l.offsetWidth, a = o.height / l.offsetHeight;
|
|
54
|
+
f = o.left - l.scrollLeft * n, p = o.top - l.scrollTop * a;
|
|
55
|
+
}
|
|
56
|
+
this.element.style.left = (i.left - f) / r + "px", this.element.style.top = (i.top - p) / h + "px", this.element.style.width = (i.right - i.left) / r + "px", this.element.style.height = (i.bottom - i.top) / h + "px";
|
|
57
|
+
}
|
|
58
|
+
scheduleRemoval(e) {
|
|
59
|
+
clearTimeout(this.timeout), this.timeout = setTimeout(() => this.setCursor(null), e);
|
|
60
|
+
}
|
|
61
|
+
dragover(e) {
|
|
62
|
+
if (!this.editorView.editable)
|
|
63
|
+
return;
|
|
64
|
+
let t = this.editorView.posAtCoords({ left: e.clientX, top: e.clientY }), i = t && t.inside >= 0 && this.editorView.state.doc.nodeAt(t.inside), s = i && i.type.spec.disableDropCursor, d = typeof s == "function" ? s(this.editorView, t, e) : s;
|
|
65
|
+
if (t && !d) {
|
|
66
|
+
let r = t.pos;
|
|
67
|
+
if (this.editorView.dragging && this.editorView.dragging.slice) {
|
|
68
|
+
let h = v(this.editorView.state.doc, r, this.editorView.dragging.slice);
|
|
69
|
+
h != null && (r = h);
|
|
70
|
+
}
|
|
71
|
+
this.setCursor(r), this.scheduleRemoval(5e3);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
dragend() {
|
|
75
|
+
this.scheduleRemoval(20);
|
|
76
|
+
}
|
|
77
|
+
drop() {
|
|
78
|
+
this.scheduleRemoval(20);
|
|
79
|
+
}
|
|
80
|
+
dragleave(e) {
|
|
81
|
+
this.editorView.dom.contains(e.relatedTarget) || this.setCursor(null);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
export {
|
|
85
|
+
y as dropCursor
|
|
86
|
+
};
|