@leafer/miniapp 1.11.0 → 1.11.1
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/miniapp.module.js
CHANGED
|
@@ -6855,7 +6855,7 @@ class LeafLevelList {
|
|
|
6855
6855
|
}
|
|
6856
6856
|
}
|
|
6857
6857
|
|
|
6858
|
-
const version = "1.11.
|
|
6858
|
+
const version = "1.11.1";
|
|
6859
6859
|
|
|
6860
6860
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
6861
6861
|
get allowBackgroundColor() {
|
|
@@ -16519,9 +16519,10 @@ function arrowType(defaultValue) {
|
|
|
16519
16519
|
set(value) {
|
|
16520
16520
|
if (this.__setAttr(key, value)) {
|
|
16521
16521
|
const data = this.__;
|
|
16522
|
-
doStrokeType(this);
|
|
16523
16522
|
const useArrow = data.startArrow !== "none" || data.endArrow !== "none";
|
|
16524
|
-
if (
|
|
16523
|
+
if (data.__useArrow !== useArrow) doBoundsType(this);
|
|
16524
|
+
data.__useArrow = useArrow;
|
|
16525
|
+
doStrokeType(this);
|
|
16525
16526
|
}
|
|
16526
16527
|
}
|
|
16527
16528
|
}));
|