@html-graph/html-graph 7.7.0 → 7.8.0
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/html-graph.d.ts +8 -0
- package/dist/html-graph.js +134 -114
- package/dist/html-graph.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/html-graph.d.ts
CHANGED
|
@@ -788,7 +788,15 @@ declare type LayoutAlgorithmConfig = {
|
|
|
788
788
|
};
|
|
789
789
|
|
|
790
790
|
export declare type LayoutApplyOn = {
|
|
791
|
+
/**
|
|
792
|
+
* @deprecated
|
|
793
|
+
* use "topologyChangeMacrotask" instead
|
|
794
|
+
*/
|
|
791
795
|
type: "topologyChangeTimeout";
|
|
796
|
+
} | {
|
|
797
|
+
type: "topologyChangeMacrotask";
|
|
798
|
+
} | {
|
|
799
|
+
type: "topologyChangeMicrotask";
|
|
792
800
|
} | EventSubject<void>;
|
|
793
801
|
|
|
794
802
|
export declare interface LayoutConfig {
|