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' }, ], }, },