mce 0.17.9 → 0.17.12
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/components/Selection.vue.d.ts +8 -8
- package/dist/components/shared/Ruler.vue.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +16184 -17881
- package/dist/plugins/ruler.d.ts +1 -0
- package/package.json +9 -9
|
@@ -166,11 +166,11 @@ declare const __VLS_base: import("vue").DefineComponent<{}, {
|
|
|
166
166
|
onStart?: ((context: Mce.TransformContext) => any) | undefined;
|
|
167
167
|
onEnd?: ((context: Mce.TransformContext) => any) | undefined;
|
|
168
168
|
"onUpdate:modelValue"?: ((value: Partial<Mce.TransformValue> | undefined) => any) | undefined;
|
|
169
|
-
}>, "transforming" | "start" | "activeHandle" | ("offset" | "scale" | "threshold" | "ui" | "movable" | "rotatable" | "resizable" | "tag" | "resizeStrategy" | "lockAspectRatioStrategy" | "handleShape" | "handles")> &
|
|
169
|
+
}>, "transforming" | "start" | "activeHandle" | ("offset" | "scale" | "threshold" | "ui" | "movable" | "rotatable" | "resizable" | "tag" | "resizeStrategy" | "lockAspectRatioStrategy" | "handleShape" | "handles")> & {
|
|
170
170
|
start: (event?: MouseEvent, index?: number) => boolean;
|
|
171
|
-
activeHandle:
|
|
172
|
-
transforming:
|
|
173
|
-
}
|
|
171
|
+
activeHandle: ("move" | "resize-b" | "resize-r" | "resize-l" | "resize-t" | "resize-br" | "resize-tr" | "resize-tl" | "resize-bl" | "rotate-br" | "rotate-tr" | "rotate-tl" | "rotate-bl" | "round-br" | "round-tr" | "round-tl" | "round-bl") | undefined;
|
|
172
|
+
transforming: boolean;
|
|
173
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
174
174
|
$slots: {
|
|
175
175
|
default?: (props: {
|
|
176
176
|
value: {
|
|
@@ -351,11 +351,11 @@ declare const __VLS_base: import("vue").DefineComponent<{}, {
|
|
|
351
351
|
onStart?: ((context: Mce.TransformContext) => any) | undefined;
|
|
352
352
|
onEnd?: ((context: Mce.TransformContext) => any) | undefined;
|
|
353
353
|
"onUpdate:modelValue"?: ((value: Partial<Mce.TransformValue> | undefined) => any) | undefined;
|
|
354
|
-
}>, "transforming" | "start" | "activeHandle" | ("offset" | "scale" | "threshold" | "ui" | "movable" | "rotatable" | "resizable" | "tag" | "resizeStrategy" | "lockAspectRatioStrategy" | "handleShape" | "handles")> &
|
|
354
|
+
}>, "transforming" | "start" | "activeHandle" | ("offset" | "scale" | "threshold" | "ui" | "movable" | "rotatable" | "resizable" | "tag" | "resizeStrategy" | "lockAspectRatioStrategy" | "handleShape" | "handles")> & {
|
|
355
355
|
start: (event?: MouseEvent, index?: number) => boolean;
|
|
356
|
-
activeHandle:
|
|
357
|
-
transforming:
|
|
358
|
-
}
|
|
356
|
+
activeHandle: ("move" | "resize-b" | "resize-r" | "resize-l" | "resize-t" | "resize-br" | "resize-tr" | "resize-tl" | "resize-bl" | "rotate-br" | "rotate-tr" | "rotate-tl" | "rotate-bl" | "round-br" | "round-tr" | "round-tl" | "round-bl") | undefined;
|
|
357
|
+
transforming: boolean;
|
|
358
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
359
359
|
$slots: {
|
|
360
360
|
default?: (props: {
|
|
361
361
|
value: {
|
package/dist/index.css
CHANGED