magic-canvas-yonava 1.0.4 → 1.0.6
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/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/package.json +4 -4
- package/src/index.ts +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import MagicCanvas from "./MagicCanvas.vue";
|
|
2
2
|
import { App } from "vue";
|
|
3
|
-
export * from "./types";
|
|
4
|
-
export * from "./useMagicCanvas";
|
|
5
|
-
export * from "./coordinates";
|
|
6
|
-
export { getDevicePixelRatio } from "./camera/utils";
|
|
3
|
+
export * from "./types.js";
|
|
4
|
+
export * from "./useMagicCanvas.js";
|
|
5
|
+
export * from "./coordinates/index.js";
|
|
6
|
+
export { getDevicePixelRatio } from "./camera/utils.js";
|
|
7
7
|
export { MagicCanvas };
|
|
8
8
|
declare module "vue" {
|
|
9
9
|
interface GlobalComponents {
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import MagicCanvas from "./MagicCanvas.vue";
|
|
2
|
-
export * from "./types";
|
|
3
|
-
export * from "./useMagicCanvas";
|
|
4
|
-
export * from "./coordinates";
|
|
5
|
-
export { getDevicePixelRatio } from "./camera/utils";
|
|
2
|
+
export * from "./types.js";
|
|
3
|
+
export * from "./useMagicCanvas.js";
|
|
4
|
+
export * from "./coordinates/index.js";
|
|
5
|
+
export { getDevicePixelRatio } from "./camera/utils.js";
|
|
6
6
|
export { MagicCanvas };
|
|
7
7
|
export default {
|
|
8
8
|
install(app) {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "magic-canvas-yonava",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "dist/index.
|
|
5
|
-
"module": "dist/index.
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"import": "./dist/index.
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
10
|
"require": "./dist/index.cjs.js",
|
|
11
11
|
"types": "./dist/index.d.ts"
|
|
12
12
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import MagicCanvas from "./MagicCanvas.vue";
|
|
2
2
|
import { App } from "vue";
|
|
3
3
|
|
|
4
|
-
export * from "./types";
|
|
5
|
-
export * from "./useMagicCanvas";
|
|
6
|
-
export * from "./coordinates";
|
|
7
|
-
export { getDevicePixelRatio } from "./camera/utils";
|
|
4
|
+
export * from "./types.js";
|
|
5
|
+
export * from "./useMagicCanvas.js";
|
|
6
|
+
export * from "./coordinates/index.js";
|
|
7
|
+
export { getDevicePixelRatio } from "./camera/utils.js";
|
|
8
8
|
export { MagicCanvas };
|
|
9
9
|
declare module "vue" {
|
|
10
10
|
export interface GlobalComponents {
|