@dao42/d42paas-front 0.9.164 → 0.9.165

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,41 @@
1
1
  # 更新日志
2
+ ## v0.9.165
3
+ ### 新增
4
+ + 新增自定义`xterm`字体样式
5
+ ```ts
6
+ new DaoPaaS({
7
+ ...
8
+ xtermStyle:{
9
+ ...
10
+ consoleStyle: {
11
+ fontSize: 12,
12
+ lineHeight: 1,
13
+ fontFamily: 'Monaco, Menlo, monospace',
14
+ },
15
+ }
16
+ })
17
+ ```
18
+ + 新增支持指定文件名后缀进行语法高亮(完全匹配优先级高于后缀名匹配)
19
+ ```ts
20
+ new DaoPaaS({
21
+ ...
22
+ specialFileHighlight: [
23
+ {
24
+ fileName: '.java.answer',
25
+ languageType: 'java',
26
+ },
27
+ {
28
+ fileName: 'paas_test.java.answer',
29
+ languageType: 'yaml',
30
+ },
31
+ ]
32
+ })
33
+ ```
34
+
35
+ ### 优化
36
+ + 优化浏览器组件系统和回放功能
37
+ + 优化ctrl+p快捷键操作
38
+ + 移除谷歌字体链接
2
39
  ## v0.9.164
3
40
  ### 新增
4
41
  + 新增实例化`DaoPaaS` 参数`customFileTreeAction`,控制文件树操作行为是否业务方控制