@denevads/dnv-smo 1.0.24 → 1.0.25
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 +5 -1
- package/dist/smo.js +1 -1
- package/package.json +1 -1
- package/src/smo.ts +1 -1
package/README.md
CHANGED
|
@@ -77,4 +77,8 @@ Esto nos generara una carpeta dist, con el contenido de nuestro HTML5 compilado.
|
|
|
77
77
|
Para poder subirlo al player de deneva, simplemente tenemos que crear un zip con el contenido en la raíz, y le cambiaremos la extensión por
|
|
78
78
|
```sh
|
|
79
79
|
.wgt
|
|
80
|
-
```
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
npm run build
|
|
83
|
+
npm login
|
|
84
|
+
npm publish
|
package/dist/smo.js
CHANGED
|
@@ -637,7 +637,7 @@ var Utils = /** @class */ (function () {
|
|
|
637
637
|
break;
|
|
638
638
|
case "Dnv.smoCallbacks.printBarcode":
|
|
639
639
|
// @ts-ignore
|
|
640
|
-
window.objJS.printBarcode(obj.code, obj.objData.width, obj.objData.height);
|
|
640
|
+
window.objJS.printBarcode(obj.objData.code, obj.objData.width, obj.objData.height);
|
|
641
641
|
break;
|
|
642
642
|
case "Dnv.smoCallbacks.cutPaper":
|
|
643
643
|
// @ts-ignore
|
package/package.json
CHANGED
package/src/smo.ts
CHANGED
|
@@ -668,7 +668,7 @@ class Utils{
|
|
|
668
668
|
break;
|
|
669
669
|
case "Dnv.smoCallbacks.printBarcode":
|
|
670
670
|
// @ts-ignore
|
|
671
|
-
window.objJS.printBarcode(obj.code, obj.objData.width, obj.objData.height);
|
|
671
|
+
window.objJS.printBarcode(obj.objData.code, obj.objData.width, obj.objData.height);
|
|
672
672
|
break;
|
|
673
673
|
case "Dnv.smoCallbacks.cutPaper":
|
|
674
674
|
// @ts-ignore
|