@blocklet/payment-react 1.13.128 → 1.13.129

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.
@@ -62,7 +62,6 @@ export default function CustomerPaymentList({ customer_id }) {
62
62
  },
63
63
  flexWrap: "nowrap",
64
64
  children: [
65
- /* @__PURE__ */ jsx(Box, { flex: 3, sx: { minWidth: "220px" }, children: /* @__PURE__ */ jsx(Typography, { component: "span", children: item.id }) }),
66
65
  /* @__PURE__ */ jsx(Box, { flex: 3, children: /* @__PURE__ */ jsx(Typography, { children: formatToDate(item.created_at) }) }),
67
66
  /* @__PURE__ */ jsx(Box, { flex: 2, children: /* @__PURE__ */ jsxs(Typography, { textAlign: "right", children: [
68
67
  fromUnitToToken(item.amount, item.paymentCurrency.decimal),
@@ -94,15 +94,6 @@ function CustomerPaymentList({
94
94
  },
95
95
  flexWrap: "nowrap",
96
96
  children: [/* @__PURE__ */(0, _jsxRuntime.jsx)(_material.Box, {
97
- flex: 3,
98
- sx: {
99
- minWidth: "220px"
100
- },
101
- children: /* @__PURE__ */(0, _jsxRuntime.jsx)(_material.Typography, {
102
- component: "span",
103
- children: item.id
104
- })
105
- }), /* @__PURE__ */(0, _jsxRuntime.jsx)(_material.Box, {
106
97
  flex: 3,
107
98
  children: /* @__PURE__ */(0, _jsxRuntime.jsx)(_material.Typography, {
108
99
  children: (0, _util2.formatToDate)(item.created_at)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/payment-react",
3
- "version": "1.13.128",
3
+ "version": "1.13.129",
4
4
  "description": "Reusable react components for payment kit v2",
5
5
  "keywords": [
6
6
  "react",
@@ -89,7 +89,7 @@
89
89
  "@babel/core": "^7.19.3",
90
90
  "@babel/preset-env": "^7.19.3",
91
91
  "@babel/preset-react": "^7.18.6",
92
- "@blocklet/payment-types": "1.13.128",
92
+ "@blocklet/payment-types": "1.13.129",
93
93
  "@storybook/addon-essentials": "^7.6.10",
94
94
  "@storybook/addon-interactions": "^7.6.10",
95
95
  "@storybook/addon-links": "^7.6.10",
@@ -118,5 +118,5 @@
118
118
  "vite-plugin-babel": "^1.2.0",
119
119
  "vite-plugin-node-polyfills": "^0.19.0"
120
120
  },
121
- "gitHead": "b518cfcb827855501a03f0675cb9025e75b8538e"
121
+ "gitHead": "4ad81bea01de3268d9cf0bda552a0a0a67abd85d"
122
122
  }
@@ -79,9 +79,6 @@ export default function CustomerPaymentList({ customer_id }: Props) {
79
79
  md: 3,
80
80
  }}
81
81
  flexWrap="nowrap">
82
- <Box flex={3} sx={{ minWidth: '220px' }}>
83
- <Typography component="span">{item.id}</Typography>
84
- </Box>
85
82
  <Box flex={3}>
86
83
  <Typography>{formatToDate(item.created_at)}</Typography>
87
84
  </Box>