@versa_ai/vmml-editor 1.0.37 → 1.0.38
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/.turbo/turbo-build.log +8 -8
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/EditorCanvas.tsx +0 -1
- package/src/index.tsx +3 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @versa_ai/vmml-editor@1.0.
|
|
2
|
+
> @versa_ai/vmml-editor@1.0.38 build D:\code\work\vmml-player\packages\editor
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
|
@@ -124,12 +124,12 @@ More info and automated migrator: https://sass-lang.com/d/slash-div[0m [1m[35
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
[34mDTS[39m Build start
|
|
127
|
-
[
|
|
128
|
-
[
|
|
129
|
-
[
|
|
130
|
-
[
|
|
131
|
-
[
|
|
132
|
-
[
|
|
133
|
-
[32mDTS[39m ⚡️ Build success in
|
|
127
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m115.26 KB[39m
|
|
128
|
+
[32mESM[39m [1mdist\index.mjs.map [22m[32m222.82 KB[39m
|
|
129
|
+
[32mESM[39m ⚡️ Build success in 885ms
|
|
130
|
+
[32mCJS[39m [1mdist\index.js [22m[32m116.86 KB[39m
|
|
131
|
+
[32mCJS[39m [1mdist\index.js.map [22m[32m223.11 KB[39m
|
|
132
|
+
[32mCJS[39m ⚡️ Build success in 886ms
|
|
133
|
+
[32mDTS[39m ⚡️ Build success in 1577ms
|
|
134
134
|
[32mDTS[39m [1mdist\index.d.ts [22m[32m158.00 B[39m
|
|
135
135
|
[32mDTS[39m [1mdist\index.d.mts [22m[32m158.00 B[39m
|
package/dist/index.js
CHANGED
|
@@ -1055,7 +1055,6 @@ var EditorCanvas = react.forwardRef(
|
|
|
1055
1055
|
if (fc) {
|
|
1056
1056
|
const ns = Math.floor((f ?? frame) / 30 * 1e6);
|
|
1057
1057
|
const objects = fc.getObjects();
|
|
1058
|
-
console.log(objects, "checkObjectInPoint>>>objects>>>>>>>>>>>", ns, f, frame);
|
|
1059
1058
|
objects.forEach((item) => {
|
|
1060
1059
|
var _a, _b, _c;
|
|
1061
1060
|
if (((_a = item == null ? void 0 : item.clipData) == null ? void 0 : _a.type) === "\u6587\u5B57") {
|
|
@@ -2789,8 +2788,9 @@ var EditorFn = ({
|
|
|
2789
2788
|
if (!playing) needPlay.current = false;
|
|
2790
2789
|
const currentFrame = checkFrame ?? (((_c = player == null ? void 0 : player.getCurrentFrame) == null ? void 0 : _c.call(player)) ?? frame ?? pauseFrame);
|
|
2791
2790
|
setFrame(currentFrame);
|
|
2792
|
-
const convertedVmml =
|
|
2793
|
-
const isSame = JSON.stringify(convertedVmml)
|
|
2791
|
+
const convertedVmml = v;
|
|
2792
|
+
const isSame = JSON.stringify(convertedVmml) == JSON.stringify(vmmlState);
|
|
2793
|
+
console.log(isSame, "VMML\u662F\u5426\u76F8\u540C", convertedVmml, vmmlState);
|
|
2794
2794
|
if (!isSame) {
|
|
2795
2795
|
(_e = (_d = canvasCurrent == null ? void 0 : canvasCurrent.getCanvasCtx()) == null ? void 0 : _d.clear) == null ? void 0 : _e.call(_d);
|
|
2796
2796
|
setVmmlState(convertedVmml);
|