mce 0.24.0 โ 0.24.2
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/README.md +6 -11
- package/dist/components/shared/Cropper.vue.d.ts +2 -2
- package/dist/index.css +2 -1913
- package/dist/index.js +16201 -20573
- package/dist/mixins/snapper.d.ts +1 -0
- package/dist/plugins/smartGuides.d.ts +3 -1
- package/dist/utils/console.d.ts +13 -2
- package/dist/utils/smartGuides-geometry.d.ts +36 -0
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -20,6 +20,12 @@
|
|
|
20
20
|
|
|
21
21
|
<p align="center">A headless infinite canvas editor framework built on WebGL rendering, supports exporting to image, video, and PPT. Only the ESM.</p>
|
|
22
22
|
|
|
23
|
+
<p align="center">
|
|
24
|
+
<a href="https://qq15725.github.io/mce/">๐ Documentation</a>
|
|
25
|
+
ยท
|
|
26
|
+
<a href="https://codesandbox.io/p/github/qq15725/mce/main">๐ฎ Try in CodeSandbox</a>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
23
29
|
## ๐ฆ Install
|
|
24
30
|
|
|
25
31
|
```shell
|
|
@@ -141,14 +147,3 @@ slot sub component
|
|
|
141
147
|
</template>
|
|
142
148
|
```
|
|
143
149
|
|
|
144
|
-
## Docs
|
|
145
|
-
|
|
146
|
-
- [Options](docs/mce/namespaces/Mce/interfaces/Options.md)
|
|
147
|
-
- [Config](docs/mce/namespaces/Mce/interfaces/Config.md)
|
|
148
|
-
- [Commands](docs/mce/namespaces/Mce/interfaces/Commands.md)
|
|
149
|
-
- [Events](docs/mce/namespaces/Mce/interfaces/Events.md)
|
|
150
|
-
- [Slots](docs/mce/namespaces/Mce/interfaces/Slots.md)
|
|
151
|
-
|
|
152
|
-
## Related
|
|
153
|
-
|
|
154
|
-
- [CodeSandbox Playground](https://codesandbox.io/p/devbox/thirsty-dawn-t2h69m)
|
|
@@ -44,7 +44,7 @@ type __VLS_ModelProps = {
|
|
|
44
44
|
'view': View;
|
|
45
45
|
};
|
|
46
46
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
47
|
-
declare var
|
|
47
|
+
declare var __VLS_10: {
|
|
48
48
|
scale: number;
|
|
49
49
|
setScale: typeof setScale;
|
|
50
50
|
ok: typeof ok;
|
|
@@ -52,7 +52,7 @@ declare var __VLS_7: {
|
|
|
52
52
|
setAspectRatio: typeof setAspectRatio;
|
|
53
53
|
};
|
|
54
54
|
type __VLS_Slots = {} & {
|
|
55
|
-
default?: (props: typeof
|
|
55
|
+
default?: (props: typeof __VLS_10) => any;
|
|
56
56
|
};
|
|
57
57
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
58
58
|
start: () => any;
|