@spot-flow/checkout-inline-js 0.1.38-dev.2 → 0.1.38
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/checkout-inline.es.js +193 -170
- package/dist/checkout-inline.js +40 -40
- package/dist/data.d.ts +3 -7
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/data.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { RegionDetail } from './types';
|
|
2
|
+
|
|
1
3
|
export declare const TAB_OPTION_OBJECT: {
|
|
2
4
|
card: {
|
|
3
5
|
key: string;
|
|
@@ -38,10 +40,4 @@ export declare const cardTypes: {
|
|
|
38
40
|
name: string;
|
|
39
41
|
icon: string;
|
|
40
42
|
}[];
|
|
41
|
-
export declare const regionDetails:
|
|
42
|
-
name: string;
|
|
43
|
-
dialCode: string;
|
|
44
|
-
length: string;
|
|
45
|
-
cardTypes: string[];
|
|
46
|
-
icon: string;
|
|
47
|
-
}[];
|
|
43
|
+
export declare const regionDetails: RegionDetail[];
|
package/dist/types.d.ts
CHANGED