@hexar/biometric-identity-sdk-react-native 1.1.26 → 1.1.27

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.
@@ -263,7 +263,7 @@ const ProfilePictureCapture = ({ onComplete, onError, onCancel, theme, language,
263
263
  react_1.default.createElement(react_native_1.View, { style: styles.progressContainer },
264
264
  react_1.default.createElement(react_native_1.ActivityIndicator, { size: "large", color: theme?.primaryColor || '#4f46e5' }),
265
265
  react_1.default.createElement(react_native_1.Text, { style: [styles.progressTitle, { color: theme?.textColor || '#1e1b4b' }] }, strings.validation.title || strings.liveness.processing || strings.validation.checkingLiveness || 'Validating Profile Picture'),
266
- react_1.default.createElement(react_native_1.Text, { style: [styles.progressStatusText, { color: theme?.secondaryTextColor || '#64748b' }] }, strings.validation.validatingDocumentAndFace || strings.liveness.processing || 'Validando imagen de perfil...'),
266
+ react_1.default.createElement(react_native_1.Text, { style: [styles.progressStatusText, { color: theme?.secondaryTextColor || '#64748b' }] }, strings.validation.validatingFace || strings.liveness.processing || 'Validando rostro...'),
267
267
  react_1.default.createElement(react_native_1.View, { style: styles.progressBarContainer },
268
268
  react_1.default.createElement(react_native_1.View, { style: styles.progressBar },
269
269
  react_1.default.createElement(react_native_1.Animated.View, { style: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexar/biometric-identity-sdk-react-native",
3
- "version": "1.1.26",
3
+ "version": "1.1.27",
4
4
  "description": "React Native wrapper for Biometric Identity SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -294,7 +294,7 @@ export const ProfilePictureCapture: React.FC<ProfilePictureCaptureProps> = ({
294
294
  </Text>
295
295
 
296
296
  <Text style={[styles.progressStatusText, { color: theme?.secondaryTextColor || '#64748b' }]}>
297
- {strings.validation.validatingDocumentAndFace || strings.liveness.processing || 'Validando imagen de perfil...'}
297
+ {(strings.validation as any).validatingFace || strings.liveness.processing || 'Validando rostro...'}
298
298
  </Text>
299
299
 
300
300
  {/* Progress Bar */}