angular-three 1.4.2 → 1.4.3
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/esm2020/lib/stores/rx-store.mjs +11 -2
- package/fesm2015/angular-three.mjs +10 -1
- package/fesm2015/angular-three.mjs.map +1 -1
- package/fesm2020/angular-three.mjs +10 -1
- package/fesm2020/angular-three.mjs.map +1 -1
- package/lib/stores/rx-store.d.ts +2 -0
- package/package.json +1 -1
- package/plugin/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { ElementRef, Injectable, inject, InjectionToken, ViewContainerRef, TemplateRef, Directive, Input, EventEmitter, getDebugNode, RendererFactory2, ChangeDetectorRef, makeEnvironmentProviders, EnvironmentInjector, createEnvironmentInjector, Component, HostBinding, Output, ViewChild, Pipe, SkipSelf, ContentChild } from '@angular/core';
|
|
3
3
|
import { provideNgxResizeOptions, NgxResize } from 'ngx-resize';
|
|
4
|
-
import { isObservable, of, map, from, tap, retry, catchError, share, ReplaySubject, switchMap, forkJoin, take, BehaviorSubject, startWith, filter, distinctUntilChanged, takeUntil, merge } from 'rxjs';
|
|
4
|
+
import { isObservable, of, map, from, tap, retry, catchError, share, ReplaySubject, switchMap, forkJoin, take, BehaviorSubject, startWith, combineLatest, filter, distinctUntilChanged, takeUntil, merge } from 'rxjs';
|
|
5
5
|
import * as THREE from 'three';
|
|
6
6
|
import { DOCUMENT, NgForOf, NgIf } from '@angular/common';
|
|
7
7
|
import { RxState, selectSlice } from '@rx-angular/state';
|
|
@@ -546,6 +546,15 @@ class NgtRxStore extends RxState {
|
|
|
546
546
|
effect(obs, sideEffectFn) {
|
|
547
547
|
return this.hold(obs.pipe(tapEffect(sideEffectFn)));
|
|
548
548
|
}
|
|
549
|
+
triggerChangeDetection(cdr, keys = []) {
|
|
550
|
+
let $ = this.$;
|
|
551
|
+
if (keys.length) {
|
|
552
|
+
$ = combineLatest(keys.map((key) => this.select(key).pipe(startWith(this.get(key) ?? undefined))));
|
|
553
|
+
}
|
|
554
|
+
this.hold($, () => {
|
|
555
|
+
requestAnimationFrame(() => void cdr.detectChanges());
|
|
556
|
+
});
|
|
557
|
+
}
|
|
549
558
|
}
|
|
550
559
|
NgtRxStore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: NgtRxStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
551
560
|
NgtRxStore.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: NgtRxStore });
|