sense-react-timeline-editor 1.1.2 → 1.1.3
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.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -2
package/dist/index.esm.js
CHANGED
|
@@ -462,7 +462,7 @@ var TimelineEngine = /*#__PURE__*/function (_Emitter) {
|
|
|
462
462
|
}, {
|
|
463
463
|
key: "data",
|
|
464
464
|
set: function set(data) {
|
|
465
|
-
if (this.isPlaying) this.pause();
|
|
465
|
+
// if (this.isPlaying) this.pause();
|
|
466
466
|
this._dealData(data);
|
|
467
467
|
this._dealClear();
|
|
468
468
|
this._dealEnter(this._currentTime);
|
package/dist/index.js
CHANGED
|
@@ -471,7 +471,7 @@ var TimelineEngine = /*#__PURE__*/function (_Emitter) {
|
|
|
471
471
|
}, {
|
|
472
472
|
key: "data",
|
|
473
473
|
set: function set(data) {
|
|
474
|
-
if (this.isPlaying) this.pause();
|
|
474
|
+
// if (this.isPlaying) this.pause();
|
|
475
475
|
this._dealData(data);
|
|
476
476
|
this._dealClear();
|
|
477
477
|
this._dealEnter(this._currentTime);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sense-react-timeline-editor",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"author": "xzdarcy",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
"docs:deploy": "",
|
|
25
25
|
"build": "father-build",
|
|
26
26
|
"deploy": "npm run docs:build && npm run docs:deploy",
|
|
27
|
-
"prepublishOnly": "npm run build"
|
|
27
|
+
"prepublishOnly": "npm run build",
|
|
28
|
+
"release": "standard-version",
|
|
29
|
+
"release:minor": "standard-version --release-as minor",
|
|
30
|
+
"release:major": "standard-version --release-as major"
|
|
28
31
|
},
|
|
29
32
|
"files": [
|
|
30
33
|
"dist"
|
|
@@ -63,6 +66,7 @@
|
|
|
63
66
|
"prettier": "^2.2.1",
|
|
64
67
|
"react": "^17.0.0",
|
|
65
68
|
"react-dom": "^17.0.0",
|
|
69
|
+
"standard-version": "^9.5.0",
|
|
66
70
|
"typescript": "^4.8.4",
|
|
67
71
|
"yorkie": "^2.0.0"
|
|
68
72
|
}
|