@zipify/wysiwyg 1.0.0-dev.88 → 1.0.0-dev.89
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/wysiwyg.mjs
CHANGED
|
@@ -18985,6 +18985,10 @@ function useModalToggler({ onBeforeOpened, onClosed, wrapperRef, modalRef } = {}
|
|
|
18985
18985
|
options: {
|
|
18986
18986
|
padding: 16
|
|
18987
18987
|
}
|
|
18988
|
+
},
|
|
18989
|
+
{
|
|
18990
|
+
name: "flip",
|
|
18991
|
+
enabled: false
|
|
18988
18992
|
}
|
|
18989
18993
|
]
|
|
18990
18994
|
});
|
|
@@ -22830,6 +22834,7 @@ function useToolbar({ wrapperRef, offsets, isActiveRef, placementRef }) {
|
|
|
22830
22834
|
function mount(element) {
|
|
22831
22835
|
popper2 = createPopper(wrapperEl.value, element, {
|
|
22832
22836
|
placement: placementRef.value,
|
|
22837
|
+
strategy: "fixed",
|
|
22833
22838
|
modifiers: [
|
|
22834
22839
|
{
|
|
22835
22840
|
name: "offset",
|
|
@@ -22,12 +22,15 @@ export function useModalToggler({ onBeforeOpened, onClosed, wrapperRef, modalRef
|
|
|
22
22
|
offset: [0, 4]
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
|
-
|
|
26
25
|
{
|
|
27
26
|
name: 'preventOverflow',
|
|
28
27
|
options: {
|
|
29
28
|
padding: 16
|
|
30
29
|
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'flip',
|
|
33
|
+
enabled: false
|
|
31
34
|
}
|
|
32
35
|
]
|
|
33
36
|
});
|