@tap-payments/os-micro-frontend-shared 0.1.142 → 0.1.144-test.10
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/build/components/StatusButton/constant.d.ts +2 -0
- package/build/components/StatusButton/constant.js +3 -1
- package/build/components/StatusButton/style.d.ts +1 -1
- package/build/constants/apps.d.ts +6 -0
- package/build/constants/apps.js +4 -0
- package/build/constants/assets.d.ts +2 -0
- package/build/constants/assets.js +2 -0
- package/build/theme/shadows.js +1 -1
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { initiatedIcon, abandonedIcon, cancelledIcon, reportsIcon, searchIcon, chevronDownIcon, unAuthorizedIcon, settlementInitiatedIcon, unCapturedIcon, capturedIcon, authorizedIcon, openFlagIcon, closedFlagIcon, reverseActionIcon, authenticatedIcon, unauthenticatedIcon, paidOutFilterIcon, scheduledFilterIcon, completedBlackIcon,
|
|
1
|
+
import { initiatedIcon, abandonedIcon, cancelledIcon, reportsIcon, searchIcon, chevronDownIcon, unAuthorizedIcon, settlementInitiatedIcon, unCapturedIcon, capturedIcon, authorizedIcon, openFlagIcon, closedFlagIcon, reverseActionIcon, authenticatedIcon, unauthenticatedIcon, paidOutFilterIcon, scheduledFilterIcon, completedBlackIcon, dashedCheckIcon, deactivatedIcon,
|
|
2
2
|
// trashBinIcon,
|
|
3
3
|
} from '../../constants/index.js';
|
|
4
4
|
export const statusButtonIcons = {
|
|
@@ -22,4 +22,6 @@ export const statusButtonIcons = {
|
|
|
22
22
|
paidOut: paidOutFilterIcon,
|
|
23
23
|
scheduled: scheduledFilterIcon,
|
|
24
24
|
checked: completedBlackIcon,
|
|
25
|
+
dashedChecked: dashedCheckIcon,
|
|
26
|
+
deactivated: deactivatedIcon,
|
|
25
27
|
};
|
|
@@ -21,7 +21,7 @@ export declare const CountBadge: import("@emotion/styled").StyledComponent<impor
|
|
|
21
21
|
}, {}, {}>;
|
|
22
22
|
export declare const StatusIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<Theme> & {
|
|
23
23
|
variant: StatusButtonVariant;
|
|
24
|
-
icon?: "search" | "scheduled" | "paidOut" | "reversed" | "checked" | "initiated" | "captured" | "unCaptured" | "inProgress" | "abandoned" | "cancelled" | "authorized" | "unauthenticated" | "authenticated" | "unSettled" | "reports" | "chevronDown" | "unAuthorized" | "openFlag" | "closedFlag" | undefined;
|
|
24
|
+
icon?: "search" | "scheduled" | "paidOut" | "reversed" | "checked" | "initiated" | "captured" | "unCaptured" | "inProgress" | "abandoned" | "cancelled" | "authorized" | "unauthenticated" | "authenticated" | "unSettled" | "reports" | "chevronDown" | "unAuthorized" | "openFlag" | "closedFlag" | "dashedChecked" | "deactivated" | undefined;
|
|
25
25
|
}, React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
26
26
|
export declare const StyledFilterName: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<Theme>, React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
|
|
27
27
|
export declare const StyledDropdown: import("@emotion/styled").StyledComponent<import("../DropdownMenu").IProps & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
|
|
@@ -260,6 +260,9 @@ export declare const APP_CODES: {
|
|
|
260
260
|
createCharge: {
|
|
261
261
|
code: string;
|
|
262
262
|
};
|
|
263
|
+
viewReceipt: {
|
|
264
|
+
code: string;
|
|
265
|
+
};
|
|
263
266
|
view: {
|
|
264
267
|
code: string;
|
|
265
268
|
};
|
|
@@ -344,6 +347,9 @@ export declare const APP_CODES: {
|
|
|
344
347
|
cancel: {
|
|
345
348
|
code: string;
|
|
346
349
|
};
|
|
350
|
+
viewReceipt: {
|
|
351
|
+
code: string;
|
|
352
|
+
};
|
|
347
353
|
view: {
|
|
348
354
|
code: string;
|
|
349
355
|
};
|
package/build/constants/apps.js
CHANGED
|
@@ -111,6 +111,8 @@ export const APP_CODES = {
|
|
|
111
111
|
code: 'RELEASE FLAG',
|
|
112
112
|
}, createCharge: {
|
|
113
113
|
code: 'CREATE_CHARGE',
|
|
114
|
+
}, viewReceipt: {
|
|
115
|
+
code: 'RECEIPT',
|
|
114
116
|
} }),
|
|
115
117
|
},
|
|
116
118
|
destinations: {
|
|
@@ -145,6 +147,8 @@ export const APP_CODES = {
|
|
|
145
147
|
code: 'RELEASE FLAG',
|
|
146
148
|
}, cancel: {
|
|
147
149
|
code: 'CANCEL',
|
|
150
|
+
}, viewReceipt: {
|
|
151
|
+
code: 'RECEIPT',
|
|
148
152
|
} }),
|
|
149
153
|
},
|
|
150
154
|
chargeback: { code: 'CHARGEBACKS' },
|
|
@@ -72,6 +72,8 @@ export declare const percentage100Icon: string;
|
|
|
72
72
|
export declare const maximizeIcon: string;
|
|
73
73
|
export declare const minimizeIcon: string;
|
|
74
74
|
export declare const closeIcon: string;
|
|
75
|
+
export declare const dashedCheckIcon: string;
|
|
76
|
+
export declare const deactivatedIcon: string;
|
|
75
77
|
export declare const topUpIcon: string;
|
|
76
78
|
export declare const deMaximizeIcon: string;
|
|
77
79
|
export declare const pendingFlag: string;
|
|
@@ -77,6 +77,8 @@ export const percentage100Icon = `${lightUrl}/percentage100.svg`;
|
|
|
77
77
|
export const maximizeIcon = `${lightUrl}/maximize.svg`;
|
|
78
78
|
export const minimizeIcon = `${lightUrl}/minimize.svg`;
|
|
79
79
|
export const closeIcon = `${lightUrl}/close.svg`;
|
|
80
|
+
export const dashedCheckIcon = `${lightUrl}/dashedCheckIcon.svg`;
|
|
81
|
+
export const deactivatedIcon = `${lightUrl}/deactivatedIcon.svg`;
|
|
80
82
|
export const topUpIcon = `${lightUrl}/topup.svg`;
|
|
81
83
|
export const deMaximizeIcon = `${appBaseUrl}/demaximize.svg`;
|
|
82
84
|
export const pendingFlag = `${lightUrl}/pendingFlag.svg`;
|
package/build/theme/shadows.js
CHANGED
|
@@ -10,7 +10,7 @@ export const shadows = [
|
|
|
10
10
|
'0px 0px 12px 0px rgba(0, 0, 0, 0.15)',
|
|
11
11
|
'0px 8px 30px 0px rgba(0, 0, 0, 0.16)',
|
|
12
12
|
'0px 0px 16px 0px rgba(0, 0, 0, 0.15)',
|
|
13
|
-
'0px 0px 16px 0px rgba(0 0, 0, 0.13)',
|
|
13
|
+
'0px 0px 16px 0px rgba(0, 0, 0, 0.13)',
|
|
14
14
|
'-4px 0px 16px 0px rgba(0, 0, 0, 0.10)',
|
|
15
15
|
'0px 0px 32px 0px rgba(0, 0, 0, 0.11)',
|
|
16
16
|
'0px 4px 8px 0px rgba(0, 0, 0, 0.14)',
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tap-payments/os-micro-frontend-shared",
|
|
3
3
|
"description": "Shared components and utilities for Tap Payments micro frontends",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"testVersion":
|
|
4
|
+
"version": "0.1.144-test.10",
|
|
5
|
+
"testVersion": 10,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "build/index.js",
|
|
8
8
|
"module": "build/index.js",
|
|
@@ -163,4 +163,4 @@
|
|
|
163
163
|
"publishConfig": {
|
|
164
164
|
"registry": "https://registry.npmjs.org/"
|
|
165
165
|
}
|
|
166
|
-
}
|
|
166
|
+
}
|