@naniteninja/dashboard-components-lib 2.1.67 → 2.1.69
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
|
@@ -2361,6 +2361,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2361
2361
|
clientMatches: ILibClientMatchOverview[];
|
|
2362
2362
|
clientHomeConfig: IHomeDashboardInputs;
|
|
2363
2363
|
traitVisualVisible: boolean;
|
|
2364
|
+
private traitVisualResizeDebounceTimer?;
|
|
2364
2365
|
private _traitVisualNodes;
|
|
2365
2366
|
get traitVisualNodes(): INodeData[];
|
|
2366
2367
|
set traitVisualNodes(value: INodeData[]);
|
|
@@ -2447,6 +2448,14 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2447
2448
|
private attachViewportResizeListener;
|
|
2448
2449
|
private detachViewportResizeListener;
|
|
2449
2450
|
private onWindowResize;
|
|
2451
|
+
/**
|
|
2452
|
+
* Cycles the trait visual canvas visibility, forcing Angular to destroy and
|
|
2453
|
+
* recreate tv-trait-visual-canvas so it remounts into a correctly-sized
|
|
2454
|
+
* container. Waits `delay`ms so any pending layout recalculations settle.
|
|
2455
|
+
*/
|
|
2456
|
+
private cycleTraitVisualCanvas;
|
|
2457
|
+
private attachTraitVisualResizeObserver;
|
|
2458
|
+
private detachTraitVisualResizeObserver;
|
|
2450
2459
|
private initTabStripSwiper;
|
|
2451
2460
|
private destroyTabStripSwiper;
|
|
2452
2461
|
private onTabStripTouchStart;
|
|
@@ -2776,6 +2785,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges,
|
|
|
2776
2785
|
profileData: Profile | undefined;
|
|
2777
2786
|
profileComparisonConfig: IProfileConfig;
|
|
2778
2787
|
traitVisualVisible: boolean;
|
|
2788
|
+
private traitVisualResizeDebounceTimer?;
|
|
2779
2789
|
traitVisualNodes: INodeData[];
|
|
2780
2790
|
traitVisualAttrWeights: number[];
|
|
2781
2791
|
traitVisualPrefWeights: number[];
|
|
@@ -2922,6 +2932,14 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges,
|
|
|
2922
2932
|
private attachViewportResizeListener;
|
|
2923
2933
|
private detachViewportResizeListener;
|
|
2924
2934
|
private onWindowResize;
|
|
2935
|
+
/**
|
|
2936
|
+
* Cycles the trait visual canvas visibility, forcing Angular to destroy and
|
|
2937
|
+
* recreate tv-trait-visual-canvas so it remounts into a correctly-sized
|
|
2938
|
+
* container. Waits `delay`ms so any pending layout recalculations settle.
|
|
2939
|
+
*/
|
|
2940
|
+
private cycleTraitVisualCanvas;
|
|
2941
|
+
private attachTraitVisualResizeObserver;
|
|
2942
|
+
private detachTraitVisualResizeObserver;
|
|
2925
2943
|
onBackClick(): void;
|
|
2926
2944
|
hideSidebar(): void;
|
|
2927
2945
|
setActiveTab(key: string): void;
|