@absolutejs/absolute 0.19.0-beta.330 → 0.19.0-beta.332
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 +9 -10
- package/dist/angular/browser.js.map +3 -3
- package/dist/angular/index.js +9 -10
- package/dist/angular/index.js.map +3 -3
- package/dist/dist/angular/index.d.ts +7 -8
- package/dist/src/angular/Island.browser.d.ts +21 -2
- package/dist/src/angular/Island.d.ts +21 -2
- package/package.json +1 -1
package/dist/angular/browser.js
CHANGED
|
@@ -38387,7 +38387,7 @@ var preserveIslandMarkup = (props) => {
|
|
|
38387
38387
|
|
|
38388
38388
|
// src/angular/Island.browser.ts
|
|
38389
38389
|
init_islandMarkupAttributes();
|
|
38390
|
-
class
|
|
38390
|
+
class Island {
|
|
38391
38391
|
constructor() {
|
|
38392
38392
|
this.component = "";
|
|
38393
38393
|
this.framework = "react";
|
|
@@ -38421,31 +38421,30 @@ class IslandComponent {
|
|
|
38421
38421
|
__legacyDecorateClassTS([
|
|
38422
38422
|
Input(),
|
|
38423
38423
|
__legacyMetadataTS("design:type", Object)
|
|
38424
|
-
],
|
|
38424
|
+
], Island.prototype, "component", undefined);
|
|
38425
38425
|
__legacyDecorateClassTS([
|
|
38426
38426
|
Input(),
|
|
38427
38427
|
__legacyMetadataTS("design:type", Object)
|
|
38428
|
-
],
|
|
38428
|
+
], Island.prototype, "framework", undefined);
|
|
38429
38429
|
__legacyDecorateClassTS([
|
|
38430
38430
|
Input(),
|
|
38431
38431
|
__legacyMetadataTS("design:type", Object)
|
|
38432
|
-
],
|
|
38432
|
+
], Island.prototype, "hydrate", undefined);
|
|
38433
38433
|
__legacyDecorateClassTS([
|
|
38434
38434
|
Input(),
|
|
38435
38435
|
__legacyMetadataTS("design:type", Object)
|
|
38436
|
-
],
|
|
38436
|
+
], Island.prototype, "props", undefined);
|
|
38437
38437
|
__legacyDecorateClassTS([
|
|
38438
38438
|
ViewChild("container", { static: true }),
|
|
38439
38439
|
__legacyMetadataTS("design:type", typeof ElementRef === "undefined" ? Object : ElementRef)
|
|
38440
|
-
],
|
|
38441
|
-
|
|
38440
|
+
], Island.prototype, "container", undefined);
|
|
38441
|
+
Island = __legacyDecorateClassTS([
|
|
38442
38442
|
Component3({
|
|
38443
38443
|
selector: "absolute-island",
|
|
38444
38444
|
standalone: true,
|
|
38445
38445
|
template: '<div #container [attr.ngSkipHydration]="true"></div>'
|
|
38446
38446
|
})
|
|
38447
|
-
],
|
|
38448
|
-
var Island = IslandComponent;
|
|
38447
|
+
], Island);
|
|
38449
38448
|
// src/angular/createIsland.browser.ts
|
|
38450
38449
|
init_islandMarkupAttributes();
|
|
38451
38450
|
var createTypedIsland = (_registry) => {
|
|
@@ -38569,5 +38568,5 @@ export {
|
|
|
38569
38568
|
Island
|
|
38570
38569
|
};
|
|
38571
38570
|
|
|
38572
|
-
//# debugId=
|
|
38571
|
+
//# debugId=043E6F0AE56716F764756E2164756E21
|
|
38573
38572
|
//# sourceMappingURL=browser.js.map
|