@absolutejs/absolute 0.19.0-beta.315 → 0.19.0-beta.316

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.
@@ -1,3 +1,4 @@
1
1
  export { Island } from './Island.browser';
2
+ export { createTypedIsland } from './createIsland';
2
3
  export declare const renderIsland: () => Promise<never>;
3
4
  export { IslandState } from './island-state.service';
@@ -1,2 +1,2 @@
1
1
  import type { IslandRegistry, IslandRegistryInput, TypedIslandRenderProps } from '../../types/island';
2
- export declare const createIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<string>;
2
+ export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<string>;
@@ -1,4 +1,5 @@
1
1
  export { handleAngularPageRequest } from './pageHandler';
2
+ export { createTypedIsland } from './createIsland';
2
3
  export { getCachedRouteData } from './ssrRender';
3
4
  export { Island } from './Island';
4
5
  export { IslandState } from './island-state.service';
@@ -1,2 +1,3 @@
1
1
  export { Island } from './Island.browser';
2
+ export { createTypedIsland } from './createIsland';
2
3
  export { useIslandState } from './hooks/useIslandState';
@@ -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 createIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<JSX.Element>;
3
+ export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<JSX.Element>;
@@ -1,3 +1,4 @@
1
1
  export { handleReactPageRequest } from './pageHandler';
2
2
  export { Island } from './Island';
3
+ export { createTypedIsland } from './createIsland';
3
4
  export { useIslandState } from './hooks/useIslandState';
@@ -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 createIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => (props: TypedIslandRenderProps<T>) => Promise<string>;
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';
@@ -1,2 +1,3 @@
1
1
  export { Island } from './Island.browser';
2
+ export { createTypedIsland } from './createIsland';
2
3
  export { useIslandState } from './useIslandState';
@@ -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 createIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => VueIslandComponent<T>;
5
+ export declare const createTypedIsland: <T extends IslandRegistryInput>(registry: IslandRegistry<T>) => VueIslandComponent<T>;
6
6
  export {};
@@ -1,3 +1,4 @@
1
1
  export { handleVuePageRequest } from './pageHandler';
2
2
  export { Island } from './Island';
3
+ export { createTypedIsland } from './createIsland';
3
4
  export { useIslandState } from './useIslandState';