@eric-emg/symphiq-components 1.2.511 → 1.2.512
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.
|
@@ -1906,13 +1906,13 @@ class MetricFormatterService {
|
|
|
1906
1906
|
|
|
1907
1907
|
class HeaderScrollService {
|
|
1908
1908
|
constructor() {
|
|
1909
|
-
this.DEFAULT_COLLAPSE_THRESHOLD =
|
|
1909
|
+
this.DEFAULT_COLLAPSE_THRESHOLD = 50;
|
|
1910
1910
|
this.DEFAULT_EXPAND_THRESHOLD = 5;
|
|
1911
1911
|
this.DEFAULT_STATE_CHANGE_COOLDOWN = 500;
|
|
1912
1912
|
this.DEFAULT_DEBOUNCE_DELAY = 250;
|
|
1913
1913
|
this.HEADER_HEIGHT_DIFF = 48;
|
|
1914
1914
|
this.STABILITY_THRESHOLD = 8;
|
|
1915
|
-
this.DEBUG =
|
|
1915
|
+
this.DEBUG = false;
|
|
1916
1916
|
this.isScrolled = signal(false, ...(ngDevMode ? [{ debugName: "isScrolled" }] : []));
|
|
1917
1917
|
this.scrollProgress = signal(0, ...(ngDevMode ? [{ debugName: "scrollProgress" }] : []));
|
|
1918
1918
|
this.scrollTimeout = null;
|
|
@@ -1929,7 +1929,6 @@ class HeaderScrollService {
|
|
|
1929
1929
|
stateChangeCooldown: this.DEFAULT_STATE_CHANGE_COOLDOWN,
|
|
1930
1930
|
debounceDelay: this.DEFAULT_DEBOUNCE_DELAY
|
|
1931
1931
|
};
|
|
1932
|
-
console.warn('[HeaderScrollService] INITIALIZED - v2 with bounce prevention');
|
|
1933
1932
|
}
|
|
1934
1933
|
log(message, data) {
|
|
1935
1934
|
if (this.DEBUG) {
|
|
@@ -2039,7 +2038,7 @@ class HeaderScrollService {
|
|
|
2039
2038
|
return;
|
|
2040
2039
|
}
|
|
2041
2040
|
this.stateChangeCount++;
|
|
2042
|
-
|
|
2041
|
+
this.log('STATE CHANGE #' + this.stateChangeCount, {
|
|
2043
2042
|
from: finalCurrentState ? 'collapsed' : 'expanded',
|
|
2044
2043
|
to: finalDesiredState ? 'collapsed' : 'expanded',
|
|
2045
2044
|
finalPosition,
|
|
@@ -2165,7 +2164,7 @@ class HeaderScrollService {
|
|
|
2165
2164
|
return;
|
|
2166
2165
|
}
|
|
2167
2166
|
this.stateChangeCount++;
|
|
2168
|
-
|
|
2167
|
+
this.log('EMBEDDED STATE CHANGE #' + this.stateChangeCount, {
|
|
2169
2168
|
from: finalCurrentState ? 'collapsed' : 'expanded',
|
|
2170
2169
|
to: finalDesiredState ? 'collapsed' : 'expanded',
|
|
2171
2170
|
scrollTop
|
|
@@ -2189,7 +2188,7 @@ class HeaderScrollService {
|
|
|
2189
2188
|
args: [{
|
|
2190
2189
|
providedIn: 'root'
|
|
2191
2190
|
}]
|
|
2192
|
-
}],
|
|
2191
|
+
}], null, null); })();
|
|
2193
2192
|
|
|
2194
2193
|
class IconService {
|
|
2195
2194
|
constructor(http, sanitizer) {
|
|
@@ -95809,7 +95808,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95809
95808
|
this.FocusAreaDetailStatusEnum = FocusAreaDetailStatusEnum;
|
|
95810
95809
|
this.AiDynamicContentStatusEnum = AiDynamicContentStatusEnum;
|
|
95811
95810
|
this.ProfileAnalysisReviewStatusEnum = ProfileAnalysisReviewStatusEnum;
|
|
95812
|
-
this.COLLAPSE_THRESHOLD =
|
|
95811
|
+
this.COLLAPSE_THRESHOLD = 50;
|
|
95813
95812
|
this.EXPAND_THRESHOLD = 10;
|
|
95814
95813
|
this.embeddedScrollEffect = effect(() => {
|
|
95815
95814
|
const scrollEvent = this.scrollEvent();
|