@absolutejs/absolute 0.19.0-beta.321 → 0.19.0-beta.323

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.
@@ -38296,7 +38296,14 @@ var require_cjs = __commonJS((exports) => {
38296
38296
  // src/angular/Island.browser.ts
38297
38297
  init_compiler();
38298
38298
  init_islandMarkupAttributes();
38299
- import { Component as Component3, Input } from "@angular/core";
38299
+ import {
38300
+ Component as Component3,
38301
+ Input,
38302
+ inject
38303
+ } from "@angular/core";
38304
+ import {
38305
+ DomSanitizer
38306
+ } from "@angular/platform-browser";
38300
38307
  var toAttributeString = (props) => serializeIslandAttributes(getIslandMarkerAttributes(props));
38301
38308
 
38302
38309
  class IslandComponent {
@@ -38306,14 +38313,15 @@ class IslandComponent {
38306
38313
  this.hydrate = "load";
38307
38314
  this.props = {};
38308
38315
  }
38316
+ sanitizer = inject(DomSanitizer);
38309
38317
  markup = "";
38310
38318
  ngOnChanges() {
38311
- this.markup = `<div ${toAttributeString({
38319
+ this.markup = this.sanitizer.bypassSecurityTrustHtml(`<div ${toAttributeString({
38312
38320
  component: this.component,
38313
38321
  framework: this.framework,
38314
38322
  hydrate: this.hydrate,
38315
38323
  props: this.props
38316
- })}></div>`;
38324
+ })}></div>`);
38317
38325
  }
38318
38326
  }
38319
38327
  __legacyDecorateClassTS([
@@ -38463,5 +38471,5 @@ export {
38463
38471
  Island
38464
38472
  };
38465
38473
 
38466
- //# debugId=325FACA2251F822364756E2164756E21
38474
+ //# debugId=065196AB5D1B047D64756E2164756E21
38467
38475
  //# sourceMappingURL=browser.js.map