meixioacomponent 0.3.66 → 0.3.67
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.
|
@@ -117871,7 +117871,7 @@ class UseResize_UseResize {
|
|
|
117871
117871
|
Object(defineProperty["a" /* default */])(this, "onResizeing", e => {
|
|
117872
117872
|
let type = this.type;
|
|
117873
117873
|
|
|
117874
|
-
if (type ==
|
|
117874
|
+
if (type == 'width') {
|
|
117875
117875
|
const stw = this.x - e.clientX;
|
|
117876
117876
|
this.sub = this.value + stw;
|
|
117877
117877
|
this.moveing(this.sub);
|
|
@@ -117912,11 +117912,15 @@ class UseResize_UseResize {
|
|
|
117912
117912
|
startResize(e) {
|
|
117913
117913
|
this.setListen();
|
|
117914
117914
|
|
|
117915
|
-
if (this.type ==
|
|
117915
|
+
if (this.type == 'width') {
|
|
117916
117916
|
this.x = e.clientX;
|
|
117917
117917
|
}
|
|
117918
117918
|
}
|
|
117919
117919
|
|
|
117920
|
+
initValue(value) {
|
|
117921
|
+
this.value = value;
|
|
117922
|
+
}
|
|
117923
|
+
|
|
117920
117924
|
}
|
|
117921
117925
|
|
|
117922
117926
|
/* harmony default export */ var use_UseResize = (UseResize_UseResize);
|
|
@@ -117880,7 +117880,7 @@ class UseResize_UseResize {
|
|
|
117880
117880
|
Object(defineProperty["a" /* default */])(this, "onResizeing", e => {
|
|
117881
117881
|
let type = this.type;
|
|
117882
117882
|
|
|
117883
|
-
if (type ==
|
|
117883
|
+
if (type == 'width') {
|
|
117884
117884
|
const stw = this.x - e.clientX;
|
|
117885
117885
|
this.sub = this.value + stw;
|
|
117886
117886
|
this.moveing(this.sub);
|
|
@@ -117921,11 +117921,15 @@ class UseResize_UseResize {
|
|
|
117921
117921
|
startResize(e) {
|
|
117922
117922
|
this.setListen();
|
|
117923
117923
|
|
|
117924
|
-
if (this.type ==
|
|
117924
|
+
if (this.type == 'width') {
|
|
117925
117925
|
this.x = e.clientX;
|
|
117926
117926
|
}
|
|
117927
117927
|
}
|
|
117928
117928
|
|
|
117929
|
+
initValue(value) {
|
|
117930
|
+
this.value = value;
|
|
117931
|
+
}
|
|
117932
|
+
|
|
117929
117933
|
}
|
|
117930
117934
|
|
|
117931
117935
|
/* harmony default export */ var use_UseResize = (UseResize_UseResize);
|