@zhongguo168a/yxeditor-common 0.0.65 → 0.0.66

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/dist/index.d.ts CHANGED
@@ -1313,7 +1313,7 @@ declare class ViewRepo extends ViewDict {
1313
1313
  *
1314
1314
  * @param target 往上追踪,返回第一个包含 RouteComponent 的节点, 返回节点中的 RouteView
1315
1315
  */
1316
- tailRouteView(node: Node): RouteView;
1316
+ tailNode(node: Node): RouteView;
1317
1317
  protected getController(name: string): RouteController;
1318
1318
  protected _indexLayer: {};
1319
1319
  protected _indexRoute: {};
package/dist/index.esm.js CHANGED
@@ -3890,7 +3890,7 @@ class ViewRepo extends ViewDict {
3890
3890
  *
3891
3891
  * @param target 往上追踪,返回第一个包含 RouteComponent 的节点, 返回节点中的 RouteView
3892
3892
  */
3893
- tailRouteView(node) {
3893
+ tailNode(node) {
3894
3894
  let current = node;
3895
3895
  while (current != null) {
3896
3896
  let com = node.getComponent(RouteComponent);