@live-change/wysiwyg-frontend 0.2.7 → 0.2.8
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.
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
initialContent: props.initialContent
|
|
76
76
|
})
|
|
77
77
|
|
|
78
|
-
const saveState = computed(() => authority.synchronizationState ?? 'loading')
|
|
78
|
+
const saveState = computed(() => authority.synchronizationState.value ?? 'loading')
|
|
79
79
|
emit('update:saveState', saveState.value)
|
|
80
80
|
watch(() => saveState.value, async (state) => {
|
|
81
81
|
emit('update:saveState', state)
|
|
@@ -110,9 +110,8 @@
|
|
|
110
110
|
const documentData = await authority.loadDocument()
|
|
111
111
|
version.value = authority.remoteVersion
|
|
112
112
|
|
|
113
|
-
console.log("CONFIG", props.config, 'EXTENSIONS', extensions
|
|
114
|
-
)
|
|
115
|
-
console.log("DOCUMENT DATA", documentData)
|
|
113
|
+
//console.log("CONFIG", props.config, 'EXTENSIONS', extensions)
|
|
114
|
+
//console.log("DOCUMENT DATA", documentData)
|
|
116
115
|
const editor = useEditor({
|
|
117
116
|
content: documentData.content,
|
|
118
117
|
extensions: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/wysiwyg-frontend",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "lcli memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"@live-change/secret-code-service": "0.3.2",
|
|
32
32
|
"@live-change/secret-link-service": "0.3.2",
|
|
33
33
|
"@live-change/session-service": "0.3.2",
|
|
34
|
-
"@live-change/vue3-components": "0.2.
|
|
35
|
-
"@live-change/vue3-ssr": "0.2.
|
|
34
|
+
"@live-change/vue3-components": "0.2.16",
|
|
35
|
+
"@live-change/vue3-ssr": "0.2.16",
|
|
36
36
|
"@tiptap/extension-blockquote": "^2.0.0-beta.29",
|
|
37
37
|
"@tiptap/extension-bold": "^2.0.0-beta.28",
|
|
38
38
|
"@tiptap/extension-bullet-list": "^2.0.0-beta.29",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"author": "",
|
|
86
86
|
"license": "ISC",
|
|
87
87
|
"description": "",
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "72bd46680370e7804b168fec5dde28de205487e0"
|
|
89
89
|
}
|