@zhongguo168a/yxeditor-common 0.0.49 → 0.0.50
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 +5 -2
- package/dist/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1051,8 +1051,8 @@ declare class RouteView extends EventDispatcher {
|
|
|
1051
1051
|
*/
|
|
1052
1052
|
waitOpenComplete(): void;
|
|
1053
1053
|
openComplete(): void;
|
|
1054
|
-
protected waitCloseComplete(
|
|
1055
|
-
closeComplete(
|
|
1054
|
+
protected waitCloseComplete(): void;
|
|
1055
|
+
closeComplete(): void;
|
|
1056
1056
|
protected _waitOpenComplete: boolean;
|
|
1057
1057
|
protected _waitCloseComplete: boolean;
|
|
1058
1058
|
get controller(): RouteController;
|
|
@@ -1297,6 +1297,9 @@ declare class SampleCallbackList {
|
|
|
1297
1297
|
|
|
1298
1298
|
declare class AssetURI {
|
|
1299
1299
|
name: string;
|
|
1300
|
+
/**
|
|
1301
|
+
*
|
|
1302
|
+
*/
|
|
1300
1303
|
constructor(name: string);
|
|
1301
1304
|
loadType: number;
|
|
1302
1305
|
uuid: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -3987,9 +3987,9 @@ class RouteView extends EventDispatcher {
|
|
|
3987
3987
|
}
|
|
3988
3988
|
this.dispatch(ViewEvent.Opened);
|
|
3989
3989
|
}
|
|
3990
|
-
waitCloseComplete(
|
|
3990
|
+
waitCloseComplete() {
|
|
3991
3991
|
// @ts-ignore
|
|
3992
|
-
|
|
3992
|
+
this._waitCloseComplete = true;
|
|
3993
3993
|
}
|
|
3994
3994
|
closeComplete() {
|
|
3995
3995
|
if (!this._waitCloseComplete) {
|
|
@@ -4417,6 +4417,9 @@ function parseAtlas(name, plist, texture) {
|
|
|
4417
4417
|
}
|
|
4418
4418
|
|
|
4419
4419
|
class AssetURI {
|
|
4420
|
+
/**
|
|
4421
|
+
*
|
|
4422
|
+
*/
|
|
4420
4423
|
constructor(name) {
|
|
4421
4424
|
this.name = name;
|
|
4422
4425
|
// 0-bundle+path 1-uuid 2-remote
|