@tetacom/ng-components 1.2.2 → 1.2.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/esm2022/observable/animation-frame.mjs +5 -5
- package/esm2022/observable/public-api.mjs +2 -1
- package/esm2022/observable/zone-observable.mjs +15 -0
- package/fesm2022/tetacom-ng-components.mjs +17 -3
- package/fesm2022/tetacom-ng-components.mjs.map +1 -1
- package/observable/animation-frame.d.ts +2 -2
- package/observable/public-api.d.ts +1 -0
- package/observable/zone-observable.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InjectionToken } from
|
|
2
|
-
import { Observable } from
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const ANIMATION_FRAME: InjectionToken<Observable<number>>;
|
|
4
4
|
export declare const WINDOW: InjectionToken<Window>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { NgZone } from '@angular/core';
|
|
2
|
+
import { MonoTypeOperatorFunction } from 'rxjs';
|
|
3
|
+
export declare function tetaZoneFull<T>(ngZone: NgZone): MonoTypeOperatorFunction<T>;
|
|
4
|
+
export declare function tetaZoneFree<T>(ngZone: NgZone): MonoTypeOperatorFunction<T>;
|
|
5
|
+
export declare function tetaZoneOptimized<T>(ngZone: NgZone): MonoTypeOperatorFunction<T>;
|