@zipify/wysiwyg 3.0.0 → 3.1.0-0
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/dist/cli.js +1 -1
- package/dist/wysiwyg.css +11 -11
- package/dist/wysiwyg.mjs +1370 -1935
- package/example/tooltip/Tooltip.js +69 -94
- package/example/tooltip/tooltip.css +31 -8
- package/lib/Wysiwyg.vue +0 -3
- package/lib/components/base/composables/__tests__/useModalToggler.test.js +2 -0
- package/lib/components/base/composables/useModalToggler.js +21 -30
- package/lib/components/toolbar/Toolbar.vue +1 -1
- package/lib/components/toolbar/controls/__tests__/LineHeightControl.test.js +2 -0
- package/lib/composables/useToolbar.js +19 -24
- package/package.json +7 -3
package/dist/wysiwyg.css
CHANGED
|
@@ -636,16 +636,16 @@
|
|
|
636
636
|
width: 234px;
|
|
637
637
|
}
|
|
638
638
|
|
|
639
|
-
.zw-toolbar[data-v-
|
|
639
|
+
.zw-toolbar[data-v-def9f25e] {
|
|
640
640
|
border-radius: 2px;
|
|
641
641
|
background-color: rgb(var(--zw-color-n15));
|
|
642
642
|
color: rgb(var(--zw-color-n70));
|
|
643
643
|
z-index: 999999;
|
|
644
644
|
text-align: left;
|
|
645
|
-
position:
|
|
645
|
+
position: fixed;
|
|
646
646
|
}
|
|
647
|
-
.zw-toolbar[data-v-
|
|
648
|
-
.zw-toolbar[data-v-
|
|
647
|
+
.zw-toolbar[data-v-def9f25e]::before,
|
|
648
|
+
.zw-toolbar[data-v-def9f25e]::after {
|
|
649
649
|
content: "";
|
|
650
650
|
display: block;
|
|
651
651
|
width: 100%;
|
|
@@ -653,21 +653,21 @@
|
|
|
653
653
|
position: absolute;
|
|
654
654
|
--zw-toolbar-safe-zone: calc(-1 * var(--zw-toolbar-offset-y));
|
|
655
655
|
}
|
|
656
|
-
.zw-toolbar[data-v-
|
|
656
|
+
.zw-toolbar[data-v-def9f25e]::before {
|
|
657
657
|
top: var(--zw-toolbar-safe-zone);
|
|
658
658
|
}
|
|
659
|
-
.zw-toolbar[data-v-
|
|
659
|
+
.zw-toolbar[data-v-def9f25e]::after {
|
|
660
660
|
bottom: var(--zw-toolbar-safe-zone);
|
|
661
661
|
}
|
|
662
|
-
.zw-toolbar--enter-active[data-v-
|
|
663
|
-
.zw-toolbar--leave-active[data-v-
|
|
662
|
+
.zw-toolbar--enter-active[data-v-def9f25e],
|
|
663
|
+
.zw-toolbar--leave-active[data-v-def9f25e] {
|
|
664
664
|
transition: opacity 150ms ease-out;
|
|
665
665
|
}
|
|
666
|
-
.zw-toolbar--leave-active[data-v-
|
|
666
|
+
.zw-toolbar--leave-active[data-v-def9f25e] {
|
|
667
667
|
transition: opacity 0s ease-in;
|
|
668
668
|
}
|
|
669
|
-
.zw-toolbar--enter[data-v-
|
|
670
|
-
.zw-toolbar--leave-to[data-v-
|
|
669
|
+
.zw-toolbar--enter[data-v-def9f25e],
|
|
670
|
+
.zw-toolbar--leave-to[data-v-def9f25e] {
|
|
671
671
|
opacity: 0;
|
|
672
672
|
}
|
|
673
673
|
.zw-wysiwyg {
|