@windoc/core 0.2.0 → 0.2.1

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/README.md CHANGED
@@ -1,3 +1,8 @@
1
+ <div align="center">
2
+ <img src="https://raw.githubusercontent.com/aliansyahFirdaus/windoc/main/docs/static/img/logo-text-white.png#gh-light-mode-only" alt="Windoc" height="120">
3
+ <img src="https://raw.githubusercontent.com/aliansyahFirdaus/windoc/main/docs/static/img/logo-text-black.png#gh-dark-mode-only" alt="Windoc" height="120">
4
+ </div>
5
+
1
6
  # @windoc/core
2
7
 
3
8
  Canvas-based document editor engine for the web. Renders documents using HTML5 Canvas with pixel-perfect pagination, headers, footers, watermarks, and print support.
package/dist/index.js CHANGED
@@ -12385,6 +12385,7 @@ var HyperlinkParticle = class {
12385
12385
  _createHyperlinkPopupDom() {
12386
12386
  const hyperlinkPopupContainer = document.createElement("div");
12387
12387
  hyperlinkPopupContainer.classList.add(`${EDITOR_PREFIX}-hyperlink-popup`);
12388
+ hyperlinkPopupContainer.style.display = "none";
12388
12389
  const hyperlinkDom = document.createElement("a");
12389
12390
  hyperlinkDom.target = "_blank";
12390
12391
  hyperlinkDom.rel = "noopener";
@@ -16546,6 +16547,7 @@ var Previewer = class {
16546
16547
  resizerImageContainer.classList.add(`${EDITOR_PREFIX}-resizer-image`);
16547
16548
  resizerImageContainer.style.display = "none";
16548
16549
  const resizerImage = document.createElement("img");
16550
+ resizerImage.alt = "";
16549
16551
  resizerImageContainer.append(resizerImage);
16550
16552
  this.container.append(resizerImageContainer);
16551
16553
  return {