@vizel/core 0.0.1-alpha.5 → 1.0.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.
Files changed (75) hide show
  1. package/dist/components.css +1 -1
  2. package/dist/components.css.map +1 -1
  3. package/dist/index.d.ts +230 -15
  4. package/dist/index.js +78 -75
  5. package/dist/index10.js +1 -1
  6. package/dist/index11.js +4 -4
  7. package/dist/index14.js +1 -1
  8. package/dist/index15.js +134 -127
  9. package/dist/index17.js +2 -2
  10. package/dist/index18.js +1 -1
  11. package/dist/index19.js +86 -86
  12. package/dist/index20.js +2 -2
  13. package/dist/index21.js +2 -2
  14. package/dist/index22.js +16 -13
  15. package/dist/index24.js +164 -11
  16. package/dist/index25.js +12 -53
  17. package/dist/index26.js +49 -136
  18. package/dist/index27.js +132 -59
  19. package/dist/index28.js +66 -32
  20. package/dist/index29.js +35 -21
  21. package/dist/index3.js +91 -90
  22. package/dist/index30.js +23 -9
  23. package/dist/index31.js +9 -147
  24. package/dist/index32.js +138 -256
  25. package/dist/index33.js +258 -85
  26. package/dist/index34.js +84 -55
  27. package/dist/index35.js +64 -4
  28. package/dist/index36.js +4 -123
  29. package/dist/index37.js +111 -315
  30. package/dist/index38.js +321 -481
  31. package/dist/index39.js +12 -47
  32. package/dist/index4.js +1 -1
  33. package/dist/index40.js +463 -655
  34. package/dist/index41.js +48 -4
  35. package/dist/index42.js +694 -4
  36. package/dist/index43.js +4 -238
  37. package/dist/index44.js +4 -82
  38. package/dist/index45.js +237 -16
  39. package/dist/index46.js +81 -57
  40. package/dist/index47.js +17 -15
  41. package/dist/index48.js +57 -285
  42. package/dist/index49.js +15 -202
  43. package/dist/index5.js +78 -68
  44. package/dist/index50.js +281 -1497
  45. package/dist/index51.js +202 -5
  46. package/dist/index52.js +1408 -1467
  47. package/dist/index53.js +5 -723
  48. package/dist/index54.js +1109 -81
  49. package/dist/index55.js +703 -226
  50. package/dist/index56.js +84 -3
  51. package/dist/index57.js +219 -1205
  52. package/dist/index58.js +3 -734
  53. package/dist/index59.js +1232 -21
  54. package/dist/index6.js +1 -1
  55. package/dist/index60.js +734 -10
  56. package/dist/index61.js +21 -7
  57. package/dist/index62.js +10 -8
  58. package/dist/index63.js +6 -13
  59. package/dist/index64.js +7 -18
  60. package/dist/index65.js +12 -23
  61. package/dist/index66.js +17 -53
  62. package/dist/index67.js +23 -1059
  63. package/dist/index68.js +54 -90
  64. package/dist/index69.js +1061 -98
  65. package/dist/index7.js +108 -96
  66. package/dist/index70.js +98 -4
  67. package/dist/index71.js +93 -0
  68. package/dist/index72.js +6 -0
  69. package/dist/index8.js +1 -1
  70. package/dist/index9.js +75 -65
  71. package/dist/mathematics.css +1 -0
  72. package/dist/mathematics.css.map +1 -0
  73. package/dist/styles.css +1 -1
  74. package/dist/styles.css.map +1 -1
  75. package/package.json +90 -52
package/dist/index48.js CHANGED
@@ -1,288 +1,60 @@
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 "./index38.js";
3
- import { dropCursor as z } from "./index54.js";
4
- import { DecorationSet as f, Decoration as g } from "./index50.js";
5
- import { gapCursor as E } from "./index49.js";
6
- import { history as M, redo as N, undo as O } from "./index55.js";
7
- var k = u.create({
8
- name: "characterCount",
9
- addOptions() {
10
- return {
11
- limit: null,
12
- mode: "textSize",
13
- textCounter: (e) => e.length,
14
- wordCounter: (e) => e.split(" ").filter((t) => t !== "").length
15
- };
16
- },
17
- addStorage() {
18
- return {
19
- characters: () => 0,
20
- words: () => 0
21
- };
22
- },
23
- onBeforeCreate() {
24
- this.storage.characters = (e) => {
25
- const t = e?.node || this.editor.state.doc;
26
- if ((e?.mode || this.options.mode) === "textSize") {
27
- const r = t.textBetween(0, t.content.size, void 0, " ");
28
- return this.options.textCounter(r);
29
- }
30
- return t.nodeSize;
31
- }, this.storage.words = (e) => {
32
- const t = e?.node || this.editor.state.doc, n = t.textBetween(0, t.content.size, " ", " ");
33
- return this.options.wordCounter(n);
34
- };
35
- },
36
- addProseMirrorPlugins() {
37
- let e = !1;
38
- return [
39
- new p({
40
- key: new m("characterCount"),
41
- appendTransaction: (t, n, r) => {
42
- if (e)
43
- return;
44
- const o = this.options.limit;
45
- if (o == null || o === 0) {
46
- e = !0;
47
- return;
48
- }
49
- const s = this.storage.characters({ node: r.doc });
50
- if (s > o) {
51
- const i = s - o, d = 0, a = i;
52
- console.warn(
53
- `[CharacterCount] Initial content exceeded limit of ${o} characters. Content was automatically trimmed.`
54
- );
55
- const c = r.tr.deleteRange(d, a);
56
- return e = !0, c;
57
- }
58
- e = !0;
59
- },
60
- filterTransaction: (t, n) => {
61
- const r = this.options.limit;
62
- if (!t.docChanged || r === 0 || r === null || r === void 0)
63
- return !0;
64
- const o = this.storage.characters({ node: n.doc }), s = this.storage.characters({ node: t.doc });
65
- if (s <= r || o > r && s > r && s <= o)
66
- return !0;
67
- if (o > r && s > r && s > o || !t.getMeta("paste"))
68
- return !1;
69
- const d = t.selection.$head.pos, a = s - r, c = d - a, l = d;
70
- return t.deleteRange(c, l), !(this.storage.characters({ node: t.doc }) > r);
71
- }
72
- })
73
- ];
74
- }
75
- });
76
- u.create({
77
- name: "dropCursor",
78
- addOptions() {
79
- return {
80
- color: "currentColor",
81
- width: 1,
82
- class: void 0
83
- };
84
- },
85
- addProseMirrorPlugins() {
86
- return [z(this.options)];
87
- }
88
- });
89
- u.create({
90
- name: "focus",
91
- addOptions() {
92
- return {
93
- className: "has-focus",
94
- mode: "all"
95
- };
96
- },
97
- addProseMirrorPlugins() {
98
- return [
99
- new p({
100
- key: new m("focus"),
101
- props: {
102
- decorations: ({ doc: e, selection: t }) => {
103
- const { isEditable: n, isFocused: r } = this.editor, { anchor: o } = t, s = [];
104
- if (!n || !r)
105
- return f.create(e, []);
106
- let i = 0;
107
- this.options.mode === "deepest" && e.descendants((a, c) => {
108
- if (a.isText)
109
- return;
110
- if (!(o >= c && o <= c + a.nodeSize - 1))
111
- return !1;
112
- i += 1;
113
- });
114
- let d = 0;
115
- return e.descendants((a, c) => {
116
- if (a.isText || !(o >= c && o <= c + a.nodeSize - 1))
117
- return !1;
118
- if (d += 1, this.options.mode === "deepest" && i - d > 0 || this.options.mode === "shallowest" && d > 1)
119
- return this.options.mode === "deepest";
120
- s.push(
121
- g.node(c, c + a.nodeSize, {
122
- class: this.options.className
123
- })
124
- );
125
- }), f.create(e, s);
126
- }
127
- }
128
- })
129
- ];
130
- }
131
- });
132
- u.create({
133
- name: "gapCursor",
134
- addProseMirrorPlugins() {
135
- return [E()];
136
- },
137
- extendNodeSchema(e) {
138
- var t;
139
- const n = {
140
- name: e.name,
141
- options: e.options,
142
- storage: e.storage
143
- };
144
- return {
145
- allowGapCursor: (t = w(S(e, "allowGapCursor", n))) != null ? t : null
146
- };
147
- }
148
- });
149
- u.create({
150
- name: "placeholder",
151
- addOptions() {
152
- return {
153
- emptyEditorClass: "is-editor-empty",
154
- emptyNodeClass: "is-empty",
155
- placeholder: "Write something …",
156
- showOnlyWhenEditable: !0,
157
- showOnlyCurrent: !0,
158
- includeChildren: !1
159
- };
160
- },
161
- addProseMirrorPlugins() {
162
- return [
163
- new p({
164
- key: new m("placeholder"),
165
- props: {
166
- decorations: ({ doc: e, selection: t }) => {
167
- const n = this.editor.isEditable || !this.options.showOnlyWhenEditable, { anchor: r } = t, o = [];
168
- if (!n)
169
- return null;
170
- const s = this.editor.isEmpty;
171
- return e.descendants((i, d) => {
172
- const a = r >= d && r <= d + i.nodeSize, c = !i.isLeaf && P(i);
173
- if ((a || !this.options.showOnlyCurrent) && c) {
174
- const l = [this.options.emptyNodeClass];
175
- s && l.push(this.options.emptyEditorClass);
176
- const h = g.node(d, d + i.nodeSize, {
177
- class: l.join(" "),
178
- "data-placeholder": typeof this.options.placeholder == "function" ? this.options.placeholder({
179
- editor: this.editor,
180
- node: i,
181
- pos: d,
182
- hasAnchor: a
183
- }) : this.options.placeholder
184
- });
185
- o.push(h);
186
- }
187
- return this.options.includeChildren;
188
- }), f.create(e, o);
189
- }
190
- }
191
- })
192
- ];
193
- }
194
- });
195
- u.create({
196
- name: "selection",
197
- addOptions() {
198
- return {
199
- className: "selection"
200
- };
201
- },
202
- addProseMirrorPlugins() {
203
- const { editor: e, options: t } = this;
204
- return [
205
- new p({
206
- key: new m("selection"),
207
- props: {
208
- decorations(n) {
209
- return n.selection.empty || e.isFocused || !e.isEditable || v(n.selection) || e.view.dragging ? null : f.create(n.doc, [
210
- g.inline(n.selection.from, n.selection.to, {
211
- class: t.className
212
- })
213
- ]);
214
- }
215
- }
216
- })
217
- ];
218
- }
219
- });
220
- function C({ types: e, node: t }) {
221
- return t && Array.isArray(e) && e.includes(t.type) || t?.type === e;
1
+ import { defaultIconProps as k } from "./index61.js";
2
+ import { defaultIconCustomisations as y } from "./index62.js";
3
+ import { calculateSize as b } from "./index66.js";
4
+ import { wrapSVGContent as C } from "./index67.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
+ };
222
56
  }
223
- u.create({
224
- name: "trailingNode",
225
- addOptions() {
226
- return {
227
- node: void 0,
228
- notAfter: []
229
- };
230
- },
231
- addProseMirrorPlugins() {
232
- var e;
233
- const t = new m(this.name), n = this.options.node || ((e = this.editor.schema.topNodeType.contentMatch.defaultType) == null ? void 0 : e.name) || "paragraph", r = Object.entries(this.editor.schema.nodes).map(([, o]) => o).filter((o) => (this.options.notAfter || []).concat(n).includes(o.name));
234
- return [
235
- new p({
236
- key: t,
237
- appendTransaction: (o, s, i) => {
238
- const { doc: d, tr: a, schema: c } = i, l = t.getState(i), h = d.content.size, y = c.nodes[n];
239
- if (l)
240
- return a.insert(h, y.create());
241
- },
242
- state: {
243
- init: (o, s) => {
244
- const i = s.tr.doc.lastChild;
245
- return !C({ node: i, types: r });
246
- },
247
- apply: (o, s) => {
248
- if (!o.docChanged || o.getMeta("__uniqueIDTransaction"))
249
- return s;
250
- const i = o.doc.lastChild;
251
- return !C({ node: i, types: r });
252
- }
253
- }
254
- })
255
- ];
256
- }
257
- });
258
- u.create({
259
- name: "undoRedo",
260
- addOptions() {
261
- return {
262
- depth: 100,
263
- newGroupDelay: 500
264
- };
265
- },
266
- addCommands() {
267
- return {
268
- undo: () => ({ state: e, dispatch: t }) => O(e, t),
269
- redo: () => ({ state: e, dispatch: t }) => N(e, t)
270
- };
271
- },
272
- addProseMirrorPlugins() {
273
- return [M(this.options)];
274
- },
275
- addKeyboardShortcuts() {
276
- return {
277
- "Mod-z": () => this.editor.commands.undo(),
278
- "Shift-Mod-z": () => this.editor.commands.redo(),
279
- "Mod-y": () => this.editor.commands.redo(),
280
- // Russian keyboard layouts
281
- "Mod-я": () => this.editor.commands.undo(),
282
- "Shift-Mod-я": () => this.editor.commands.redo()
283
- };
284
- }
285
- });
286
57
  export {
287
- k as CharacterCount
58
+ H as iconToSVG,
59
+ I as isUnsetKeyword
288
60
  };