From 712e317e40ea171c920a3ba9f0cad5b0b0161440 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Wed, 18 Dec 2024 16:01:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(editor):=20=E6=A0=B7=E5=BC=8F=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0display=E9=85=8D=E7=BD=AE=EF=BC=8C=E5=8F=B3=E4=BE=A7?= =?UTF-8?q?=E8=BE=B9=E6=A0=8F=E6=9C=80=E5=B0=8F=E5=80=BC=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E6=88=90420?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor/src/layouts/Framework.vue | 2 +- packages/editor/src/utils/props.ts | 24 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/packages/editor/src/layouts/Framework.vue b/packages/editor/src/layouts/Framework.vue index 60cbb7d3..19ce3e94 100644 --- a/packages/editor/src/layouts/Framework.vue +++ b/packages/editor/src/layouts/Framework.vue @@ -20,7 +20,7 @@ v-model:left="columnWidth.left" v-model:right="columnWidth.right" :min-left="65" - :min-right="320" + :min-right="420" :min-center="100" :width="frameworkRect?.width || 0" @change="columnWidthChange" diff --git a/packages/editor/src/utils/props.ts b/packages/editor/src/utils/props.ts index e68c0737..45487828 100644 --- a/packages/editor/src/utils/props.ts +++ b/packages/editor/src/utils/props.ts @@ -115,6 +115,27 @@ export const styleTabConfig: TabPaneConfig = { type: 'fieldset', legend: '盒子', items: [ + { + type: 'data-source-field-select', + name: 'display', + text: 'display', + checkStrictly: false, + dataSourceFieldType: ['string'], + fieldConfig: { + type: 'select', + clearable: true, + allowCreate: true, + options: [ + { text: 'block', value: 'block' }, + { text: 'flex', value: 'flex' }, + { text: 'none', value: 'none' }, + { text: 'inline-block', value: 'inline-block' }, + { text: 'grid', value: 'grid' }, + { text: 'inline', value: 'inline' }, + { text: 'initial', value: 'initial' }, + ], + }, + }, { type: 'data-source-field-select', name: 'width', @@ -143,6 +164,8 @@ export const styleTabConfig: TabPaneConfig = { dataSourceFieldType: ['string'], fieldConfig: { type: 'select', + clearable: true, + allowCreate: true, options: [ { text: 'visible', value: 'visible' }, { text: 'hidden', value: 'hidden' }, @@ -150,6 +173,7 @@ export const styleTabConfig: TabPaneConfig = { { text: 'scroll', value: 'scroll' }, { text: 'auto', value: 'auto' }, { text: 'overlay', value: 'overlay' }, + { text: 'initial', value: 'initial' }, ], }, },