@idscan/onboarding 1.0.1 → 1.0.5
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/css/onboarding.css +1 -1
- package/dist/js/wrapper.js +1 -1
- package/package.json +2 -2
- package/readme.md +18 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idscan/onboarding",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Wrapper of the IDVC library for DVS Online.",
|
|
5
5
|
"main": "dist/js/wrapper.js",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"patch": "npm version patch"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@idscan/idvc": "^1.12.
|
|
17
|
+
"@idscan/idvc": "^1.12.12",
|
|
18
18
|
"core-js": "^3.19.1",
|
|
19
19
|
"regenerator-runtime": "^0.13.9"
|
|
20
20
|
},
|
package/readme.md
CHANGED
|
@@ -45,7 +45,7 @@ There are binary files in the folder which do not have the extension. These file
|
|
|
45
45
|
```javascript
|
|
46
46
|
new CopyWebpackPlugin ([
|
|
47
47
|
{
|
|
48
|
-
from: 'node_modules/@idscan/
|
|
48
|
+
from: 'node_modules/@idscan/onboarding/dist/networks/**/*',
|
|
49
49
|
to: 'networks/[folder]/[name].[ext]',
|
|
50
50
|
toType: 'template'
|
|
51
51
|
}
|
|
@@ -55,8 +55,8 @@ new CopyWebpackPlugin ([
|
|
|
55
55
|
1.3. Import the library and css to your project.
|
|
56
56
|
|
|
57
57
|
```javascript
|
|
58
|
-
import DVSOIDVC from '@idscan/
|
|
59
|
-
import '@idscan/
|
|
58
|
+
import DVSOIDVC from '@idscan/onboarding';
|
|
59
|
+
import '@idscan/onboarding/dist/css/dvsonline-idvc.css';
|
|
60
60
|
```
|
|
61
61
|
## Initialization
|
|
62
62
|
|
|
@@ -128,7 +128,20 @@ btn.addEventListener('click', () => {
|
|
|
128
128
|
|
|
129
129
|
## Version history
|
|
130
130
|
|
|
131
|
+
- **1.0.5**
|
|
132
|
+
- update IDVC component
|
|
133
|
+
- update using DVS Online API
|
|
134
|
+
|
|
135
|
+
- **1.0.4**
|
|
136
|
+
- use CDN
|
|
137
|
+
|
|
138
|
+
- **1.0.3**
|
|
139
|
+
- Changed readme
|
|
140
|
+
|
|
141
|
+
- **1.0.2**
|
|
142
|
+
- Some improvements
|
|
143
|
+
|
|
131
144
|
- **1.0.1**
|
|
132
|
-
|
|
133
|
-
|
|
145
|
+
- Changed readme
|
|
146
|
+
|
|
134
147
|
- **1.0.0**
|