archgine 1.0.63 → 1.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.
@@ -2,6 +2,8 @@ export declare const PREFIX: string;
2
2
  export declare const layerSeparator: string;
3
3
  export declare const ID_ROOMS: string;
4
4
  export declare const ID_ROOM_LABELS: string;
5
+ export declare const ID_WSS: string;
6
+ export declare const ID_WS_LABELS: string;
5
7
  export declare function getAssetLayerByType(assetType: string): any;
6
8
  export declare function getAssetLabelByType(assetType: string): any;
7
9
  export declare const assetTypeConflicts: Record<string, string[]>;
@@ -4010,7 +4010,7 @@ Fu.__DOMHandler = Eu;
4010
4010
  Fu.normalizeLineEndings = Le;
4011
4011
  Fu.DOMParser = Ie;
4012
4012
  var gr = Fu.DOMParser;
4013
- const Er = "1.0.63";
4013
+ const Er = "1.0.66";
4014
4014
  function vr() {
4015
4015
  return typeof window < "u" && ({}.toString.call(window) === "[object Window]" || {}.toString.call(window) === "[object global]");
4016
4016
  }
@@ -36,6 +36,7 @@ export interface IApp {
36
36
  zoomIn(): void;
37
37
  zoomOut(): void;
38
38
  focusAt(position: Vector2, padding?: number): void;
39
+ focusAtIds(ids: string | string[], padding?: number): Promise<void>;
39
40
  focusAtById(id: string, padding?: number): Promise<void>;
40
41
  focusAtDummy(id: string, padding?: number): Promise<void>;
41
42
  showAssetsLabel(assetType: string, id: string, html?: string): void;
@@ -54,6 +55,7 @@ export interface IApp {
54
55
  clearDummies(): void;
55
56
  highlightDummies(ids: string | string[]): void;
56
57
  resetHighlightDummies(): void;
58
+ trans2EmptyScene(): void;
57
59
  }
58
60
  export interface IResource {
59
61
  }
@@ -77,6 +77,7 @@ export declare class SvgApp<Config extends ISvgAppConfig> extends EventDispatche
77
77
  zoomIn(): void;
78
78
  zoomOut(): void;
79
79
  focusAt(position: Vector2, padding?: number): void;
80
+ focusAtIds(ids: string | string[], padding?: number): Promise<void>;
80
81
  focusAtById(id: string, padding?: number): Promise<void>;
81
82
  focusAtDummy(id: string, padding?: number): Promise<void>;
82
83
  showAssetsLabel(assetType: string, id: string, html?: string): void;