@zipify/wysiwyg 3.0.2 → 3.1.0-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/dist/cli.js +1 -1
- package/dist/wysiwyg.css +11 -11
- package/dist/wysiwyg.mjs +1371 -1934
- package/example/tooltip/Tooltip.js +69 -92
- package/example/tooltip/modifiers/TooltipCloseOnScrollModifier.js +5 -2
- 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 +24 -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 +4 -4
package/dist/wysiwyg.css
CHANGED
|
@@ -639,16 +639,16 @@
|
|
|
639
639
|
width: 234px;
|
|
640
640
|
}
|
|
641
641
|
|
|
642
|
-
.zw-toolbar[data-v-
|
|
642
|
+
.zw-toolbar[data-v-def9f25e] {
|
|
643
643
|
border-radius: 2px;
|
|
644
644
|
background-color: rgb(var(--zw-color-n15));
|
|
645
645
|
color: rgb(var(--zw-color-n70));
|
|
646
646
|
z-index: 999999;
|
|
647
647
|
text-align: left;
|
|
648
|
-
position:
|
|
648
|
+
position: fixed;
|
|
649
649
|
}
|
|
650
|
-
.zw-toolbar[data-v-
|
|
651
|
-
.zw-toolbar[data-v-
|
|
650
|
+
.zw-toolbar[data-v-def9f25e]::before,
|
|
651
|
+
.zw-toolbar[data-v-def9f25e]::after {
|
|
652
652
|
content: "";
|
|
653
653
|
display: block;
|
|
654
654
|
width: 100%;
|
|
@@ -656,21 +656,21 @@
|
|
|
656
656
|
position: absolute;
|
|
657
657
|
--zw-toolbar-safe-zone: calc(-1 * var(--zw-toolbar-offset-y));
|
|
658
658
|
}
|
|
659
|
-
.zw-toolbar[data-v-
|
|
659
|
+
.zw-toolbar[data-v-def9f25e]::before {
|
|
660
660
|
top: var(--zw-toolbar-safe-zone);
|
|
661
661
|
}
|
|
662
|
-
.zw-toolbar[data-v-
|
|
662
|
+
.zw-toolbar[data-v-def9f25e]::after {
|
|
663
663
|
bottom: var(--zw-toolbar-safe-zone);
|
|
664
664
|
}
|
|
665
|
-
.zw-toolbar--enter-active[data-v-
|
|
666
|
-
.zw-toolbar--leave-active[data-v-
|
|
665
|
+
.zw-toolbar--enter-active[data-v-def9f25e],
|
|
666
|
+
.zw-toolbar--leave-active[data-v-def9f25e] {
|
|
667
667
|
transition: opacity 150ms ease-out;
|
|
668
668
|
}
|
|
669
|
-
.zw-toolbar--leave-active[data-v-
|
|
669
|
+
.zw-toolbar--leave-active[data-v-def9f25e] {
|
|
670
670
|
transition: opacity 0s ease-in;
|
|
671
671
|
}
|
|
672
|
-
.zw-toolbar--enter[data-v-
|
|
673
|
-
.zw-toolbar--leave-to[data-v-
|
|
672
|
+
.zw-toolbar--enter[data-v-def9f25e],
|
|
673
|
+
.zw-toolbar--leave-to[data-v-def9f25e] {
|
|
674
674
|
opacity: 0;
|
|
675
675
|
}
|
|
676
676
|
.zw-wysiwyg {
|