@regulaforensics/vp-frontend-document-components 7.5.1859-nightly → 7.5.1861-nightly
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/README.md +1 -1
- package/dist/index.d.ts +2 -11
- package/dist/main.iife.js +36 -36
- package/dist/main.js +10963 -10913
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1052,7 +1052,7 @@ Using CSS variables, you can change the font and the main colors of the componen
|
|
|
1052
1052
|
|:-------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------:|
|
|
1053
1053
|
| **--font-family** | The font family of all text elements. If you change the font family, make sure to adjust the font size so the message on the start screen would fit the frame. | `Noto Sans, sans-serif` |
|
|
1054
1054
|
| **--font-size** | The font size for the text elements. | `16px` |
|
|
1055
|
-
| **--main-color** | Color for the graphic elements of the component. By default, the brand Regula violet is set. | `#
|
|
1055
|
+
| **--main-color** | Color for the graphic elements of the component. By default, the brand Regula violet is set. | `#7E57C5` |
|
|
1056
1056
|
| **--hover-color** | Buttons hover color. | `#c994ff` |
|
|
1057
1057
|
| **--active-color** | Buttons active color. | `#bd7dff` |
|
|
1058
1058
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ContainerList } from '@regulaforensics/document-reader-webclient';
|
|
2
2
|
import { DocumentFormat } from '@regulaforensics/document-reader-webclient';
|
|
3
|
+
import { GetTransactionsByTagResponse } from '@regulaforensics/document-reader-webclient';
|
|
3
4
|
import { MeasureSystem } from '@regulaforensics/document-reader-webclient';
|
|
4
5
|
import { MRZFormat } from '@regulaforensics/document-reader-webclient';
|
|
5
6
|
import { Response as Response_2 } from '@regulaforensics/document-reader-webclient';
|
|
@@ -551,7 +552,7 @@ declare type TProcessingListener = ({ isProcessing }: {
|
|
|
551
552
|
|
|
552
553
|
export declare interface TransactionEvent {
|
|
553
554
|
action: EventActions.REMOTE_TRANSACTION_UPLOADED;
|
|
554
|
-
data:
|
|
555
|
+
data: GetTransactionsByTagResponse;
|
|
555
556
|
}
|
|
556
557
|
|
|
557
558
|
export declare interface TransactionInfo {
|
|
@@ -559,22 +560,12 @@ export declare interface TransactionInfo {
|
|
|
559
560
|
transactionId: string;
|
|
560
561
|
}
|
|
561
562
|
|
|
562
|
-
export declare type TransactionsListResponse = {
|
|
563
|
-
items: TransactionStatusInfo[];
|
|
564
|
-
};
|
|
565
|
-
|
|
566
563
|
export declare enum TransactionStateStatus {
|
|
567
564
|
STARTED = 0,
|
|
568
565
|
UPLOADED = 1,
|
|
569
566
|
PROCESSED = 2
|
|
570
567
|
}
|
|
571
568
|
|
|
572
|
-
export declare type TransactionStatusInfo = {
|
|
573
|
-
id: number;
|
|
574
|
-
state: TransactionStateStatus;
|
|
575
|
-
updatedAt: string;
|
|
576
|
-
};
|
|
577
|
-
|
|
578
569
|
export declare type TScenarioParams = {
|
|
579
570
|
name: string;
|
|
580
571
|
desc: string;
|