docx-diff-editor 1.0.20 → 1.0.21

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.
Files changed (2) hide show
  1. package/dist/styles.css +31 -0
  2. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -5829,4 +5829,35 @@ img[data-v-7dd69850] {
5829
5829
  }
5830
5830
 
5831
5831
 
5832
+ }
5833
+
5834
+ /* ==========================================================================
5835
+ Critical overrides outside layers (highest specificity)
5836
+ These ensure SuperDoc UI elements display correctly regardless of external CSS
5837
+
5838
+ NOTE: We intentionally do NOT override SVG width/height here because
5839
+ that breaks toolbar icons. Toolbar icons need their sizing preserved.
5840
+ ========================================================================== */
5841
+
5842
+ /* Context menu fixes - revert Tailwind resets */
5843
+ .sd-context-menu,
5844
+ .superdoc-context-menu,
5845
+ [class*="context-menu"] {
5846
+ all: revert;
5847
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
5848
+ }
5849
+
5850
+ /* Button resets for SuperDoc UI */
5851
+ .sd-editor-scoped button,
5852
+ .superdoc button,
5853
+ [class*="superdoc"] button {
5854
+ all: revert;
5855
+ }
5856
+
5857
+ /* Track changes sidebar visibility */
5858
+ .superdoc__right-sidebar,
5859
+ .right-sidebar,
5860
+ [class*="right-sidebar"] {
5861
+ display: flex !important;
5862
+ visibility: visible !important;
5832
5863
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docx-diff-editor",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "React component for DOCX document comparison with track changes visualization",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Pablo Schaffner",