mce 0.15.36 → 0.15.37
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 +2 -20
- package/dist/index.css +27 -27
- package/dist/index.js +343 -320
- package/package.json +1 -1
|
@@ -1,27 +1,9 @@
|
|
|
1
1
|
import type { TransformValue } from './shared/TransformControls.vue';
|
|
2
|
-
declare var __VLS_14: {
|
|
3
|
-
box: {
|
|
4
|
-
left: number;
|
|
5
|
-
top: number;
|
|
6
|
-
width: number;
|
|
7
|
-
height: number;
|
|
8
|
-
rotate: number;
|
|
9
|
-
borderRadius: number;
|
|
10
|
-
};
|
|
11
|
-
}, __VLS_16: {
|
|
12
|
-
transform: {
|
|
13
|
-
left: number;
|
|
14
|
-
top: number;
|
|
15
|
-
width: number;
|
|
16
|
-
height: number;
|
|
17
|
-
rotate: number;
|
|
18
|
-
borderRadius: number;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
2
|
+
declare var __VLS_14: {}, __VLS_21: {};
|
|
21
3
|
type __VLS_Slots = {} & {
|
|
22
4
|
transform?: (props: typeof __VLS_14) => any;
|
|
23
5
|
} & {
|
|
24
|
-
default?: (props: typeof
|
|
6
|
+
default?: (props: typeof __VLS_21) => any;
|
|
25
7
|
};
|
|
26
8
|
declare const __VLS_base: import("vue").DefineComponent<{}, {
|
|
27
9
|
transformControls: Readonly<import("vue").ShallowRef<({
|
package/dist/index.css
CHANGED
|
@@ -711,6 +711,33 @@
|
|
|
711
711
|
.mce-transform-controls--hide-ui .mce-transform-controls__rotator,
|
|
712
712
|
.mce-transform-controls--hide-ui .mce-transform-controls__tip {
|
|
713
713
|
visibility: hidden;
|
|
714
|
+
}.mce-cropper {
|
|
715
|
+
pointer-events: auto;
|
|
716
|
+
position: absolute;
|
|
717
|
+
left: 0;
|
|
718
|
+
top: 0;
|
|
719
|
+
width: 100%;
|
|
720
|
+
height: 100%;
|
|
721
|
+
}
|
|
722
|
+
.mce-cropper__source {
|
|
723
|
+
position: absolute;
|
|
724
|
+
width: 100%;
|
|
725
|
+
height: 100%;
|
|
726
|
+
transform-origin: top left;
|
|
727
|
+
}
|
|
728
|
+
.mce-cropper__source canvas {
|
|
729
|
+
position: absolute;
|
|
730
|
+
width: 100%;
|
|
731
|
+
height: 100%;
|
|
732
|
+
}
|
|
733
|
+
.mce-cropper__transform {
|
|
734
|
+
position: absolute;
|
|
735
|
+
color: rgba(var(--mce-theme-primary), 1);
|
|
736
|
+
opacity: 0.5;
|
|
737
|
+
}
|
|
738
|
+
.mce-cropper__transform_rect {
|
|
739
|
+
width: 100%;
|
|
740
|
+
height: 100%;
|
|
714
741
|
}.mce-selection {
|
|
715
742
|
position: absolute;
|
|
716
743
|
left: 0;
|
|
@@ -1384,33 +1411,6 @@
|
|
|
1384
1411
|
width: 100%;
|
|
1385
1412
|
height: 100%;
|
|
1386
1413
|
pointer-events: none;
|
|
1387
|
-
}.mce-cropper {
|
|
1388
|
-
pointer-events: auto;
|
|
1389
|
-
position: absolute;
|
|
1390
|
-
left: 0;
|
|
1391
|
-
top: 0;
|
|
1392
|
-
width: 100%;
|
|
1393
|
-
height: 100%;
|
|
1394
|
-
}
|
|
1395
|
-
.mce-cropper__source {
|
|
1396
|
-
position: absolute;
|
|
1397
|
-
width: 100%;
|
|
1398
|
-
height: 100%;
|
|
1399
|
-
transform-origin: top left;
|
|
1400
|
-
}
|
|
1401
|
-
.mce-cropper__source canvas {
|
|
1402
|
-
position: absolute;
|
|
1403
|
-
width: 100%;
|
|
1404
|
-
height: 100%;
|
|
1405
|
-
}
|
|
1406
|
-
.mce-cropper__transform {
|
|
1407
|
-
position: absolute;
|
|
1408
|
-
color: rgba(var(--mce-theme-primary), 1);
|
|
1409
|
-
opacity: 0.5;
|
|
1410
|
-
}
|
|
1411
|
-
.mce-cropper__transform_rect {
|
|
1412
|
-
width: 100%;
|
|
1413
|
-
height: 100%;
|
|
1414
1414
|
}.mce-dialog > * {
|
|
1415
1415
|
box-shadow: var(--mce-shadow);
|
|
1416
1416
|
}
|