@thermal-print/escpos 0.3.1-beta.2 → 0.3.1-beta.3

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/generator.js CHANGED
@@ -39,7 +39,7 @@ class ESCPOSBuffer {
39
39
  * Pure JavaScript implementation - no Node.js dependencies
40
40
  */
41
41
  export class ESCPOSGenerator {
42
- constructor(paperWidth = 48, encoding = "cp860", debug = false, commandAdapter, lineSpacing = 15) {
42
+ constructor(paperWidth = 48, encoding = "cp860", debug = false, commandAdapter, lineSpacing = 25) {
43
43
  this.buffer = new ESCPOSBuffer();
44
44
  // Use provided adapter or default to ESC/POS
45
45
  this.commandAdapter = commandAdapter || new ESCPOSCommandAdapter();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thermal-print/escpos",
3
- "version": "0.3.1-beta.2",
3
+ "version": "0.3.1-beta.3",
4
4
  "type": "module",
5
5
  "description": "ESC/POS command generation and thermal printer control",
6
6
  "main": "dist/index.js",
@@ -26,7 +26,7 @@
26
26
  "author": "",
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
- "@thermal-print/core": "0.3.1-beta.2",
29
+ "@thermal-print/core": "0.3.1-beta.3",
30
30
  "jimp": "^1.6.0"
31
31
  },
32
32
  "devDependencies": {