@craftile/editor 0.7.3 → 0.8.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 +2419 -2394
- package/dist/managers/inspector.d.ts +3 -1
- package/package.json +5 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventBus } from '@craftile/event-bus';
|
|
2
|
+
import { Engine } from '@craftile/core';
|
|
2
3
|
import { PreviewManager } from './preview';
|
|
3
4
|
import { UIManager } from './ui';
|
|
4
5
|
export interface InspectorState {
|
|
@@ -16,7 +17,8 @@ export declare class InspectorManager {
|
|
|
16
17
|
private events;
|
|
17
18
|
private preview;
|
|
18
19
|
private ui;
|
|
19
|
-
|
|
20
|
+
private engine;
|
|
21
|
+
constructor(events: EventBus, preview: PreviewManager, ui: UIManager, engine: Engine);
|
|
20
22
|
enable(): void;
|
|
21
23
|
disable(): void;
|
|
22
24
|
toggle(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@craftile/editor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.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/core": "0.
|
|
42
|
-
"@craftile/event-bus": "0.
|
|
43
|
-
"@craftile/messenger": "0.
|
|
44
|
-
"@craftile/types": "0.
|
|
41
|
+
"@craftile/core": "0.8.1",
|
|
42
|
+
"@craftile/event-bus": "0.8.1",
|
|
43
|
+
"@craftile/messenger": "0.8.1",
|
|
44
|
+
"@craftile/types": "0.8.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@ark-ui/vue": "^5.24.1",
|