@eric-emg/symphiq-components 1.2.508 → 1.2.510
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.
|
@@ -1929,6 +1929,7 @@ 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');
|
|
1932
1933
|
}
|
|
1933
1934
|
log(message, data) {
|
|
1934
1935
|
if (this.DEBUG) {
|
|
@@ -2038,8 +2039,7 @@ class HeaderScrollService {
|
|
|
2038
2039
|
return;
|
|
2039
2040
|
}
|
|
2040
2041
|
this.stateChangeCount++;
|
|
2041
|
-
|
|
2042
|
-
stateChangeNumber: this.stateChangeCount,
|
|
2042
|
+
console.warn('[HeaderScroll] STATE CHANGE #' + this.stateChangeCount, {
|
|
2043
2043
|
from: finalCurrentState ? 'collapsed' : 'expanded',
|
|
2044
2044
|
to: finalDesiredState ? 'collapsed' : 'expanded',
|
|
2045
2045
|
finalPosition,
|
|
@@ -2095,7 +2095,7 @@ class HeaderScrollService {
|
|
|
2095
2095
|
args: [{
|
|
2096
2096
|
providedIn: 'root'
|
|
2097
2097
|
}]
|
|
2098
|
-
}],
|
|
2098
|
+
}], () => [], null); })();
|
|
2099
2099
|
|
|
2100
2100
|
class IconService {
|
|
2101
2101
|
constructor(http, sanitizer) {
|