ps-toolkit-ui 1.6.29 → 1.6.30
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/bundles/ps-toolkit-ui.umd.js +4 -0
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/form.class.js +2 -1
- package/esm2015/lib/classes/helper.class.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +4 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/form.class.d.ts +1 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1237,6 +1237,9 @@
|
|
|
1237
1237
|
setTimeout(function () {
|
|
1238
1238
|
inp.focus();
|
|
1239
1239
|
}, 100);
|
|
1240
|
+
if (inp.onBarcodeReaderChange !== null) {
|
|
1241
|
+
inp.onBarcodeReaderChange(s);
|
|
1242
|
+
}
|
|
1240
1243
|
};
|
|
1241
1244
|
}
|
|
1242
1245
|
catch (e) {
|
|
@@ -1829,6 +1832,7 @@
|
|
|
1829
1832
|
this.loading = false;
|
|
1830
1833
|
this.button = null;
|
|
1831
1834
|
this.hasBarcodeReader = false;
|
|
1835
|
+
this.onBarcodeReaderChange = null;
|
|
1832
1836
|
this.onClickButton = null;
|
|
1833
1837
|
this.progress = null;
|
|
1834
1838
|
this.onClick = null;
|