@aswin.dev/editor 0.7.9 → 0.8.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/bundle-stats.json +2 -2
- package/dist/index.d.ts +9 -9
- package/package.json +7 -7
package/dist/bundle-stats.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.8.0",
|
|
3
3
|
"initialGzipBytes": 259985,
|
|
4
4
|
"initialRawBytes": 959447,
|
|
5
5
|
"initialFileCount": 36,
|
|
6
6
|
"lazyGzipBytes": 264638,
|
|
7
7
|
"lazyRawBytes": 921266,
|
|
8
8
|
"lazyFileCount": 44,
|
|
9
|
-
"generatedAt": "2026-05-
|
|
9
|
+
"generatedAt": "2026-05-16T19:01:37.777Z"
|
|
10
10
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -326,9 +326,9 @@ export { }
|
|
|
326
326
|
|
|
327
327
|
declare module "@tiptap/core" {
|
|
328
328
|
interface Commands<ReturnType> {
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
329
|
+
fontSize: {
|
|
330
|
+
setFontSize: (size: string) => ReturnType;
|
|
331
|
+
unsetFontSize: () => ReturnType;
|
|
332
332
|
};
|
|
333
333
|
}
|
|
334
334
|
}
|
|
@@ -336,9 +336,9 @@ declare module "@tiptap/core" {
|
|
|
336
336
|
|
|
337
337
|
declare module "@tiptap/core" {
|
|
338
338
|
interface Commands<ReturnType> {
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
339
|
+
letterSpacing: {
|
|
340
|
+
setLetterSpacing: (spacing: string) => ReturnType;
|
|
341
|
+
unsetLetterSpacing: () => ReturnType;
|
|
342
342
|
};
|
|
343
343
|
}
|
|
344
344
|
}
|
|
@@ -346,9 +346,9 @@ declare module "@tiptap/core" {
|
|
|
346
346
|
|
|
347
347
|
declare module "@tiptap/core" {
|
|
348
348
|
interface Commands<ReturnType> {
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
349
|
+
lineHeight: {
|
|
350
|
+
setLineHeight: (lineHeight: string) => ReturnType;
|
|
351
|
+
unsetLineHeight: () => ReturnType;
|
|
352
352
|
};
|
|
353
353
|
}
|
|
354
354
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aswin.dev/editor",
|
|
3
3
|
"description": "Vue 3 visual drag-and-drop email editor powered by Templatical",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.8.0",
|
|
5
5
|
"bugs": "https://github.com/templatical/sdk/issues",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"@lucide/vue": "^1.11.0",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"vue": "^3.5.33",
|
|
34
34
|
"vue-tsc": "^3.2.7",
|
|
35
35
|
"vuedraggable": "^4.1.0",
|
|
36
|
-
"@aswin.dev/
|
|
37
|
-
"@aswin.dev/
|
|
38
|
-
"@aswin.dev/quality": "0.
|
|
36
|
+
"@aswin.dev/types": "0.8.0",
|
|
37
|
+
"@aswin.dev/core": "0.8.0",
|
|
38
|
+
"@aswin.dev/quality": "0.8.0"
|
|
39
39
|
},
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|
|
@@ -63,9 +63,9 @@
|
|
|
63
63
|
"license": "SEE LICENSE IN LICENSE",
|
|
64
64
|
"module": "./dist/templatical-editor.js",
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@aswin.dev/media-library": "0.
|
|
67
|
-
"@aswin.dev/quality": "0.
|
|
68
|
-
"@aswin.dev/renderer": "0.
|
|
66
|
+
"@aswin.dev/media-library": "0.8.0",
|
|
67
|
+
"@aswin.dev/quality": "0.8.0",
|
|
68
|
+
"@aswin.dev/renderer": "0.8.0"
|
|
69
69
|
},
|
|
70
70
|
"peerDependenciesMeta": {
|
|
71
71
|
"@aswin.dev/renderer": {
|