@vizel/core 0.0.1-alpha.2 → 0.0.1-alpha.4
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/index.d.ts +13 -13
- package/dist/index10.js +1 -1
- package/dist/index11.js +2 -2
- package/dist/index14.js +1 -1
- package/dist/index20.js +2 -2
- package/dist/index21.js +2 -2
- package/dist/index22.js +3 -3
- package/dist/index26.js +1 -1
- package/dist/index3.js +1 -1
- package/dist/index31.js +2 -2
- package/dist/index34.js +63 -16
- package/dist/index35.js +4 -58
- package/dist/index36.js +123 -15
- package/dist/index37.js +316 -37
- package/dist/index38.js +481 -58
- package/dist/index39.js +48 -4
- package/dist/index4.js +1 -1
- package/dist/index40.js +664 -108
- package/dist/index41.js +4 -327
- package/dist/index42.js +4 -487
- package/dist/index43.js +206 -647
- package/dist/index44.js +82 -4
- package/dist/index45.js +17 -4
- package/dist/index46.js +57 -237
- package/dist/index47.js +15 -82
- package/dist/index48.js +4 -4
- package/dist/index49.js +3 -3
- package/dist/index5.js +1 -1
- package/dist/index50.js +1408 -1467
- package/dist/index51.js +5 -1502
- package/dist/index52.js +1533 -695
- package/dist/index53.js +723 -5
- package/dist/index54.js +84 -21
- package/dist/index55.js +246 -10
- package/dist/index56.js +3 -7
- package/dist/index57.js +1231 -7
- package/dist/index58.js +731 -11
- package/dist/index59.js +21 -19
- package/dist/index6.js +1 -1
- package/dist/index60.js +10 -25
- package/dist/index61.js +6 -83
- package/dist/index62.js +7 -245
- package/dist/index63.js +11 -1229
- package/dist/index64.js +17 -732
- package/dist/index65.js +25 -3
- package/dist/index66.js +1 -1
- package/dist/index68.js +91 -98
- package/dist/index69.js +3 -90
- package/dist/index70.js +98 -4
- package/dist/index8.js +1 -1
- package/dist/index9.js +1 -1
- package/package.json +27 -15
- package/LICENSE +0 -21
package/dist/index48.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Extension as u, callOrReturn as w, getExtensionField as S, isNodeEmpty as P, isNodeSelection as v } from "@tiptap/core";
|
|
2
|
-
import { Plugin as p, PluginKey as m } from "./
|
|
3
|
-
import { dropCursor as z } from "./
|
|
4
|
-
import { DecorationSet as f, Decoration as g } from "./
|
|
2
|
+
import { Plugin as p, PluginKey as m } from "./index38.js";
|
|
3
|
+
import { dropCursor as z } from "./index54.js";
|
|
4
|
+
import { DecorationSet as f, Decoration as g } from "./index50.js";
|
|
5
5
|
import { gapCursor as E } from "./index49.js";
|
|
6
|
-
import { history as M, redo as N, undo as O } from "./
|
|
6
|
+
import { history as M, redo as N, undo as O } from "./index55.js";
|
|
7
7
|
var k = u.create({
|
|
8
8
|
name: "characterCount",
|
|
9
9
|
addOptions() {
|
package/dist/index49.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { keydownHandler as v } from "./index66.js";
|
|
2
|
-
import { Plugin as w, TextSelection as m, NodeSelection as x, Selection as u } from "./
|
|
3
|
-
import { Fragment as h, Slice as g } from "./
|
|
4
|
-
import { DecorationSet as S, Decoration as A } from "./
|
|
2
|
+
import { Plugin as w, TextSelection as m, NodeSelection as x, Selection as u } from "./index38.js";
|
|
3
|
+
import { Fragment as h, Slice as g } from "./index57.js";
|
|
4
|
+
import { DecorationSet as S, Decoration as A } from "./index50.js";
|
|
5
5
|
class i extends u {
|
|
6
6
|
/**
|
|
7
7
|
Create a gap cursor.
|
package/dist/index5.js
CHANGED