archgine 1.0.19 → 1.0.21
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/lib/environment.worker.js +1 -1
- package/lib/extras/app.d.ts +2 -2
- package/lib/extras/interfaces.d.ts +2 -2
- package/lib/extras/svg-app.d.ts +2 -2
- package/lib/extras/svg-chef.d.ts +4 -0
- package/lib/extras/svg-view.d.ts +2 -2
- package/lib/index.mjs +2077 -2064
- package/lib/index.umd.js +18 -18
- package/lib/scenes/svg-scene.d.ts +2 -2
- package/lib/utils/utils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -64,9 +64,9 @@ export declare class SvgScene<Config extends ISvgSceneConfig> extends Scene {
|
|
|
64
64
|
getLegend(): TLegend[];
|
|
65
65
|
showSkeleton(): void;
|
|
66
66
|
hideSkeleton(): void;
|
|
67
|
-
|
|
67
|
+
setAssetLabels(id: string, labels?: string[]): void;
|
|
68
68
|
getAssetLabelsMap(typ: string, out?: Record<string, Element>): Record<string, Element>;
|
|
69
|
-
clearAssetLabels(
|
|
69
|
+
clearAssetLabels(): void;
|
|
70
70
|
bindAssetsEvents(id: string): void;
|
|
71
71
|
handleClickSvgElement(e: MouseEvent): void;
|
|
72
72
|
socialDistanceEnableChanged(v: boolean): void;
|
package/lib/utils/utils.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare function detectMobileDevice(): boolean;
|
|
2
|
-
export declare function createElementNS(name: string): HTMLElement;
|
|
2
|
+
export declare function createElementNS(name: string, ns?: string): HTMLElement;
|
|
3
3
|
export declare function randomDelay(ms?: number): Promise<unknown>;
|
|
4
4
|
export declare function getRandomChart(): string;
|
|
5
5
|
export declare function getRandomString(len?: number): string;
|