@tap-payments/os-micro-frontend-shared 0.1.231 → 0.1.232
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/StatusIcons/SourceIcons/index.d.ts +1 -0
- package/build/components/StatusIcons/SourceIcons/index.js +1 -0
- package/build/components/StatusIcons/index.d.ts +1 -1
- package/build/components/StatusIcons/index.js +1 -1
- package/build/components/index.d.ts +1 -1
- package/build/components/index.js +1 -1
- package/package.json +1 -1
|
@@ -10,5 +10,5 @@ export { GeographyIcon } from './GeographyIcon';
|
|
|
10
10
|
export { default as IssuerIcon, type IssuerIconProps } from './IssuerIcon';
|
|
11
11
|
export { PayoutIcon } from './PayoutIcon';
|
|
12
12
|
export { default as RefundIcon } from './RefundIcon';
|
|
13
|
-
export { SourceIcons, SourceIcon } from './SourceIcons';
|
|
13
|
+
export { SourceIcons, SourceIcon, getPaymentMethodKey } from './SourceIcons';
|
|
14
14
|
export { DestinationIcon } from './DestinationIcon';
|
|
@@ -10,5 +10,5 @@ export { GeographyIcon } from './GeographyIcon';
|
|
|
10
10
|
export { default as IssuerIcon } from './IssuerIcon';
|
|
11
11
|
export { PayoutIcon } from './PayoutIcon';
|
|
12
12
|
export { default as RefundIcon } from './RefundIcon';
|
|
13
|
-
export { SourceIcons, SourceIcon } from './SourceIcons';
|
|
13
|
+
export { SourceIcons, SourceIcon, getPaymentMethodKey } from './SourceIcons';
|
|
14
14
|
export { DestinationIcon } from './DestinationIcon';
|
|
@@ -76,7 +76,7 @@ export { default as Dropdown2 } from './Dropdown2';
|
|
|
76
76
|
export { default as CountryFlag } from './CountryFlag';
|
|
77
77
|
export { default as CurrencyIcon } from './CurrencyIcon';
|
|
78
78
|
export { default as CustomBackdrop } from './CustomBackdrop';
|
|
79
|
-
export { default as DeviceIcon } from './DeviceIcon';
|
|
79
|
+
export { default as DeviceIcon, isDeviceIconShown } from './DeviceIcon';
|
|
80
80
|
export { default as CountBadge, BadgeVariants, CountAnimatedBadge, type StyledBadgeProps, paymentSourceAnimation } from './CountBadge';
|
|
81
81
|
export { default as CircularProgressWithLabel } from './CircularProgressWithLabel';
|
|
82
82
|
export { default as Collapse, type CollapseProps } from './Collapse';
|
|
@@ -76,7 +76,7 @@ export { default as Dropdown2 } from './Dropdown2';
|
|
|
76
76
|
export { default as CountryFlag } from './CountryFlag';
|
|
77
77
|
export { default as CurrencyIcon } from './CurrencyIcon';
|
|
78
78
|
export { default as CustomBackdrop } from './CustomBackdrop';
|
|
79
|
-
export { default as DeviceIcon } from './DeviceIcon';
|
|
79
|
+
export { default as DeviceIcon, isDeviceIconShown } from './DeviceIcon';
|
|
80
80
|
export { default as CountBadge, BadgeVariants, CountAnimatedBadge, paymentSourceAnimation } from './CountBadge';
|
|
81
81
|
export { default as CircularProgressWithLabel } from './CircularProgressWithLabel';
|
|
82
82
|
export { default as Collapse } from './Collapse';
|
package/package.json
CHANGED