@absolutejs/absolute 0.19.0-beta.709 → 0.19.0-beta.710
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/index.js +5 -1
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +5 -1
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +5 -1
- package/dist/build.js.map +3 -3
- package/dist/client/index.js +5 -1
- package/dist/client/index.js.map +3 -3
- package/dist/index.js +5 -1
- package/dist/index.js.map +3 -3
- package/dist/islands/index.js +5 -1
- package/dist/islands/index.js.map +3 -3
- package/dist/react/index.js +5 -1
- package/dist/react/index.js.map +3 -3
- package/dist/svelte/index.js +5 -1
- package/dist/svelte/index.js.map +3 -3
- package/dist/vue/index.js +5 -1
- package/dist/vue/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -1864,6 +1864,10 @@ var ensureHead = (doc) => {
|
|
|
1864
1864
|
const seedDoc = typeof adapter.createHtmlDocument === "function" ? adapter.createHtmlDocument() : typeof adapter.getDefaultDocument === "function" ? adapter.getDefaultDocument() : null;
|
|
1865
1865
|
if (seedDoc) {
|
|
1866
1866
|
patchElementLayout(seedDoc);
|
|
1867
|
+
const probe = seedDoc.createElement("div");
|
|
1868
|
+
if (typeof probe.getBoundingClientRect !== "function") {
|
|
1869
|
+
console.warn("[Angular Patch] Layout shim did not stick on probe element prototype chain");
|
|
1870
|
+
}
|
|
1867
1871
|
}
|
|
1868
1872
|
} catch (error) {
|
|
1869
1873
|
console.warn("[Angular Patch] Could not eagerly patch Element prototypes:", error);
|
|
@@ -49697,5 +49701,5 @@ export {
|
|
|
49697
49701
|
build
|
|
49698
49702
|
};
|
|
49699
49703
|
|
|
49700
|
-
//# debugId=
|
|
49704
|
+
//# debugId=CB93EE6A1744026C64756E2164756E21
|
|
49701
49705
|
//# sourceMappingURL=build.js.map
|