@zhongguo168a/yxeditor-common 0.0.88 → 0.0.89

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
@@ -1347,7 +1347,7 @@ declare class ViewModel extends EventDispatcher {
1347
1347
  protected onStop(): void;
1348
1348
  }
1349
1349
 
1350
- declare class ViewList extends List<RouteView> {
1350
+ declare class ViewList extends List<ViewModel> {
1351
1351
  }
1352
1352
  /**
1353
1353
  * 路由唯一编号->视图
@@ -1361,7 +1361,7 @@ declare class ViewDict extends Dictionary<string, any> {
1361
1361
  * @param validFunc 符合条件的视图对象会被关闭
1362
1362
  * @returns 被关闭的视图
1363
1363
  */
1364
- closeExclusion(validFunc?: (existed: RouteView) => boolean): ViewList;
1364
+ closeExclusion(validFunc?: (existed: ViewModel) => boolean): ViewList;
1365
1365
  listByRoutePath(path: string): ViewList;
1366
1366
  listByTags(tags: string[]): ViewList;
1367
1367
  /**
package/dist/index.esm.js CHANGED
@@ -4128,7 +4128,6 @@ class ViewDict extends Dictionary {
4128
4128
  }
4129
4129
  });
4130
4130
  closedList.forEach((index, item) => {
4131
- item.controller;
4132
4131
  item.close();
4133
4132
  });
4134
4133
  return closedList;