leafer-ui 1.5.0 → 1.5.2
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/README.md +4 -4
- package/dist/web.cjs +33 -14
- package/dist/web.cjs.map +1 -1
- package/dist/web.esm.js +33 -14
- package/dist/web.esm.js.map +1 -1
- package/dist/web.esm.min.js +1 -1
- package/dist/web.esm.min.js.map +1 -1
- package/dist/web.js +111 -59
- package/dist/web.js.map +1 -1
- package/dist/web.min.cjs +1 -1
- package/dist/web.min.cjs.map +1 -1
- package/dist/web.min.js +1 -1
- package/dist/web.min.js.map +1 -1
- package/dist/web.module.js +111 -60
- package/dist/web.module.js.map +1 -1
- package/dist/web.module.min.js +1 -1
- package/dist/web.module.min.js.map +1 -1
- package/package.json +12 -12
package/dist/web.js
CHANGED
|
@@ -119,8 +119,9 @@ var LeaferUI = (function (exports) {
|
|
|
119
119
|
if (!scaleData)
|
|
120
120
|
scaleData = {};
|
|
121
121
|
if (size) {
|
|
122
|
-
|
|
123
|
-
scaleData.
|
|
122
|
+
const scaleX = (typeof size === 'number' ? size : size.width || 0) / originSize.width, scaleY = (typeof size === 'number' ? size : size.height || 0) / originSize.height;
|
|
123
|
+
scaleData.scaleX = scaleX || scaleY || 1;
|
|
124
|
+
scaleData.scaleY = scaleY || scaleX || 1;
|
|
124
125
|
}
|
|
125
126
|
else if (scale)
|
|
126
127
|
MathHelper.assignScale(scaleData, scale);
|
|
@@ -1693,6 +1694,9 @@ var LeaferUI = (function (exports) {
|
|
|
1693
1694
|
function isNull(value) {
|
|
1694
1695
|
return value === undefined || value === null;
|
|
1695
1696
|
}
|
|
1697
|
+
function isEmptyData(value) {
|
|
1698
|
+
return JSON.stringify(value) === '{}';
|
|
1699
|
+
}
|
|
1696
1700
|
|
|
1697
1701
|
/******************************************************************************
|
|
1698
1702
|
Copyright (c) Microsoft Corporation.
|
|
@@ -2032,13 +2036,11 @@ var LeaferUI = (function (exports) {
|
|
|
2032
2036
|
this.worldTransform = {};
|
|
2033
2037
|
if (!config)
|
|
2034
2038
|
config = minSize;
|
|
2035
|
-
if (!config.pixelRatio)
|
|
2036
|
-
config.pixelRatio = Platform.devicePixelRatio;
|
|
2037
2039
|
this.manager = manager;
|
|
2038
2040
|
this.innerId = IncrementId.create(IncrementId.CNAVAS);
|
|
2039
2041
|
const { width, height, pixelRatio } = config;
|
|
2040
2042
|
this.autoLayout = !width || !height;
|
|
2041
|
-
this.size.pixelRatio = pixelRatio;
|
|
2043
|
+
this.size.pixelRatio = pixelRatio | Platform.devicePixelRatio;
|
|
2042
2044
|
this.config = config;
|
|
2043
2045
|
this.init();
|
|
2044
2046
|
}
|
|
@@ -2235,7 +2237,7 @@ var LeaferUI = (function (exports) {
|
|
|
2235
2237
|
tempBounds$1.ceil();
|
|
2236
2238
|
}
|
|
2237
2239
|
isSameSize(size) {
|
|
2238
|
-
return this.width === size.width && this.height === size.height && this.pixelRatio === size.pixelRatio;
|
|
2240
|
+
return this.width === size.width && this.height === size.height && (!size.pixelRatio || this.pixelRatio === size.pixelRatio);
|
|
2239
2241
|
}
|
|
2240
2242
|
getSameCanvas(useSameWorldTransform, useSameSmooth) {
|
|
2241
2243
|
const canvas = this.manager ? this.manager.get(this.size) : Creator.canvas(Object.assign({}, this.size));
|
|
@@ -2350,7 +2352,7 @@ var LeaferUI = (function (exports) {
|
|
|
2350
2352
|
const { sin: sin$3, cos: cos$3, atan2: atan2$1, ceil: ceil$1, abs: abs$3, PI: PI$2, sqrt: sqrt$1, pow } = Math;
|
|
2351
2353
|
const { setPoint: setPoint$1, addPoint: addPoint$1 } = TwoPointBoundsHelper;
|
|
2352
2354
|
const { set, toNumberPoints } = PointHelper;
|
|
2353
|
-
const { M: M$5, L: L$6, C: C$
|
|
2355
|
+
const { M: M$5, L: L$6, C: C$4, Q: Q$4, Z: Z$5 } = PathCommandMap;
|
|
2354
2356
|
const tempPoint$2 = {};
|
|
2355
2357
|
const BezierHelper = {
|
|
2356
2358
|
points(data, originPoints, curve, close) {
|
|
@@ -2385,7 +2387,7 @@ var LeaferUI = (function (exports) {
|
|
|
2385
2387
|
data.push(Q$4, c1X, c1Y, bX, bY);
|
|
2386
2388
|
}
|
|
2387
2389
|
else {
|
|
2388
|
-
data.push(C$
|
|
2390
|
+
data.push(C$4, c2X, c2Y, c1X, c1Y, bX, bY);
|
|
2389
2391
|
}
|
|
2390
2392
|
c2X = bX + cb * cX;
|
|
2391
2393
|
c2Y = bY + cb * cY;
|
|
@@ -2490,7 +2492,7 @@ var LeaferUI = (function (exports) {
|
|
|
2490
2492
|
x2 = cx + x + control * (rotationCos * radiusX * endSin + rotationSin * radiusY * endCos);
|
|
2491
2493
|
y2 = cy + y + control * (rotationSin * radiusX * endSin - rotationCos * radiusY * endCos);
|
|
2492
2494
|
if (data)
|
|
2493
|
-
data.push(C$
|
|
2495
|
+
data.push(C$4, x1, y1, x2, y2, cx + x, cy + y);
|
|
2494
2496
|
if (setPointBounds)
|
|
2495
2497
|
toTwoPointBounds$1(cx + startX, cy + startY, x1, y1, x2, y2, cx + x, cy + y, setPointBounds, true);
|
|
2496
2498
|
startX = x;
|
|
@@ -2504,7 +2506,7 @@ var LeaferUI = (function (exports) {
|
|
|
2504
2506
|
set(setEndPoint, cx + x, cy + y);
|
|
2505
2507
|
},
|
|
2506
2508
|
quadraticCurveTo(data, fromX, fromY, x1, y1, toX, toY) {
|
|
2507
|
-
data.push(C$
|
|
2509
|
+
data.push(C$4, (fromX + 2 * x1) / 3, (fromY + 2 * y1) / 3, (toX + 2 * x1) / 3, (toY + 2 * y1) / 3, toX, toY);
|
|
2508
2510
|
},
|
|
2509
2511
|
toTwoPointBoundsByQuadraticCurve(fromX, fromY, x1, y1, toX, toY, pointBounds, addMode) {
|
|
2510
2512
|
toTwoPointBounds$1(fromX, fromY, (fromX + 2 * x1) / 3, (fromY + 2 * y1) / 3, (toX + 2 * x1) / 3, (toY + 2 * y1) / 3, toX, toY, pointBounds, addMode);
|
|
@@ -2612,7 +2614,7 @@ var LeaferUI = (function (exports) {
|
|
|
2612
2614
|
}
|
|
2613
2615
|
};
|
|
2614
2616
|
|
|
2615
|
-
const { M: M$4, m, L: L$5, l, H, h, V, v, C: C$
|
|
2617
|
+
const { M: M$4, m, L: L$5, l, H, h, V, v, C: C$3, c, S, s, Q: Q$3, q, T, t, A, a, Z: Z$4, z, N: N$3, D: D$3, X: X$3, G: G$3, F: F$4, O: O$3, P: P$3, U: U$3 } = PathCommandMap;
|
|
2616
2618
|
const { rect: rect$3, roundRect: roundRect$2, arcTo: arcTo$3, arc: arc$3, ellipse: ellipse$4, quadraticCurveTo: quadraticCurveTo$1 } = BezierHelper;
|
|
2617
2619
|
const { ellipticalArc } = EllipseHelper;
|
|
2618
2620
|
const debug$d = Debug.get('PathConvert');
|
|
@@ -2740,14 +2742,14 @@ var LeaferUI = (function (exports) {
|
|
|
2740
2742
|
old[i + 4] += y;
|
|
2741
2743
|
command = S;
|
|
2742
2744
|
case S:
|
|
2743
|
-
smooth = (lastCommand === C$
|
|
2745
|
+
smooth = (lastCommand === C$3) || (lastCommand === S);
|
|
2744
2746
|
x1 = smooth ? (x * 2 - controlX) : old[i + 1];
|
|
2745
2747
|
y1 = smooth ? (y * 2 - controlY) : old[i + 2];
|
|
2746
2748
|
controlX = old[i + 1];
|
|
2747
2749
|
controlY = old[i + 2];
|
|
2748
2750
|
x = old[i + 3];
|
|
2749
2751
|
y = old[i + 4];
|
|
2750
|
-
data.push(C$
|
|
2752
|
+
data.push(C$3, x1, y1, controlX, controlY, x, y);
|
|
2751
2753
|
i += 5;
|
|
2752
2754
|
break;
|
|
2753
2755
|
case c:
|
|
@@ -2757,13 +2759,13 @@ var LeaferUI = (function (exports) {
|
|
|
2757
2759
|
old[i + 4] += y;
|
|
2758
2760
|
old[i + 5] += x;
|
|
2759
2761
|
old[i + 6] += y;
|
|
2760
|
-
command = C$
|
|
2761
|
-
case C$
|
|
2762
|
+
command = C$3;
|
|
2763
|
+
case C$3:
|
|
2762
2764
|
controlX = old[i + 3];
|
|
2763
2765
|
controlY = old[i + 4];
|
|
2764
2766
|
x = old[i + 5];
|
|
2765
2767
|
y = old[i + 6];
|
|
2766
|
-
data.push(C$
|
|
2768
|
+
data.push(C$3, old[i + 1], old[i + 2], controlX, controlY, x, y);
|
|
2767
2769
|
i += 7;
|
|
2768
2770
|
break;
|
|
2769
2771
|
case t:
|
|
@@ -2874,7 +2876,7 @@ var LeaferUI = (function (exports) {
|
|
|
2874
2876
|
data.push(L$5, item.x, item.y);
|
|
2875
2877
|
break;
|
|
2876
2878
|
case 'C':
|
|
2877
|
-
data.push(C$
|
|
2879
|
+
data.push(C$3, item.x1, item.y1, item.x2, item.y2, item.x, item.y);
|
|
2878
2880
|
break;
|
|
2879
2881
|
case 'Q':
|
|
2880
2882
|
data.push(Q$3, item.x1, item.y1, item.x, item.y);
|
|
@@ -2901,7 +2903,7 @@ var LeaferUI = (function (exports) {
|
|
|
2901
2903
|
};
|
|
2902
2904
|
const { current, pushData, copyData } = PathConvert;
|
|
2903
2905
|
|
|
2904
|
-
const { M: M$3, L: L$4, C: C$
|
|
2906
|
+
const { M: M$3, L: L$4, C: C$2, Q: Q$2, Z: Z$3, N: N$2, D: D$2, X: X$2, G: G$2, F: F$3, O: O$2, P: P$2, U: U$2 } = PathCommandMap;
|
|
2905
2907
|
const { getMinDistanceFrom, getRadianFrom } = PointHelper;
|
|
2906
2908
|
const { tan, min, abs: abs$2 } = Math;
|
|
2907
2909
|
const startPoint = {};
|
|
@@ -2916,7 +2918,7 @@ var LeaferUI = (function (exports) {
|
|
|
2916
2918
|
data.push(L$4, x, y);
|
|
2917
2919
|
},
|
|
2918
2920
|
bezierCurveTo(data, x1, y1, x2, y2, x, y) {
|
|
2919
|
-
data.push(C$
|
|
2921
|
+
data.push(C$2, x1, y1, x2, y2, x, y);
|
|
2920
2922
|
},
|
|
2921
2923
|
quadraticCurveTo(data, x1, y1, x, y) {
|
|
2922
2924
|
data.push(Q$2, x1, y1, x, y);
|
|
@@ -3078,7 +3080,7 @@ var LeaferUI = (function (exports) {
|
|
|
3078
3080
|
paint() { }
|
|
3079
3081
|
}
|
|
3080
3082
|
|
|
3081
|
-
const { M: M$2, L: L$3, C: C$
|
|
3083
|
+
const { M: M$2, L: L$3, C: C$1, Q: Q$1, Z: Z$2, N: N$1, D: D$1, X: X$1, G: G$1, F: F$2, O: O$1, P: P$1, U: U$1 } = PathCommandMap;
|
|
3082
3084
|
const debug$c = Debug.get('PathDrawer');
|
|
3083
3085
|
const PathDrawer = {
|
|
3084
3086
|
drawPathByData(drawer, data) {
|
|
@@ -3097,7 +3099,7 @@ var LeaferUI = (function (exports) {
|
|
|
3097
3099
|
drawer.lineTo(data[i + 1], data[i + 2]);
|
|
3098
3100
|
i += 3;
|
|
3099
3101
|
break;
|
|
3100
|
-
case C$
|
|
3102
|
+
case C$1:
|
|
3101
3103
|
drawer.bezierCurveTo(data[i + 1], data[i + 2], data[i + 3], data[i + 4], data[i + 5], data[i + 6]);
|
|
3102
3104
|
i += 7;
|
|
3103
3105
|
break;
|
|
@@ -3149,7 +3151,7 @@ var LeaferUI = (function (exports) {
|
|
|
3149
3151
|
}
|
|
3150
3152
|
};
|
|
3151
3153
|
|
|
3152
|
-
const { M: M$1, L: L$2, C
|
|
3154
|
+
const { M: M$1, L: L$2, C, Q, Z: Z$1, N, D, X, G, F: F$1, O, P, U } = PathCommandMap;
|
|
3153
3155
|
const { toTwoPointBounds, toTwoPointBoundsByQuadraticCurve, arcTo: arcTo$1, arc, ellipse: ellipse$1 } = BezierHelper;
|
|
3154
3156
|
const { addPointBounds, copy: copy$8, addPoint, setPoint, addBounds, toBounds: toBounds$2 } = TwoPointBoundsHelper;
|
|
3155
3157
|
const debug$b = Debug.get('PathBounds');
|
|
@@ -3170,7 +3172,7 @@ var LeaferUI = (function (exports) {
|
|
|
3170
3172
|
while (i < len) {
|
|
3171
3173
|
command = data[i];
|
|
3172
3174
|
if (i === 0) {
|
|
3173
|
-
if (command === Z$1 || command === C
|
|
3175
|
+
if (command === Z$1 || command === C || command === Q) {
|
|
3174
3176
|
setPoint(setPointBounds, x, y);
|
|
3175
3177
|
}
|
|
3176
3178
|
else {
|
|
@@ -3185,7 +3187,7 @@ var LeaferUI = (function (exports) {
|
|
|
3185
3187
|
addPoint(setPointBounds, x, y);
|
|
3186
3188
|
i += 3;
|
|
3187
3189
|
break;
|
|
3188
|
-
case C
|
|
3190
|
+
case C:
|
|
3189
3191
|
toX = data[i + 5];
|
|
3190
3192
|
toY = data[i + 6];
|
|
3191
3193
|
toTwoPointBounds(x, y, data[i + 1], data[i + 2], data[i + 3], data[i + 4], toX, toY, tempPointBounds);
|
|
@@ -3267,12 +3269,12 @@ var LeaferUI = (function (exports) {
|
|
|
3267
3269
|
}
|
|
3268
3270
|
};
|
|
3269
3271
|
|
|
3270
|
-
const { M, L: L$1,
|
|
3272
|
+
const { M, L: L$1, Z } = PathCommandMap;
|
|
3271
3273
|
const { getCenterX, getCenterY } = PointHelper;
|
|
3272
3274
|
const { arcTo } = PathCommandDataHelper;
|
|
3273
3275
|
const PathCorner = {
|
|
3274
3276
|
smooth(data, cornerRadius, _cornerSmoothing) {
|
|
3275
|
-
let command;
|
|
3277
|
+
let command, commandLen;
|
|
3276
3278
|
let i = 0, x = 0, y = 0, startX = 0, startY = 0, secondX = 0, secondY = 0, lastX = 0, lastY = 0;
|
|
3277
3279
|
const len = data.length;
|
|
3278
3280
|
const smooth = [];
|
|
@@ -3309,15 +3311,16 @@ var LeaferUI = (function (exports) {
|
|
|
3309
3311
|
lastX = x;
|
|
3310
3312
|
lastY = y;
|
|
3311
3313
|
break;
|
|
3312
|
-
case C:
|
|
3313
|
-
smooth.push(C, data[i + 1], data[i + 2], data[i + 3], data[i + 4], data[i + 5], data[i + 6]);
|
|
3314
|
-
i += 7;
|
|
3315
|
-
break;
|
|
3316
3314
|
case Z:
|
|
3317
3315
|
arcTo(smooth, startX, startY, secondX, secondY, cornerRadius, lastX, lastY);
|
|
3318
3316
|
smooth.push(Z);
|
|
3319
3317
|
i += 1;
|
|
3320
3318
|
break;
|
|
3319
|
+
default:
|
|
3320
|
+
commandLen = PathNumberCommandLengthMap[command];
|
|
3321
|
+
for (let j = 0; j < commandLen; j++)
|
|
3322
|
+
smooth.push(data[i + j]);
|
|
3323
|
+
i += commandLen;
|
|
3321
3324
|
}
|
|
3322
3325
|
}
|
|
3323
3326
|
if (command !== Z) {
|
|
@@ -4076,33 +4079,45 @@ var LeaferUI = (function (exports) {
|
|
|
4076
4079
|
else if (typeof defaultValue === 'function') {
|
|
4077
4080
|
property.get = function () {
|
|
4078
4081
|
let v = this[computedKey];
|
|
4079
|
-
|
|
4080
|
-
this[computedKey] = v = defaultValue(this.__leaf);
|
|
4081
|
-
return v;
|
|
4082
|
+
return v === undefined ? defaultValue(this.__leaf) : v;
|
|
4082
4083
|
};
|
|
4083
4084
|
}
|
|
4085
|
+
else if (typeof defaultValue === 'object') {
|
|
4086
|
+
const isEmpty = isEmptyData(defaultValue);
|
|
4087
|
+
property.get = function () {
|
|
4088
|
+
let v = this[computedKey];
|
|
4089
|
+
return v === undefined ? this[computedKey] = isEmpty ? {} : DataHelper.clone(defaultValue) : v;
|
|
4090
|
+
};
|
|
4091
|
+
}
|
|
4092
|
+
const isBox = target.isBranchLeaf;
|
|
4084
4093
|
if (key === 'width') {
|
|
4085
4094
|
property.get = function () {
|
|
4086
4095
|
const v = this[computedKey];
|
|
4087
4096
|
if (v === undefined) {
|
|
4088
|
-
const t = this;
|
|
4089
|
-
|
|
4097
|
+
const t = this, naturalWidth = t.__naturalWidth, leaf = t.__leaf;
|
|
4098
|
+
if (!defaultValue || leaf.pathInputed)
|
|
4099
|
+
return leaf.boxBounds.width;
|
|
4100
|
+
if (naturalWidth)
|
|
4101
|
+
return t._height && t.__useNaturalRatio ? t._height * naturalWidth / t.__naturalHeight : naturalWidth;
|
|
4102
|
+
return (isBox && leaf.children.length) ? leaf.boxBounds.width : defaultValue;
|
|
4090
4103
|
}
|
|
4091
|
-
else
|
|
4104
|
+
else
|
|
4092
4105
|
return v;
|
|
4093
|
-
}
|
|
4094
4106
|
};
|
|
4095
4107
|
}
|
|
4096
4108
|
else if (key === 'height') {
|
|
4097
4109
|
property.get = function () {
|
|
4098
4110
|
const v = this[computedKey];
|
|
4099
4111
|
if (v === undefined) {
|
|
4100
|
-
const t = this;
|
|
4101
|
-
|
|
4112
|
+
const t = this, naturalHeight = t.__naturalHeight, leaf = t.__leaf;
|
|
4113
|
+
if (!defaultValue || leaf.pathInputed)
|
|
4114
|
+
return leaf.boxBounds.height;
|
|
4115
|
+
if (naturalHeight)
|
|
4116
|
+
return t._width && t.__useNaturalRatio ? t._width * naturalHeight / t.__naturalWidth : naturalHeight;
|
|
4117
|
+
return (isBox && leaf.children.length) ? leaf.boxBounds.height : defaultValue;
|
|
4102
4118
|
}
|
|
4103
|
-
else
|
|
4119
|
+
else
|
|
4104
4120
|
return v;
|
|
4105
|
-
}
|
|
4106
4121
|
};
|
|
4107
4122
|
}
|
|
4108
4123
|
let descriptor, find = data;
|
|
@@ -4529,7 +4544,12 @@ var LeaferUI = (function (exports) {
|
|
|
4529
4544
|
while (root.parent && !root.parent.leafer) {
|
|
4530
4545
|
root = root.parent;
|
|
4531
4546
|
}
|
|
4532
|
-
|
|
4547
|
+
const r = root;
|
|
4548
|
+
if (r.__fullLayouting)
|
|
4549
|
+
return;
|
|
4550
|
+
r.__fullLayouting = true;
|
|
4551
|
+
Platform.layout(r);
|
|
4552
|
+
delete r.__fullLayouting;
|
|
4533
4553
|
}
|
|
4534
4554
|
}
|
|
4535
4555
|
getTransform(relative = 'world') {
|
|
@@ -6054,7 +6074,7 @@ var LeaferUI = (function (exports) {
|
|
|
6054
6074
|
}
|
|
6055
6075
|
}
|
|
6056
6076
|
|
|
6057
|
-
const version = "1.5.
|
|
6077
|
+
const version = "1.5.2";
|
|
6058
6078
|
|
|
6059
6079
|
const debug$5 = Debug.get('LeaferCanvas');
|
|
6060
6080
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
@@ -6176,7 +6196,7 @@ var LeaferUI = (function (exports) {
|
|
|
6176
6196
|
else {
|
|
6177
6197
|
window.addEventListener('resize', this.windowListener = () => {
|
|
6178
6198
|
const pixelRatio = Platform.devicePixelRatio;
|
|
6179
|
-
if (this.pixelRatio !== pixelRatio) {
|
|
6199
|
+
if (!this.config.pixelRatio && this.pixelRatio !== pixelRatio) {
|
|
6180
6200
|
const { width, height } = this;
|
|
6181
6201
|
this.emitResize({ width, height, pixelRatio });
|
|
6182
6202
|
}
|
|
@@ -6193,7 +6213,7 @@ var LeaferUI = (function (exports) {
|
|
|
6193
6213
|
checkAutoBounds(parentSize) {
|
|
6194
6214
|
const view = this.view;
|
|
6195
6215
|
const { x, y, width, height } = this.autoBounds.getBoundsFrom(parentSize);
|
|
6196
|
-
const size = { width, height, pixelRatio: Platform.devicePixelRatio };
|
|
6216
|
+
const size = { width, height, pixelRatio: this.config.pixelRatio ? this.pixelRatio : Platform.devicePixelRatio };
|
|
6197
6217
|
if (!this.isSameSize(size)) {
|
|
6198
6218
|
const { style } = view;
|
|
6199
6219
|
style.marginLeft = x + 'px';
|
|
@@ -7825,7 +7845,7 @@ var LeaferUI = (function (exports) {
|
|
|
7825
7845
|
strokeType()
|
|
7826
7846
|
], exports.UI.prototype, "dashPattern", void 0);
|
|
7827
7847
|
__decorate([
|
|
7828
|
-
strokeType()
|
|
7848
|
+
strokeType(0)
|
|
7829
7849
|
], exports.UI.prototype, "dashOffset", void 0);
|
|
7830
7850
|
__decorate([
|
|
7831
7851
|
strokeType(10)
|
|
@@ -7918,6 +7938,12 @@ var LeaferUI = (function (exports) {
|
|
|
7918
7938
|
__decorate([
|
|
7919
7939
|
dataProcessor(GroupData)
|
|
7920
7940
|
], exports.Group.prototype, "__", void 0);
|
|
7941
|
+
__decorate([
|
|
7942
|
+
boundsType(0)
|
|
7943
|
+
], exports.Group.prototype, "width", void 0);
|
|
7944
|
+
__decorate([
|
|
7945
|
+
boundsType(0)
|
|
7946
|
+
], exports.Group.prototype, "height", void 0);
|
|
7921
7947
|
exports.Group = __decorate([
|
|
7922
7948
|
useModule(exports.Branch),
|
|
7923
7949
|
registerUI()
|
|
@@ -8333,7 +8359,7 @@ var LeaferUI = (function (exports) {
|
|
|
8333
8359
|
__updateRectBoxBounds() { }
|
|
8334
8360
|
__updateBoxBounds(_secondLayout) {
|
|
8335
8361
|
const data = this.__;
|
|
8336
|
-
if (this.children.length) {
|
|
8362
|
+
if (this.children.length && !this.pathInputed) {
|
|
8337
8363
|
if (data.__autoSide) {
|
|
8338
8364
|
if (data.__hasSurface)
|
|
8339
8365
|
this.__extraUpdate();
|
|
@@ -8402,6 +8428,12 @@ var LeaferUI = (function (exports) {
|
|
|
8402
8428
|
__decorate([
|
|
8403
8429
|
dataProcessor(BoxData)
|
|
8404
8430
|
], exports.Box.prototype, "__", void 0);
|
|
8431
|
+
__decorate([
|
|
8432
|
+
boundsType(100)
|
|
8433
|
+
], exports.Box.prototype, "width", void 0);
|
|
8434
|
+
__decorate([
|
|
8435
|
+
boundsType(100)
|
|
8436
|
+
], exports.Box.prototype, "height", void 0);
|
|
8405
8437
|
__decorate([
|
|
8406
8438
|
dataType(false)
|
|
8407
8439
|
], exports.Box.prototype, "resizeChildren", void 0);
|
|
@@ -10596,16 +10628,20 @@ var LeaferUI = (function (exports) {
|
|
|
10596
10628
|
}
|
|
10597
10629
|
|
|
10598
10630
|
function fillText(ui, canvas) {
|
|
10599
|
-
let row;
|
|
10600
|
-
const { rows, decorationY
|
|
10631
|
+
let row, data = ui.__.__textDrawData;
|
|
10632
|
+
const { rows, decorationY } = data;
|
|
10601
10633
|
for (let i = 0, len = rows.length; i < len; i++) {
|
|
10602
10634
|
row = rows[i];
|
|
10603
10635
|
if (row.text)
|
|
10604
10636
|
canvas.fillText(row.text, row.x, row.y);
|
|
10605
10637
|
else if (row.data)
|
|
10606
10638
|
row.data.forEach(charData => { canvas.fillText(charData.char, charData.x, row.y); });
|
|
10607
|
-
|
|
10608
|
-
|
|
10639
|
+
}
|
|
10640
|
+
if (decorationY) {
|
|
10641
|
+
const { decorationColor, decorationHeight } = data;
|
|
10642
|
+
if (decorationColor)
|
|
10643
|
+
canvas.fillStyle = decorationColor;
|
|
10644
|
+
rows.forEach(row => decorationY.forEach(value => canvas.fillRect(row.x, row.y + value, row.width, decorationHeight)));
|
|
10609
10645
|
}
|
|
10610
10646
|
}
|
|
10611
10647
|
|
|
@@ -10676,16 +10712,18 @@ var LeaferUI = (function (exports) {
|
|
|
10676
10712
|
out.recycle(ui.__nowWorld);
|
|
10677
10713
|
}
|
|
10678
10714
|
function drawTextStroke(ui, canvas) {
|
|
10679
|
-
let row;
|
|
10680
|
-
const { rows, decorationY
|
|
10715
|
+
let row, data = ui.__.__textDrawData;
|
|
10716
|
+
const { rows, decorationY } = data;
|
|
10681
10717
|
for (let i = 0, len = rows.length; i < len; i++) {
|
|
10682
10718
|
row = rows[i];
|
|
10683
10719
|
if (row.text)
|
|
10684
10720
|
canvas.strokeText(row.text, row.x, row.y);
|
|
10685
10721
|
else if (row.data)
|
|
10686
10722
|
row.data.forEach(charData => { canvas.strokeText(charData.char, charData.x, row.y); });
|
|
10687
|
-
|
|
10688
|
-
|
|
10723
|
+
}
|
|
10724
|
+
if (decorationY) {
|
|
10725
|
+
const { decorationHeight } = data;
|
|
10726
|
+
rows.forEach(row => decorationY.forEach(value => canvas.strokeRect(row.x, row.y + value, row.width, decorationHeight)));
|
|
10689
10727
|
}
|
|
10690
10728
|
}
|
|
10691
10729
|
function drawStrokesStyle(strokes, isText, ui, canvas) {
|
|
@@ -11251,6 +11289,8 @@ var LeaferUI = (function (exports) {
|
|
|
11251
11289
|
}
|
|
11252
11290
|
image.unload(paints[i].loadId, !input.some((item) => item.url === url));
|
|
11253
11291
|
}
|
|
11292
|
+
else
|
|
11293
|
+
paints[i].style = null;
|
|
11254
11294
|
}
|
|
11255
11295
|
}
|
|
11256
11296
|
return recycleMap;
|
|
@@ -11983,14 +12023,25 @@ var LeaferUI = (function (exports) {
|
|
|
11983
12023
|
}
|
|
11984
12024
|
|
|
11985
12025
|
function decorationText(drawData, style) {
|
|
11986
|
-
|
|
12026
|
+
let type;
|
|
12027
|
+
const { fontSize, textDecoration } = style;
|
|
11987
12028
|
drawData.decorationHeight = fontSize / 11;
|
|
11988
|
-
|
|
12029
|
+
if (typeof textDecoration === 'object') {
|
|
12030
|
+
type = textDecoration.type;
|
|
12031
|
+
if (textDecoration.color)
|
|
12032
|
+
drawData.decorationColor = ColorConvert.string(textDecoration.color);
|
|
12033
|
+
}
|
|
12034
|
+
else
|
|
12035
|
+
type = textDecoration;
|
|
12036
|
+
switch (type) {
|
|
11989
12037
|
case 'under':
|
|
11990
|
-
drawData.decorationY = fontSize * 0.15;
|
|
12038
|
+
drawData.decorationY = [fontSize * 0.15];
|
|
11991
12039
|
break;
|
|
11992
12040
|
case 'delete':
|
|
11993
|
-
drawData.decorationY = -fontSize * 0.35;
|
|
12041
|
+
drawData.decorationY = [-fontSize * 0.35];
|
|
12042
|
+
break;
|
|
12043
|
+
case 'under-delete':
|
|
12044
|
+
drawData.decorationY = [fontSize * 0.15, -fontSize * 0.35];
|
|
11994
12045
|
}
|
|
11995
12046
|
}
|
|
11996
12047
|
|
|
@@ -12233,6 +12284,7 @@ var LeaferUI = (function (exports) {
|
|
|
12233
12284
|
exports.getMatrixData = getMatrixData;
|
|
12234
12285
|
exports.getPointData = getPointData;
|
|
12235
12286
|
exports.hitType = hitType;
|
|
12287
|
+
exports.isEmptyData = isEmptyData;
|
|
12236
12288
|
exports.isNull = isNull;
|
|
12237
12289
|
exports.layoutProcessor = layoutProcessor;
|
|
12238
12290
|
exports.maskType = maskType;
|