@eric-emg/symphiq-components 1.2.312 → 1.2.313
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.
|
@@ -54308,13 +54308,14 @@ class SymphiqConnectGaDashboardComponent {
|
|
|
54308
54308
|
}
|
|
54309
54309
|
}
|
|
54310
54310
|
}, ...(ngDevMode ? [{ debugName: "embeddedScrollEffect" }] : []));
|
|
54311
|
+
this.previousPropertiesRef = undefined;
|
|
54311
54312
|
this.propertiesReceivedEffect = effect(() => {
|
|
54312
54313
|
const properties = this.gaProperties();
|
|
54313
|
-
|
|
54314
|
-
if (this.internalConnecting() && currentLength > 0) {
|
|
54314
|
+
if (this.internalConnecting() && properties && properties.length > 0 && properties !== this.previousPropertiesRef) {
|
|
54315
54315
|
this.internalConnecting.set(false);
|
|
54316
54316
|
this.isReconnecting.set(false);
|
|
54317
54317
|
}
|
|
54318
|
+
this.previousPropertiesRef = properties;
|
|
54318
54319
|
}, ...(ngDevMode ? [{ debugName: "propertiesReceivedEffect", allowSignalWrites: true }] : [{ allowSignalWrites: true }]));
|
|
54319
54320
|
this.scrollProgress = computed(() => this.headerScrollService.scrollProgress(), ...(ngDevMode ? [{ debugName: "scrollProgress" }] : []));
|
|
54320
54321
|
this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));
|