@saasquatch/squatch-js 2.8.2-31 → 2.8.2-33
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/squatch.cjs.js +12 -0
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +12 -0
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +12 -0
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/package.json +1 -1
package/dist/squatch.js
CHANGED
|
@@ -1317,6 +1317,18 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1317
1317
|
frameDoc.write(
|
|
1318
1318
|
`<script src="${this.npmCdn}/resize-observer-polyfill@1.5.x"><\/script>`
|
|
1319
1319
|
);
|
|
1320
|
+
frameDoc.write(`
|
|
1321
|
+
<style>
|
|
1322
|
+
body {
|
|
1323
|
+
height: 600px;
|
|
1324
|
+
border: 2px solid #ccc;
|
|
1325
|
+
background-color: #f9f9f9;
|
|
1326
|
+
margin: 0;
|
|
1327
|
+
padding: 0;
|
|
1328
|
+
box-sizing: border-box;
|
|
1329
|
+
}
|
|
1330
|
+
</style>
|
|
1331
|
+
`);
|
|
1320
1332
|
frameDoc.close();
|
|
1321
1333
|
_log$6("Popup template loaded into iframe");
|
|
1322
1334
|
await this._setupResizeHandler(frame);
|