@zipify/wysiwyg 4.0.4 → 4.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 +12 -12
- package/dist/wysiwyg.mjs +1300 -227
- 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 +1 -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 +20 -24
- package/package.json +2 -1
package/dist/wysiwyg.css
CHANGED
|
@@ -682,7 +682,7 @@
|
|
|
682
682
|
background-color: rgb(var(--zw-color-n30));
|
|
683
683
|
}
|
|
684
684
|
|
|
685
|
-
.zw-toolbar[data-v-
|
|
685
|
+
.zw-toolbar[data-v-d3e5d777] {
|
|
686
686
|
border: 1px solid rgba(var(--zw-color-white), 0.2);
|
|
687
687
|
border-radius: 2px;
|
|
688
688
|
background-color: rgba(var(--zw-color-n15), 0.9);
|
|
@@ -691,11 +691,11 @@
|
|
|
691
691
|
color: rgb(var(--zw-color-n70));
|
|
692
692
|
z-index: 999999;
|
|
693
693
|
text-align: left;
|
|
694
|
-
position:
|
|
695
|
-
--zw-toolbar-offset-y: calc(var(--
|
|
694
|
+
position: fixed;
|
|
695
|
+
--zw-toolbar-offset-y: calc(var(--c6eda43c) * 1px)
|
|
696
696
|
}
|
|
697
|
-
.zw-toolbar[data-v-
|
|
698
|
-
.zw-toolbar[data-v-
|
|
697
|
+
.zw-toolbar[data-v-d3e5d777]::before,
|
|
698
|
+
.zw-toolbar[data-v-d3e5d777]::after {
|
|
699
699
|
content: "";
|
|
700
700
|
display: block;
|
|
701
701
|
width: 100%;
|
|
@@ -703,21 +703,21 @@
|
|
|
703
703
|
position: absolute;
|
|
704
704
|
--zw-toolbar-safe-zone: calc(-1 * var(--zw-toolbar-offset-y));
|
|
705
705
|
}
|
|
706
|
-
.zw-toolbar[data-v-
|
|
706
|
+
.zw-toolbar[data-v-d3e5d777]::before {
|
|
707
707
|
top: var(--zw-toolbar-safe-zone);
|
|
708
708
|
}
|
|
709
|
-
.zw-toolbar[data-v-
|
|
709
|
+
.zw-toolbar[data-v-d3e5d777]::after {
|
|
710
710
|
bottom: var(--zw-toolbar-safe-zone);
|
|
711
711
|
}
|
|
712
|
-
.zw-toolbar--enter-active[data-v-
|
|
713
|
-
.zw-toolbar--leave-active[data-v-
|
|
712
|
+
.zw-toolbar--enter-active[data-v-d3e5d777],
|
|
713
|
+
.zw-toolbar--leave-active[data-v-d3e5d777] {
|
|
714
714
|
transition: opacity 150ms ease-out;
|
|
715
715
|
}
|
|
716
|
-
.zw-toolbar--leave-active[data-v-
|
|
716
|
+
.zw-toolbar--leave-active[data-v-d3e5d777] {
|
|
717
717
|
transition: opacity 0s ease-in;
|
|
718
718
|
}
|
|
719
|
-
.zw-toolbar--enter-from[data-v-
|
|
720
|
-
.zw-toolbar--leave-to[data-v-
|
|
719
|
+
.zw-toolbar--enter-from[data-v-d3e5d777],
|
|
720
|
+
.zw-toolbar--leave-to[data-v-d3e5d777] {
|
|
721
721
|
opacity: 0;
|
|
722
722
|
}
|
|
723
723
|
.zw-wysiwyg {
|