@absolutejs/absolute 0.19.0-beta.329 → 0.19.0-beta.330

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,14 +1,15 @@
1
1
  import '@angular/compiler';
2
- import { type OnChanges } from '@angular/core';
3
- import { type SafeHtml } from '@angular/platform-browser';
2
+ import { type AfterViewInit, type OnChanges } from '@angular/core';
4
3
  import type { RuntimeIslandRenderProps } from '../../types/island';
5
- export declare class IslandComponent implements OnChanges {
6
- private readonly sanitizer;
4
+ export declare class IslandComponent implements AfterViewInit, OnChanges {
7
5
  component: string;
8
6
  framework: RuntimeIslandRenderProps['framework'];
9
7
  hydrate: RuntimeIslandRenderProps['hydrate'];
10
8
  props: RuntimeIslandRenderProps['props'];
11
- markup: SafeHtml;
9
+ private readonly container?;
10
+ private markup;
12
11
  ngOnChanges(): void;
12
+ ngAfterViewInit(): void;
13
+ private applyMarkup;
13
14
  }
14
15
  export declare const Island: typeof IslandComponent;
package/package.json CHANGED
@@ -310,5 +310,5 @@
310
310
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
311
311
  },
312
312
  "types": "./dist/src/index.d.ts",
313
- "version": "0.19.0-beta.329"
313
+ "version": "0.19.0-beta.330"
314
314
  }