@netless/appliance-plugin 1.1.22 → 1.1.24
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/cdn/cdn.js +1 -1
- package/cdn/{fullWorker-CPt3ef.js → fullWorker-CvY8jJ.js} +19 -19
- package/cdn/{subWorker-C6B1_t.js → subWorker-BXxVx2.js} +19 -19
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +1 -1
- package/dist/component/textEditor/utils.d.ts +1 -0
- package/dist/core/tools/base.d.ts +1 -1
- package/dist/fullWorker.js +19 -19
- package/dist/{index-CkmP0UxK.mjs → index-B0SzWigt.mjs} +21 -7
- package/dist/{index-BVzr2LGs.mjs → index-BH_o7eOU.mjs} +64 -10
- package/dist/{index-Bt2eamen.js → index-CQhmRvRP.js} +1 -1
- package/dist/index-D1N3tpY5.js +1 -0
- package/dist/plugin/types.d.ts +3 -3
- package/dist/subWorker.js +19 -19
- package/package.json +1 -1
- package/dist/index-CqEQ4dui.js +0 -1
package/dist/plugin/types.d.ts
CHANGED
|
@@ -326,11 +326,11 @@ export type ExtrasOptions = {
|
|
|
326
326
|
};
|
|
327
327
|
export type NormalOpt = {
|
|
328
328
|
/** 虚线端点样式, square: 平头, round: 圆头, 默认值为 round */
|
|
329
|
-
lineCap:
|
|
329
|
+
lineCap: "square" | "round";
|
|
330
330
|
};
|
|
331
331
|
export type DottedOpt = {
|
|
332
332
|
/** 虚线端点样式, square: 平头, round: 圆头, 默认值为 round */
|
|
333
|
-
lineCap:
|
|
333
|
+
lineCap: "square" | "round";
|
|
334
334
|
/** 虚线,单线段长度, 默认值为 1, 即单线段长度为 1 */
|
|
335
335
|
segment: number;
|
|
336
336
|
/** 虚线,单线段间隔, 默认值为 2, 即单线段间隔为 2 * thickness */
|
|
@@ -338,7 +338,7 @@ export type DottedOpt = {
|
|
|
338
338
|
};
|
|
339
339
|
export type LongDottedOpt = {
|
|
340
340
|
/** 长虚线端点样式, square: 平头, round: 圆头, 默认值为 round */
|
|
341
|
-
lineCap:
|
|
341
|
+
lineCap: "square" | "round";
|
|
342
342
|
/** 长虚线,单线段长度, 默认值为 1, 即单线段长度为 1 * thickness */
|
|
343
343
|
segment: number;
|
|
344
344
|
/** 长虚线,单线段间隔, 默认值为 2, 即单线段间隔为 2 * thickness */
|