roymondchen
|
df8790042f
|
feat(editor): 导航菜单支持菜单项溢出收纳,新增 NavMenuColumn 组件
- 抽离每列渲染逻辑为 NavMenuColumn 组件,监听容器宽度
- 容器空间不足时自动隐藏溢出项,并通过更多按钮 Popover 展开
- ToolButton 暴露根元素引用,便于父级测量宽度
- design ButtonProps 新增 bg 属性,用于更多按钮的激活态样式
- 补充 NavMenuColumn / NavMenu / ToolButton 的单元测试
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-15 19:33:53 +08:00 |
|
roymondchen
|
aab73249d1
|
feat(editor): 新增 alwaysMultiSelect 配置开启常驻多选模式
新增编辑器配置项 alwaysMultiSelect(默认 false),开启后无需按住 Ctrl/Meta
键,组件树与画布点击即多选;当 disabledMultiSelect=true 时本配置失效。同步
在 stage 层 ActionManager 暴露 setAlwaysMultiSelect 方法用于运行时切换,并
补充组件树/服务/画布的状态联动、文档与单元测试。
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-11 16:50:40 +08:00 |
|
roymondchen
|
2475a4f901
|
feat(editor): 新增"已选组件"面板节点双击事件 layer-node-dblclick 与 beforeLayerNodeDblclick 钩子
- TreeNode/Tree 增加 node-dblclick 事件透传
- LayerPanel 默认双击切换可展开节点的展开/收起状态,并向上抛出 node-dblclick
- Sidebar/Editor 暴露 layer-node-dblclick 事件与 beforeLayerNodeDblclick 拦截钩子
- 补充 props/events 文档
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-09 16:52:15 +08:00 |
|
roymondchen
|
5af9f6e27a
|
feat(editor): 新增 canDropIn 配置统一控制 layer/stage 拖拽放入行为
支持通过 scene 区分图层树、画布拖动、组件库新增三种场景;
返回 false 阻止放入,返回 Id 可重定向放入目标节点。
layer 场景下若禁用某节点的 inner,其子节点的 before/after 也会被同步禁用以避免被绕过。
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-09 16:38:10 +08:00 |
|
roymondchen
|
7ce640627d
|
feat(editor): 新增 stage-top 插槽用于在画布上方插入自定义元素
ScrollViewer 增加 before 具名插槽,Stage 据此暴露 stage-top 插槽,
经 Workspace、Editor 逐层透传,并补充对应类型定义与文档说明。
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-07 20:31:25 +08:00 |
|
roymondchen
|
7b870e5908
|
feat(editor): 面包屑超出父容器 80% 时折叠中间项并对单项打点
- 路径过长时仅保留首项 + ... + 末两项,避免横向溢出工作区
- 单项设置 max-width 并通过内部 span 显示省略号,悬浮 tooltip 展示完整名称
- 通过 ResizeObserver 监听父容器宽度变化实时重测
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-07 19:20:46 +08:00 |
|
roymondchen
|
a520626ef6
|
feat(editor): getPropsConfig 支持传入 node 参数并修正 CondOpSelectConfig 类型
- props service 的 getPropsConfig 增加可选 data 参数以传递当前节点信息
- 修正 CondOpSelectConfig 的 type 字段为 'cond-op-select'
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-07 16:24:17 +08:00 |
|
roymondchen
|
3cde69f6f9
|
feat(editor): 支持自定义组件树节点是否可展开的判断函数
新增 layerNodeIsExpandable 配置项,业务方可自定义"已选组件"面板中
节点是否显示为可展开形态。同时导出默认实现 defaultIsExpandable 与
类型 IsExpandableFunction 供第三方复用。
Co-authored-by: Cursor <cursoragent@cursor.com>
|
2026-05-07 13:53:51 +08:00 |
|
roymondchen
|
b46b571214
|
feat(editor): 没有参考线时不显示参考线切换按钮
Made-with: Cursor
|
2026-04-23 15:42:10 +08:00 |
|
roymondchen
|
334569e2d7
|
feat(editor): 添加 stage beforeDblclick 钩子,支持拦截默认双击行为
在 StageOptions 和 EditorProps 中新增 beforeDblclick 配置项,
该函数返回 false 或 Promise<false> 时将阻止 stage 默认的双击处理逻辑。
Made-with: Cursor
|
2026-04-07 19:19:00 +08:00 |
|
roymondchen
|
172a7a1c92
|
feat(editor,stage): 支持双击穿透选中鼠标下方的下一个可选中元素
将 dblclick 处理统一到 Stage.vue,新增 ActionManager.getNextElementFromPoint
方法跳过最上层元素返回下方第二个可选中元素,双击时若无特殊处理则穿透选中下方组件。
Made-with: Cursor
|
2026-04-07 18:25:35 +08:00 |
|
roymondchen
|
df2d635682
|
fix(editor): 优化 StageOverlay 双击行为,仅在元素被滚动容器裁剪时打开 overlay
双击页面片容器时直接选中对应页面片;新增 isClippedByScrollContainer
判断元素是否被非页面级滚动容器裁剪,避免不必要的 overlay 弹出。
Made-with: Cursor
|
2026-04-07 18:25:35 +08:00 |
|
roymondchen
|
71d6dd9e38
|
feat(editor): monaco-editor改成异步加载
|
2026-03-12 17:27:07 +08:00 |
|
roymondchen
|
67d93ec35f
|
fix(editor): 显示源码后再显示回编辑器画布空了
|
2026-03-12 16:35:33 +08:00 |
|
roymondchen
|
cfaaaad66e
|
feat(editor): customCreateMonacoEditor options中新增editorCustomType,可以用于创建不同的editor
|
2026-01-07 17:38:37 +08:00 |
|
roymondchen
|
70d730ca82
|
refactor(editor): 新增数据源按钮封装成组件
|
2025-12-04 17:31:38 +08:00 |
|
roymondchen
|
a2a9556ab8
|
style(editor): 调整已选组件节点右侧按钮样式
|
2025-12-04 16:36:34 +08:00 |
|
roymondchen
|
8d55d0cd8d
|
feat(editor): 代码编辑器支持配置自动高度
|
2025-12-03 17:50:48 +08:00 |
|
roymondchen
|
82df2a8f5c
|
chore: update deps
|
2025-11-21 16:50:46 +08:00 |
|
roymondchen
|
08b476e04f
|
feat(design,editor,element-plus-adapter,form,table,tdesign-vue-next-adapter): 重构table组件,适配tdesign
|
2025-11-12 19:52:30 +08:00 |
|
roymondchen
|
f5cb19dfa4
|
style(editor): 页面列表长度超过可视窗口时出现滚动条
|
2025-09-12 15:32:03 +08:00 |
|
qyaniwu
|
07b8f5fe83
|
fix(editor): 修复代码块编辑器的更新内容后按下ctrl+s光标会偏移的问题
|
2025-07-24 04:13:02 +00:00 |
|
roymondchen
|
727af1058d
|
fix(editor): 页面列表滚动条
|
2025-07-02 18:00:21 +08:00 |
|
roymondchen
|
ee06c26ca5
|
refactor(editor): dsl更新后通知runtime更新代码优化
|
2025-07-02 16:21:03 +08:00 |
|
roymondchen
|
9e590c5cf7
|
feat(editor): 新增props-panel-unmounted事件
|
2025-06-26 21:06:21 +08:00 |
|
roymondchen
|
b6a260471d
|
fix(editor,react-runtime-help,vue-runtime-help): 修复拖动页面顺序失效问题
|
2025-06-20 20:10:24 +08:00 |
|
roymondchen
|
32681964b3
|
feat(editor): stage overlay 支持放大缩小
|
2025-06-20 19:47:51 +08:00 |
|
roymondchen
|
6152a78467
|
feat(editor): 支持禁用数据源与代码块
|
2025-06-09 16:35:08 +08:00 |
|
roymondchen
|
0bd8496fac
|
refactor(editor,stage): 完善页面变化后画布大小更新
|
2025-06-06 19:29:20 +08:00 |
|
roymondchen
|
3097e8eddb
|
feat(editor): 支持配置自定义创建Monaco editor函数
|
2025-06-06 16:03:56 +08:00 |
|
roymondchen
|
de52ff4fe1
|
fix(editor): 编辑数据源/代码块时,列表高亮
|
2025-04-24 14:02:34 +08:00 |
|
roymondchen
|
e7e9197ae3
|
style: 更新eslint版本,更新eslint配置
|
2025-04-21 20:35:54 +08:00 |
|
roymondchen
|
54e00f2852
|
feat(editor): 编辑代码块/数据源时高亮列表中对应的项
|
2025-04-10 20:36:38 +08:00 |
|
roymondchen
|
775fcf5693
|
fix(editor): 样式配置宽度不能为负
|
2025-03-04 14:09:28 +08:00 |
|
roymondchen
|
413134b21d
|
feat(editor): 优化依赖收集状态显示,新增剩余任务数量显示
|
2025-02-11 19:25:28 +08:00 |
|
roymondchen
|
6d82c0f730
|
fix(editor): 组件配置列大小缓存不生效
|
2025-02-11 17:25:58 +08:00 |
|
roymondchen
|
900b701c80
|
refactor(editor): 新增useServices hook,减少使用可选链
|
2025-02-11 16:24:24 +08:00 |
|
roymondchen
|
877a4eaa49
|
feat(editor): 优化浏览器变小时各列大小变化
|
2025-02-10 19:59:11 +08:00 |
|
roymondchen
|
e8461f91e6
|
fix(editor): 已经配置了的样式无法删除
|
2025-01-17 19:49:56 +08:00 |
|
roymondchen
|
1baec3f1d4
|
refactor(editor): useTemplateRef参数不能与变量名一样,不然会有一个warn
|
2025-01-09 20:48:35 +08:00 |
|
roymondchen
|
e57fc7b718
|
refactor(editor): form-panel mounted事件参数
|
2025-01-06 19:32:40 +08:00 |
|
roymondchen
|
ac2b8dbfcf
|
refactor(editor): form-panel mounted参数改成proxy
|
2025-01-06 17:47:06 +08:00 |
|
roymondchen
|
7b0a476677
|
feat(editor): 配置组件时将样式中的空配置移除
|
2025-01-03 17:27:29 +08:00 |
|
roymondchen
|
e8bbdf613b
|
feat(editor): 样式配置面板支持拖动大小
|
2024-12-30 20:44:27 +08:00 |
|
roymondchen
|
7887a14f6b
|
style(editor): 完善emit定义
|
2024-12-18 16:10:07 +08:00 |
|
roymondchen
|
712e317e40
|
feat(editor): 样式添加display配置,右侧边栏最小值设置成420
|
2024-12-18 16:01:45 +08:00 |
|
roymondchen
|
5cd6d21b2e
|
feat(editor): 组件配置中的样式支持单独一列显示
|
2024-12-17 20:47:33 +08:00 |
|
roymondchen
|
74f76d0ba3
|
feat(editor): 数据源/代码编辑列表新增右键菜单
|
2024-12-16 20:20:02 +08:00 |
|
roymondchen
|
7109df9deb
|
refactor(editor): 模板改成使用useTemplateRef
|
2024-12-13 16:19:44 +08:00 |
|
roymondchen
|
e3f28abe1a
|
feat(editor): 代码块与数据源列表节点中新增依赖收集中tag
|
2024-12-09 20:21:34 +08:00 |
|