@craftile/editor 0.7.2 → 0.7.3
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 +7 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -12001,7 +12001,13 @@ const Mm = { key: 0 }, Am = { class: "text-sm font-medium text-gray-700 capitali
|
|
|
12001
12001
|
}), Array.from(f.values());
|
|
12002
12002
|
}), l = b(() => c.value.length === 0 ? [] : [c.value[0].id]), d = (f) => o.value?.properties?.[f];
|
|
12003
12003
|
function u(f, m) {
|
|
12004
|
-
|
|
12004
|
+
if (!o.value)
|
|
12005
|
+
return;
|
|
12006
|
+
const p = (v) => {
|
|
12007
|
+
const k = mr(v);
|
|
12008
|
+
return Array.isArray(k) ? k.map(p) : k && typeof k == "object" && k.constructor === Object ? Object.fromEntries(Object.entries(k).map(([P, B]) => [P, p(B)])) : k;
|
|
12009
|
+
};
|
|
12010
|
+
r(o.value.id, f, p(m));
|
|
12005
12011
|
}
|
|
12006
12012
|
return (f, m) => {
|
|
12007
12013
|
const p = Br, v = Ra;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@craftile/editor",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
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/core": "0.7.
|
|
42
|
-
"@craftile/event-bus": "0.7.
|
|
43
|
-
"@craftile/messenger": "0.7.
|
|
44
|
-
"@craftile/types": "0.7.
|
|
41
|
+
"@craftile/core": "0.7.3",
|
|
42
|
+
"@craftile/event-bus": "0.7.3",
|
|
43
|
+
"@craftile/messenger": "0.7.3",
|
|
44
|
+
"@craftile/types": "0.7.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@ark-ui/vue": "^5.24.1",
|