@tiptap/vue-2 3.0.1 → 3.0.2-beta.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/menus/index.d.cts
CHANGED
|
@@ -49,7 +49,10 @@ interface BubbleMenuPluginProps {
|
|
|
49
49
|
to: number;
|
|
50
50
|
}) => boolean) | null;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* The options for the bubble menu. Those are passed to Floating UI and include options for the placement, offset, flip, shift, arrow, size, autoPlacement,
|
|
53
|
+
* hide, and inline middlewares.
|
|
54
|
+
* @default {}
|
|
55
|
+
* @see https://floating-ui.com/docs/computePosition#options
|
|
53
56
|
*/
|
|
54
57
|
options?: {
|
|
55
58
|
strategy?: 'absolute' | 'fixed';
|
|
@@ -108,7 +111,10 @@ interface FloatingMenuPluginProps {
|
|
|
108
111
|
to: number;
|
|
109
112
|
}) => boolean) | null;
|
|
110
113
|
/**
|
|
111
|
-
*
|
|
114
|
+
* The options for the floating menu. Those are passed to Floating UI and include options for the placement, offset, flip, shift, arrow, size, autoPlacement,
|
|
115
|
+
* hide, and inline middlewares.
|
|
116
|
+
* @default {}
|
|
117
|
+
* @see https://floating-ui.com/docs/computePosition#options
|
|
112
118
|
*/
|
|
113
119
|
options?: {
|
|
114
120
|
strategy?: 'absolute' | 'fixed';
|
package/dist/menus/index.d.ts
CHANGED
|
@@ -49,7 +49,10 @@ interface BubbleMenuPluginProps {
|
|
|
49
49
|
to: number;
|
|
50
50
|
}) => boolean) | null;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* The options for the bubble menu. Those are passed to Floating UI and include options for the placement, offset, flip, shift, arrow, size, autoPlacement,
|
|
53
|
+
* hide, and inline middlewares.
|
|
54
|
+
* @default {}
|
|
55
|
+
* @see https://floating-ui.com/docs/computePosition#options
|
|
53
56
|
*/
|
|
54
57
|
options?: {
|
|
55
58
|
strategy?: 'absolute' | 'fixed';
|
|
@@ -108,7 +111,10 @@ interface FloatingMenuPluginProps {
|
|
|
108
111
|
to: number;
|
|
109
112
|
}) => boolean) | null;
|
|
110
113
|
/**
|
|
111
|
-
*
|
|
114
|
+
* The options for the floating menu. Those are passed to Floating UI and include options for the placement, offset, flip, shift, arrow, size, autoPlacement,
|
|
115
|
+
* hide, and inline middlewares.
|
|
116
|
+
* @default {}
|
|
117
|
+
* @see https://floating-ui.com/docs/computePosition#options
|
|
112
118
|
*/
|
|
113
119
|
options?: {
|
|
114
120
|
strategy?: 'absolute' | 'fixed';
|
package/dist/menus/index.js
CHANGED