@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.
Files changed (53) hide show
  1. package/dist/index.d.ts +13 -13
  2. package/dist/index10.js +1 -1
  3. package/dist/index11.js +2 -2
  4. package/dist/index14.js +1 -1
  5. package/dist/index20.js +2 -2
  6. package/dist/index21.js +2 -2
  7. package/dist/index22.js +3 -3
  8. package/dist/index26.js +1 -1
  9. package/dist/index3.js +1 -1
  10. package/dist/index31.js +2 -2
  11. package/dist/index34.js +63 -16
  12. package/dist/index35.js +4 -58
  13. package/dist/index36.js +123 -15
  14. package/dist/index37.js +316 -37
  15. package/dist/index38.js +481 -58
  16. package/dist/index39.js +48 -4
  17. package/dist/index4.js +1 -1
  18. package/dist/index40.js +664 -108
  19. package/dist/index41.js +4 -327
  20. package/dist/index42.js +4 -487
  21. package/dist/index43.js +206 -647
  22. package/dist/index44.js +82 -4
  23. package/dist/index45.js +17 -4
  24. package/dist/index46.js +57 -237
  25. package/dist/index47.js +15 -82
  26. package/dist/index48.js +4 -4
  27. package/dist/index49.js +3 -3
  28. package/dist/index5.js +1 -1
  29. package/dist/index50.js +1408 -1467
  30. package/dist/index51.js +5 -1502
  31. package/dist/index52.js +1533 -695
  32. package/dist/index53.js +723 -5
  33. package/dist/index54.js +84 -21
  34. package/dist/index55.js +246 -10
  35. package/dist/index56.js +3 -7
  36. package/dist/index57.js +1231 -7
  37. package/dist/index58.js +731 -11
  38. package/dist/index59.js +21 -19
  39. package/dist/index6.js +1 -1
  40. package/dist/index60.js +10 -25
  41. package/dist/index61.js +6 -83
  42. package/dist/index62.js +7 -245
  43. package/dist/index63.js +11 -1229
  44. package/dist/index64.js +17 -732
  45. package/dist/index65.js +25 -3
  46. package/dist/index66.js +1 -1
  47. package/dist/index68.js +91 -98
  48. package/dist/index69.js +3 -90
  49. package/dist/index70.js +98 -4
  50. package/dist/index8.js +1 -1
  51. package/dist/index9.js +1 -1
  52. package/package.json +27 -15
  53. package/LICENSE +0 -21
package/dist/index.d.ts CHANGED
@@ -2575,14 +2575,15 @@ export { }
2575
2575
 
2576
2576
  declare module "@tiptap/core" {
2577
2577
  interface Commands<ReturnType> {
2578
- diagram: {
2578
+ vizelBlockMove: {
2579
2579
  /**
2580
- * Insert a diagram block
2580
+ * Move the current block up
2581
2581
  */
2582
- insertDiagram: (options: {
2583
- code: string;
2584
- type?: VizelDiagramType;
2585
- }) => ReturnType;
2582
+ moveBlockUp: () => ReturnType;
2583
+ /**
2584
+ * Move the current block down
2585
+ */
2586
+ moveBlockDown: () => ReturnType;
2586
2587
  };
2587
2588
  }
2588
2589
  }
@@ -2590,15 +2591,14 @@ declare module "@tiptap/core" {
2590
2591
 
2591
2592
  declare module "@tiptap/core" {
2592
2593
  interface Commands<ReturnType> {
2593
- vizelBlockMove: {
2594
- /**
2595
- * Move the current block up
2596
- */
2597
- moveBlockUp: () => ReturnType;
2594
+ diagram: {
2598
2595
  /**
2599
- * Move the current block down
2596
+ * Insert a diagram block
2600
2597
  */
2601
- moveBlockDown: () => ReturnType;
2598
+ insertDiagram: (options: {
2599
+ code: string;
2600
+ type?: VizelDiagramType;
2601
+ }) => ReturnType;
2602
2602
  };
2603
2603
  }
2604
2604
  }
package/dist/index10.js CHANGED
@@ -1,4 +1,4 @@
1
- import { FileHandler as d } from "./index37.js";
1
+ import { FileHandler as d } from "./index39.js";
2
2
  const g = [
3
3
  "image/jpeg",
4
4
  "image/png",
package/dist/index11.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { Extension as p } from "@tiptap/core";
2
- import { FileHandler as V } from "./index37.js";
2
+ import { FileHandler as V } from "./index39.js";
3
3
  import W from "@tiptap/extension-image";
4
4
  import { default as k } from "@tiptap/extension-image";
5
- import { Plugin as U } from "./index42.js";
5
+ import { Plugin as U } from "./index38.js";
6
6
  import { createVizelImageUploader as M, createVizelImageUploadPlugin as v, handleVizelImageDrop as T, handleVizelImagePaste as y, validateVizelImageFile as E } from "./index31.js";
7
7
  import { getVizelImageUploadPluginKey as C } from "./index31.js";
8
8
  import { VizelResizableImage as P } from "./index12.js";
package/dist/index14.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Markdown as a } from "./index43.js";
1
+ import { Markdown as a } from "./index40.js";
2
2
  function i(n = {}) {
3
3
  const { indentation: e = { style: "space", size: 2 }, gfm: o = !0, breaks: t = !1 } = n, r = {
4
4
  gfm: o,
package/dist/index20.js CHANGED
@@ -1,5 +1,5 @@
1
- import i from "./index44.js";
2
- import a from "./index45.js";
1
+ import i from "./index41.js";
2
+ import a from "./index42.js";
3
3
  function o(s = {}) {
4
4
  const { taskList: t = {}, taskItem: e = {} } = s;
5
5
  return [
package/dist/index21.js CHANGED
@@ -1,5 +1,5 @@
1
- import { TextStyle as t, Color as l } from "./index46.js";
2
- import { Highlight as i } from "./index47.js";
1
+ import { TextStyle as t, Color as l } from "./index43.js";
2
+ import { Highlight as i } from "./index44.js";
3
3
  const h = [
4
4
  // Row 1: Grayscale
5
5
  { name: "Default", color: "inherit" },
package/dist/index22.js CHANGED
@@ -1,6 +1,6 @@
1
- import { getIconData as g } from "./index34.js";
2
- import { iconToSVG as h } from "./index35.js";
3
- import s from "./index36.js";
1
+ import { getIconData as g } from "./index45.js";
2
+ import { iconToSVG as h } from "./index46.js";
3
+ import s from "./index47.js";
4
4
  const u = {
5
5
  // Text/Headings
6
6
  heading1: "lucide:heading-1",
package/dist/index26.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "@tiptap/core";
2
- import "./index37.js";
2
+ import "./index39.js";
3
3
  import "@tiptap/extension-image";
4
4
  import { createVizelImageUploader as p } from "./index31.js";
5
5
  import "./index12.js";
package/dist/index3.js CHANGED
@@ -17,7 +17,7 @@ import y from "@tiptap/extension-paragraph";
17
17
  import C from "@tiptap/extension-placeholder";
18
18
  import V from "@tiptap/extension-strike";
19
19
  import O from "@tiptap/extension-text";
20
- import j from "./index38.js";
20
+ import j from "./index34.js";
21
21
  import { createVizelCharacterCountExtension as B } from "./index4.js";
22
22
  import { createVizelCodeBlockExtension as a } from "./index5.js";
23
23
  import { createVizelDetailsExtensions as L } from "./index6.js";
package/dist/index31.js CHANGED
@@ -1,5 +1,5 @@
1
- import { PluginKey as S, Plugin as A } from "./index42.js";
2
- import { DecorationSet as E, Decoration as M } from "./index51.js";
1
+ import { PluginKey as S, Plugin as A } from "./index38.js";
2
+ import { DecorationSet as E, Decoration as M } from "./index50.js";
3
3
  import { VIZEL_DEFAULT_IMAGE_MAX_FILE_SIZE as _, VIZEL_DEFAULT_FILE_MIME_TYPES as P } from "./index10.js";
4
4
  const d = new S("vizel-image-upload"), U = (e) => typeof e == "object" && e !== null && "type" in e && (e.type === "add" || e.type === "remove");
5
5
  function T(e) {
package/dist/index34.js CHANGED
@@ -1,19 +1,66 @@
1
- import { mergeIconData as s } from "./index57.js";
2
- import { getIconsTree as f } from "./index58.js";
3
- function i(r, o, n) {
4
- const u = r.icons, l = r.aliases || /* @__PURE__ */ Object.create(null);
5
- let t = {};
6
- function c(e) {
7
- t = s(u[e] || l[e], t);
1
+ import { Mark as d, mergeAttributes as a } from "@tiptap/core";
2
+ var s = d.create({
3
+ name: "underline",
4
+ addOptions() {
5
+ return {
6
+ HTMLAttributes: {}
7
+ };
8
+ },
9
+ parseHTML() {
10
+ return [
11
+ {
12
+ tag: "u"
13
+ },
14
+ {
15
+ style: "text-decoration",
16
+ consuming: !1,
17
+ getAttrs: (e) => e.includes("underline") ? {} : !1
18
+ }
19
+ ];
20
+ },
21
+ renderHTML({ HTMLAttributes: e }) {
22
+ return ["u", a(this.options.HTMLAttributes, e), 0];
23
+ },
24
+ parseMarkdown(e, n) {
25
+ return n.applyMark(this.name || "underline", n.parseInline(e.tokens || []));
26
+ },
27
+ renderMarkdown(e, n) {
28
+ return `++${n.renderChildren(e)}++`;
29
+ },
30
+ markdownTokenizer: {
31
+ name: "underline",
32
+ level: "inline",
33
+ start(e) {
34
+ return e.indexOf("++");
35
+ },
36
+ tokenize(e, n, i) {
37
+ const r = /^(\+\+)([\s\S]+?)(\+\+)/.exec(e);
38
+ if (!r)
39
+ return;
40
+ const t = r[2].trim();
41
+ return {
42
+ type: "underline",
43
+ raw: r[0],
44
+ text: t,
45
+ tokens: i.inlineTokens(t)
46
+ };
47
+ }
48
+ },
49
+ addCommands() {
50
+ return {
51
+ setUnderline: () => ({ commands: e }) => e.setMark(this.name),
52
+ toggleUnderline: () => ({ commands: e }) => e.toggleMark(this.name),
53
+ unsetUnderline: () => ({ commands: e }) => e.unsetMark(this.name)
54
+ };
55
+ },
56
+ addKeyboardShortcuts() {
57
+ return {
58
+ "Mod-u": () => this.editor.commands.toggleUnderline(),
59
+ "Mod-U": () => this.editor.commands.toggleUnderline()
60
+ };
8
61
  }
9
- return c(o), n.forEach(c), s(r, t);
10
- }
11
- function g(r, o) {
12
- if (r.icons[o]) return i(r, o, []);
13
- const n = f(r, [o])[o];
14
- return n ? i(r, o, n) : null;
15
- }
62
+ }), l = s;
16
63
  export {
17
- g as getIconData,
18
- i as internalGetIconData
64
+ s as Underline,
65
+ l as default
19
66
  };
package/dist/index35.js CHANGED
@@ -1,60 +1,6 @@
1
- import { defaultIconProps as k } from "./index54.js";
2
- import { defaultIconCustomisations as y } from "./index55.js";
3
- import { calculateSize as b } from "./index59.js";
4
- import { wrapSVGContent as C } from "./index60.js";
5
- const I = (s) => s === "unset" || s === "undefined" || s === "none";
6
- function H(s, x) {
7
- const n = {
8
- ...k,
9
- ...s
10
- }, g = {
11
- ...y,
12
- ...x
13
- }, t = {
14
- left: n.left,
15
- top: n.top,
16
- width: n.width,
17
- height: n.height
18
- };
19
- let u = n.body;
20
- [n, g].forEach((r) => {
21
- const o = [], F = r.hFlip, S = r.vFlip;
22
- let e = r.rotate;
23
- F ? S ? e += 2 : (o.push("translate(" + (t.width + t.left).toString() + " " + (0 - t.top).toString() + ")"), o.push("scale(-1 1)"), t.top = t.left = 0) : S && (o.push("translate(" + (0 - t.left).toString() + " " + (t.height + t.top).toString() + ")"), o.push("scale(1 -1)"), t.top = t.left = 0);
24
- let i;
25
- switch (e < 0 && (e -= Math.floor(e / 4) * 4), e = e % 4, e) {
26
- case 1:
27
- i = t.height / 2 + t.top, o.unshift("rotate(90 " + i.toString() + " " + i.toString() + ")");
28
- break;
29
- case 2:
30
- o.unshift("rotate(180 " + (t.width / 2 + t.left).toString() + " " + (t.height / 2 + t.top).toString() + ")");
31
- break;
32
- case 3:
33
- i = t.width / 2 + t.left, o.unshift("rotate(-90 " + i.toString() + " " + i.toString() + ")");
34
- break;
35
- }
36
- e % 2 === 1 && (t.left !== t.top && (i = t.left, t.left = t.top, t.top = i), t.width !== t.height && (i = t.width, t.width = t.height, t.height = i)), o.length && (u = C(u, '<g transform="' + o.join(" ") + '">', "</g>"));
37
- });
38
- const p = g.width, h = g.height, f = t.width, l = t.height;
39
- let a, c;
40
- p === null ? (c = h === null ? "1em" : h === "auto" ? l : h, a = b(c, f / l)) : (a = p === "auto" ? f : p, c = h === null ? b(a, l / f) : h === "auto" ? l : h);
41
- const d = {}, w = (r, o) => {
42
- I(o) || (d[r] = o.toString());
43
- };
44
- w("width", a), w("height", c);
45
- const m = [
46
- t.left,
47
- t.top,
48
- f,
49
- l
50
- ];
51
- return d.viewBox = m.join(" "), {
52
- attributes: d,
53
- viewBox: m,
54
- body: u
55
- };
56
- }
1
+ import { CharacterCount as a } from "./index48.js";
2
+ var t = a;
57
3
  export {
58
- H as iconToSVG,
59
- I as isUnsetKeyword
4
+ a as CharacterCount,
5
+ t as default
60
6
  };