@absolutejs/absolute 0.19.0-beta.330 → 0.19.0-beta.331
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 +9 -10
- package/dist/angular/browser.js.map +3 -3
- package/dist/angular/index.js +9 -10
- package/dist/angular/index.js.map +3 -3
- package/dist/dist/angular/index.d.ts +7 -8
- package/dist/src/angular/Island.browser.d.ts +1 -2
- package/dist/src/angular/Island.d.ts +1 -2
- package/package.json +1 -1
|
@@ -3,18 +3,17 @@ export function handleAngularPageRequest(_importer: any, pagePath: any, indexPat
|
|
|
3
3
|
export function getCachedRouteData(pagePath: any): any;
|
|
4
4
|
export function createTypedIsland(registry: any): (props: any) => Promise<string>;
|
|
5
5
|
export var IslandState: typeof IslandStateImpl;
|
|
6
|
-
export
|
|
7
|
-
declare class IslandStateImpl {
|
|
8
|
-
get(key: any, fallback: any): any;
|
|
9
|
-
select(key: any, fallback: any): any;
|
|
10
|
-
set(key: any, fallback: any, value: any): any;
|
|
11
|
-
update(key: any, fallback: any, updater: any): any;
|
|
12
|
-
}
|
|
13
|
-
declare class IslandComponent {
|
|
6
|
+
export class Island {
|
|
14
7
|
component: string;
|
|
15
8
|
framework: string;
|
|
16
9
|
hydrate: string;
|
|
17
10
|
props: {};
|
|
18
11
|
get serializedProps(): string;
|
|
19
12
|
}
|
|
13
|
+
declare class IslandStateImpl {
|
|
14
|
+
get(key: any, fallback: any): any;
|
|
15
|
+
select(key: any, fallback: any): any;
|
|
16
|
+
set(key: any, fallback: any, value: any): any;
|
|
17
|
+
update(key: any, fallback: any, updater: any): any;
|
|
18
|
+
}
|
|
20
19
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@angular/compiler';
|
|
2
2
|
import { type AfterViewInit, type OnChanges } from '@angular/core';
|
|
3
3
|
import type { RuntimeIslandRenderProps } from '../../types/island';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class Island implements AfterViewInit, OnChanges {
|
|
5
5
|
component: string;
|
|
6
6
|
framework: RuntimeIslandRenderProps['framework'];
|
|
7
7
|
hydrate: RuntimeIslandRenderProps['hydrate'];
|
|
@@ -12,4 +12,3 @@ export declare class IslandComponent implements AfterViewInit, OnChanges {
|
|
|
12
12
|
ngAfterViewInit(): void;
|
|
13
13
|
private applyMarkup;
|
|
14
14
|
}
|
|
15
|
-
export declare const Island: typeof IslandComponent;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import '@angular/compiler';
|
|
2
2
|
import type { RuntimeIslandRenderProps } from '../../types/island';
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class Island {
|
|
4
4
|
component: string;
|
|
5
5
|
framework: RuntimeIslandRenderProps['framework'];
|
|
6
6
|
hydrate: RuntimeIslandRenderProps['hydrate'];
|
|
7
7
|
props: RuntimeIslandRenderProps['props'];
|
|
8
8
|
get serializedProps(): string;
|
|
9
9
|
}
|
|
10
|
-
export declare const Island: typeof IslandComponent;
|
package/package.json
CHANGED