@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/angular/index.js
CHANGED
|
@@ -325,6 +325,10 @@ var ensureHead = (doc) => {
|
|
|
325
325
|
const seedDoc = typeof adapter.createHtmlDocument === "function" ? adapter.createHtmlDocument() : typeof adapter.getDefaultDocument === "function" ? adapter.getDefaultDocument() : null;
|
|
326
326
|
if (seedDoc) {
|
|
327
327
|
patchElementLayout(seedDoc);
|
|
328
|
+
const probe = seedDoc.createElement("div");
|
|
329
|
+
if (typeof probe.getBoundingClientRect !== "function") {
|
|
330
|
+
console.warn("[Angular Patch] Layout shim did not stick on probe element prototype chain");
|
|
331
|
+
}
|
|
328
332
|
}
|
|
329
333
|
} catch (error) {
|
|
330
334
|
console.warn("[Angular Patch] Could not eagerly patch Element prototypes:", error);
|
|
@@ -14297,5 +14301,5 @@ export {
|
|
|
14297
14301
|
Island
|
|
14298
14302
|
};
|
|
14299
14303
|
|
|
14300
|
-
//# debugId=
|
|
14304
|
+
//# debugId=076EB08BFA02854364756E2164756E21
|
|
14301
14305
|
//# sourceMappingURL=index.js.map
|