sy-ui-lib 1.0.32 → 1.0.34
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/components/BankingDetailsCard/BankingDetailsCard.types.d.ts +3 -3
- package/dist/index.cjs +11 -11
- package/dist/index.css +1 -1
- package/dist/index.js +689 -680
- package/package.json +1 -1
|
@@ -6,9 +6,9 @@ export type DetailItem = {
|
|
|
6
6
|
copyable?: boolean;
|
|
7
7
|
};
|
|
8
8
|
export declare const PaymentStatus: {
|
|
9
|
-
readonly approved: "
|
|
10
|
-
readonly pending: "
|
|
11
|
-
readonly rejected: "
|
|
9
|
+
readonly approved: "APPROVED";
|
|
10
|
+
readonly pending: "PENDING";
|
|
11
|
+
readonly rejected: "REJECTED";
|
|
12
12
|
};
|
|
13
13
|
export type PaymentStatus = (typeof PaymentStatus)[keyof typeof PaymentStatus];
|
|
14
14
|
export declare const CHIP_STATE_MAP: Record<PaymentStatus, ChipType>;
|