@easy-editor/core 0.0.6 → 0.0.8

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.
@@ -82,6 +82,10 @@ export interface FieldConfig {
82
82
  * the name of this setting field, the name can refer to the props of the component, such as `title` or `obj.a` ...
83
83
  */
84
84
  name?: PropKey;
85
+ /**
86
+ * the field key, for group items
87
+ */
88
+ key?: string;
85
89
  /**
86
90
  * the field title, for configure tooltip
87
91
  */
@@ -8586,7 +8586,7 @@ class Simulator {
8586
8586
  const {
8587
8587
  rootNode
8588
8588
  } = documentModel;
8589
- const node = getClosestClickableNode(nodeInst?.node || rootNode, downEvent);
8589
+ const node = getClosestClickableNode(nodeInst?.node, downEvent);
8590
8590
  if (!node) {
8591
8591
  return;
8592
8592
  }