@craftile/editor 0.3.0 → 0.3.1
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.js +4 -0
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -14564,6 +14564,10 @@ function p_(e, t) {
|
|
|
14564
14564
|
e.on("block:duplicate", ({ newBlockId: a, parentId: c }) => {
|
|
14565
14565
|
n.added.add(a), l(a, n.blocksToInclude), c && n.blocksToInclude.add(c), i();
|
|
14566
14566
|
})
|
|
14567
|
+
), r.push(
|
|
14568
|
+
e.on("block:update", ({ blockId: a }) => {
|
|
14569
|
+
n.added.has(a) || n.updated.add(a), n.blocksToInclude.add(a), i();
|
|
14570
|
+
})
|
|
14567
14571
|
), () => {
|
|
14568
14572
|
o && clearTimeout(o), r.forEach((a) => a());
|
|
14569
14573
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@craftile/editor",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Vue.js-based editor UI components for craftile blocks engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"craftile",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"vue": "^3.5.17",
|
|
40
40
|
"vue-draggable-plus": "^0.6.0",
|
|
41
|
-
"@craftile/
|
|
42
|
-
"@craftile/
|
|
43
|
-
"@craftile/messenger": "0.3.
|
|
44
|
-
"@craftile/types": "0.3.
|
|
41
|
+
"@craftile/event-bus": "0.3.1",
|
|
42
|
+
"@craftile/core": "0.3.1",
|
|
43
|
+
"@craftile/messenger": "0.3.1",
|
|
44
|
+
"@craftile/types": "0.3.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@ark-ui/vue": "^5.24.1",
|