@dao42/d42paas-front 0.9.180 → 0.9.181

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,25 @@
1
1
  # 更新日志
2
+ ## v0.9.181
3
+ ### 新增
4
+ + 新增文件树支持多个文件拖拽
5
+ + 新增文件数支持在指定目录下上传文件 / 文件夹
6
+ + 新增注册虚拟用户接口返回虚拟用户信息
7
+ + 新增支持注册虚拟账户自定义头像
8
+ ```ts
9
+ const res = await daoPaasObj.registerVirtualUser({
10
+ name: '小AI ',
11
+ avatar: // 头像地址
12
+ 'https://img1.baidu.com/it/u=4264793750,8370810&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
13
+ });
14
+ ```
15
+ + 新增清空`Markdown` 预览组件内容方法`resetMarkdownPreview`(业务方可以根据时机清楚内容)
16
+ ```ts
17
+ daoPaasObj?.daoEditor.resetMarkdownPreview();
18
+ ```
19
+ ### 优化
20
+ + 编辑器默认字体调整为`16px`
21
+ + 优化虚拟账号信息和实体账户信息统一(`username`)
22
+
2
23
  ## v0.9.180
3
24
  ### 新增
4
25
  + 新增当前用户添加虚拟用户接口`registerVirtualUser`