@regulaforensics/document-reader 9.3.615-nightly → 9.3.618-beta
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/RNDocumentReader.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +36 -0
- package/examples/capacitor/package.json +1 -1
- package/examples/ionic/package.json +1 -1
- package/examples/react_native/package.json +1 -1
- package/ios/RGLWConfig.m +23 -6
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +18 -0
- package/test/package-lock.json +1 -1
- package/www/capacitor/params/customization/CustomizationColors.js +80 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +50 -2
- package/www/capacitor/params/customization/CustomizationImages.js +18 -2
- package/www/cordova.js +148 -4
- package/www/react-native/params/customization/CustomizationColors.js +80 -0
- package/www/react-native/params/customization/CustomizationFonts.js +50 -2
- package/www/react-native/params/customization/CustomizationImages.js +18 -2
- package/www/types/params/customization/CustomizationColors.d.ts +14 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +9 -0
- package/www/types/params/customization/CustomizationImages.d.ts +5 -7
package/RNDocumentReader.podspec
CHANGED
|
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = 'RNDocumentReader'
|
|
8
|
-
s.version = '9.3.
|
|
8
|
+
s.version = '9.3.618-beta'
|
|
9
9
|
s.summary = package['description']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
|
|
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.ios.deployment_target = '13.0'
|
|
17
17
|
s.source_files = 'ios/**/*.{h,m}'
|
|
18
18
|
s.exclude_files = [ 'ios/CVDDocumentReader.h', 'ios/CVDDocumentReader.m' ]
|
|
19
|
-
s.dependency '
|
|
19
|
+
s.dependency 'DocumentReader', '9.2.5911'
|
|
20
20
|
s.dependency 'React'
|
|
21
21
|
end
|
package/android/build.gradle
CHANGED
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
rootProject.allprojects {
|
|
21
21
|
repositories {
|
|
22
22
|
maven {
|
|
23
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader
|
|
23
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -29,7 +29,7 @@ dependencies {
|
|
|
29
29
|
//noinspection GradleDynamicVersion
|
|
30
30
|
implementation 'com.facebook.react:react-native:+'
|
|
31
31
|
//noinspection GradleDependency
|
|
32
|
-
implementation('com.regula.documentreader:api:9.
|
|
32
|
+
implementation('com.regula.documentreader:api:9.2.12446'){
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
repositories {
|
|
2
2
|
maven {
|
|
3
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader
|
|
3
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
dependencies {
|
|
8
8
|
//noinspection GradleDependency
|
|
9
|
-
implementation('com.regula.documentreader:api:9.
|
|
9
|
+
implementation('com.regula.documentreader:api:9.2.12446'){
|
|
10
10
|
transitive = true
|
|
11
11
|
}
|
|
12
12
|
}
|
|
@@ -770,6 +770,16 @@ fun setColors(input: ParamsCustomization.CustomizationEditor, opts: JSONObject)
|
|
|
770
770
|
"rfidEnableNfcDescriptionText" -> input.setColor(CustomizationColor.RFID_ENABLE_NFC_DESCRIPTION_TEXT, value)
|
|
771
771
|
"rfidEnableNfcButtonText" -> input.setColor(CustomizationColor.RFID_ENABLE_NFC_BUTTON_TEXT, value)
|
|
772
772
|
"rfidEnableNfcButtonBackground" -> input.setColor(CustomizationColor.RFID_ENABLE_NFC_BUTTON_BACKGROUND, value)
|
|
773
|
+
"mdlProcessingScreenBackground" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_BACKGROUND, value)
|
|
774
|
+
"mdlProcessingScreenHintLabelText" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_TEXT, value)
|
|
775
|
+
"mdlProcessingScreenHintLabelBackground" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND, value)
|
|
776
|
+
"mdlProcessingScreenProgressLabelText" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT, value)
|
|
777
|
+
"mdlProcessingScreenResultLabelText" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_RESULT_LABEL_TEXT, value)
|
|
778
|
+
"mdlProcessingScreenLoadingBar" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_LOADING_BAR, value)
|
|
779
|
+
"mdlEnableNfcTitleText" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_TITLE_TEXT, value)
|
|
780
|
+
"mdlEnableNfcDescriptionText" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_DESCRIPTION_TEXT, value)
|
|
781
|
+
"mdlEnableNfcButtonText" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_BUTTON_TEXT, value)
|
|
782
|
+
"mdlEnableNfcButtonBackground" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_BUTTON_BACKGROUND, value)
|
|
773
783
|
}
|
|
774
784
|
}
|
|
775
785
|
|
|
@@ -786,6 +796,16 @@ fun getColors(input: Map<CustomizationColor, Long>) = mapOf(
|
|
|
786
796
|
"rfidEnableNfcDescriptionText" to input[CustomizationColor.RFID_ENABLE_NFC_DESCRIPTION_TEXT],
|
|
787
797
|
"rfidEnableNfcButtonText" to input[CustomizationColor.RFID_ENABLE_NFC_BUTTON_TEXT],
|
|
788
798
|
"rfidEnableNfcButtonBackground" to input[CustomizationColor.RFID_ENABLE_NFC_BUTTON_BACKGROUND],
|
|
799
|
+
"mdlProcessingScreenBackground" to input[CustomizationColor.MDL_PROCESSING_SCREEN_BACKGROUND],
|
|
800
|
+
"mdlProcessingScreenHintLabelText" to input[CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_TEXT],
|
|
801
|
+
"mdlProcessingScreenHintLabelBackground" to input[CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND],
|
|
802
|
+
"mdlProcessingScreenProgressLabelText" to input[CustomizationColor.MDL_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT],
|
|
803
|
+
"mdlProcessingScreenResultLabelText" to input[CustomizationColor.MDL_PROCESSING_SCREEN_RESULT_LABEL_TEXT],
|
|
804
|
+
"mdlProcessingScreenLoadingBar" to input[CustomizationColor.MDL_PROCESSING_SCREEN_LOADING_BAR],
|
|
805
|
+
"mdlEnableNfcTitleText" to input[CustomizationColor.MDL_ENABLE_NFC_TITLE_TEXT],
|
|
806
|
+
"mdlEnableNfcDescriptionText" to input[CustomizationColor.MDL_ENABLE_NFC_DESCRIPTION_TEXT],
|
|
807
|
+
"mdlEnableNfcButtonText" to input[CustomizationColor.MDL_ENABLE_NFC_BUTTON_TEXT],
|
|
808
|
+
"mdlEnableNfcButtonBackground" to input[CustomizationColor.MDL_ENABLE_NFC_BUTTON_BACKGROUND],
|
|
789
809
|
).toJson()
|
|
790
810
|
|
|
791
811
|
fun setFonts(input: ParamsCustomization.CustomizationEditor, opts: JSONObject) = opts.forEach { key, value ->
|
|
@@ -796,6 +816,12 @@ fun setFonts(input: ParamsCustomization.CustomizationEditor, opts: JSONObject) =
|
|
|
796
816
|
"rfidEnableNfcTitleText" -> CustomizationFont.RFID_ENABLE_NFC_TITLE_TEXT.setFont(input, value)
|
|
797
817
|
"rfidEnableNfcDescriptionText" -> CustomizationFont.RFID_ENABLE_NFC_DESCRIPTION_TEXT.setFont(input, value)
|
|
798
818
|
"rfidEnableNfcButtonText" -> CustomizationFont.RFID_ENABLE_NFC_BUTTON_TEXT.setFont(input, value)
|
|
819
|
+
"mdlProcessingScreenHintLabel" -> CustomizationFont.MDL_PROCESSING_SCREEN_HINT_LABEL.setFont(input, value)
|
|
820
|
+
"mdlProcessingScreenProgressLabel" -> CustomizationFont.MDL_PROCESSING_SCREEN_PROGRESS_LABEL.setFont(input, value)
|
|
821
|
+
"mdlProcessingScreenResultLabel" -> CustomizationFont.MDL_PROCESSING_SCREEN_RESULT_LABEL.setFont(input, value)
|
|
822
|
+
"mdlEnableNfcTitleText" -> CustomizationFont.MDL_ENABLE_NFC_TITLE_TEXT.setFont(input, value)
|
|
823
|
+
"mdlEnableNfcDescriptionText" -> CustomizationFont.MDL_ENABLE_NFC_DESCRIPTION_TEXT.setFont(input, value)
|
|
824
|
+
"mdlEnableNfcButtonText" -> CustomizationFont.MDL_ENABLE_NFC_BUTTON_TEXT.setFont(input, value)
|
|
799
825
|
}
|
|
800
826
|
}
|
|
801
827
|
|
|
@@ -806,18 +832,28 @@ fun getFonts(fonts: Map<CustomizationFont, Typeface>, sizes: Map<CustomizationFo
|
|
|
806
832
|
"rfidEnableNfcTitleText" to CustomizationFont.RFID_ENABLE_NFC_TITLE_TEXT.getFont(fonts, sizes),
|
|
807
833
|
"rfidEnableNfcDescriptionText" to CustomizationFont.RFID_ENABLE_NFC_DESCRIPTION_TEXT.getFont(fonts, sizes),
|
|
808
834
|
"rfidEnableNfcButtonText" to CustomizationFont.RFID_ENABLE_NFC_BUTTON_TEXT.getFont(fonts, sizes),
|
|
835
|
+
"mdlProcessingScreenHintLabel" to CustomizationFont.MDL_PROCESSING_SCREEN_HINT_LABEL.getFont(fonts, sizes),
|
|
836
|
+
"mdlProcessingScreenProgressLabel" to CustomizationFont.MDL_PROCESSING_SCREEN_PROGRESS_LABEL.getFont(fonts, sizes),
|
|
837
|
+
"mdlProcessingScreenResultLabel" to CustomizationFont.MDL_PROCESSING_SCREEN_RESULT_LABEL.getFont(fonts, sizes),
|
|
838
|
+
"mdlEnableNfcTitleText" to CustomizationFont.MDL_ENABLE_NFC_TITLE_TEXT.getFont(fonts, sizes),
|
|
839
|
+
"mdlEnableNfcDescriptionText" to CustomizationFont.MDL_ENABLE_NFC_DESCRIPTION_TEXT.getFont(fonts, sizes),
|
|
840
|
+
"mdlEnableNfcButtonText" to CustomizationFont.MDL_ENABLE_NFC_BUTTON_TEXT.getFont(fonts, sizes),
|
|
809
841
|
).toJson()
|
|
810
842
|
|
|
811
843
|
fun setImages(input: ParamsCustomization.CustomizationEditor, opts: JSONObject) = opts.forEach { key, v ->
|
|
812
844
|
when (key) {
|
|
813
845
|
"rfidProcessingScreenFailureImage" -> input.setImage(CustomizationImage.RFID_PROCESSING_SCREEN_FAILURE_IMAGE, v.toDrawable())
|
|
814
846
|
"rfidEnableNfcImage" -> input.setImage(CustomizationImage.RFID_ENABLE_NFC_IMAGE, v.toDrawable())
|
|
847
|
+
"mdlProcessingScreenFailureImage" -> input.setImage(CustomizationImage.MDL_PROCESSING_SCREEN_FAILURE_IMAGE, v.toDrawable())
|
|
848
|
+
"mdlEnableNfcImage" -> input.setImage(CustomizationImage.MDL_ENABLE_NFC_IMAGE, v.toDrawable())
|
|
815
849
|
}
|
|
816
850
|
}
|
|
817
851
|
|
|
818
852
|
fun getImages(input: Map<CustomizationImage, Drawable>) = mapOf(
|
|
819
853
|
"rfidProcessingScreenFailureImage" to (input[CustomizationImage.RFID_PROCESSING_SCREEN_FAILURE_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_ic_error)).toBase64(),
|
|
820
854
|
"rfidEnableNfcImage" to (input[CustomizationImage.RFID_ENABLE_NFC_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_enable_nfc)).toBase64(),
|
|
855
|
+
"mdlProcessingScreenFailureImage" to (input[CustomizationImage.MDL_PROCESSING_SCREEN_FAILURE_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_enable_nfc)).toBase64(),
|
|
856
|
+
"mdlEnableNfcImage" to (input[CustomizationImage.MDL_ENABLE_NFC_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_enable_nfc)).toBase64(),
|
|
821
857
|
).toJson()
|
|
822
858
|
|
|
823
859
|
fun CustomizationFont.getFont(fonts: Map<CustomizationFont, Typeface>, sizes: Map<CustomizationFont, Int>) =
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/document-reader": "9.3.
|
|
9
|
+
"@regulaforensics/document-reader": "9.3.618-beta",
|
|
10
10
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
11
11
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
12
12
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@ionic/cordova-builders": "^12.3.0",
|
|
19
19
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
20
20
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
21
|
-
"@regulaforensics/document-reader": "9.3.
|
|
21
|
+
"@regulaforensics/document-reader": "9.3.618-beta",
|
|
22
22
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
23
23
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
24
24
|
"cordova-android": "^14.0.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"start": "expo start"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@regulaforensics/document-reader": "9.3.
|
|
11
|
+
"@regulaforensics/document-reader": "9.3.618-beta",
|
|
12
12
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
13
13
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
14
14
|
"react-native": "^0.81.4",
|
package/ios/RGLWConfig.m
CHANGED
|
@@ -1090,8 +1090,13 @@
|
|
|
1090
1090
|
result[@(RFIDProcessingScreenProgressBarBackground)] = [self colorWithInt:[input valueForKey:@"rfidProcessingScreenProgressBarBackground"]];
|
|
1091
1091
|
if([input valueForKey:@"rfidProcessingScreenResultLabelText"] != nil)
|
|
1092
1092
|
result[@(RFIDProcessingScreenResultLabelText)] = [self colorWithInt:[input valueForKey:@"rfidProcessingScreenResultLabelText"]];
|
|
1093
|
-
if([
|
|
1094
|
-
|
|
1093
|
+
if(input[@"rfidProcessingScreenLoadingBar"]) result[@(RFIDProcessingScreenLoadingBar)] = [self colorWithInt:input[@"rfidProcessingScreenLoadingBar"]];
|
|
1094
|
+
if(input[@"mdlProcessingScreenBackground"]) result[@(MDLProcessingScreenBackground)] = [self colorWithInt:input[@"mdlProcessingScreenBackground"]];
|
|
1095
|
+
if(input[@"mdlProcessingScreenHintLabelText"]) result[@(MDLProcessingScreenHintLabelText)] = [self colorWithInt:input[@"mdlProcessingScreenHintLabelText"]];
|
|
1096
|
+
if(input[@"mdlProcessingScreenHintLabelBackground"]) result[@(MDLProcessingScreenHintLabelBackground)] = [self colorWithInt:input[@"mdlProcessingScreenHintLabelBackground"]];
|
|
1097
|
+
if(input[@"mdlProcessingScreenProgressLabelText"]) result[@(MDLProcessingScreenProgressLabelText)] = [self colorWithInt:input[@"mdlProcessingScreenProgressLabelText"]];
|
|
1098
|
+
if(input[@"mdlProcessingScreenResultLabelText"]) result[@(MDLProcessingScreenResultLabelText)] = [self colorWithInt:input[@"mdlProcessingScreenResultLabelText"]];
|
|
1099
|
+
if(input[@"mdlProcessingScreenLoadingBar"]) result[@(MDLProcessingScreenLoadingBar)] = [self colorWithInt:input[@"mdlProcessingScreenLoadingBar"]];
|
|
1095
1100
|
}
|
|
1096
1101
|
|
|
1097
1102
|
+(NSDictionary*)getColors:(NSDictionary*)input {
|
|
@@ -1104,6 +1109,12 @@
|
|
|
1104
1109
|
@"rfidProcessingScreenProgressBarBackground": [self intWithColor:input[@(RFIDProcessingScreenProgressBarBackground)]],
|
|
1105
1110
|
@"rfidProcessingScreenResultLabelText": [self intWithColor:input[@(RFIDProcessingScreenResultLabelText)]],
|
|
1106
1111
|
@"rfidProcessingScreenLoadingBar": [self intWithColor:input[@(RFIDProcessingScreenLoadingBar)]],
|
|
1112
|
+
@"mdlProcessingScreenBackground": [self intWithColor:input[@(MDLProcessingScreenBackground)]],
|
|
1113
|
+
@"mdlProcessingScreenHintLabelText": [self intWithColor:input[@(MDLProcessingScreenHintLabelText)]],
|
|
1114
|
+
@"mdlProcessingScreenHintLabelBackground": [self intWithColor:input[@(MDLProcessingScreenHintLabelBackground)]],
|
|
1115
|
+
@"mdlProcessingScreenProgressLabelText": [self intWithColor:input[@(MDLProcessingScreenProgressLabelText)]],
|
|
1116
|
+
@"mdlProcessingScreenResultLabelText": [self intWithColor:input[@(MDLProcessingScreenResultLabelText)]],
|
|
1117
|
+
@"mdlProcessingScreenLoadingBar": [self intWithColor:input[@(MDLProcessingScreenLoadingBar)]],
|
|
1107
1118
|
};
|
|
1108
1119
|
}
|
|
1109
1120
|
|
|
@@ -1112,8 +1123,10 @@
|
|
|
1112
1123
|
result[@(RFIDProcessingScreenHintLabel)] = [self UIFontFromJSON:[input valueForKey:@"rfidProcessingScreenHintLabel"]];
|
|
1113
1124
|
if([input valueForKey:@"rfidProcessingScreenProgressLabel"] != nil)
|
|
1114
1125
|
result[@(RFIDProcessingScreenProgressLabel)] = [self UIFontFromJSON:[input valueForKey:@"rfidProcessingScreenProgressLabel"]];
|
|
1115
|
-
if([
|
|
1116
|
-
|
|
1126
|
+
if(input[@"rfidProcessingScreenResultLabel"]) result[@(RFIDProcessingScreenResultLabel)] = [self UIFontFromJSON:input[@"rfidProcessingScreenResultLabel"]];
|
|
1127
|
+
if(input[@"mdlProcessingScreenHintLabel"]) result[@(MDLProcessingScreenHintLabel)] = [self UIFontFromJSON:input[@"mdlProcessingScreenHintLabel"]];
|
|
1128
|
+
if(input[@"mdlProcessingScreenProgressLabel"]) result[@(MDLProcessingScreenProgressLabel)] = [self UIFontFromJSON:input[@"mdlProcessingScreenProgressLabel"]];
|
|
1129
|
+
if(input[@"mdlProcessingScreenResultLabel"]) result[@(MDLProcessingScreenResultLabel)] = [self UIFontFromJSON:input[@"mdlProcessingScreenResultLabel"]];
|
|
1117
1130
|
}
|
|
1118
1131
|
|
|
1119
1132
|
+(NSDictionary*)getFonts:(NSDictionary*)input {
|
|
@@ -1121,17 +1134,21 @@
|
|
|
1121
1134
|
@"rfidProcessingScreenHintLabel": [self generateUIFont:input[@(RFIDProcessingScreenHintLabel)]],
|
|
1122
1135
|
@"rfidProcessingScreenProgressLabel": [self generateUIFont:input[@(RFIDProcessingScreenProgressLabel)]],
|
|
1123
1136
|
@"rfidProcessingScreenResultLabel": [self generateUIFont:input[@(RFIDProcessingScreenResultLabel)]],
|
|
1137
|
+
@"mdlProcessingScreenHintLabel": [self generateUIFont:input[@(MDLProcessingScreenHintLabel)]],
|
|
1138
|
+
@"mdlProcessingScreenProgressLabel": [self generateUIFont:input[@(MDLProcessingScreenProgressLabel)]],
|
|
1139
|
+
@"mdlProcessingScreenResultLabel": [self generateUIFont:input[@(MDLProcessingScreenResultLabel)]],
|
|
1124
1140
|
};
|
|
1125
1141
|
}
|
|
1126
1142
|
|
|
1127
1143
|
+(void)setImages:(NSMutableDictionary*)result input:(NSDictionary*)input {
|
|
1128
|
-
if([
|
|
1129
|
-
|
|
1144
|
+
if(input[@"rfidProcessingScreenFailureImage"]) result[@(RFIDProcessingScreenFailureImage)] = [RGLWJSONConstructor imageWithBase64:input[@"rfidProcessingScreenFailureImage"]];
|
|
1145
|
+
if(input[@"mdlProcessingScreenFailureImage"]) result[@(MDLProcessingScreenFailureImage)] = [RGLWJSONConstructor imageWithBase64:input[@"mdlProcessingScreenFailureImage"]];
|
|
1130
1146
|
}
|
|
1131
1147
|
|
|
1132
1148
|
+(NSDictionary*)getImages:(NSDictionary*)input {
|
|
1133
1149
|
return @{
|
|
1134
1150
|
@"rfidProcessingScreenFailureImage": [RGLWJSONConstructor base64WithImage:input[@(RFIDProcessingScreenFailureImage)]],
|
|
1151
|
+
@"mdlProcessingScreenFailureImage": [RGLWJSONConstructor base64WithImage:input[@(MDLProcessingScreenFailureImage)]],
|
|
1135
1152
|
};
|
|
1136
1153
|
}
|
|
1137
1154
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/document-reader",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.618-beta",
|
|
4
4
|
"description": "This is an npm module for Regula Document Reader SDK. It allows you to read various kinds of identification documents using your phone's camera.",
|
|
5
5
|
"main": "www/react-native/index.js",
|
|
6
6
|
"module": "www/capacitor/index.js",
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@regulaforensics/document-reader" version="9.3.
|
|
2
|
+
<plugin id="@regulaforensics/document-reader" version="9.3.618-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
3
3
|
<name>DocumentReader</name>
|
|
4
4
|
<description>Cordova plugin for Regula Document Reader SDK</description>
|
|
5
5
|
<license>commercial</license>
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<source url="https://github.com/CocoaPods/Specs.git" />
|
|
30
30
|
</config>
|
|
31
31
|
<pods>
|
|
32
|
-
<pod name="
|
|
32
|
+
<pod name="DocumentReader" spec="9.2.5911" />
|
|
33
33
|
</pods>
|
|
34
34
|
</podspec>
|
|
35
35
|
</platform>
|
package/test/json.tsx
CHANGED
|
@@ -167,6 +167,16 @@ export var customizationColors = {
|
|
|
167
167
|
"rfidEnableNfcDescriptionText": 0xff000009,
|
|
168
168
|
"rfidEnableNfcButtonText": 0xff000010,
|
|
169
169
|
"rfidEnableNfcButtonBackground": 0xff000011,
|
|
170
|
+
"mdlProcessingScreenBackground": 0xff000012,
|
|
171
|
+
"mdlProcessingScreenHintLabelText": 0xff000013,
|
|
172
|
+
"mdlProcessingScreenHintLabelBackground": 0xff000014,
|
|
173
|
+
"mdlProcessingScreenProgressLabelText": 0xff000015,
|
|
174
|
+
"mdlProcessingScreenResultLabelText": 0xff000016,
|
|
175
|
+
"mdlProcessingScreenLoadingBar": 0xff000017,
|
|
176
|
+
"mdlEnableNfcTitleText": 0xff000018,
|
|
177
|
+
"mdlEnableNfcDescriptionText": 0xff000019,
|
|
178
|
+
"mdlEnableNfcButtonText": 0xff000020,
|
|
179
|
+
"mdlEnableNfcButtonBackground": 0xff000021,
|
|
170
180
|
};
|
|
171
181
|
export var customizationFonts = {
|
|
172
182
|
"rfidProcessingScreenHintLabel": font1,
|
|
@@ -175,10 +185,18 @@ export var customizationFonts = {
|
|
|
175
185
|
"rfidEnableNfcTitleText": font2,
|
|
176
186
|
"rfidEnableNfcDescriptionText": font1,
|
|
177
187
|
"rfidEnableNfcButtonText": font2,
|
|
188
|
+
"mdlProcessingScreenHintLabel": font1,
|
|
189
|
+
"mdlProcessingScreenProgressLabel": font2,
|
|
190
|
+
"mdlProcessingScreenResultLabel": font1,
|
|
191
|
+
"mdlEnableNfcTitleText": font2,
|
|
192
|
+
"mdlEnableNfcDescriptionText": font1,
|
|
193
|
+
"mdlEnableNfcButtonText": font2,
|
|
178
194
|
};
|
|
179
195
|
export var customizationImages = {
|
|
180
196
|
"rfidProcessingScreenFailureImage": img1,
|
|
181
197
|
"rfidEnableNfcImage": img2,
|
|
198
|
+
"mdlProcessingScreenFailureImage": img1,
|
|
199
|
+
"mdlEnableNfcImage": img2,
|
|
182
200
|
};
|
|
183
201
|
export var customization = {
|
|
184
202
|
"showStatusMessages": true,
|
package/test/package-lock.json
CHANGED
|
@@ -73,6 +73,66 @@ export class CustomizationColors {
|
|
|
73
73
|
this._set({ "rfidEnableNfcButtonBackground": val });
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
get mdlProcessingScreenBackground() { return this._mdlProcessingScreenBackground; }
|
|
77
|
+
set mdlProcessingScreenBackground(val) {
|
|
78
|
+
this._mdlProcessingScreenBackground = val;
|
|
79
|
+
this._set({ "mdlProcessingScreenBackground": val });
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
get mdlProcessingScreenHintLabelText() { return this._mdlProcessingScreenHintLabelText; }
|
|
83
|
+
set mdlProcessingScreenHintLabelText(val) {
|
|
84
|
+
this._mdlProcessingScreenHintLabelText = val;
|
|
85
|
+
this._set({ "mdlProcessingScreenHintLabelText": val });
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
get mdlProcessingScreenHintLabelBackground() { return this._mdlProcessingScreenHintLabelBackground; }
|
|
89
|
+
set mdlProcessingScreenHintLabelBackground(val) {
|
|
90
|
+
this._mdlProcessingScreenHintLabelBackground = val;
|
|
91
|
+
this._set({ "mdlProcessingScreenHintLabelBackground": val });
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
get mdlProcessingScreenProgressLabelText() { return this._mdlProcessingScreenProgressLabelText; }
|
|
95
|
+
set mdlProcessingScreenProgressLabelText(val) {
|
|
96
|
+
this._mdlProcessingScreenProgressLabelText = val;
|
|
97
|
+
this._set({ "mdlProcessingScreenProgressLabelText": val });
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
get mdlProcessingScreenResultLabelText() { return this._mdlProcessingScreenResultLabelText; }
|
|
101
|
+
set mdlProcessingScreenResultLabelText(val) {
|
|
102
|
+
this._mdlProcessingScreenResultLabelText = val;
|
|
103
|
+
this._set({ "mdlProcessingScreenResultLabelText": val });
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
get mdlProcessingScreenLoadingBar() { return this._mdlProcessingScreenLoadingBar; }
|
|
107
|
+
set mdlProcessingScreenLoadingBar(val) {
|
|
108
|
+
this._mdlProcessingScreenLoadingBar = val;
|
|
109
|
+
this._set({ "mdlProcessingScreenLoadingBar": val });
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
get mdlEnableNfcTitleText() { return this._mdlEnableNfcTitleText; }
|
|
113
|
+
set mdlEnableNfcTitleText(val) {
|
|
114
|
+
this._mdlEnableNfcTitleText = val;
|
|
115
|
+
this._set({ "mdlEnableNfcTitleText": val });
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
get mdlEnableNfcDescriptionText() { return this._mdlEnableNfcDescriptionText; }
|
|
119
|
+
set mdlEnableNfcDescriptionText(val) {
|
|
120
|
+
this._mdlEnableNfcDescriptionText = val;
|
|
121
|
+
this._set({ "mdlEnableNfcDescriptionText": val });
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
get mdlEnableNfcButtonText() { return this._mdlEnableNfcButtonText; }
|
|
125
|
+
set mdlEnableNfcButtonText(val) {
|
|
126
|
+
this._mdlEnableNfcButtonText = val;
|
|
127
|
+
this._set({ "mdlEnableNfcButtonText": val });
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
get mdlEnableNfcButtonBackground() { return this._mdlEnableNfcButtonBackground; }
|
|
131
|
+
set mdlEnableNfcButtonBackground(val) {
|
|
132
|
+
this._mdlEnableNfcButtonBackground = val;
|
|
133
|
+
this._set({ "mdlEnableNfcButtonBackground": val });
|
|
134
|
+
}
|
|
135
|
+
|
|
76
136
|
static fromJson(jsonObject) {
|
|
77
137
|
if (jsonObject == null) return null;
|
|
78
138
|
|
|
@@ -89,6 +149,16 @@ export class CustomizationColors {
|
|
|
89
149
|
result._rfidEnableNfcDescriptionText = jsonObject["rfidEnableNfcDescriptionText"];
|
|
90
150
|
result._rfidEnableNfcButtonText = jsonObject["rfidEnableNfcButtonText"];
|
|
91
151
|
result._rfidEnableNfcButtonBackground = jsonObject["rfidEnableNfcButtonBackground"];
|
|
152
|
+
result._mdlProcessingScreenBackground = jsonObject["mdlProcessingScreenBackground"];
|
|
153
|
+
result._mdlProcessingScreenHintLabelText = jsonObject["mdlProcessingScreenHintLabelText"];
|
|
154
|
+
result._mdlProcessingScreenHintLabelBackground = jsonObject["mdlProcessingScreenHintLabelBackground"];
|
|
155
|
+
result._mdlProcessingScreenProgressLabelText = jsonObject["mdlProcessingScreenProgressLabelText"];
|
|
156
|
+
result._mdlProcessingScreenResultLabelText = jsonObject["mdlProcessingScreenResultLabelText"];
|
|
157
|
+
result._mdlProcessingScreenLoadingBar = jsonObject["mdlProcessingScreenLoadingBar"];
|
|
158
|
+
result._mdlEnableNfcTitleText = jsonObject["mdlEnableNfcTitleText"];
|
|
159
|
+
result._mdlEnableNfcDescriptionText = jsonObject["mdlEnableNfcDescriptionText"];
|
|
160
|
+
result._mdlEnableNfcButtonText = jsonObject["mdlEnableNfcButtonText"];
|
|
161
|
+
result._mdlEnableNfcButtonBackground = jsonObject["mdlEnableNfcButtonBackground"];
|
|
92
162
|
|
|
93
163
|
return result;
|
|
94
164
|
}
|
|
@@ -114,6 +184,16 @@ export class CustomizationColors {
|
|
|
114
184
|
"rfidEnableNfcDescriptionText": this.rfidEnableNfcDescriptionText,
|
|
115
185
|
"rfidEnableNfcButtonText": this.rfidEnableNfcButtonText,
|
|
116
186
|
"rfidEnableNfcButtonBackground": this.rfidEnableNfcButtonBackground,
|
|
187
|
+
"mdlProcessingScreenBackground": this.mdlProcessingScreenBackground,
|
|
188
|
+
"mdlProcessingScreenHintLabelText": this.mdlProcessingScreenHintLabelText,
|
|
189
|
+
"mdlProcessingScreenHintLabelBackground": this.mdlProcessingScreenHintLabelBackground,
|
|
190
|
+
"mdlProcessingScreenProgressLabelText": this.mdlProcessingScreenProgressLabelText,
|
|
191
|
+
"mdlProcessingScreenResultLabelText": this.mdlProcessingScreenResultLabelText,
|
|
192
|
+
"mdlProcessingScreenLoadingBar": this.mdlProcessingScreenLoadingBar,
|
|
193
|
+
"mdlEnableNfcTitleText": this.mdlEnableNfcTitleText,
|
|
194
|
+
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText,
|
|
195
|
+
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText,
|
|
196
|
+
"mdlEnableNfcButtonBackground": this.mdlEnableNfcButtonBackground,
|
|
117
197
|
}
|
|
118
198
|
}
|
|
119
199
|
}
|
|
@@ -38,9 +38,45 @@ export class CustomizationFonts {
|
|
|
38
38
|
this._set({ "rfidEnableNfcButtonText": val });
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
get mdlProcessingScreenHintLabel() { return this._mdlProcessingScreenHintLabel; }
|
|
42
|
+
set mdlProcessingScreenHintLabel(val) {
|
|
43
|
+
this._mdlProcessingScreenHintLabel = val;
|
|
44
|
+
this._set({ "mdlProcessingScreenHintLabel": val });
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
get mdlProcessingScreenProgressLabel() { return this._mdlProcessingScreenProgressLabel; }
|
|
48
|
+
set mdlProcessingScreenProgressLabel(val) {
|
|
49
|
+
this._mdlProcessingScreenProgressLabel = val;
|
|
50
|
+
this._set({ "mdlProcessingScreenProgressLabel": val });
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
get mdlProcessingScreenResultLabel() { return this._mdlProcessingScreenResultLabel; }
|
|
54
|
+
set mdlProcessingScreenResultLabel(val) {
|
|
55
|
+
this._mdlProcessingScreenResultLabel = val;
|
|
56
|
+
this._set({ "mdlProcessingScreenResultLabel": val });
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
get mdlEnableNfcTitleText() { return this._mdlEnableNfcTitleText; }
|
|
60
|
+
set mdlEnableNfcTitleText(val) {
|
|
61
|
+
this._mdlEnableNfcTitleText = val;
|
|
62
|
+
this._set({ "mdlEnableNfcTitleText": val });
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
get mdlEnableNfcDescriptionText() { return this._mdlEnableNfcDescriptionText; }
|
|
66
|
+
set mdlEnableNfcDescriptionText(val) {
|
|
67
|
+
this._mdlEnableNfcDescriptionText = val;
|
|
68
|
+
this._set({ "mdlEnableNfcDescriptionText": val });
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
get mdlEnableNfcButtonText() { return this._mdlEnableNfcButtonText; }
|
|
72
|
+
set mdlEnableNfcButtonText(val) {
|
|
73
|
+
this._mdlEnableNfcButtonText = val;
|
|
74
|
+
this._set({ "mdlEnableNfcButtonText": val });
|
|
75
|
+
}
|
|
76
|
+
|
|
41
77
|
static fromJson(jsonObject) {
|
|
42
78
|
if (jsonObject == null) return null;
|
|
43
|
-
|
|
79
|
+
|
|
44
80
|
const result = new CustomizationFonts();
|
|
45
81
|
result._rfidProcessingScreenHintLabel = Font.fromJson(jsonObject["rfidProcessingScreenHintLabel"]);
|
|
46
82
|
result._rfidProcessingScreenProgressLabel = Font.fromJson(jsonObject["rfidProcessingScreenProgressLabel"]);
|
|
@@ -48,7 +84,13 @@ export class CustomizationFonts {
|
|
|
48
84
|
result._rfidEnableNfcTitleText = Font.fromJson(jsonObject["rfidEnableNfcTitleText"]);
|
|
49
85
|
result._rfidEnableNfcDescriptionText = Font.fromJson(jsonObject["rfidEnableNfcDescriptionText"]);
|
|
50
86
|
result._rfidEnableNfcButtonText = Font.fromJson(jsonObject["rfidEnableNfcButtonText"]);
|
|
51
|
-
|
|
87
|
+
result._mdlProcessingScreenHintLabel = Font.fromJson(jsonObject["mdlProcessingScreenHintLabel"]);
|
|
88
|
+
result._mdlProcessingScreenProgressLabel = Font.fromJson(jsonObject["mdlProcessingScreenProgressLabel"]);
|
|
89
|
+
result._mdlProcessingScreenResultLabel = Font.fromJson(jsonObject["mdlProcessingScreenResultLabel"]);
|
|
90
|
+
result._mdlEnableNfcTitleText = Font.fromJson(jsonObject["mdlEnableNfcTitleText"]);
|
|
91
|
+
result._mdlEnableNfcDescriptionText = Font.fromJson(jsonObject["mdlEnableNfcDescriptionText"]);
|
|
92
|
+
result._mdlEnableNfcButtonText = Font.fromJson(jsonObject["mdlEnableNfcButtonText"]);
|
|
93
|
+
|
|
52
94
|
return result;
|
|
53
95
|
}
|
|
54
96
|
|
|
@@ -67,6 +109,12 @@ export class CustomizationFonts {
|
|
|
67
109
|
"rfidEnableNfcTitleText": this.rfidEnableNfcTitleText?.toJson(),
|
|
68
110
|
"rfidEnableNfcDescriptionText": this.rfidEnableNfcDescriptionText?.toJson(),
|
|
69
111
|
"rfidEnableNfcButtonText": this.rfidEnableNfcButtonText?.toJson(),
|
|
112
|
+
"mdlProcessingScreenHintLabel": this.mdlProcessingScreenHintLabel?.toJson(),
|
|
113
|
+
"mdlProcessingScreenProgressLabel": this.mdlProcessingScreenProgressLabel?.toJson(),
|
|
114
|
+
"mdlProcessingScreenResultLabel": this.mdlProcessingScreenResultLabel?.toJson(),
|
|
115
|
+
"mdlEnableNfcTitleText": this.mdlEnableNfcTitleText?.toJson(),
|
|
116
|
+
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText?.toJson(),
|
|
117
|
+
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText?.toJson(),
|
|
70
118
|
}
|
|
71
119
|
}
|
|
72
120
|
}
|
|
@@ -13,13 +13,27 @@ export class CustomizationImages {
|
|
|
13
13
|
this._set({ "rfidEnableNfcImage": val });
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
get mdlProcessingScreenFailureImage() { return this._mdlProcessingScreenFailureImage; }
|
|
17
|
+
set mdlProcessingScreenFailureImage(val) {
|
|
18
|
+
this._mdlProcessingScreenFailureImage = val;
|
|
19
|
+
this._set({ "mdlProcessingScreenFailureImage": val });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
get mdlEnableNfcImage() { return this._mdlEnableNfcImage; }
|
|
23
|
+
set mdlEnableNfcImage(val) {
|
|
24
|
+
this._mdlEnableNfcImage = val;
|
|
25
|
+
this._set({ "mdlEnableNfcImage": val });
|
|
26
|
+
}
|
|
27
|
+
|
|
16
28
|
static fromJson(jsonObject) {
|
|
17
29
|
if (jsonObject == null) return null;
|
|
18
|
-
|
|
30
|
+
|
|
19
31
|
const result = new CustomizationImages();
|
|
20
32
|
result._rfidProcessingScreenFailureImage = jsonObject["rfidProcessingScreenFailureImage"];
|
|
21
33
|
result._rfidEnableNfcImage = jsonObject["rfidEnableNfcImage"];
|
|
22
|
-
|
|
34
|
+
result._mdlProcessingScreenFailureImage = jsonObject["mdlProcessingScreenFailureImage"];
|
|
35
|
+
result._mdlEnableNfcImage = jsonObject["mdlEnableNfcImage"];
|
|
36
|
+
|
|
23
37
|
return result;
|
|
24
38
|
}
|
|
25
39
|
|
|
@@ -34,6 +48,8 @@ export class CustomizationImages {
|
|
|
34
48
|
return {
|
|
35
49
|
"rfidProcessingScreenFailureImage": this.rfidProcessingScreenFailureImage,
|
|
36
50
|
"rfidEnableNfcImage": this.rfidEnableNfcImage,
|
|
51
|
+
"mdlProcessingScreenFailureImage": this.mdlProcessingScreenFailureImage,
|
|
52
|
+
"mdlEnableNfcImage": this.mdlEnableNfcImage,
|
|
37
53
|
}
|
|
38
54
|
}
|
|
39
55
|
}
|
package/www/cordova.js
CHANGED
|
@@ -3462,6 +3462,66 @@ class CustomizationColors {
|
|
|
3462
3462
|
this._set({ "rfidEnableNfcButtonBackground": val });
|
|
3463
3463
|
}
|
|
3464
3464
|
|
|
3465
|
+
get mdlProcessingScreenBackground() { return this._mdlProcessingScreenBackground; }
|
|
3466
|
+
set mdlProcessingScreenBackground(val) {
|
|
3467
|
+
this._mdlProcessingScreenBackground = val;
|
|
3468
|
+
this._set({ "mdlProcessingScreenBackground": val });
|
|
3469
|
+
}
|
|
3470
|
+
|
|
3471
|
+
get mdlProcessingScreenHintLabelText() { return this._mdlProcessingScreenHintLabelText; }
|
|
3472
|
+
set mdlProcessingScreenHintLabelText(val) {
|
|
3473
|
+
this._mdlProcessingScreenHintLabelText = val;
|
|
3474
|
+
this._set({ "mdlProcessingScreenHintLabelText": val });
|
|
3475
|
+
}
|
|
3476
|
+
|
|
3477
|
+
get mdlProcessingScreenHintLabelBackground() { return this._mdlProcessingScreenHintLabelBackground; }
|
|
3478
|
+
set mdlProcessingScreenHintLabelBackground(val) {
|
|
3479
|
+
this._mdlProcessingScreenHintLabelBackground = val;
|
|
3480
|
+
this._set({ "mdlProcessingScreenHintLabelBackground": val });
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
get mdlProcessingScreenProgressLabelText() { return this._mdlProcessingScreenProgressLabelText; }
|
|
3484
|
+
set mdlProcessingScreenProgressLabelText(val) {
|
|
3485
|
+
this._mdlProcessingScreenProgressLabelText = val;
|
|
3486
|
+
this._set({ "mdlProcessingScreenProgressLabelText": val });
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
get mdlProcessingScreenResultLabelText() { return this._mdlProcessingScreenResultLabelText; }
|
|
3490
|
+
set mdlProcessingScreenResultLabelText(val) {
|
|
3491
|
+
this._mdlProcessingScreenResultLabelText = val;
|
|
3492
|
+
this._set({ "mdlProcessingScreenResultLabelText": val });
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3495
|
+
get mdlProcessingScreenLoadingBar() { return this._mdlProcessingScreenLoadingBar; }
|
|
3496
|
+
set mdlProcessingScreenLoadingBar(val) {
|
|
3497
|
+
this._mdlProcessingScreenLoadingBar = val;
|
|
3498
|
+
this._set({ "mdlProcessingScreenLoadingBar": val });
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
get mdlEnableNfcTitleText() { return this._mdlEnableNfcTitleText; }
|
|
3502
|
+
set mdlEnableNfcTitleText(val) {
|
|
3503
|
+
this._mdlEnableNfcTitleText = val;
|
|
3504
|
+
this._set({ "mdlEnableNfcTitleText": val });
|
|
3505
|
+
}
|
|
3506
|
+
|
|
3507
|
+
get mdlEnableNfcDescriptionText() { return this._mdlEnableNfcDescriptionText; }
|
|
3508
|
+
set mdlEnableNfcDescriptionText(val) {
|
|
3509
|
+
this._mdlEnableNfcDescriptionText = val;
|
|
3510
|
+
this._set({ "mdlEnableNfcDescriptionText": val });
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
get mdlEnableNfcButtonText() { return this._mdlEnableNfcButtonText; }
|
|
3514
|
+
set mdlEnableNfcButtonText(val) {
|
|
3515
|
+
this._mdlEnableNfcButtonText = val;
|
|
3516
|
+
this._set({ "mdlEnableNfcButtonText": val });
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3519
|
+
get mdlEnableNfcButtonBackground() { return this._mdlEnableNfcButtonBackground; }
|
|
3520
|
+
set mdlEnableNfcButtonBackground(val) {
|
|
3521
|
+
this._mdlEnableNfcButtonBackground = val;
|
|
3522
|
+
this._set({ "mdlEnableNfcButtonBackground": val });
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3465
3525
|
static fromJson(jsonObject) {
|
|
3466
3526
|
if (jsonObject == null) return null;
|
|
3467
3527
|
|
|
@@ -3478,6 +3538,16 @@ class CustomizationColors {
|
|
|
3478
3538
|
result._rfidEnableNfcDescriptionText = jsonObject["rfidEnableNfcDescriptionText"];
|
|
3479
3539
|
result._rfidEnableNfcButtonText = jsonObject["rfidEnableNfcButtonText"];
|
|
3480
3540
|
result._rfidEnableNfcButtonBackground = jsonObject["rfidEnableNfcButtonBackground"];
|
|
3541
|
+
result._mdlProcessingScreenBackground = jsonObject["mdlProcessingScreenBackground"];
|
|
3542
|
+
result._mdlProcessingScreenHintLabelText = jsonObject["mdlProcessingScreenHintLabelText"];
|
|
3543
|
+
result._mdlProcessingScreenHintLabelBackground = jsonObject["mdlProcessingScreenHintLabelBackground"];
|
|
3544
|
+
result._mdlProcessingScreenProgressLabelText = jsonObject["mdlProcessingScreenProgressLabelText"];
|
|
3545
|
+
result._mdlProcessingScreenResultLabelText = jsonObject["mdlProcessingScreenResultLabelText"];
|
|
3546
|
+
result._mdlProcessingScreenLoadingBar = jsonObject["mdlProcessingScreenLoadingBar"];
|
|
3547
|
+
result._mdlEnableNfcTitleText = jsonObject["mdlEnableNfcTitleText"];
|
|
3548
|
+
result._mdlEnableNfcDescriptionText = jsonObject["mdlEnableNfcDescriptionText"];
|
|
3549
|
+
result._mdlEnableNfcButtonText = jsonObject["mdlEnableNfcButtonText"];
|
|
3550
|
+
result._mdlEnableNfcButtonBackground = jsonObject["mdlEnableNfcButtonBackground"];
|
|
3481
3551
|
|
|
3482
3552
|
return result;
|
|
3483
3553
|
}
|
|
@@ -3503,6 +3573,16 @@ class CustomizationColors {
|
|
|
3503
3573
|
"rfidEnableNfcDescriptionText": this.rfidEnableNfcDescriptionText,
|
|
3504
3574
|
"rfidEnableNfcButtonText": this.rfidEnableNfcButtonText,
|
|
3505
3575
|
"rfidEnableNfcButtonBackground": this.rfidEnableNfcButtonBackground,
|
|
3576
|
+
"mdlProcessingScreenBackground": this.mdlProcessingScreenBackground,
|
|
3577
|
+
"mdlProcessingScreenHintLabelText": this.mdlProcessingScreenHintLabelText,
|
|
3578
|
+
"mdlProcessingScreenHintLabelBackground": this.mdlProcessingScreenHintLabelBackground,
|
|
3579
|
+
"mdlProcessingScreenProgressLabelText": this.mdlProcessingScreenProgressLabelText,
|
|
3580
|
+
"mdlProcessingScreenResultLabelText": this.mdlProcessingScreenResultLabelText,
|
|
3581
|
+
"mdlProcessingScreenLoadingBar": this.mdlProcessingScreenLoadingBar,
|
|
3582
|
+
"mdlEnableNfcTitleText": this.mdlEnableNfcTitleText,
|
|
3583
|
+
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText,
|
|
3584
|
+
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText,
|
|
3585
|
+
"mdlEnableNfcButtonBackground": this.mdlEnableNfcButtonBackground,
|
|
3506
3586
|
}
|
|
3507
3587
|
}
|
|
3508
3588
|
}
|
|
@@ -3562,9 +3642,45 @@ class CustomizationFonts {
|
|
|
3562
3642
|
this._set({ "rfidEnableNfcButtonText": val });
|
|
3563
3643
|
}
|
|
3564
3644
|
|
|
3645
|
+
get mdlProcessingScreenHintLabel() { return this._mdlProcessingScreenHintLabel; }
|
|
3646
|
+
set mdlProcessingScreenHintLabel(val) {
|
|
3647
|
+
this._mdlProcessingScreenHintLabel = val;
|
|
3648
|
+
this._set({ "mdlProcessingScreenHintLabel": val });
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
get mdlProcessingScreenProgressLabel() { return this._mdlProcessingScreenProgressLabel; }
|
|
3652
|
+
set mdlProcessingScreenProgressLabel(val) {
|
|
3653
|
+
this._mdlProcessingScreenProgressLabel = val;
|
|
3654
|
+
this._set({ "mdlProcessingScreenProgressLabel": val });
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
get mdlProcessingScreenResultLabel() { return this._mdlProcessingScreenResultLabel; }
|
|
3658
|
+
set mdlProcessingScreenResultLabel(val) {
|
|
3659
|
+
this._mdlProcessingScreenResultLabel = val;
|
|
3660
|
+
this._set({ "mdlProcessingScreenResultLabel": val });
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
get mdlEnableNfcTitleText() { return this._mdlEnableNfcTitleText; }
|
|
3664
|
+
set mdlEnableNfcTitleText(val) {
|
|
3665
|
+
this._mdlEnableNfcTitleText = val;
|
|
3666
|
+
this._set({ "mdlEnableNfcTitleText": val });
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
get mdlEnableNfcDescriptionText() { return this._mdlEnableNfcDescriptionText; }
|
|
3670
|
+
set mdlEnableNfcDescriptionText(val) {
|
|
3671
|
+
this._mdlEnableNfcDescriptionText = val;
|
|
3672
|
+
this._set({ "mdlEnableNfcDescriptionText": val });
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
get mdlEnableNfcButtonText() { return this._mdlEnableNfcButtonText; }
|
|
3676
|
+
set mdlEnableNfcButtonText(val) {
|
|
3677
|
+
this._mdlEnableNfcButtonText = val;
|
|
3678
|
+
this._set({ "mdlEnableNfcButtonText": val });
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3565
3681
|
static fromJson(jsonObject) {
|
|
3566
3682
|
if (jsonObject == null) return null;
|
|
3567
|
-
|
|
3683
|
+
|
|
3568
3684
|
const result = new CustomizationFonts();
|
|
3569
3685
|
result._rfidProcessingScreenHintLabel = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["rfidProcessingScreenHintLabel"]);
|
|
3570
3686
|
result._rfidProcessingScreenProgressLabel = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["rfidProcessingScreenProgressLabel"]);
|
|
@@ -3572,7 +3688,13 @@ class CustomizationFonts {
|
|
|
3572
3688
|
result._rfidEnableNfcTitleText = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["rfidEnableNfcTitleText"]);
|
|
3573
3689
|
result._rfidEnableNfcDescriptionText = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["rfidEnableNfcDescriptionText"]);
|
|
3574
3690
|
result._rfidEnableNfcButtonText = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["rfidEnableNfcButtonText"]);
|
|
3575
|
-
|
|
3691
|
+
result._mdlProcessingScreenHintLabel = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["mdlProcessingScreenHintLabel"]);
|
|
3692
|
+
result._mdlProcessingScreenProgressLabel = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["mdlProcessingScreenProgressLabel"]);
|
|
3693
|
+
result._mdlProcessingScreenResultLabel = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["mdlProcessingScreenResultLabel"]);
|
|
3694
|
+
result._mdlEnableNfcTitleText = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["mdlEnableNfcTitleText"]);
|
|
3695
|
+
result._mdlEnableNfcDescriptionText = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["mdlEnableNfcDescriptionText"]);
|
|
3696
|
+
result._mdlEnableNfcButtonText = _Font__WEBPACK_IMPORTED_MODULE_1__.Font.fromJson(jsonObject["mdlEnableNfcButtonText"]);
|
|
3697
|
+
|
|
3576
3698
|
return result;
|
|
3577
3699
|
}
|
|
3578
3700
|
|
|
@@ -3591,6 +3713,12 @@ class CustomizationFonts {
|
|
|
3591
3713
|
"rfidEnableNfcTitleText": this.rfidEnableNfcTitleText?.toJson(),
|
|
3592
3714
|
"rfidEnableNfcDescriptionText": this.rfidEnableNfcDescriptionText?.toJson(),
|
|
3593
3715
|
"rfidEnableNfcButtonText": this.rfidEnableNfcButtonText?.toJson(),
|
|
3716
|
+
"mdlProcessingScreenHintLabel": this.mdlProcessingScreenHintLabel?.toJson(),
|
|
3717
|
+
"mdlProcessingScreenProgressLabel": this.mdlProcessingScreenProgressLabel?.toJson(),
|
|
3718
|
+
"mdlProcessingScreenResultLabel": this.mdlProcessingScreenResultLabel?.toJson(),
|
|
3719
|
+
"mdlEnableNfcTitleText": this.mdlEnableNfcTitleText?.toJson(),
|
|
3720
|
+
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText?.toJson(),
|
|
3721
|
+
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText?.toJson(),
|
|
3594
3722
|
}
|
|
3595
3723
|
}
|
|
3596
3724
|
}
|
|
@@ -3624,13 +3752,27 @@ class CustomizationImages {
|
|
|
3624
3752
|
this._set({ "rfidEnableNfcImage": val });
|
|
3625
3753
|
}
|
|
3626
3754
|
|
|
3755
|
+
get mdlProcessingScreenFailureImage() { return this._mdlProcessingScreenFailureImage; }
|
|
3756
|
+
set mdlProcessingScreenFailureImage(val) {
|
|
3757
|
+
this._mdlProcessingScreenFailureImage = val;
|
|
3758
|
+
this._set({ "mdlProcessingScreenFailureImage": val });
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
get mdlEnableNfcImage() { return this._mdlEnableNfcImage; }
|
|
3762
|
+
set mdlEnableNfcImage(val) {
|
|
3763
|
+
this._mdlEnableNfcImage = val;
|
|
3764
|
+
this._set({ "mdlEnableNfcImage": val });
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3627
3767
|
static fromJson(jsonObject) {
|
|
3628
3768
|
if (jsonObject == null) return null;
|
|
3629
|
-
|
|
3769
|
+
|
|
3630
3770
|
const result = new CustomizationImages();
|
|
3631
3771
|
result._rfidProcessingScreenFailureImage = jsonObject["rfidProcessingScreenFailureImage"];
|
|
3632
3772
|
result._rfidEnableNfcImage = jsonObject["rfidEnableNfcImage"];
|
|
3633
|
-
|
|
3773
|
+
result._mdlProcessingScreenFailureImage = jsonObject["mdlProcessingScreenFailureImage"];
|
|
3774
|
+
result._mdlEnableNfcImage = jsonObject["mdlEnableNfcImage"];
|
|
3775
|
+
|
|
3634
3776
|
return result;
|
|
3635
3777
|
}
|
|
3636
3778
|
|
|
@@ -3645,6 +3787,8 @@ class CustomizationImages {
|
|
|
3645
3787
|
return {
|
|
3646
3788
|
"rfidProcessingScreenFailureImage": this.rfidProcessingScreenFailureImage,
|
|
3647
3789
|
"rfidEnableNfcImage": this.rfidEnableNfcImage,
|
|
3790
|
+
"mdlProcessingScreenFailureImage": this.mdlProcessingScreenFailureImage,
|
|
3791
|
+
"mdlEnableNfcImage": this.mdlEnableNfcImage,
|
|
3648
3792
|
}
|
|
3649
3793
|
}
|
|
3650
3794
|
}
|
|
@@ -73,6 +73,66 @@ export class CustomizationColors {
|
|
|
73
73
|
this._set({ "rfidEnableNfcButtonBackground": val });
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
get mdlProcessingScreenBackground() { return this._mdlProcessingScreenBackground; }
|
|
77
|
+
set mdlProcessingScreenBackground(val) {
|
|
78
|
+
this._mdlProcessingScreenBackground = val;
|
|
79
|
+
this._set({ "mdlProcessingScreenBackground": val });
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
get mdlProcessingScreenHintLabelText() { return this._mdlProcessingScreenHintLabelText; }
|
|
83
|
+
set mdlProcessingScreenHintLabelText(val) {
|
|
84
|
+
this._mdlProcessingScreenHintLabelText = val;
|
|
85
|
+
this._set({ "mdlProcessingScreenHintLabelText": val });
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
get mdlProcessingScreenHintLabelBackground() { return this._mdlProcessingScreenHintLabelBackground; }
|
|
89
|
+
set mdlProcessingScreenHintLabelBackground(val) {
|
|
90
|
+
this._mdlProcessingScreenHintLabelBackground = val;
|
|
91
|
+
this._set({ "mdlProcessingScreenHintLabelBackground": val });
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
get mdlProcessingScreenProgressLabelText() { return this._mdlProcessingScreenProgressLabelText; }
|
|
95
|
+
set mdlProcessingScreenProgressLabelText(val) {
|
|
96
|
+
this._mdlProcessingScreenProgressLabelText = val;
|
|
97
|
+
this._set({ "mdlProcessingScreenProgressLabelText": val });
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
get mdlProcessingScreenResultLabelText() { return this._mdlProcessingScreenResultLabelText; }
|
|
101
|
+
set mdlProcessingScreenResultLabelText(val) {
|
|
102
|
+
this._mdlProcessingScreenResultLabelText = val;
|
|
103
|
+
this._set({ "mdlProcessingScreenResultLabelText": val });
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
get mdlProcessingScreenLoadingBar() { return this._mdlProcessingScreenLoadingBar; }
|
|
107
|
+
set mdlProcessingScreenLoadingBar(val) {
|
|
108
|
+
this._mdlProcessingScreenLoadingBar = val;
|
|
109
|
+
this._set({ "mdlProcessingScreenLoadingBar": val });
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
get mdlEnableNfcTitleText() { return this._mdlEnableNfcTitleText; }
|
|
113
|
+
set mdlEnableNfcTitleText(val) {
|
|
114
|
+
this._mdlEnableNfcTitleText = val;
|
|
115
|
+
this._set({ "mdlEnableNfcTitleText": val });
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
get mdlEnableNfcDescriptionText() { return this._mdlEnableNfcDescriptionText; }
|
|
119
|
+
set mdlEnableNfcDescriptionText(val) {
|
|
120
|
+
this._mdlEnableNfcDescriptionText = val;
|
|
121
|
+
this._set({ "mdlEnableNfcDescriptionText": val });
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
get mdlEnableNfcButtonText() { return this._mdlEnableNfcButtonText; }
|
|
125
|
+
set mdlEnableNfcButtonText(val) {
|
|
126
|
+
this._mdlEnableNfcButtonText = val;
|
|
127
|
+
this._set({ "mdlEnableNfcButtonText": val });
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
get mdlEnableNfcButtonBackground() { return this._mdlEnableNfcButtonBackground; }
|
|
131
|
+
set mdlEnableNfcButtonBackground(val) {
|
|
132
|
+
this._mdlEnableNfcButtonBackground = val;
|
|
133
|
+
this._set({ "mdlEnableNfcButtonBackground": val });
|
|
134
|
+
}
|
|
135
|
+
|
|
76
136
|
static fromJson(jsonObject) {
|
|
77
137
|
if (jsonObject == null) return null;
|
|
78
138
|
|
|
@@ -89,6 +149,16 @@ export class CustomizationColors {
|
|
|
89
149
|
result._rfidEnableNfcDescriptionText = jsonObject["rfidEnableNfcDescriptionText"];
|
|
90
150
|
result._rfidEnableNfcButtonText = jsonObject["rfidEnableNfcButtonText"];
|
|
91
151
|
result._rfidEnableNfcButtonBackground = jsonObject["rfidEnableNfcButtonBackground"];
|
|
152
|
+
result._mdlProcessingScreenBackground = jsonObject["mdlProcessingScreenBackground"];
|
|
153
|
+
result._mdlProcessingScreenHintLabelText = jsonObject["mdlProcessingScreenHintLabelText"];
|
|
154
|
+
result._mdlProcessingScreenHintLabelBackground = jsonObject["mdlProcessingScreenHintLabelBackground"];
|
|
155
|
+
result._mdlProcessingScreenProgressLabelText = jsonObject["mdlProcessingScreenProgressLabelText"];
|
|
156
|
+
result._mdlProcessingScreenResultLabelText = jsonObject["mdlProcessingScreenResultLabelText"];
|
|
157
|
+
result._mdlProcessingScreenLoadingBar = jsonObject["mdlProcessingScreenLoadingBar"];
|
|
158
|
+
result._mdlEnableNfcTitleText = jsonObject["mdlEnableNfcTitleText"];
|
|
159
|
+
result._mdlEnableNfcDescriptionText = jsonObject["mdlEnableNfcDescriptionText"];
|
|
160
|
+
result._mdlEnableNfcButtonText = jsonObject["mdlEnableNfcButtonText"];
|
|
161
|
+
result._mdlEnableNfcButtonBackground = jsonObject["mdlEnableNfcButtonBackground"];
|
|
92
162
|
|
|
93
163
|
return result;
|
|
94
164
|
}
|
|
@@ -114,6 +184,16 @@ export class CustomizationColors {
|
|
|
114
184
|
"rfidEnableNfcDescriptionText": this.rfidEnableNfcDescriptionText,
|
|
115
185
|
"rfidEnableNfcButtonText": this.rfidEnableNfcButtonText,
|
|
116
186
|
"rfidEnableNfcButtonBackground": this.rfidEnableNfcButtonBackground,
|
|
187
|
+
"mdlProcessingScreenBackground": this.mdlProcessingScreenBackground,
|
|
188
|
+
"mdlProcessingScreenHintLabelText": this.mdlProcessingScreenHintLabelText,
|
|
189
|
+
"mdlProcessingScreenHintLabelBackground": this.mdlProcessingScreenHintLabelBackground,
|
|
190
|
+
"mdlProcessingScreenProgressLabelText": this.mdlProcessingScreenProgressLabelText,
|
|
191
|
+
"mdlProcessingScreenResultLabelText": this.mdlProcessingScreenResultLabelText,
|
|
192
|
+
"mdlProcessingScreenLoadingBar": this.mdlProcessingScreenLoadingBar,
|
|
193
|
+
"mdlEnableNfcTitleText": this.mdlEnableNfcTitleText,
|
|
194
|
+
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText,
|
|
195
|
+
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText,
|
|
196
|
+
"mdlEnableNfcButtonBackground": this.mdlEnableNfcButtonBackground,
|
|
117
197
|
}
|
|
118
198
|
}
|
|
119
199
|
}
|
|
@@ -38,9 +38,45 @@ export class CustomizationFonts {
|
|
|
38
38
|
this._set({ "rfidEnableNfcButtonText": val });
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
get mdlProcessingScreenHintLabel() { return this._mdlProcessingScreenHintLabel; }
|
|
42
|
+
set mdlProcessingScreenHintLabel(val) {
|
|
43
|
+
this._mdlProcessingScreenHintLabel = val;
|
|
44
|
+
this._set({ "mdlProcessingScreenHintLabel": val });
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
get mdlProcessingScreenProgressLabel() { return this._mdlProcessingScreenProgressLabel; }
|
|
48
|
+
set mdlProcessingScreenProgressLabel(val) {
|
|
49
|
+
this._mdlProcessingScreenProgressLabel = val;
|
|
50
|
+
this._set({ "mdlProcessingScreenProgressLabel": val });
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
get mdlProcessingScreenResultLabel() { return this._mdlProcessingScreenResultLabel; }
|
|
54
|
+
set mdlProcessingScreenResultLabel(val) {
|
|
55
|
+
this._mdlProcessingScreenResultLabel = val;
|
|
56
|
+
this._set({ "mdlProcessingScreenResultLabel": val });
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
get mdlEnableNfcTitleText() { return this._mdlEnableNfcTitleText; }
|
|
60
|
+
set mdlEnableNfcTitleText(val) {
|
|
61
|
+
this._mdlEnableNfcTitleText = val;
|
|
62
|
+
this._set({ "mdlEnableNfcTitleText": val });
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
get mdlEnableNfcDescriptionText() { return this._mdlEnableNfcDescriptionText; }
|
|
66
|
+
set mdlEnableNfcDescriptionText(val) {
|
|
67
|
+
this._mdlEnableNfcDescriptionText = val;
|
|
68
|
+
this._set({ "mdlEnableNfcDescriptionText": val });
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
get mdlEnableNfcButtonText() { return this._mdlEnableNfcButtonText; }
|
|
72
|
+
set mdlEnableNfcButtonText(val) {
|
|
73
|
+
this._mdlEnableNfcButtonText = val;
|
|
74
|
+
this._set({ "mdlEnableNfcButtonText": val });
|
|
75
|
+
}
|
|
76
|
+
|
|
41
77
|
static fromJson(jsonObject) {
|
|
42
78
|
if (jsonObject == null) return null;
|
|
43
|
-
|
|
79
|
+
|
|
44
80
|
const result = new CustomizationFonts();
|
|
45
81
|
result._rfidProcessingScreenHintLabel = Font.fromJson(jsonObject["rfidProcessingScreenHintLabel"]);
|
|
46
82
|
result._rfidProcessingScreenProgressLabel = Font.fromJson(jsonObject["rfidProcessingScreenProgressLabel"]);
|
|
@@ -48,7 +84,13 @@ export class CustomizationFonts {
|
|
|
48
84
|
result._rfidEnableNfcTitleText = Font.fromJson(jsonObject["rfidEnableNfcTitleText"]);
|
|
49
85
|
result._rfidEnableNfcDescriptionText = Font.fromJson(jsonObject["rfidEnableNfcDescriptionText"]);
|
|
50
86
|
result._rfidEnableNfcButtonText = Font.fromJson(jsonObject["rfidEnableNfcButtonText"]);
|
|
51
|
-
|
|
87
|
+
result._mdlProcessingScreenHintLabel = Font.fromJson(jsonObject["mdlProcessingScreenHintLabel"]);
|
|
88
|
+
result._mdlProcessingScreenProgressLabel = Font.fromJson(jsonObject["mdlProcessingScreenProgressLabel"]);
|
|
89
|
+
result._mdlProcessingScreenResultLabel = Font.fromJson(jsonObject["mdlProcessingScreenResultLabel"]);
|
|
90
|
+
result._mdlEnableNfcTitleText = Font.fromJson(jsonObject["mdlEnableNfcTitleText"]);
|
|
91
|
+
result._mdlEnableNfcDescriptionText = Font.fromJson(jsonObject["mdlEnableNfcDescriptionText"]);
|
|
92
|
+
result._mdlEnableNfcButtonText = Font.fromJson(jsonObject["mdlEnableNfcButtonText"]);
|
|
93
|
+
|
|
52
94
|
return result;
|
|
53
95
|
}
|
|
54
96
|
|
|
@@ -67,6 +109,12 @@ export class CustomizationFonts {
|
|
|
67
109
|
"rfidEnableNfcTitleText": this.rfidEnableNfcTitleText?.toJson(),
|
|
68
110
|
"rfidEnableNfcDescriptionText": this.rfidEnableNfcDescriptionText?.toJson(),
|
|
69
111
|
"rfidEnableNfcButtonText": this.rfidEnableNfcButtonText?.toJson(),
|
|
112
|
+
"mdlProcessingScreenHintLabel": this.mdlProcessingScreenHintLabel?.toJson(),
|
|
113
|
+
"mdlProcessingScreenProgressLabel": this.mdlProcessingScreenProgressLabel?.toJson(),
|
|
114
|
+
"mdlProcessingScreenResultLabel": this.mdlProcessingScreenResultLabel?.toJson(),
|
|
115
|
+
"mdlEnableNfcTitleText": this.mdlEnableNfcTitleText?.toJson(),
|
|
116
|
+
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText?.toJson(),
|
|
117
|
+
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText?.toJson(),
|
|
70
118
|
}
|
|
71
119
|
}
|
|
72
120
|
}
|
|
@@ -13,13 +13,27 @@ export class CustomizationImages {
|
|
|
13
13
|
this._set({ "rfidEnableNfcImage": val });
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
get mdlProcessingScreenFailureImage() { return this._mdlProcessingScreenFailureImage; }
|
|
17
|
+
set mdlProcessingScreenFailureImage(val) {
|
|
18
|
+
this._mdlProcessingScreenFailureImage = val;
|
|
19
|
+
this._set({ "mdlProcessingScreenFailureImage": val });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
get mdlEnableNfcImage() { return this._mdlEnableNfcImage; }
|
|
23
|
+
set mdlEnableNfcImage(val) {
|
|
24
|
+
this._mdlEnableNfcImage = val;
|
|
25
|
+
this._set({ "mdlEnableNfcImage": val });
|
|
26
|
+
}
|
|
27
|
+
|
|
16
28
|
static fromJson(jsonObject) {
|
|
17
29
|
if (jsonObject == null) return null;
|
|
18
|
-
|
|
30
|
+
|
|
19
31
|
const result = new CustomizationImages();
|
|
20
32
|
result._rfidProcessingScreenFailureImage = jsonObject["rfidProcessingScreenFailureImage"];
|
|
21
33
|
result._rfidEnableNfcImage = jsonObject["rfidEnableNfcImage"];
|
|
22
|
-
|
|
34
|
+
result._mdlProcessingScreenFailureImage = jsonObject["mdlProcessingScreenFailureImage"];
|
|
35
|
+
result._mdlEnableNfcImage = jsonObject["mdlEnableNfcImage"];
|
|
36
|
+
|
|
23
37
|
return result;
|
|
24
38
|
}
|
|
25
39
|
|
|
@@ -34,6 +48,8 @@ export class CustomizationImages {
|
|
|
34
48
|
return {
|
|
35
49
|
"rfidProcessingScreenFailureImage": this.rfidProcessingScreenFailureImage,
|
|
36
50
|
"rfidEnableNfcImage": this.rfidEnableNfcImage,
|
|
51
|
+
"mdlProcessingScreenFailureImage": this.mdlProcessingScreenFailureImage,
|
|
52
|
+
"mdlEnableNfcImage": this.mdlEnableNfcImage,
|
|
37
53
|
}
|
|
38
54
|
}
|
|
39
55
|
}
|
|
@@ -15,6 +15,20 @@ export declare class CustomizationColors {
|
|
|
15
15
|
rfidEnableNfcButtonText?: number;
|
|
16
16
|
/** Android only. */
|
|
17
17
|
rfidEnableNfcButtonBackground?: number;
|
|
18
|
+
mdlProcessingScreenBackground?: number;
|
|
19
|
+
mdlProcessingScreenHintLabelText?: number;
|
|
20
|
+
mdlProcessingScreenHintLabelBackground?: number;
|
|
21
|
+
mdlProcessingScreenProgressLabelText?: number;
|
|
22
|
+
mdlProcessingScreenResultLabelText?: number;
|
|
23
|
+
mdlProcessingScreenLoadingBar?: number;
|
|
24
|
+
/** Android only. */
|
|
25
|
+
mdlEnableNfcTitleText?: number;
|
|
26
|
+
/** Android only. */
|
|
27
|
+
mdlEnableNfcDescriptionText?: number;
|
|
28
|
+
/** Android only. */
|
|
29
|
+
mdlEnableNfcButtonText?: number;
|
|
30
|
+
/** Android only. */
|
|
31
|
+
mdlEnableNfcButtonBackground?: number;
|
|
18
32
|
|
|
19
33
|
/**
|
|
20
34
|
* Allows you to deserialize object.
|
|
@@ -10,6 +10,15 @@ export declare class CustomizationFonts {
|
|
|
10
10
|
rfidEnableNfcDescriptionText?: number;
|
|
11
11
|
/** Android only. */
|
|
12
12
|
rfidEnableNfcButtonText?: number;
|
|
13
|
+
mdlProcessingScreenHintLabel?: number;
|
|
14
|
+
mdlProcessingScreenProgressLabel?: number;
|
|
15
|
+
mdlProcessingScreenResultLabel?: number;
|
|
16
|
+
/** Android only. */
|
|
17
|
+
mdlEnableNfcTitleText?: number;
|
|
18
|
+
/** Android only. */
|
|
19
|
+
mdlEnableNfcDescriptionText?: number;
|
|
20
|
+
/** Android only. */
|
|
21
|
+
mdlEnableNfcButtonText?: number;
|
|
13
22
|
|
|
14
23
|
/**
|
|
15
24
|
* Allows you to deserialize object.
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
export declare class CustomizationImages {
|
|
2
|
-
/**
|
|
3
|
-
* Base64 string.
|
|
4
|
-
*/
|
|
2
|
+
/** Base64 string. */
|
|
5
3
|
rfidProcessingScreenFailureImage?: string;
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Android only.
|
|
9
|
-
*/
|
|
4
|
+
/** Android only. */
|
|
10
5
|
rfidEnableNfcImage?: string;
|
|
6
|
+
mdlProcessingScreenFailureImage?: string;
|
|
7
|
+
/** Android only. */
|
|
8
|
+
mdlEnableNfcImage?: string;
|
|
11
9
|
|
|
12
10
|
/**
|
|
13
11
|
* Allows you to deserialize object.
|