@naniteninja/profile-comparison-lib 1.0.25 → 1.0.27
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/index.d.ts
CHANGED
|
@@ -537,6 +537,39 @@ declare class ProfileComparisonLibComponent implements OnInit, AfterViewInit, On
|
|
|
537
537
|
private static readonly MIN_CROSS_LINKS_PER_NODE;
|
|
538
538
|
private static readonly MAX_INTRA_LINKS_PER_NODE;
|
|
539
539
|
private static readonly MAX_RELEVANT_INTERESTS_PER_SIDE;
|
|
540
|
+
private static readonly COLUMN_CORE_SEED_PIXELS;
|
|
541
|
+
private static readonly IDLE_ALPHA_TARGET;
|
|
542
|
+
private static readonly CLICK_REHEAT_ALPHA;
|
|
543
|
+
private static readonly SEMANTIC_STABILITY_ALPHA_FLOOR;
|
|
544
|
+
private static readonly RELATIVE_MEDIAN_ALPHA_FLOOR;
|
|
545
|
+
private static readonly RELATIVE_MEDIAN_ATTRACT_STRENGTH;
|
|
546
|
+
private static readonly RELATIVE_MEDIAN_REPEL_STRENGTH;
|
|
547
|
+
private static readonly RELATIVE_MEDIAN_ATTRACT_RADIUS;
|
|
548
|
+
private static readonly RELATIVE_MEDIAN_REPEL_RADIUS;
|
|
549
|
+
private static readonly STRONG_SIMILARITY_BOOST_EXPONENT;
|
|
550
|
+
private static readonly STRONG_SIMILARITY_BOOST_SCALE;
|
|
551
|
+
private static readonly PRIORITY_PAIR_MIN_SIMILARITY;
|
|
552
|
+
private static readonly PRIORITY_PAIR_ATTRACTION_STRENGTH;
|
|
553
|
+
private static readonly PRIORITY_PAIR_CORRIDOR_RADIUS;
|
|
554
|
+
private static readonly PRIORITY_PAIR_CORRIDOR_REPEL_STRENGTH;
|
|
555
|
+
private static readonly MUTUAL_TOP_PAIR_MIN_SIMILARITY;
|
|
556
|
+
private static readonly MUTUAL_TOP_PAIR_MARGIN;
|
|
557
|
+
private static readonly MUTUAL_TOP_PAIR_ATTRACTION_STRENGTH;
|
|
558
|
+
private static readonly MUTUAL_TOP_PAIR_BARRIER_RADIUS;
|
|
559
|
+
private static readonly MUTUAL_TOP_PAIR_REPEL_STRENGTH;
|
|
560
|
+
private static readonly DETERMINISTIC_SEED_PASSES;
|
|
561
|
+
private static readonly DETERMINISTIC_SEED_BLEND;
|
|
562
|
+
private static readonly OBJECTIVE_OPTIMIZER_ITERATIONS;
|
|
563
|
+
private static readonly OBJECTIVE_STEP_START;
|
|
564
|
+
private static readonly OBJECTIVE_STEP_END;
|
|
565
|
+
private static readonly OBJECTIVE_ATTRACTION_WEIGHT;
|
|
566
|
+
private static readonly OBJECTIVE_REPULSION_WEIGHT;
|
|
567
|
+
private static readonly OBJECTIVE_ANCHOR_WEIGHT;
|
|
568
|
+
private static readonly OBJECTIVE_BOUNDARY_WEIGHT;
|
|
569
|
+
private static readonly DISSIMILAR_REPEL_THRESHOLD;
|
|
570
|
+
private static readonly DISSIMILAR_REPEL_STRENGTH;
|
|
571
|
+
private static readonly DISSIMILAR_REPEL_MAX_DISTANCE;
|
|
572
|
+
private static readonly DISSIMILAR_REPEL_DECAY_DISTANCE;
|
|
540
573
|
private static readonly CHIP_RADIUS;
|
|
541
574
|
private static readonly CHIP_COLLISION_BORDER_PADDING;
|
|
542
575
|
private static readonly MAX_LINK_DISTANCE;
|
|
@@ -606,6 +639,7 @@ declare class ProfileComparisonLibComponent implements OnInit, AfterViewInit, On
|
|
|
606
639
|
private canLinkNodes;
|
|
607
640
|
private getLinkNodeId;
|
|
608
641
|
private getLinkPairKey;
|
|
642
|
+
private getRuntimeLinkStrength;
|
|
609
643
|
private selectLinksWithCaps;
|
|
610
644
|
private filterCenterItemsByThreshold;
|
|
611
645
|
private scheduleForceGraphRebuild;
|
|
@@ -645,12 +679,8 @@ declare class ProfileComparisonLibComponent implements OnInit, AfterViewInit, On
|
|
|
645
679
|
onNodeClick(node: ForceChipNode, event: MouseEvent): void;
|
|
646
680
|
onDocumentClick(): void;
|
|
647
681
|
/**
|
|
648
|
-
*
|
|
649
|
-
*
|
|
650
|
-
* highest-sim → MIN_ORBIT (touches anchor), lowest-sim → MAX_ORBIT.
|
|
651
|
-
*
|
|
652
|
-
* While active, the xTarget/yTarget restoring forces are muted so they don't
|
|
653
|
-
* fight the attraction. They are restored the moment attraction is cleared.
|
|
682
|
+
* Anchor interaction should only affect highlighting/energy.
|
|
683
|
+
* Similarity attraction is always-on via the base simulation forces.
|
|
654
684
|
*/
|
|
655
685
|
private updateAttractionForce;
|
|
656
686
|
isNodeConnected(node: ForceChipNode): boolean;
|