- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
52 lines
1.9 KiB
JavaScript
52 lines
1.9 KiB
JavaScript
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var utils_exports = {};
|
|
__export(utils_exports, {
|
|
normalizeIntrinsicElementKey: () => normalizeIntrinsicElementKey,
|
|
styleObjectForEach: () => styleObjectForEach
|
|
});
|
|
module.exports = __toCommonJS(utils_exports);
|
|
const normalizeElementKeyMap = /* @__PURE__ */ new Map([
|
|
["className", "class"],
|
|
["htmlFor", "for"],
|
|
["crossOrigin", "crossorigin"],
|
|
["httpEquiv", "http-equiv"],
|
|
["itemProp", "itemprop"],
|
|
["fetchPriority", "fetchpriority"],
|
|
["noModule", "nomodule"],
|
|
["formAction", "formaction"]
|
|
]);
|
|
const normalizeIntrinsicElementKey = (key) => normalizeElementKeyMap.get(key) || key;
|
|
const styleObjectForEach = (style, fn) => {
|
|
for (const [k, v] of Object.entries(style)) {
|
|
const key = k[0] === "-" || !/[A-Z]/.test(k) ? k : k.replace(/[A-Z]/g, (m) => `-${m.toLowerCase()}`);
|
|
fn(
|
|
key,
|
|
v == null ? null : typeof v === "number" ? !key.match(
|
|
/^(?:a|border-im|column(?:-c|s)|flex(?:$|-[^b])|grid-(?:ar|[^a])|font-w|li|or|sca|st|ta|wido|z)|ty$/
|
|
) ? `${v}px` : `${v}` : v
|
|
);
|
|
}
|
|
};
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
normalizeIntrinsicElementKey,
|
|
styleObjectForEach
|
|
});
|