@operato/scene-label 8.0.0-beta.2 → 8.0.1
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/index.d.ts +4 -4
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/templates/index.js +3 -3
- package/dist/templates/index.js.map +1 -1
- package/package.json +7 -7
- package/things-scene.config.js +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import Barcode from
|
|
2
|
-
import BarcodeScanner from
|
|
3
|
-
import LabelPrinter from
|
|
4
|
-
declare const _default: (typeof
|
|
1
|
+
import Barcode from './barcode.js';
|
|
2
|
+
import BarcodeScanner from './barcode-scanner.js';
|
|
3
|
+
import LabelPrinter from './label-printer.js';
|
|
4
|
+
declare const _default: (typeof Barcode | typeof BarcodeScanner | typeof LabelPrinter)[];
|
|
5
5
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import Barcode from
|
|
2
|
-
import BarcodeScanner from
|
|
3
|
-
import LabelPrinter from
|
|
1
|
+
import Barcode from './barcode.js';
|
|
2
|
+
import BarcodeScanner from './barcode-scanner.js';
|
|
3
|
+
import LabelPrinter from './label-printer.js';
|
|
4
4
|
export default [Barcode, BarcodeScanner, LabelPrinter];
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,cAAc,CAAA;AAClC,OAAO,cAAc,MAAM,sBAAsB,CAAA;AACjD,OAAO,YAAY,MAAM,oBAAoB,CAAA;AAE7C,eAAe,CAAC,OAAO,EAAE,cAAc,EAAE,YAAY,CAAC,CAAA","sourcesContent":["import Barcode from './barcode.js'\nimport BarcodeScanner from './barcode-scanner.js'\nimport LabelPrinter from './label-printer.js'\n\nexport default [Barcode, BarcodeScanner, LabelPrinter]\n"]}
|
package/dist/templates/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import barcode from './barcode';
|
|
2
|
-
import barcodeScanner from './barcode-scanner';
|
|
3
|
-
import labelPrinter from './label-printer';
|
|
1
|
+
import barcode from './barcode.js';
|
|
2
|
+
import barcodeScanner from './barcode-scanner.js';
|
|
3
|
+
import labelPrinter from './label-printer.js';
|
|
4
4
|
export default [barcode, labelPrinter, barcodeScanner];
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,cAAc,CAAA;AAClC,OAAO,cAAc,MAAM,sBAAsB,CAAA;AACjD,OAAO,YAAY,MAAM,oBAAoB,CAAA;AAE7C,eAAe,CAAC,OAAO,EAAE,YAAY,EAAE,cAAc,CAAC,CAAA","sourcesContent":["import barcode from './barcode.js'\nimport barcodeScanner from './barcode-scanner.js'\nimport labelPrinter from './label-printer.js'\n\nexport default [barcode, labelPrinter, barcodeScanner]\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-label",
|
|
3
3
|
"description": "Barcode Label component for things-scene",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"things-scene": true,
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"migration": "things-factory-migration"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@hatiolab/things-scene": "^
|
|
31
|
-
"@operato/barcode": "^8.0.0
|
|
32
|
-
"@operato/input": "^8.0.0
|
|
30
|
+
"@hatiolab/things-scene": "^3.4.0",
|
|
31
|
+
"@operato/barcode": "^8.0.0",
|
|
32
|
+
"@operato/input": "^8.0.0",
|
|
33
33
|
"bwip-js": "^4.4.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
37
|
-
"@things-factory/builder": "^8.0.0
|
|
38
|
-
"@things-factory/operato-board": "^8.0.0
|
|
37
|
+
"@things-factory/builder": "^8.0.0",
|
|
38
|
+
"@things-factory/operato-board": "^8.0.0",
|
|
39
39
|
"@types/codemirror": "^5.60.5",
|
|
40
40
|
"@types/w3c-web-usb": "^1.0.5",
|
|
41
41
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"prettier --write"
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "daedde221bb0afaa12079e47f12660921e960672"
|
|
66
66
|
}
|
package/things-scene.config.js
CHANGED