@tap-payments/apple-pay-button 0.0.37-development → 0.0.37-test

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.
Files changed (48) hide show
  1. package/build/@types/ApplePayButtonProps.d.ts +129 -0
  2. package/build/@types/ApplePayButtonProps.js +1 -0
  3. package/build/@types/charge.d.ts +57 -0
  4. package/build/@types/charge.js +1 -0
  5. package/build/@types/checkoutProfile.d.ts +195 -0
  6. package/build/@types/checkoutProfile.js +1 -0
  7. package/build/@types/enums.d.ts +65 -0
  8. package/build/@types/enums.js +76 -0
  9. package/build/@types/index.d.ts +6 -122
  10. package/build/@types/index.js +6 -1
  11. package/build/@types/tapLocalisation.d.ts +193 -0
  12. package/build/@types/tapLocalisation.js +1 -0
  13. package/build/@types/tapTheme.d.ts +842 -0
  14. package/build/@types/tapTheme.js +1 -0
  15. package/build/api.d.ts +29 -0
  16. package/build/{api/app.service.js → api.js} +87 -95
  17. package/build/constants/index.d.ts +2 -58
  18. package/build/constants/index.js +2 -58
  19. package/build/features/ApplePayButton/ApplePayButton.d.ts +3 -5
  20. package/build/features/ApplePayButton/ApplePayButton.js +8 -14
  21. package/build/features/ApplePayButton/index.d.ts +2 -2
  22. package/build/hooks/index.d.ts +0 -2
  23. package/build/hooks/index.js +0 -2
  24. package/build/hooks/useApplePay.d.ts +89 -5
  25. package/build/hooks/useApplePay.js +289 -117
  26. package/build/hooks/useMerchantApplePay.d.ts +20 -0
  27. package/build/hooks/useMerchantApplePay.js +176 -0
  28. package/build/index.d.ts +4 -6
  29. package/build/index.js +3 -9
  30. package/build/utils/config.d.ts +10 -9
  31. package/build/utils/config.js +40 -47
  32. package/build/utils/defaultValues.d.ts +2 -30
  33. package/build/utils/defaultValues.js +10 -31
  34. package/build/utils/index.d.ts +3 -0
  35. package/build/utils/index.js +3 -0
  36. package/build/utils/theme.d.ts +12 -0
  37. package/build/utils/theme.js +61 -0
  38. package/package.json +16 -11
  39. package/build/api/app.service.d.ts +0 -23
  40. package/build/api/base.d.ts +0 -9
  41. package/build/api/base.js +0 -45
  42. package/build/api/httpClient.d.ts +0 -8
  43. package/build/api/httpClient.js +0 -33
  44. package/build/features/ApplePayButton/ApplePayButton.css +0 -21
  45. package/build/hooks/useApplePayFromMerchantSide.d.ts +0 -11
  46. package/build/hooks/useApplePayFromMerchantSide.js +0 -177
  47. package/build/hooks/useScript.d.ts +0 -1
  48. package/build/hooks/useScript.js +0 -39
@@ -0,0 +1,129 @@
1
+ import { CheckoutProfileResponse } from './checkoutProfile';
2
+ import { Locale, ThemeMode, Edges, Scope, MerchantCapabilities, SupportedNetworks, ButtonType, ColorStyle } from './enums';
3
+ export interface ApplePayRequestData {
4
+ countryCode: string;
5
+ currencyCode: string;
6
+ merchantCapabilities: Array<MerchantCapabilities>;
7
+ supportedNetworks: Array<SupportedNetworks>;
8
+ billingContact?: {
9
+ phoneNumber?: string;
10
+ emailAddress?: string;
11
+ givenName: string;
12
+ familyName: string;
13
+ };
14
+ total: {
15
+ label: string;
16
+ amount: number;
17
+ };
18
+ }
19
+ export interface ApplePayDataToLunchSDKFromMerchantSide {
20
+ headers: Record<string, any>;
21
+ BASE_URL: string;
22
+ merchant: Record<string, string>;
23
+ applePayRequestData: ApplePayRequestData;
24
+ debug?: boolean;
25
+ applePaySDKVersion?: number;
26
+ }
27
+ export interface Interface {
28
+ locale?: Locale;
29
+ theme?: ThemeMode;
30
+ edges?: Edges;
31
+ type?: ButtonType;
32
+ colorStyle?: ColorStyle;
33
+ loader?: boolean;
34
+ }
35
+ export interface Customer {
36
+ id?: string;
37
+ name?: {
38
+ lang: Locale;
39
+ first: string;
40
+ last: string;
41
+ middle?: string;
42
+ }[];
43
+ contact?: {
44
+ email?: string;
45
+ phone?: {
46
+ countryCode: string;
47
+ number: string;
48
+ };
49
+ };
50
+ }
51
+ export interface Acceptance {
52
+ supportedSchemes?: Array<SupportedNetworks>;
53
+ supportedFundSource?: string[];
54
+ supportedPaymentAuthentications?: string[];
55
+ }
56
+ export interface ApplePayButtonProps {
57
+ operator: {
58
+ publicKey: string;
59
+ hashstring?: string;
60
+ };
61
+ merchant: {
62
+ id: string;
63
+ identifier?: string;
64
+ };
65
+ scope: Scope;
66
+ interface?: Interface;
67
+ customer?: Customer;
68
+ acceptance?: Acceptance;
69
+ transaction?: {
70
+ authentication?: boolean;
71
+ authorize?: {
72
+ auto: {
73
+ type: string;
74
+ time: number;
75
+ };
76
+ };
77
+ metadata?: Record<string, string>;
78
+ reference?: string;
79
+ paymentAgreement?: {
80
+ id: string;
81
+ contract?: {
82
+ id: string;
83
+ };
84
+ };
85
+ destinations?: Record<string, any>;
86
+ };
87
+ invoice?: {
88
+ id: string;
89
+ };
90
+ order: {
91
+ amount: number;
92
+ currency: string;
93
+ id?: string;
94
+ description?: string;
95
+ metadata?: Record<string, string>;
96
+ reference?: string;
97
+ };
98
+ post?: {
99
+ url: string;
100
+ };
101
+ redirect?: {
102
+ url: string;
103
+ };
104
+ onOrderCreated?: (orderId: string) => void;
105
+ onCancel?: () => void;
106
+ onError?: (error: any) => void;
107
+ onSuccess?: (data: Record<string, any>) => void;
108
+ onClick?: (data?: ApplePayDataToLunchSDKFromMerchantSide) => void;
109
+ onReady?: () => void;
110
+ metaData?: MetaData;
111
+ debug?: boolean;
112
+ integration?: 'sdk' | 'iframe';
113
+ headers?: {
114
+ mdn: string;
115
+ application: string;
116
+ };
117
+ }
118
+ export interface MerchantResponse {
119
+ id: string;
120
+ name: string;
121
+ country_code: string;
122
+ session_token: string;
123
+ [other: string]: string;
124
+ }
125
+ export interface MetaData {
126
+ merchant: MerchantResponse;
127
+ payment_options: CheckoutProfileResponse['payment_options'];
128
+ headers: Record<string, string>;
129
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,57 @@
1
+ export interface ChargeRequestBody {
2
+ source: {
3
+ id: string;
4
+ };
5
+ ipaddress?: string;
6
+ amount: number;
7
+ currency: string;
8
+ selected_amount?: number;
9
+ selected_currency?: string;
10
+ product: string;
11
+ threeDSecure?: boolean;
12
+ save_card: boolean;
13
+ fee: number;
14
+ customer: {
15
+ id?: string;
16
+ first_name?: string;
17
+ middle_name?: string;
18
+ last_name?: string;
19
+ email?: string;
20
+ phone?: {
21
+ country_code: string;
22
+ number: string;
23
+ };
24
+ };
25
+ hashstring?: string;
26
+ metadata?: Record<string, string>;
27
+ post?: {
28
+ url: string;
29
+ };
30
+ redirect?: {
31
+ url: string;
32
+ };
33
+ merchant?: {
34
+ id: string;
35
+ };
36
+ order?: {
37
+ id: string;
38
+ };
39
+ payment_agreement?: {
40
+ id: string;
41
+ contract?: {
42
+ id: string;
43
+ };
44
+ };
45
+ destinations?: Record<string, any>;
46
+ reference?: {
47
+ order?: string;
48
+ transaction?: string;
49
+ };
50
+ description?: string;
51
+ }
52
+ export interface AuthorizeRequestBody extends ChargeRequestBody {
53
+ auto?: {
54
+ type: string;
55
+ time: number;
56
+ };
57
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,195 @@
1
+ import { SupportedNetworks, ThemeMode } from '..';
2
+ export interface CheckoutProfileRequest {
3
+ supported_payment_methods: string[];
4
+ supported_currencies: string[];
5
+ transaction_mode: string;
6
+ currency: string;
7
+ merchant_id: string;
8
+ total_amount: number;
9
+ order: {
10
+ id?: string;
11
+ amount: number;
12
+ currency: string;
13
+ description?: string;
14
+ metadata?: Record<string, string>;
15
+ customer?: {
16
+ id?: string;
17
+ email?: string;
18
+ first_name?: string;
19
+ last_name?: string;
20
+ phone?: {
21
+ country_code: string;
22
+ number: string;
23
+ };
24
+ };
25
+ items: {
26
+ quantity: number;
27
+ amount: number;
28
+ currency: string;
29
+ name: string;
30
+ description: string;
31
+ }[];
32
+ merchant: {
33
+ id: string;
34
+ };
35
+ };
36
+ }
37
+ export interface CheckoutProfileResponse {
38
+ status: string;
39
+ merchant: MerchantResponse;
40
+ assests: Assests;
41
+ payment_options: Paymentoptions;
42
+ session: string;
43
+ }
44
+ interface Paymentoptions {
45
+ id: string;
46
+ object: string;
47
+ payment_methods: PaymentMethod[];
48
+ currency: string;
49
+ country: string;
50
+ settlement_currency: string;
51
+ supported_currencies: Supportedcurrency[];
52
+ api_version: string;
53
+ order: Order;
54
+ }
55
+ interface Order {
56
+ id: string;
57
+ }
58
+ interface Supportedcurrency {
59
+ symbol: string;
60
+ name: string;
61
+ flag: string;
62
+ decimal_digit: number;
63
+ selected: boolean;
64
+ rate: number;
65
+ logos: Logos2;
66
+ order_by: number;
67
+ currency: string;
68
+ amount: number;
69
+ }
70
+ interface Logos2 {
71
+ dark: Disabled;
72
+ light: Disabled;
73
+ light_mono: Disabled;
74
+ dark_colored: Disabled;
75
+ }
76
+ export interface PaymentMethod {
77
+ id: string;
78
+ name: string;
79
+ name_ar: string;
80
+ image: string;
81
+ payment_type: string;
82
+ supported_card_brands: SupportedNetworks[];
83
+ supported_currencies: string[];
84
+ order_by: number;
85
+ cc_markup: number;
86
+ asynchronous: boolean;
87
+ threeDS: string;
88
+ api_version: number;
89
+ api_version_minor: number;
90
+ logos: Logos;
91
+ payment_order_type: string;
92
+ button_style: Buttonstyle;
93
+ display_name: string;
94
+ default_currency: string;
95
+ identifier?: string;
96
+ }
97
+ interface Buttonstyle {
98
+ background: Background2;
99
+ title_asset: 'https://tap-assets.b-cdn.net/action-button/{theme}/{lang}/mastercard';
100
+ }
101
+ interface Background2 {
102
+ light: Light2;
103
+ dark: Light2;
104
+ light_mono: Light2;
105
+ dark_colored: Light2;
106
+ }
107
+ interface Light2 {
108
+ base_color: string;
109
+ background_colors: string[];
110
+ }
111
+ interface Logos {
112
+ dark: Dark2;
113
+ light: Dark2;
114
+ light_mono: Dark2;
115
+ dark_colored: Dark2;
116
+ }
117
+ interface Dark2 {
118
+ svg: string;
119
+ png: string;
120
+ disabled: Disabled;
121
+ currency_widget: Disabled;
122
+ card_icon: Disabled;
123
+ }
124
+ interface Disabled {
125
+ svg: string;
126
+ png: string;
127
+ }
128
+ interface Assests {
129
+ localisation: Localisation;
130
+ theme: Theme;
131
+ web: Theme;
132
+ }
133
+ type Theme = Record<ThemeMode, string> & {
134
+ card: {
135
+ light: string;
136
+ dark: string;
137
+ };
138
+ };
139
+ interface Localisation {
140
+ url: string;
141
+ card: {
142
+ url: string;
143
+ };
144
+ }
145
+ interface MerchantResponse {
146
+ id: string;
147
+ api_version: string;
148
+ live_mode: boolean;
149
+ object: string;
150
+ name: string;
151
+ country_code: string;
152
+ logo: string;
153
+ background: Background;
154
+ contact: any[];
155
+ powered_by: boolean;
156
+ sdk_settings: Sdksettings;
157
+ session_token: string;
158
+ key_type: string;
159
+ encryption_key: string;
160
+ permissions: string[];
161
+ permission: Permission;
162
+ }
163
+ interface Permission {
164
+ card_wallet: boolean;
165
+ threeDSecure: boolean;
166
+ pci_dss: boolean;
167
+ }
168
+ interface Sdksettings {
169
+ status_display_duration: number;
170
+ otp_resend_interval: number;
171
+ otp_resend_attempts: number;
172
+ }
173
+ interface Background {
174
+ url: string;
175
+ mode: string;
176
+ color: Color;
177
+ }
178
+ interface Color {
179
+ dark: Dark;
180
+ light: Light;
181
+ }
182
+ interface Light {
183
+ color: string;
184
+ rectangle: Rectangle;
185
+ image: string;
186
+ }
187
+ interface Rectangle {
188
+ background: string;
189
+ 'backdrop-filter': string;
190
+ }
191
+ interface Dark {
192
+ color: string;
193
+ image: string;
194
+ }
195
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,65 @@
1
+ export declare enum Locale {
2
+ EN = "en",
3
+ AR = "ar",
4
+ DYNAMIC = "dynamic"
5
+ }
6
+ export declare enum ThemeMode {
7
+ DARK = "dark",
8
+ LIGHT = "light",
9
+ DYNAMIC = "dynamic"
10
+ }
11
+ export declare enum Edges {
12
+ STRAIGHT = "straight",
13
+ CURVED = "curved",
14
+ CIRCULAR = "circular"
15
+ }
16
+ export declare enum ColorStyle {
17
+ COLORED = "colored",
18
+ MONOCHROME = "monochrome"
19
+ }
20
+ export declare enum Scope {
21
+ CHARGE = "charge",
22
+ AUTHORIZE = "authorize",
23
+ TAP_TOKEN = "taptoken",
24
+ APPLE_PAY_TOKEN = "applepaytoken"
25
+ }
26
+ export declare enum ButtonStyle {
27
+ Black = "black",
28
+ White = "white",
29
+ WhiteOutline = "white-outline"
30
+ }
31
+ export declare enum FullThemeMode {
32
+ DARK = "dark",
33
+ LIGHT = "light",
34
+ LIGHT_MONO = "light_mono",
35
+ DARK_COLORED = "dark_colored"
36
+ }
37
+ export declare enum ButtonType {
38
+ BOOK = "book",
39
+ BUY = "buy",
40
+ CHECK_OUT = "check-out",
41
+ PAY = "pay",
42
+ PLAIN = "plain",
43
+ SUBSCRIBE = "subscribe"
44
+ }
45
+ export declare enum CHARGE_CODE {
46
+ SUCCESS = "000",
47
+ AUTHORIZED = "001",
48
+ IN_PROGRESS = "200"
49
+ }
50
+ export declare enum MerchantCapabilities {
51
+ Supports3DS = "supports3DS",
52
+ SupportsCredit = "supportsCredit",
53
+ SupportsDebit = "supportsDebit"
54
+ }
55
+ export declare enum SupportedNetworks {
56
+ Amex = "amex",
57
+ Mada = "mada",
58
+ MasterCard = "masterCard",
59
+ Visa = "visa",
60
+ ChinaUnionPay = "chinaUnionPay",
61
+ Discover = "discover",
62
+ Electron = "electron",
63
+ Jcb = "jcb",
64
+ Maestro = "maestro"
65
+ }
@@ -0,0 +1,76 @@
1
+ export var Locale;
2
+ (function (Locale) {
3
+ Locale["EN"] = "en";
4
+ Locale["AR"] = "ar";
5
+ Locale["DYNAMIC"] = "dynamic";
6
+ })(Locale || (Locale = {}));
7
+ export var ThemeMode;
8
+ (function (ThemeMode) {
9
+ ThemeMode["DARK"] = "dark";
10
+ ThemeMode["LIGHT"] = "light";
11
+ ThemeMode["DYNAMIC"] = "dynamic";
12
+ })(ThemeMode || (ThemeMode = {}));
13
+ export var Edges;
14
+ (function (Edges) {
15
+ Edges["STRAIGHT"] = "straight";
16
+ Edges["CURVED"] = "curved";
17
+ Edges["CIRCULAR"] = "circular";
18
+ })(Edges || (Edges = {}));
19
+ export var ColorStyle;
20
+ (function (ColorStyle) {
21
+ ColorStyle["COLORED"] = "colored";
22
+ ColorStyle["MONOCHROME"] = "monochrome";
23
+ })(ColorStyle || (ColorStyle = {}));
24
+ export var Scope;
25
+ (function (Scope) {
26
+ Scope["CHARGE"] = "charge";
27
+ Scope["AUTHORIZE"] = "authorize";
28
+ Scope["TAP_TOKEN"] = "taptoken";
29
+ Scope["APPLE_PAY_TOKEN"] = "applepaytoken";
30
+ })(Scope || (Scope = {}));
31
+ export var ButtonStyle;
32
+ (function (ButtonStyle) {
33
+ ButtonStyle["Black"] = "black";
34
+ ButtonStyle["White"] = "white";
35
+ ButtonStyle["WhiteOutline"] = "white-outline";
36
+ })(ButtonStyle || (ButtonStyle = {}));
37
+ export var FullThemeMode;
38
+ (function (FullThemeMode) {
39
+ FullThemeMode["DARK"] = "dark";
40
+ FullThemeMode["LIGHT"] = "light";
41
+ FullThemeMode["LIGHT_MONO"] = "light_mono";
42
+ FullThemeMode["DARK_COLORED"] = "dark_colored";
43
+ })(FullThemeMode || (FullThemeMode = {}));
44
+ export var ButtonType;
45
+ (function (ButtonType) {
46
+ ButtonType["BOOK"] = "book";
47
+ ButtonType["BUY"] = "buy";
48
+ ButtonType["CHECK_OUT"] = "check-out";
49
+ ButtonType["PAY"] = "pay";
50
+ ButtonType["PLAIN"] = "plain";
51
+ ButtonType["SUBSCRIBE"] = "subscribe";
52
+ })(ButtonType || (ButtonType = {}));
53
+ export var CHARGE_CODE;
54
+ (function (CHARGE_CODE) {
55
+ CHARGE_CODE["SUCCESS"] = "000";
56
+ CHARGE_CODE["AUTHORIZED"] = "001";
57
+ CHARGE_CODE["IN_PROGRESS"] = "200";
58
+ })(CHARGE_CODE || (CHARGE_CODE = {}));
59
+ export var MerchantCapabilities;
60
+ (function (MerchantCapabilities) {
61
+ MerchantCapabilities["Supports3DS"] = "supports3DS";
62
+ MerchantCapabilities["SupportsCredit"] = "supportsCredit";
63
+ MerchantCapabilities["SupportsDebit"] = "supportsDebit";
64
+ })(MerchantCapabilities || (MerchantCapabilities = {}));
65
+ export var SupportedNetworks;
66
+ (function (SupportedNetworks) {
67
+ SupportedNetworks["Amex"] = "amex";
68
+ SupportedNetworks["Mada"] = "mada";
69
+ SupportedNetworks["MasterCard"] = "masterCard";
70
+ SupportedNetworks["Visa"] = "visa";
71
+ SupportedNetworks["ChinaUnionPay"] = "chinaUnionPay";
72
+ SupportedNetworks["Discover"] = "discover";
73
+ SupportedNetworks["Electron"] = "electron";
74
+ SupportedNetworks["Jcb"] = "jcb";
75
+ SupportedNetworks["Maestro"] = "maestro";
76
+ })(SupportedNetworks || (SupportedNetworks = {}));
@@ -1,122 +1,6 @@
1
- import { Scope, MerchantCapabilities, SupportedNetworks, ButtonType, Locale, Environment, ThemeMode, Edges } from '../constants';
2
- export interface ApplePayRequestData {
3
- countryCode: string;
4
- currencyCode: string;
5
- merchantCapabilities: Array<typeof MerchantCapabilities[keyof typeof MerchantCapabilities]>;
6
- supportedNetworks: Array<typeof SupportedNetworks[keyof typeof SupportedNetworks]>;
7
- billingContact?: {
8
- phoneNumber?: string;
9
- emailAddress?: string;
10
- givenName: string;
11
- familyName: string;
12
- };
13
- total: {
14
- label: string;
15
- amount: number;
16
- };
17
- }
18
- export interface Interface {
19
- locale?: typeof Locale[keyof typeof Locale];
20
- theme?: typeof ThemeMode[keyof typeof ThemeMode];
21
- edges?: typeof Edges[keyof typeof Edges];
22
- type?: typeof ButtonType[keyof typeof ButtonType];
23
- }
24
- export interface Customer {
25
- id?: string;
26
- name?: {
27
- lang: typeof Locale[keyof typeof Locale];
28
- first: string;
29
- last: string;
30
- middle?: string;
31
- }[];
32
- contact?: {
33
- email?: string;
34
- phone?: {
35
- countryCode: string;
36
- number: string;
37
- };
38
- };
39
- }
40
- export interface Acceptance {
41
- supportedBrands?: Array<typeof SupportedNetworks[keyof typeof SupportedNetworks]>;
42
- supportedCards?: Array<string>;
43
- supportedCardsWithAuthentications?: Array<string>;
44
- }
45
- export interface ApplePayButtonProps {
46
- scope?: typeof Scope[keyof typeof Scope];
47
- publicKey: string;
48
- environment: typeof Environment[keyof typeof Environment];
49
- merchant: {
50
- id: string;
51
- domain: string;
52
- };
53
- interface?: Interface;
54
- customer?: Customer;
55
- acceptance: Acceptance;
56
- transaction: {
57
- amount: string;
58
- currency: string;
59
- };
60
- onCancel?: () => void;
61
- onError?: (error: any) => void;
62
- onSuccess?: (data: Record<string, any>) => Promise<void>;
63
- onClick?: () => void;
64
- onReady?: () => void;
65
- metaData?: MetaData;
66
- debug?: boolean;
67
- }
68
- export interface MerchantResponse {
69
- id: string;
70
- name: string;
71
- country_code: string;
72
- session_token: string;
73
- [other: string]: string;
74
- }
75
- export interface PaymentMethod {
76
- id: string;
77
- image: string;
78
- name: string;
79
- payment_type: string;
80
- supported_card_brands: Array<typeof SupportedNetworks[keyof typeof SupportedNetworks]>;
81
- supported_currencies: string[];
82
- }
83
- export interface PaymentOptionsResponse {
84
- id: string;
85
- country: string;
86
- currency: string;
87
- payment_methods: PaymentMethod[];
88
- }
89
- export interface MetaData {
90
- merchant: MerchantResponse;
91
- payment_options: PaymentOptionsResponse;
92
- headers: Record<string, string>;
93
- }
94
- export interface CheckoutProfileRequest {
95
- currency: string;
96
- merchant_id: string;
97
- total_amount: number;
98
- order: {
99
- amount: number;
100
- currency: string;
101
- customer?: {
102
- id?: string;
103
- email?: string;
104
- first_name?: string;
105
- last_name?: string;
106
- phone?: {
107
- country_code: string;
108
- number: string;
109
- };
110
- };
111
- items: {
112
- quantity: number;
113
- amount: number;
114
- currency: string;
115
- name: string;
116
- requiresShipping: string;
117
- }[];
118
- merchant: {
119
- id: string;
120
- };
121
- };
122
- }
1
+ export * from './charge';
2
+ export * from './checkoutProfile';
3
+ export * from './ApplePayButtonProps';
4
+ export * from './enums';
5
+ export * from './tapLocalisation';
6
+ export * from './tapTheme';
@@ -1 +1,6 @@
1
- export {};
1
+ export * from './charge';
2
+ export * from './checkoutProfile';
3
+ export * from './ApplePayButtonProps';
4
+ export * from './enums';
5
+ export * from './tapLocalisation';
6
+ export * from './tapTheme';