@contentstack/live-preview-utils
Version:
Contentstack provides the Live Preview SDK to establish a communication channel between the various Contentstack SDKs and your website, transmitting live changes to the preview pane.
20 lines (19 loc) • 414 B
JavaScript
import "../chunk-5WRI5ZAA.js";
// src/utils/compare.ts
var DIFF_WRAPPER = "cs-compare";
function registerCompareElement() {
class Compare extends HTMLSpanElement {
constructor() {
super();
}
}
if (!customElements.get(DIFF_WRAPPER)) {
customElements.define(DIFF_WRAPPER, Compare, {
extends: "span"
});
}
}
export {
registerCompareElement
};
//# sourceMappingURL=compare.js.map