@absolutejs/absolute 0.19.0-beta.415 → 0.19.0-beta.416
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/dist/angular/browser.js +2 -6
- package/dist/angular/browser.js.map +3 -3
- package/dist/angular/components/stream-slot.component.js +1 -5
- package/dist/angular/index.js +2 -6
- package/dist/angular/index.js.map +3 -3
- package/dist/src/angular/components/stream-slot.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { type SafeHtml } from '@angular/platform-browser';
|
|
3
3
|
type SlotResolver = () => Promise<string> | string;
|
|
4
|
-
export declare class StreamSlotComponent implements
|
|
4
|
+
export declare class StreamSlotComponent implements OnDestroy {
|
|
5
5
|
private readonly cdr;
|
|
6
6
|
private readonly sanitizer;
|
|
7
7
|
private readonly zone;
|
|
@@ -14,7 +14,6 @@ export declare class StreamSlotComponent implements AfterViewInit, OnDestroy {
|
|
|
14
14
|
timeoutMs?: number;
|
|
15
15
|
readonly currentHtml: import("@angular/core").WritableSignal<string | SafeHtml>;
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
-
ngAfterViewInit(): void;
|
|
18
17
|
ngOnDestroy(): void;
|
|
19
18
|
}
|
|
20
19
|
export {};
|
package/package.json
CHANGED