@absolutejs/absolute 0.19.0-beta.315 → 0.19.0-beta.317
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/{Island-p1b3nrte.svelte → Island-c38gqq3d.svelte} +3 -3
- package/dist/angular/browser.js +909 -40
- package/dist/angular/browser.js.map +19 -5
- package/dist/angular/index.js +10 -1
- package/dist/angular/index.js.map +6 -5
- package/dist/react/browser.js +30107 -8
- package/dist/react/browser.js.map +18 -3
- package/dist/react/index.js +22 -1
- package/dist/react/index.js.map +6 -5
- package/dist/src/angular/Island.browser.d.ts +4 -4
- package/dist/src/angular/Island.d.ts +4 -4
- package/dist/src/angular/browser.d.ts +1 -0
- package/dist/src/angular/createIsland.d.ts +1 -1
- package/dist/src/angular/index.d.ts +1 -0
- package/dist/src/react/Island.d.ts +2 -2
- package/dist/src/react/browser.d.ts +1 -0
- package/dist/src/react/createIsland.d.ts +1 -1
- package/dist/src/react/index.d.ts +1 -0
- package/dist/src/svelte/browser.d.ts +1 -0
- package/dist/src/svelte/createIsland.d.ts +1 -1
- package/dist/src/svelte/index.d.ts +1 -0
- package/dist/src/vue/browser.d.ts +1 -0
- package/dist/src/vue/createIsland.d.ts +1 -1
- package/dist/src/vue/index.d.ts +1 -0
- package/dist/svelte/browser.js +30096 -12
- package/dist/svelte/browser.js.map +19 -4
- package/dist/svelte/components/Island.svelte +3 -3
- package/dist/svelte/components/Island.svelte.d.ts +2 -2
- package/dist/svelte/index.js +28 -22
- package/dist/svelte/index.js.map +6 -5
- package/dist/vue/browser.js +30127 -7
- package/dist/vue/browser.js.map +19 -4
- package/dist/vue/index.js +43 -1
- package/dist/vue/index.js.map +6 -5
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '@angular/compiler';
|
|
2
2
|
import { type OnChanges } from '@angular/core';
|
|
3
|
-
import type {
|
|
3
|
+
import type { RuntimeIslandRenderProps } from '../../types/island';
|
|
4
4
|
export declare class IslandComponent implements OnChanges {
|
|
5
5
|
component: string;
|
|
6
|
-
framework:
|
|
7
|
-
hydrate:
|
|
8
|
-
props:
|
|
6
|
+
framework: RuntimeIslandRenderProps['framework'];
|
|
7
|
+
hydrate: RuntimeIslandRenderProps['hydrate'];
|
|
8
|
+
props: RuntimeIslandRenderProps['props'];
|
|
9
9
|
markup: string;
|
|
10
10
|
ngOnChanges(): void;
|
|
11
11
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import '@angular/compiler';
|
|
2
|
-
import type {
|
|
2
|
+
import type { RuntimeIslandRenderProps } from '../../types/island';
|
|
3
3
|
export declare class IslandComponent {
|
|
4
4
|
component: string;
|
|
5
|
-
framework:
|
|
6
|
-
hydrate:
|
|
7
|
-
props:
|
|
5
|
+
framework: RuntimeIslandRenderProps['framework'];
|
|
6
|
+
hydrate: RuntimeIslandRenderProps['hydrate'];
|
|
7
|
+
props: RuntimeIslandRenderProps['props'];
|
|
8
8
|
get serializedProps(): string;
|
|
9
9
|
}
|
|
10
10
|
export declare const Island: typeof IslandComponent;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { IslandRegistry, IslandRegistryInput, TypedIslandRenderProps } from '../../types/island';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<string>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { JSX } from 'react';
|
|
2
|
-
import type {
|
|
3
|
-
export declare const Island: (props:
|
|
2
|
+
import type { RuntimeIslandRenderProps } from '../../types/island';
|
|
3
|
+
export declare const Island: (props: RuntimeIslandRenderProps) => Promise<JSX.Element>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { JSX } from 'react';
|
|
2
2
|
import type { IslandRegistry, IslandRegistryInput, TypedIslandRenderProps } from '../../types/island';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<JSX.Element>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as Island } from './components/Island.svelte';
|
|
2
|
+
export { createTypedIsland } from './createIsland';
|
|
2
3
|
export { resolveIslandHtml } from './resolveIslandHtml.browser';
|
|
3
4
|
export declare const renderIsland: () => Promise<never>;
|
|
4
5
|
export { getIslandState } from './islandState';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { IslandRegistry, IslandRegistryInput, TypedIslandRenderProps } from '../../types/island';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<string>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { handleSveltePageRequest } from './pageHandler';
|
|
2
|
+
export { createTypedIsland } from './createIsland';
|
|
2
3
|
export { getIslandState } from './islandState';
|
|
3
4
|
export { default as Island } from './components/Island.svelte';
|
|
4
5
|
export { renderIsland } from './renderIsland';
|
|
@@ -2,5 +2,5 @@ import type { IslandRegistry, IslandRegistryInput, TypedIslandRenderProps } from
|
|
|
2
2
|
type VueIslandComponent<T extends IslandRegistryInput> = new () => {
|
|
3
3
|
$props: TypedIslandRenderProps<T>;
|
|
4
4
|
};
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => VueIslandComponent<T>;
|
|
6
6
|
export {};
|
package/dist/src/vue/index.d.ts
CHANGED