@dao42/d42paas-front 0.9.201 → 0.9.203

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,27 @@
1
1
  # 更新日志
2
+ ## v0.9.203
3
+ ### 优化
4
+ + 浏览器组件打开新的Tab页Icon添加Tips
5
+ + 开发者工具按钮只有在运行时才显示
6
+ + 优化开发者工具按钮连续快速点击开发者工具没显示出来问题
7
+ + 优化浏览器组件Iframe内容不展示问题
8
+ ## v0.9.202
9
+ ### 新增
10
+ + 新增开发者工具显示与隐藏状态广播事件`devtoolStatusChange`,业务方可以根据该事件进行相应的UI调整等处理
11
+ ```ts
12
+ dao.onMessage((message: Message) => {
13
+ const { name, payload } = message;
14
+ switch (name) {
15
+ case Messages.DevtoolStatusChange:
16
+ messageBox.info(JSON.stringify(payload));
17
+ break;
18
+ ```
19
+ ### 优化
20
+ + 优化AI代码块拆分逻辑
21
+ + 优化只有当Iframe 注入开发者工具成功后,才显示开发者工具按钮
22
+ + 优化文件树操作按钮挂在到Body上
23
+ + 优化AI改用户代码,取得权限,写入代码后的确认框的位置异常——按钮区域被遮挡了问题
24
+ + 优化AI代码块标识高亮区域兼容不同的Editor字体模式
2
25
  ## v0.9.201
3
26
  ### 新增
4
27
  + 新增AI代码块标识区域,点击标识的高亮线任意位置,点击触发AI代码块菜单行为