@idscan/idvc2 3.0.0 → 3.1.0
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 -0
- package/dist/idvc.js +1 -1
- package/dist/idvc.js.gzip +0 -0
- package/dist/js/defaultConfig.ts +12 -2
- package/dist/js/environment/cssVariables.json +21 -0
- package/dist/js/environment/langs.js +1 -1
- package/dist/langs.js.gzip +0 -0
- package/dist/types/defaultConfig.d.ts +5 -4
- package/dist/types/environment/langs.d.ts +3 -1
- package/dist/types/helpers/validators.d.ts +10 -1
- package/dist/types/modules/Config.d.ts +8 -2
- package/dist/types/modules/validation/ValidateDictionaryLangMatch.d.ts +6 -0
- package/dist/types/modules/validation/ValidateDocumentTypes.d.ts +8 -6
- package/dist/types/modules/validation/showValidationError.d.ts +6 -1
- package/dist/types/modules/validation/validatorFactory.d.ts +2 -1
- package/dist/types/types/context.d.ts +3 -0
- package/dist/types/types/helpers/DeepPartial.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,6 +81,11 @@ import IDVC from '@idscan/idvc2'
|
|
|
81
81
|
|
|
82
82
|
## Version history
|
|
83
83
|
|
|
84
|
+
- **3.1.0**
|
|
85
|
+
- feat: added css variables: Primary brand color of the cube --color-loader-primary* Secondary brand color of the cube* --color-loader-secondary; Tertiary accent color of the cube --color-loader-tertiary
|
|
86
|
+
- feat: filtering of unwanted cameras
|
|
87
|
+
- feat: added the field "customTranslations" where you can pass your translation dictionary
|
|
88
|
+
|
|
84
89
|
- **3.0.0**
|
|
85
90
|
- feat: added document type information in the 'sumbit' event output parameters
|
|
86
91
|
- feat: when the allowSubmitWithWarnings parameter is set to true, the user will be taken to the step selection screen where the submit button is displayed
|