diff --git a/packages/core/src/App.ts b/packages/core/src/App.ts index 4e11aedf..36d11c7d 100644 --- a/packages/core/src/App.ts +++ b/packages/core/src/App.ts @@ -38,6 +38,7 @@ interface AppOptionsConfig { designWidth?: number; curPage?: Id; useMock?: boolean; + disabledFlexible?: boolean; pageFragmentContainerType?: string | string[]; iteratorContainerType?: string | string[]; transformStyle?: (style: Record) => Record; @@ -94,7 +95,7 @@ class App extends EventEmitter { this.useMock = options.useMock; } - if (this.jsEngine === 'browser') { + if (this.jsEngine === 'browser' && !options.disabledFlexible) { this.flexible = new Flexible({ designWidth: options.designWidth }); } diff --git a/playground/src/pages/FormEditor.vue b/playground/src/pages/FormEditor.vue index e46996eb..69ed6198 100644 --- a/playground/src/pages/FormEditor.vue +++ b/playground/src/pages/FormEditor.vue @@ -6,7 +6,6 @@ :component-group-list="componentGroupList" :props-configs="propsConfigs" :render="render" - :can-select="canSelect" :disabled-page-fragment="true" :disabled-stage-overlay="true" :stage-rect="{ width: 'calc(100% - 70px)', height: '100%' }" @@ -25,12 +24,7 @@ import { Document } from '@element-plus/icons-vue'; import { guid, type MApp, NodeType } from '@tmagic/core'; import { MenuBarData, SideBarData, TMagicEditor, traverseNode } from '@tmagic/editor'; -import { - canSelect, - COMPONENT_GROUP_LIST as componentGroupList, - propsConfigs, - useRuntime, -} from '@tmagic/tmagic-form-runtime'; +import { COMPONENT_GROUP_LIST as componentGroupList, propsConfigs, useRuntime } from '@tmagic/tmagic-form-runtime'; import formDsl from '../configs/formDsl'; diff --git a/runtime/tmagic-form/src/App.vue b/runtime/tmagic-form/src/App.vue index d4d82c9f..293b771c 100644 --- a/runtime/tmagic-form/src/App.vue +++ b/runtime/tmagic-form/src/App.vue @@ -1,12 +1,5 @@