idmission-web-sdk 1.0.246 → 1.0.248

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.
@@ -8,6 +8,8 @@ export type FaceLivenessSuccessClassNames = {
8
8
  imageContainer?: string;
9
9
  image?: string;
10
10
  buttonsRow?: string;
11
+ retryBtn?: string;
12
+ doneBtn?: string;
11
13
  };
12
14
  export type FaceLivenessSuccessColors = {
13
15
  doneBtn?: LoaderButtonColors;
@@ -51,7 +51,7 @@ var LanguageDetector__default = /*#__PURE__*/_interopDefaultLegacy(LanguageDetec
51
51
  var i18n__default = /*#__PURE__*/_interopDefaultLegacy(i18n);
52
52
  var SignatureCanvas__default = /*#__PURE__*/_interopDefaultLegacy(SignatureCanvas);
53
53
 
54
- var webSdkVersion = '1.0.246';
54
+ var webSdkVersion = '1.0.248';
55
55
 
56
56
  function getPlatform() {
57
57
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
@@ -12787,11 +12787,13 @@ var FaceLivenessSuccess = function FaceLivenessSuccess(_a) {
12787
12787
  variant: "warning",
12788
12788
  onClick: onRetryClick,
12789
12789
  colors: colors.retryBtn,
12790
+ className: classNames.retryBtn,
12790
12791
  finished: true
12791
12792
  }, verbiage.retryBtnText), /*#__PURE__*/React__default['default'].createElement(LoaderButton, {
12792
12793
  variant: "positive",
12793
12794
  onClick: onDoneClick,
12794
12795
  colors: colors.doneBtn,
12796
+ className: classNames.doneBtn,
12795
12797
  finished: true
12796
12798
  }, verbiage.doneBtnText))));
12797
12799
  };