@windoc/core 0.2.0 → 0.2.2
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 +5 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12311,6 +12311,7 @@ var HyperlinkParticle = class {
|
|
|
12311
12311
|
_createHyperlinkPopupDom() {
|
|
12312
12312
|
const hyperlinkPopupContainer = document.createElement("div");
|
|
12313
12313
|
hyperlinkPopupContainer.classList.add(`${EDITOR_PREFIX}-hyperlink-popup`);
|
|
12314
|
+
hyperlinkPopupContainer.style.display = "none";
|
|
12314
12315
|
const hyperlinkDom = document.createElement("a");
|
|
12315
12316
|
hyperlinkDom.target = "_blank";
|
|
12316
12317
|
hyperlinkDom.rel = "noopener";
|
|
@@ -16472,6 +16473,7 @@ var Previewer = class {
|
|
|
16472
16473
|
resizerImageContainer.classList.add(`${EDITOR_PREFIX}-resizer-image`);
|
|
16473
16474
|
resizerImageContainer.style.display = "none";
|
|
16474
16475
|
const resizerImage = document.createElement("img");
|
|
16476
|
+
resizerImage.alt = "";
|
|
16475
16477
|
resizerImageContainer.append(resizerImage);
|
|
16476
16478
|
this.container.append(resizerImageContainer);
|
|
16477
16479
|
return {
|