From b10785fdee4fd53c366a7b065028fac0fe42bfcc Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Sun, 1 Mar 2026 10:55:52 +0300 Subject: [PATCH] Extract DesignPanel from PropertiesPanel --- components.d.ts | 1 + src/components/DesignPanel.vue | 85 ++++++++++++++++++++++++++++++ src/components/PropertiesPanel.vue | 83 +---------------------------- 3 files changed, 88 insertions(+), 81 deletions(-) create mode 100644 src/components/DesignPanel.vue diff --git a/components.d.ts b/components.d.ts index 379c03658..8f50d2a5d 100644 --- a/components.d.ts +++ b/components.d.ts @@ -16,6 +16,7 @@ declare module 'vue' { ChatPanel: typeof import('./src/components/ChatPanel.vue')['default'] ColorInput: typeof import('./src/components/ColorInput.vue')['default'] ColorPicker: typeof import('./src/components/ColorPicker.vue')['default'] + DesignPanel: typeof import('./src/components/DesignPanel.vue')['default'] EditorCanvas: typeof import('./src/components/EditorCanvas.vue')['default'] EffectsSection: typeof import('./src/components/properties/EffectsSection.vue')['default'] ExportSection: typeof import('./src/components/properties/ExportSection.vue')['default'] diff --git a/src/components/DesignPanel.vue b/src/components/DesignPanel.vue new file mode 100644 index 000000000..7e0eec094 --- /dev/null +++ b/src/components/DesignPanel.vue @@ -0,0 +1,85 @@ + + + diff --git a/src/components/PropertiesPanel.vue b/src/components/PropertiesPanel.vue index 72f347d8b..7410a492c 100644 --- a/src/components/PropertiesPanel.vue +++ b/src/components/PropertiesPanel.vue @@ -1,32 +1,12 @@