@idscan/idvc2 2.1.1 → 2.1.2
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 +7 -5
- package/dist/js/idvc.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This component works in phones with the operating system Android in the browser
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
23
|
```
|
|
24
|
-
$ npm install @idscan/
|
|
24
|
+
$ npm install @idscan/idvc2
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
This component contains JS, CSS files which require the mandatory import into your project.
|
|
@@ -48,7 +48,7 @@ There are binary files in the folder which do not have the extension. These file
|
|
|
48
48
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
49
49
|
|
|
50
50
|
new CopyWebpackPlugin ([{
|
|
51
|
-
from: 'node_modules/@idscan/
|
|
51
|
+
from: 'node_modules/@idscan/idvc2/dist/networks/*',
|
|
52
52
|
to: 'networks/[name].[ext]',
|
|
53
53
|
toType: 'template',
|
|
54
54
|
}]);
|
|
@@ -60,7 +60,7 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
|
60
60
|
new CopyWebpackPlugin({
|
|
61
61
|
patterns: [
|
|
62
62
|
{
|
|
63
|
-
from: 'node_modules/@idscan/
|
|
63
|
+
from: 'node_modules/@idscan/idvc2/dist/networks/*',
|
|
64
64
|
to: 'networks/[name][ext]',
|
|
65
65
|
toType: 'template',
|
|
66
66
|
},
|
|
@@ -71,8 +71,8 @@ new CopyWebpackPlugin({
|
|
|
71
71
|
1.3. Import the library and css to your project.
|
|
72
72
|
|
|
73
73
|
```javascript
|
|
74
|
-
import IDVC from '@idscan/
|
|
75
|
-
import '@idscan/
|
|
74
|
+
import IDVC from '@idscan/idvc2'
|
|
75
|
+
import '@idscan/idvc2/dist/css/idvc.css'
|
|
76
76
|
|
|
77
77
|
```
|
|
78
78
|
## Initialization
|
|
@@ -391,6 +391,8 @@ The component has the following customizable properties:
|
|
|
391
391
|
- description of capture progress
|
|
392
392
|
|
|
393
393
|
## Version history
|
|
394
|
+
- **2.1.2**
|
|
395
|
+
- fixed change document type
|
|
394
396
|
- **2.1.1**
|
|
395
397
|
- updated camera module
|
|
396
398
|
- improved camera errors handling
|