@typeheim/fluent-ng
Advanced tools
Comparing version 0.1.0 to 0.2.0
import { PipeTransform, ChangeDetectorRef, OnDestroy } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export interface PromiseConfig { | ||
@@ -14,2 +15,4 @@ default: any; | ||
ngOnDestroy(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<AwaitPipe, never>; | ||
static ɵpipe: i0.ɵɵPipeDeclaration<AwaitPipe, "await">; | ||
} |
import { ModuleWithProviders } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
import * as i1 from "./stream.pipe"; | ||
import * as i2 from "./await.pipe"; | ||
import * as i3 from "./subscribe.pipe"; | ||
export declare class FluentNgModule { | ||
static forRoot(): ModuleWithProviders<FluentNgModule>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FluentNgModule, never>; | ||
static ɵmod: i0.ɵɵNgModuleDeclaration<FluentNgModule, [typeof i1.StreamPipe, typeof i2.AwaitPipe, typeof i3.SubscribePipe], never, [typeof i1.StreamPipe, typeof i2.AwaitPipe, typeof i3.SubscribePipe]>; | ||
static ɵinj: i0.ɵɵInjectorDeclaration<FluentNgModule>; | ||
} |
@@ -1,3 +0,4 @@ | ||
import { PipeTransform, ChangeDetectorRef, OnDestroy } from '@angular/core'; | ||
import { Observable } from 'rxjs'; | ||
import { ChangeDetectorRef, OnDestroy, PipeTransform } from '@angular/core'; | ||
import { Observable, Subscribable } from 'rxjs'; | ||
import * as i0 from "@angular/core"; | ||
export interface StreamConfig { | ||
@@ -12,6 +13,10 @@ default: any; | ||
constructor(changeDetector: ChangeDetectorRef); | ||
transform<T>(dataStream: Observable<T> | null | undefined, config?: StreamConfig): T | null; | ||
transform<T>(dataStream: Observable<T> | Subscribable<T>, config?: StreamConfig): T | null; | ||
transform<T>(dataStream: null | undefined, preload?: any): null; | ||
transform<T>(dataStream: Observable<T> | Subscribable<T> | null | undefined, config?: StreamConfig): T | null; | ||
private subscribe; | ||
private cleanUpResources; | ||
ngOnDestroy(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<StreamPipe, never>; | ||
static ɵpipe: i0.ɵɵPipeDeclaration<StreamPipe, "stream">; | ||
} |
{ | ||
"name": "@typeheim/fluent-ng", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"peerDependencies": { | ||
"@angular/common": "^12.1.2", | ||
"@angular/core": "^12.1.2" | ||
"@angular/common": "^13.3.0", | ||
"@angular/core": "^13.3.0" | ||
}, | ||
"dependencies": { | ||
"tslib": "^2.2.0" | ||
"tslib": "^2.3.0" | ||
}, | ||
"main": "bundles/typeheim-fluent-ng.umd.js", | ||
"module": "fesm2015/typeheim-fluent-ng.js", | ||
"es2015": "fesm2015/typeheim-fluent-ng.js", | ||
"esm2015": "esm2015/typeheim-fluent-ng.js", | ||
"fesm2015": "fesm2015/typeheim-fluent-ng.js", | ||
"module": "fesm2015/typeheim-fluent-ng.mjs", | ||
"es2020": "fesm2020/typeheim-fluent-ng.mjs", | ||
"esm2020": "esm2020/typeheim-fluent-ng.mjs", | ||
"fesm2020": "fesm2020/typeheim-fluent-ng.mjs", | ||
"fesm2015": "fesm2015/typeheim-fluent-ng.mjs", | ||
"typings": "typeheim-fluent-ng.d.ts", | ||
"metadata": "typeheim-fluent-ng.metadata.json", | ||
"exports": { | ||
"./package.json": { | ||
"default": "./package.json" | ||
}, | ||
".": { | ||
"types": "./typeheim-fluent-ng.d.ts", | ||
"esm2020": "./esm2020/typeheim-fluent-ng.mjs", | ||
"es2020": "./fesm2020/typeheim-fluent-ng.mjs", | ||
"es2015": "./fesm2015/typeheim-fluent-ng.mjs", | ||
"node": "./fesm2015/typeheim-fluent-ng.mjs", | ||
"default": "./fesm2020/typeheim-fluent-ng.mjs" | ||
} | ||
}, | ||
"sideEffects": false | ||
} |
export * from './lib/await.pipe'; | ||
export * from './lib/subscribe.pipe'; | ||
export * from './lib/stream.pipe'; | ||
export * from './lib/fluent-ng.module'; |
/** | ||
* Generated bundle index. Do not edit. | ||
*/ | ||
/// <amd-module name="@typeheim/fluent-ng" /> | ||
export * from './public-api'; |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
82761
18
773
1
+ Added@angular/common@13.4.0(transitive)
+ Added@angular/core@13.4.0(transitive)
- Removed@angular/common@12.2.17(transitive)
- Removed@angular/core@12.2.17(transitive)
Updatedtslib@^2.3.0