@caspeco/casper-ui-library 9.9.0 → 9.10.0
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/_virtual/index.js +5 -0
- package/dist/_virtual/index2.js +4 -0
- package/dist/_virtual/use-sync-external-store-shim.development.js +4 -0
- package/dist/_virtual/use-sync-external-store-shim.production.js +4 -0
- package/dist/_virtual/with-selector.development.js +4 -0
- package/dist/_virtual/with-selector.js +5 -0
- package/dist/_virtual/with-selector.production.js +4 -0
- package/dist/_virtual/with-selector2.js +4 -0
- package/dist/components/button/button-recipe.d.ts.map +1 -1
- package/dist/components/button/button-recipe.js +80 -39
- package/dist/components/input/input.d.ts +1 -0
- package/dist/components/input/input.d.ts.map +1 -1
- package/dist/components/input/types.d.ts +1 -1
- package/dist/components/input/types.d.ts.map +1 -1
- package/dist/components/rich-text-editor/boolean-control.d.ts +3 -0
- package/dist/components/rich-text-editor/boolean-control.d.ts.map +1 -0
- package/dist/components/rich-text-editor/boolean-control.js +35 -0
- package/dist/components/rich-text-editor/extensions.d.ts +4 -0
- package/dist/components/rich-text-editor/extensions.d.ts.map +1 -0
- package/dist/components/rich-text-editor/extensions.js +37 -0
- package/dist/components/rich-text-editor/index.d.ts +26 -0
- package/dist/components/rich-text-editor/index.d.ts.map +1 -0
- package/dist/components/rich-text-editor/index.js +23 -0
- package/dist/components/rich-text-editor/rich-text-editor-context.d.ts +10 -0
- package/dist/components/rich-text-editor/rich-text-editor-context.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor-context.js +13 -0
- package/dist/components/rich-text-editor/rich-text-editor-control.d.ts +11 -0
- package/dist/components/rich-text-editor/rich-text-editor-control.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor-control.js +202 -0
- package/dist/components/rich-text-editor/rich-text-editor-recipe.d.ts +4 -0
- package/dist/components/rich-text-editor/rich-text-editor-recipe.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor-recipe.js +58 -0
- package/dist/components/rich-text-editor/rich-text-editor.composition.d.ts +6 -0
- package/dist/components/rich-text-editor/rich-text-editor.composition.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor.d.ts +11 -0
- package/dist/components/rich-text-editor/rich-text-editor.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor.js +60 -0
- package/dist/components/rich-text-editor/rich-text-editor.test.d.ts +2 -0
- package/dist/components/rich-text-editor/rich-text-editor.test.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-editor.visual.test.d.ts +2 -0
- package/dist/components/rich-text-editor/rich-text-editor.visual.test.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-renderer.d.ts +3 -0
- package/dist/components/rich-text-editor/rich-text-renderer.d.ts.map +1 -0
- package/dist/components/rich-text-editor/rich-text-renderer.js +21 -0
- package/dist/components/rich-text-editor/translations.d.ts +23 -0
- package/dist/components/rich-text-editor/translations.d.ts.map +1 -0
- package/dist/components/rich-text-editor/translations.js +120 -0
- package/dist/components/rich-text-editor/types.d.ts +30 -0
- package/dist/components/rich-text-editor/types.d.ts.map +1 -0
- package/dist/components/rich-text-editor/use-rich-text-editor.d.ts +3 -0
- package/dist/components/rich-text-editor/use-rich-text-editor.d.ts.map +1 -0
- package/dist/components/rich-text-editor/use-rich-text-editor.js +17 -0
- package/dist/components/toggle-button/toggle-button.d.ts.map +1 -1
- package/dist/components/toggle-button/toggle-button.js +11 -11
- package/dist/components/toggle-button/types.d.ts +2 -0
- package/dist/components/toggle-button/types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +774 -763
- package/dist/node_modules/@tiptap/core/dist/index.js +3792 -0
- package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js +17 -0
- package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +62 -0
- package/dist/node_modules/@tiptap/extension-bold/dist/index.js +85 -0
- package/dist/node_modules/@tiptap/extension-code/dist/index.js +54 -0
- package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +217 -0
- package/dist/node_modules/@tiptap/extension-document/dist/index.js +12 -0
- package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +59 -0
- package/dist/node_modules/@tiptap/extension-heading/dist/index.js +63 -0
- package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +56 -0
- package/dist/node_modules/@tiptap/extension-italic/dist/index.js +83 -0
- package/dist/node_modules/@tiptap/extension-link/dist/index.js +313 -0
- package/dist/node_modules/@tiptap/extension-list/dist/index.js +785 -0
- package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +49 -0
- package/dist/node_modules/@tiptap/extension-strike/dist/index.js +66 -0
- package/dist/node_modules/@tiptap/extension-text/dist/index.js +13 -0
- package/dist/node_modules/@tiptap/extension-underline/dist/index.js +65 -0
- package/dist/node_modules/@tiptap/extensions/dist/index.js +439 -0
- package/dist/node_modules/@tiptap/react/dist/index.js +501 -0
- package/dist/node_modules/@tiptap/starter-kit/dist/index.js +28 -0
- package/dist/node_modules/fast-equals/dist/es/index.js +324 -0
- package/dist/node_modules/linkifyjs/dist/linkify.js +705 -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 +2736 -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 +1552 -0
- package/dist/node_modules/prosemirror-view/dist/index.js +3802 -0
- package/dist/node_modules/rope-sequence/dist/index.js +100 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js +58 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js +57 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +58 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +46 -0
- package/dist/node_modules/use-sync-external-store/shim/index.js +10 -0
- package/dist/node_modules/use-sync-external-store/shim/with-selector.js +10 -0
- package/dist/node_modules/w3c-keyname/index.js +93 -0
- package/package.json +7 -1
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { ReplaceAroundStep as h, liftTarget as w, canJoin as C, findWrapping as L, canSplit as R } from "../../prosemirror-transform/dist/index.js";
|
|
2
|
+
import { Fragment as s, Slice as I, NodeRange as x } from "../../prosemirror-model/dist/index.js";
|
|
3
|
+
function O(r, t = null) {
|
|
4
|
+
return function(e, l) {
|
|
5
|
+
let { $from: o, $to: n } = e.selection, f = o.blockRange(n);
|
|
6
|
+
if (!f)
|
|
7
|
+
return !1;
|
|
8
|
+
let i = l ? e.tr : null;
|
|
9
|
+
return S(i, f, r, t) ? (l && l(i.scrollIntoView()), !0) : !1;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function S(r, t, e, l = null) {
|
|
13
|
+
let o = !1, n = t, f = t.$from.doc;
|
|
14
|
+
if (t.depth >= 2 && t.$from.node(t.depth - 1).type.compatibleContent(e) && t.startIndex == 0) {
|
|
15
|
+
if (t.$from.index(t.depth - 1) == 0)
|
|
16
|
+
return !1;
|
|
17
|
+
let d = f.resolve(t.start - 2);
|
|
18
|
+
n = new x(d, d, t.depth), t.endIndex < t.parent.childCount && (t = new x(t.$from, f.resolve(t.$to.end(t.depth)), t.depth)), o = !0;
|
|
19
|
+
}
|
|
20
|
+
let i = L(n, e, l, t);
|
|
21
|
+
return i ? (r && v(r, t, i, o, e), !0) : !1;
|
|
22
|
+
}
|
|
23
|
+
function v(r, t, e, l, o) {
|
|
24
|
+
let n = s.empty;
|
|
25
|
+
for (let u = e.length - 1; u >= 0; u--)
|
|
26
|
+
n = s.from(e[u].type.create(e[u].attrs, n));
|
|
27
|
+
r.step(new h(t.start - (l ? 2 : 0), t.end, t.start, t.end, new I(n, 0, 0), e.length, !0));
|
|
28
|
+
let f = 0;
|
|
29
|
+
for (let u = 0; u < e.length; u++)
|
|
30
|
+
e[u].type == o && (f = u + 1);
|
|
31
|
+
let i = e.length - f, d = t.start + e.length - (l ? 2 : 0), c = t.parent;
|
|
32
|
+
for (let u = t.startIndex, m = t.endIndex, p = !0; u < m; u++, p = !1)
|
|
33
|
+
!p && R(r.doc, d, i) && (r.split(d, i), d += 2 * i), d += c.child(u).nodeSize;
|
|
34
|
+
return r;
|
|
35
|
+
}
|
|
36
|
+
function V(r) {
|
|
37
|
+
return function(t, e) {
|
|
38
|
+
let { $from: l, $to: o } = t.selection, n = l.blockRange(o, (f) => f.childCount > 0 && f.firstChild.type == r);
|
|
39
|
+
return n ? e ? l.node(n.depth - 1).type == r ? b(t, e, r, n) : k(t, e, n) : !0 : !1;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function b(r, t, e, l) {
|
|
43
|
+
let o = r.tr, n = l.end, f = l.$to.end(l.depth);
|
|
44
|
+
n < f && (o.step(new h(n - 1, f, n, f, new I(s.from(e.create(null, l.parent.copy())), 1, 0), 1, !0)), l = new x(o.doc.resolve(l.$from.pos), o.doc.resolve(f), l.depth));
|
|
45
|
+
const i = w(l);
|
|
46
|
+
if (i == null)
|
|
47
|
+
return !1;
|
|
48
|
+
o.lift(l, i);
|
|
49
|
+
let d = o.doc.resolve(o.mapping.map(n, -1) - 1);
|
|
50
|
+
return C(o.doc, d.pos) && d.nodeBefore.type == d.nodeAfter.type && o.join(d.pos), t(o.scrollIntoView()), !0;
|
|
51
|
+
}
|
|
52
|
+
function k(r, t, e) {
|
|
53
|
+
let l = r.tr, o = e.parent;
|
|
54
|
+
for (let a = e.end, $ = e.endIndex - 1, y = e.startIndex; $ > y; $--)
|
|
55
|
+
a -= o.child($).nodeSize, l.delete(a - 1, a + 1);
|
|
56
|
+
let n = l.doc.resolve(e.start), f = n.nodeAfter;
|
|
57
|
+
if (l.mapping.map(e.end) != e.start + n.nodeAfter.nodeSize)
|
|
58
|
+
return !1;
|
|
59
|
+
let i = e.startIndex == 0, d = e.endIndex == o.childCount, c = n.node(-1), u = n.index(-1);
|
|
60
|
+
if (!c.canReplace(u + (i ? 0 : 1), u + 1, f.content.append(d ? s.empty : s.from(o))))
|
|
61
|
+
return !1;
|
|
62
|
+
let m = n.pos, p = m + f.nodeSize;
|
|
63
|
+
return l.step(new h(m - (i ? 1 : 0), p + (d ? 1 : 0), m + 1, p - 1, new I((i ? s.empty : s.from(o.copy(s.empty))).append(d ? s.empty : s.from(o.copy(s.empty))), i ? 0 : 1, d ? 0 : 1), i ? 0 : 1)), t(l.scrollIntoView()), !0;
|
|
64
|
+
}
|
|
65
|
+
function B(r) {
|
|
66
|
+
return function(t, e) {
|
|
67
|
+
let { $from: l, $to: o } = t.selection, n = l.blockRange(o, (c) => c.childCount > 0 && c.firstChild.type == r);
|
|
68
|
+
if (!n)
|
|
69
|
+
return !1;
|
|
70
|
+
let f = n.startIndex;
|
|
71
|
+
if (f == 0)
|
|
72
|
+
return !1;
|
|
73
|
+
let i = n.parent, d = i.child(f - 1);
|
|
74
|
+
if (d.type != r)
|
|
75
|
+
return !1;
|
|
76
|
+
if (e) {
|
|
77
|
+
let c = d.lastChild && d.lastChild.type == i.type, u = s.from(c ? r.create() : null), m = new I(s.from(r.create(null, s.from(i.type.create(null, u)))), c ? 3 : 1, 0), p = n.start, a = n.end;
|
|
78
|
+
e(t.tr.step(new h(p - (c ? 3 : 1), a, p, a, m, 1, !0)).scrollIntoView());
|
|
79
|
+
}
|
|
80
|
+
return !0;
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
export {
|
|
84
|
+
V as liftListItem,
|
|
85
|
+
B as sinkListItem,
|
|
86
|
+
O as wrapInList,
|
|
87
|
+
S as wrapRangeInList
|
|
88
|
+
};
|