Results 7 issues of hanfengcan

在冻结开头几行后,打印内容并不会重复打印冻结的行

### 问题描述 以下代码基于官网示例修改,在minimap的样例里面加入combo之后,异常了。 ``` import { Graph as BaseGraph, Extensions, Util, extend } from '@antv/g6'; const Graph = extend(BaseGraph, { plugins: { minimap: Extensions.Minimap, }, }); import insertCss from 'insert-css';...

@form-create/naive-ui: ^3.1.28 数组组件如何对字段进行setValue ``` { type: 'group', props: { rule: [ ...字段1, ...字段2, { type: 'select', update(value, rule, fApi) { fApi.setValue(‘字段1’, 1) fApi.setValue(‘字段1’, 2) } } ] } ``` 在数组表单里面进行update监听,修改字段后,在最外层进行formData()读取不到设置的内容。对于数组表单,应该如何操作

修复hover样式无效的问题,修复#889

具体看代码 ![image](https://github.com/dcloudio/uni-ui/assets/4559753/13f58fc4-9cf2-4c9b-8610-b31440a7e121) ![image](https://github.com/dcloudio/uni-ui/assets/4559753/b49e033c-610f-485e-beff-d788ffd33ef8) ![image](https://github.com/dcloudio/uni-ui/assets/4559753/625ff82d-e696-4007-b118-7f698b45b98d)

### 发生了什么? src/view/behavior/dnd.ts (70:9) l may only specify known properties, and 'e' does not exist in type 'NodeEventArgsPick'. 修改成以下内容,才可以build通过 ``` this.lf.graphModel.eventCenter.emit(EventType.NODE_DND_DRAG, { data: nodeData, e, } as CallbackArgs) ``` ###...

bug