@tap-payments/os-micro-frontend-shared 0.1.311 → 0.1.313

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.
@@ -1,2 +1,2 @@
1
1
  import { BrandsCellProps } from './type';
2
- export default function BrandsCell({ brand, verificationStatus, hideStatus, ...props }: BrandsCellProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function BrandsCell({ brand, verificationStatus, hideStatus, brandLogo, ...props }: BrandsCellProps): import("react/jsx-runtime").JSX.Element;
@@ -16,7 +16,7 @@ import TableCell from '../../TableCell';
16
16
  import { BrandsWrapper, BrandsWrapperContent, Label } from './style';
17
17
  import { verificationIcon } from './constants';
18
18
  export default function BrandsCell(_a) {
19
- var { brand, verificationStatus, hideStatus } = _a, props = __rest(_a, ["brand", "verificationStatus", "hideStatus"]);
19
+ var { brand, verificationStatus, hideStatus, brandLogo } = _a, props = __rest(_a, ["brand", "verificationStatus", "hideStatus", "brandLogo"]);
20
20
  const icon = verificationIcon[verificationStatus !== null && verificationStatus !== void 0 ? verificationStatus : 'incomplete'];
21
- return (_jsx(TableCell, Object.assign({}, props, { children: _jsx(Tooltip, Object.assign({ title: brand.name }, { children: _jsx(BrandsWrapper, Object.assign({ hasClick: !!props.onClick }, { children: _jsxs(BrandsWrapperContent, { children: [_jsx(IconWithBadge, { mainIcon: brand.logo, mainIconSize: 16, containerSize: 16, borderColor: "transparent" }), _jsx(Label, Object.assign({ brandName: brand.name }, { children: brand.name || 'Not Available' })), !hideStatus && (_jsx(IconWithBadge, { mainIcon: icon, mainIconSize: 10, containerSize: 10, borderColor: "transparent", containerSx: { marginLeft: 'auto' } }))] }) })) })) })));
21
+ return (_jsx(TableCell, Object.assign({}, props, { children: _jsx(Tooltip, Object.assign({ title: brand.name }, { children: _jsx(BrandsWrapper, Object.assign({ hasClick: !!props.onClick }, { children: _jsxs(BrandsWrapperContent, { children: [brandLogo, _jsx(Label, Object.assign({ brandName: brand.name }, { children: brand.name || 'Not Available' })), !hideStatus && (_jsx(IconWithBadge, { mainIcon: icon, mainIconSize: 10, containerSize: 10, borderColor: "transparent", containerSx: { marginLeft: 'auto' } }))] }) })) })) })));
22
22
  }
@@ -1,7 +1,8 @@
1
1
  import { TableCellProps } from '@mui/material';
2
+ import type { ReactNode } from 'react';
2
3
  export type BrandsCellProps = TableCellProps & {
4
+ brandLogo: ReactNode;
3
5
  brand: {
4
- logo: string;
5
6
  name: string;
6
7
  id: string;
7
8
  };
@@ -0,0 +1,2 @@
1
+ export declare const unAuthenticatedStatuses: string[];
2
+ export declare const allAuthenticationStatuses: string[];
@@ -0,0 +1,15 @@
1
+ const authenticationStatuses = ['AUTHENTICATED'];
2
+ export const unAuthenticatedStatuses = [
3
+ 'PENDING',
4
+ 'ATTEMPTED',
5
+ 'FAILED',
6
+ 'REJECTED',
7
+ 'UNAVAILABLE',
8
+ 'AUTHENTICATION_NOT_SUPPORTED_BY_SCHEME',
9
+ 'AUTHENTICATED_AUTHORIZE_FAILED',
10
+ 'UNDETERMINED',
11
+ 'EXEMPTED',
12
+ 'REJECTED',
13
+ 'INITIATED',
14
+ ];
15
+ export const allAuthenticationStatuses = [...authenticationStatuses, ...unAuthenticatedStatuses];
@@ -16,3 +16,4 @@ export * from './chips';
16
16
  export * from './rate';
17
17
  export * from './reports';
18
18
  export * from './document';
19
+ export * from './authentication';
@@ -16,3 +16,4 @@ export * from './chips';
16
16
  export * from './rate';
17
17
  export * from './reports';
18
18
  export * from './document';
19
+ export * from './authentication';
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.311",
4
+ "version": "0.1.313",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",