@absolutejs/absolute 0.19.0-beta.290 → 0.19.0-beta.291
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/index.js +6 -25
- package/dist/angular/index.js.map +4 -4
- package/dist/angular/server.js +4 -3
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +4 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -3
- package/dist/index.js.map +3 -3
- package/dist/src/angular/Island.d.ts +1 -6
- package/package.json +1 -1
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
import '@angular/compiler';
|
|
2
|
-
import { type OnChanges } from '@angular/core';
|
|
3
|
-
import { type SafeHtml } from '@angular/platform-browser';
|
|
4
2
|
import type { RuntimeIslandRenderProps } from '../../types/island';
|
|
5
|
-
export declare class IslandComponent
|
|
6
|
-
private sanitizer;
|
|
3
|
+
export declare class IslandComponent {
|
|
7
4
|
component: string;
|
|
8
5
|
framework: RuntimeIslandRenderProps['framework'];
|
|
9
6
|
hydrate: RuntimeIslandRenderProps['hydrate'];
|
|
10
7
|
props: RuntimeIslandRenderProps['props'];
|
|
11
|
-
markup: SafeHtml;
|
|
12
8
|
get serializedProps(): string;
|
|
13
|
-
ngOnChanges(): Promise<void>;
|
|
14
9
|
}
|
|
15
10
|
export declare const Island: typeof IslandComponent;
|
package/package.json
CHANGED