gbc-kyc-kit 3.1.0 → 3.1.1

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.
@@ -44264,7 +44264,6 @@ const V2OcrComponent = ({
44264
44264
  error,
44265
44265
  videoRef,
44266
44266
  canvasRef,
44267
- canSwitchCamera: canSwitchCameraHook,
44268
44267
  capturePhoto,
44269
44268
  handleCloseCamera,
44270
44269
  handleRetryCamera,
@@ -44272,7 +44271,6 @@ const V2OcrComponent = ({
44272
44271
  removeDocument,
44273
44272
  handleFileInputChange,
44274
44273
  currentCameraIndex: currentIdx,
44275
- setAvailableCameras,
44276
44274
  setRecomendationsReviewed,
44277
44275
  recomendationsReviewed
44278
44276
  } = CameraController();
@@ -44352,7 +44350,9 @@ const V2OcrComponent = ({
44352
44350
  variant: "subtitle2",
44353
44351
  gutterBottom: true,
44354
44352
  fontWeight: "bold",
44355
- color: "primary",
44353
+ sx: {
44354
+ color: "var(--primary)"
44355
+ },
44356
44356
  textAlign: "left",
44357
44357
  children: "Recomendaciones:"
44358
44358
  }), /* @__PURE__ */ jsxs("div", {
@@ -44426,8 +44426,8 @@ const V2OcrComponent = ({
44426
44426
  children: "Recorta la imagen para que se ajuste al documento, recuerda dejar bordes suficientes para el reconocimiento del tipo de documento"
44427
44427
  })]
44428
44428
  })]
44429
- }), /* @__PURE__ */ jsx$1(MUIButton, {
44430
- variant: "contained",
44429
+ }), /* @__PURE__ */ jsx$1(CustomButton, {
44430
+ type: "button",
44431
44431
  onClick: () => setRecomendationsReviewed(true),
44432
44432
  fullWidth: true,
44433
44433
  children: "Continuar"
@@ -44578,7 +44578,7 @@ const V2OcrComponent = ({
44578
44578
  sx: {
44579
44579
  borderStyle: "dashed",
44580
44580
  "&:hover": {
44581
- borderColor: "primary.main",
44581
+ borderColor: `var(--primary)`,
44582
44582
  backgroundColor: "action.hover"
44583
44583
  }
44584
44584
  },