hyperclayjs 1.19.4 → 1.19.5
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/package.json +1 -1
- package/src/core/savePage.js +1 -0
- package/src/hyperclay.js +3 -2
package/package.json
CHANGED
package/src/core/savePage.js
CHANGED
|
@@ -429,6 +429,7 @@ export function init() {
|
|
|
429
429
|
if (!window.__hyperclayNoAutoExport) {
|
|
430
430
|
window.hyperclay = window.hyperclay || {};
|
|
431
431
|
window.hyperclay.savePage = savePage;
|
|
432
|
+
window.hyperclay.savePageForce = savePageForce;
|
|
432
433
|
window.hyperclay.savePageThrottled = savePageThrottled;
|
|
433
434
|
window.hyperclay.beforeSave = beforeSave;
|
|
434
435
|
window.hyperclay.replacePageWith = replacePageWith;
|
package/src/hyperclay.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DO NOT EDIT THIS FILE DIRECTLY — it is generated from build/hyperclay.template.js
|
|
3
3
|
*
|
|
4
|
-
* HyperclayJS v1.19.
|
|
4
|
+
* HyperclayJS v1.19.5 - Minimal Browser-Native Loader
|
|
5
5
|
*
|
|
6
6
|
* Modules auto-init when imported (no separate init call needed).
|
|
7
7
|
* Include `export-to-window` feature to export to window.hyperclay.
|
|
@@ -141,7 +141,8 @@ const PRESETS = {
|
|
|
141
141
|
"behavior-collector",
|
|
142
142
|
"send-message",
|
|
143
143
|
"file-upload",
|
|
144
|
-
"export-to-window"
|
|
144
|
+
"export-to-window",
|
|
145
|
+
"view-mode-excludes-edit-modules"
|
|
145
146
|
]
|
|
146
147
|
},
|
|
147
148
|
"everything": {
|