@microblink/blinkid-ux-manager 7.3.1 → 7.4.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/dist/blinkid-ux-manager.js +205 -28
- package/dist/blinkid-ux-manager.js.map +1 -1
- package/package.json +3 -3
- package/types/core/BlinkIdProcessingError.d.ts +5 -0
- package/types/core/BlinkIdProcessingError.d.ts.map +1 -1
- package/types/core/BlinkIdUxManager.d.ts +80 -25
- package/types/core/BlinkIdUxManager.d.ts.map +1 -1
- package/types/core/DocumentClassFilter.d.ts +5 -3
- package/types/core/DocumentClassFilter.d.ts.map +1 -1
- package/types/core/blinkid-ui-state.d.ts +38 -0
- package/types/core/blinkid-ui-state.d.ts.map +1 -1
- package/types/core/utils.d.ts +18 -0
- package/types/core/utils.d.ts.map +1 -1
- package/types/index.d.ts +14 -0
- package/types/index.d.ts.map +1 -1
- package/types/index.rollup.d.ts +242 -34
- package/types/ui/BlinkIdFeedbackUi.d.ts +8 -0
- package/types/ui/BlinkIdFeedbackUi.d.ts.map +1 -1
- package/types/ui/BlinkIdUiStoreContext.d.ts +44 -0
- package/types/ui/BlinkIdUiStoreContext.d.ts.map +1 -1
- package/types/ui/LocalizationContext.d.ts +14 -0
- package/types/ui/LocalizationContext.d.ts.map +1 -1
- package/types/ui/UiFeedbackOverlay.d.ts +6 -0
- package/types/ui/UiFeedbackOverlay.d.ts.map +1 -1
- package/types/ui/createBlinkIdFeedbackUi.d.ts +15 -0
- package/types/ui/createBlinkIdFeedbackUi.d.ts.map +1 -1
- package/types/ui/dialogs/ErrorModal.d.ts +9 -0
- package/types/ui/dialogs/ErrorModal.d.ts.map +1 -1
- package/types/ui/dialogs/HelpModal.d.ts +11 -0
- package/types/ui/dialogs/HelpModal.d.ts.map +1 -1
- package/types/ui/dialogs/OnboardingGuideModal.d.ts +5 -0
- package/types/ui/dialogs/OnboardingGuideModal.d.ts.map +1 -1
- package/types/ui/feedbackMessages.d.ts +3 -0
- package/types/ui/feedbackMessages.d.ts.map +1 -1
- package/types/ui/locales/en.d.ts +3 -0
- package/types/ui/locales/en.d.ts.map +1 -1
|
@@ -2,11 +2,20 @@
|
|
|
2
2
|
* Copyright (c) 2025 Microblink Ltd. All rights reserved.
|
|
3
3
|
*/
|
|
4
4
|
import { type Component } from "solid-js";
|
|
5
|
+
/**
|
|
6
|
+
* The props for the ErrorModal component.
|
|
7
|
+
*/
|
|
5
8
|
interface ErrorModalProps {
|
|
6
9
|
header: string;
|
|
7
10
|
text: string;
|
|
8
11
|
shouldResetScanningSession?: boolean;
|
|
9
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* The ErrorModal component.
|
|
15
|
+
*
|
|
16
|
+
* @param props - The props for the ErrorModal component.
|
|
17
|
+
* @returns The ErrorModal component.
|
|
18
|
+
*/
|
|
10
19
|
export declare const ErrorModal: Component<ErrorModalProps>;
|
|
11
20
|
export {};
|
|
12
21
|
//# sourceMappingURL=ErrorModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ErrorModal.d.ts","sourceRoot":"","sources":["../../../src/ui/dialogs/ErrorModal.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AAI1C,UAAU,eAAe;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,0BAA0B,CAAC,EAAE,OAAO,CAAC;CACtC;AAED,eAAO,MAAM,UAAU,EAAE,SAAS,CAAC,eAAe,CAmCjD,CAAC"}
|
|
1
|
+
{"version":3,"file":"ErrorModal.d.ts","sourceRoot":"","sources":["../../../src/ui/dialogs/ErrorModal.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AAI1C;;GAEG;AACH,UAAU,eAAe;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,0BAA0B,CAAC,EAAE,OAAO,CAAC;CACtC;AAED;;;;;GAKG;AACH,eAAO,MAAM,UAAU,EAAE,SAAS,CAAC,eAAe,CAmCjD,CAAC"}
|
|
@@ -2,7 +2,18 @@
|
|
|
2
2
|
* Copyright (c) 2025 Microblink Ltd. All rights reserved.
|
|
3
3
|
*/
|
|
4
4
|
import { type Component, ParentComponent } from "solid-js";
|
|
5
|
+
/**
|
|
6
|
+
* The HelpModal component.
|
|
7
|
+
*
|
|
8
|
+
* @returns The HelpModal component.
|
|
9
|
+
*/
|
|
5
10
|
export declare const HelpModal: Component;
|
|
11
|
+
/**
|
|
12
|
+
* The HelpButton component.
|
|
13
|
+
*
|
|
14
|
+
* @param props - The props for the HelpButton component.
|
|
15
|
+
* @returns The HelpButton component.
|
|
16
|
+
*/
|
|
6
17
|
export declare const HelpButton: ParentComponent<{
|
|
7
18
|
isProcessing: boolean;
|
|
8
19
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HelpModal.d.ts","sourceRoot":"","sources":["../../../src/ui/dialogs/HelpModal.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,KAAK,SAAS,EAKd,eAAe,EAChB,MAAM,UAAU,CAAC;AAclB,eAAO,MAAM,SAAS,EAAE,SAkHvB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,eAAe,CAAC;IAAE,YAAY,EAAE,OAAO,CAAA;CAAE,CAwFjE,CAAC"}
|
|
1
|
+
{"version":3,"file":"HelpModal.d.ts","sourceRoot":"","sources":["../../../src/ui/dialogs/HelpModal.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,KAAK,SAAS,EAKd,eAAe,EAChB,MAAM,UAAU,CAAC;AAclB;;;;GAIG;AACH,eAAO,MAAM,SAAS,EAAE,SAkHvB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,UAAU,EAAE,eAAe,CAAC;IAAE,YAAY,EAAE,OAAO,CAAA;CAAE,CAwFjE,CAAC"}
|
|
@@ -2,5 +2,10 @@
|
|
|
2
2
|
* Copyright (c) 2025 Microblink Ltd. All rights reserved.
|
|
3
3
|
*/
|
|
4
4
|
import { type Component } from "solid-js";
|
|
5
|
+
/**
|
|
6
|
+
* The OnboardingGuideModal component.
|
|
7
|
+
*
|
|
8
|
+
* @returns The OnboardingGuideModal component.
|
|
9
|
+
*/
|
|
5
10
|
export declare const OnboardingGuideModal: Component;
|
|
6
11
|
//# sourceMappingURL=OnboardingGuideModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OnboardingGuideModal.d.ts","sourceRoot":"","sources":["../../../src/ui/dialogs/OnboardingGuideModal.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AAS1C,eAAO,MAAM,oBAAoB,EAAE,SA0ClC,CAAC"}
|
|
1
|
+
{"version":3,"file":"OnboardingGuideModal.d.ts","sourceRoot":"","sources":["../../../src/ui/dialogs/OnboardingGuideModal.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AAS1C;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,EAAE,SA0ClC,CAAC"}
|
|
@@ -3,5 +3,8 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { BlinkIdUiStateKey } from "../core/blinkid-ui-state";
|
|
5
5
|
import { LocalizationStrings } from "./LocalizationContext";
|
|
6
|
+
/**
|
|
7
|
+
* The feedback messages.
|
|
8
|
+
*/
|
|
6
9
|
export declare const feedbackMessages: Partial<Record<BlinkIdUiStateKey, keyof LocalizationStrings>>;
|
|
7
10
|
//# sourceMappingURL=feedbackMessages.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedbackMessages.d.ts","sourceRoot":"","sources":["../../src/ui/feedbackMessages.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,eAAO,MAAM,gBAAgB,EAAE,OAAO,CACpC,MAAM,CAAC,iBAAiB,EAAE,MAAM,mBAAmB,CAAC,CAgCrD,CAAC"}
|
|
1
|
+
{"version":3,"file":"feedbackMessages.d.ts","sourceRoot":"","sources":["../../src/ui/feedbackMessages.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CACpC,MAAM,CAAC,iBAAiB,EAAE,MAAM,mBAAmB,CAAC,CAgCrD,CAAC"}
|
package/types/ui/locales/en.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Copyright (c) 2025 Microblink Ltd. All rights reserved.
|
|
3
3
|
*/
|
|
4
|
+
/**
|
|
5
|
+
* The English localization strings.
|
|
6
|
+
*/
|
|
4
7
|
declare const _default: {
|
|
5
8
|
readonly scan_the_front_side: "Scan the front side of the document";
|
|
6
9
|
readonly scan_data_page: "Scan the data page of the document";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/ui/locales/en.ts"],"names":[],"mappings":"AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/ui/locales/en.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACH,wBAqDW"}
|