@thi.ng/axidraw 1.1.39 → 1.1.41

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-12-09T19:12:03Z
3
+ - **Last updated**: 2023-12-11T10:07:09Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -187,7 +187,7 @@ For Node.js REPL:
187
187
  const axidraw = await import("@thi.ng/axidraw");
188
188
  ```
189
189
 
190
- Package sizes (brotli'd, pre-treeshake): ESM: 3.28 KB
190
+ Package sizes (brotli'd, pre-treeshake): ESM: 3.27 KB
191
191
 
192
192
  ## Dependencies
193
193
 
package/api.js CHANGED
@@ -1,19 +1,9 @@
1
- /**
2
- * FSM state enum for (interactive) control for processing of drawing commands.
3
- * See {@link AxiDraw.draw} and {@link AxiDrawControl} for details.
4
- */
5
- export var AxiDrawState;
6
- (function (AxiDrawState) {
7
- /**
8
- * Draw command processing can continue as normal.
9
- */
10
- AxiDrawState[AxiDrawState["CONTINUE"] = 0] = "CONTINUE";
11
- /**
12
- * Draw command processing is suspended indefinitely.
13
- */
14
- AxiDrawState[AxiDrawState["PAUSE"] = 1] = "PAUSE";
15
- /**
16
- * Draw command processing is cancelled.
17
- */
18
- AxiDrawState[AxiDrawState["CANCEL"] = 2] = "CANCEL";
19
- })(AxiDrawState || (AxiDrawState = {}));
1
+ var AxiDrawState = /* @__PURE__ */ ((AxiDrawState2) => {
2
+ AxiDrawState2[AxiDrawState2["CONTINUE"] = 0] = "CONTINUE";
3
+ AxiDrawState2[AxiDrawState2["PAUSE"] = 1] = "PAUSE";
4
+ AxiDrawState2[AxiDrawState2["CANCEL"] = 2] = "CANCEL";
5
+ return AxiDrawState2;
6
+ })(AxiDrawState || {});
7
+ export {
8
+ AxiDrawState
9
+ };