@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.
- package/dist/angular/browser.js +12 -4
- package/dist/angular/browser.js.map +3 -3
- package/dist/build.js +10 -4
- package/dist/build.js.map +4 -4
- package/dist/index.js +10 -4
- package/dist/index.js.map +4 -4
- package/dist/src/angular/Island.browser.d.ts +3 -1
- package/package.json +1 -1
package/dist/angular/browser.js
CHANGED
|
@@ -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 {
|
|
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=
|
|
38474
|
+
//# debugId=065196AB5D1B047D64756E2164756E21
|
|
38467
38475
|
//# sourceMappingURL=browser.js.map
|