@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.
Files changed (35) hide show
  1. package/dist/{Island-p1b3nrte.svelte → Island-c38gqq3d.svelte} +3 -3
  2. package/dist/angular/browser.js +909 -40
  3. package/dist/angular/browser.js.map +19 -5
  4. package/dist/angular/index.js +10 -1
  5. package/dist/angular/index.js.map +6 -5
  6. package/dist/react/browser.js +30107 -8
  7. package/dist/react/browser.js.map +18 -3
  8. package/dist/react/index.js +22 -1
  9. package/dist/react/index.js.map +6 -5
  10. package/dist/src/angular/Island.browser.d.ts +4 -4
  11. package/dist/src/angular/Island.d.ts +4 -4
  12. package/dist/src/angular/browser.d.ts +1 -0
  13. package/dist/src/angular/createIsland.d.ts +1 -1
  14. package/dist/src/angular/index.d.ts +1 -0
  15. package/dist/src/react/Island.d.ts +2 -2
  16. package/dist/src/react/browser.d.ts +1 -0
  17. package/dist/src/react/createIsland.d.ts +1 -1
  18. package/dist/src/react/index.d.ts +1 -0
  19. package/dist/src/svelte/browser.d.ts +1 -0
  20. package/dist/src/svelte/createIsland.d.ts +1 -1
  21. package/dist/src/svelte/index.d.ts +1 -0
  22. package/dist/src/vue/browser.d.ts +1 -0
  23. package/dist/src/vue/createIsland.d.ts +1 -1
  24. package/dist/src/vue/index.d.ts +1 -0
  25. package/dist/svelte/browser.js +30096 -12
  26. package/dist/svelte/browser.js.map +19 -4
  27. package/dist/svelte/components/Island.svelte +3 -3
  28. package/dist/svelte/components/Island.svelte.d.ts +2 -2
  29. package/dist/svelte/index.js +28 -22
  30. package/dist/svelte/index.js.map +6 -5
  31. package/dist/vue/browser.js +30127 -7
  32. package/dist/vue/browser.js.map +19 -4
  33. package/dist/vue/index.js +43 -1
  34. package/dist/vue/index.js.map +6 -5
  35. 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 { ConfiguredTypedIslandRenderProps } from '../../types/island';
3
+ import type { RuntimeIslandRenderProps } from '../../types/island';
4
4
  export declare class IslandComponent implements OnChanges {
5
5
  component: string;
6
- framework: ConfiguredTypedIslandRenderProps['framework'];
7
- hydrate: ConfiguredTypedIslandRenderProps['hydrate'];
8
- props: ConfiguredTypedIslandRenderProps['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 { ConfiguredTypedIslandRenderProps } from '../../types/island';
2
+ import type { RuntimeIslandRenderProps } from '../../types/island';
3
3
  export declare class IslandComponent {
4
4
  component: string;
5
- framework: ConfiguredTypedIslandRenderProps['framework'];
6
- hydrate: ConfiguredTypedIslandRenderProps['hydrate'];
7
- props: ConfiguredTypedIslandRenderProps['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,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,3 +1,3 @@
1
1
  import type { JSX } from 'react';
2
- import type { ConfiguredTypedIslandRenderProps } from '../../types/island';
3
- export declare const Island: (props: ConfiguredTypedIslandRenderProps) => Promise<JSX.Element>;
2
+ import type { RuntimeIslandRenderProps } from '../../types/island';
3
+ export declare const Island: (props: RuntimeIslandRenderProps) => Promise<JSX.Element>;
@@ -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';