@netless/appliance-plugin 1.1.7 → 1.1.9
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-BEJqjH.js → fullWorker-DzU-Co.js} +7 -7
- package/cdn/{subWorker-CTbbnN.js → subWorker-B5ZQoK.js} +7 -7
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +1 -1
- package/dist/collector/collector.d.ts +6 -0
- package/dist/displayer/floatBar/index.d.ts +1 -0
- package/dist/fullWorker.js +7 -7
- package/dist/{index-DG4OS7jZ.js → index-B90iIvel.js} +1 -1
- package/dist/index-CpjV7Ujm.js +1 -0
- package/dist/{index-C-flLj6b.mjs → index-D8AMdzYo.mjs} +1224 -1173
- package/dist/{index-CPEJsBxo.mjs → index-rRQeW_6Z.mjs} +1 -1
- package/dist/plugin/const.d.ts +4 -0
- package/dist/plugin/types.d.ts +5 -0
- package/dist/subWorker.js +7 -7
- package/package.json +1 -1
- package/dist/index-Cj2T7zY6.js +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var ee = Object.defineProperty;
|
|
2
2
|
var te = (L, t, e) => t in L ? ee(L, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : L[t] = e;
|
|
3
3
|
var u = (L, t, e) => te(L, typeof t != "symbol" ? t + "" : t, e);
|
|
4
|
-
import { D as R, E as W, a as f, b as g, g as F, t as A, c as p, S as Z, d as N, e as $, i as se, C as U, f as oe, h as T, M, V as re, j, T as H, k as P, l as q, m as B, n as ie, o as G, p as V, q as ae } from "./index-
|
|
4
|
+
import { D as R, E as W, a as f, b as g, g as F, t as A, c as p, S as Z, d as N, e as $, i as se, C as U, f as oe, h as T, M, V as re, j, T as H, k as P, l as q, m as B, n as ie, o as G, p as V, q as ae } from "./index-D8AMdzYo.mjs";
|
|
5
5
|
import { Scene as X, Group as Y } from "spritejs";
|
|
6
6
|
import { cloneDeep as Q, xor as ce, isEqual as K, isNumber as ne } from "lodash";
|
|
7
7
|
import "lineclip";
|
package/dist/plugin/const.d.ts
CHANGED
package/dist/plugin/types.d.ts
CHANGED
|
@@ -259,6 +259,11 @@ export type AppliancePluginOptions = {
|
|
|
259
259
|
bezier?: BezierOpt;
|
|
260
260
|
/** 局部橡皮擦配置项 */
|
|
261
261
|
pencilEraser?: PencilEraserOpt;
|
|
262
|
+
/** 线条粗细范围配置项 */
|
|
263
|
+
strokeWidth?: {
|
|
264
|
+
min: number;
|
|
265
|
+
max: number;
|
|
266
|
+
};
|
|
262
267
|
};
|
|
263
268
|
export interface AppliancePluginAttributes {
|
|
264
269
|
[key: string]: ISerializableStorageViewData | ISerializableEventData;
|