payment-kit 1.13.153 → 1.13.154

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/blocklet.yml CHANGED
@@ -14,7 +14,7 @@ repository:
14
14
  type: git
15
15
  url: git+https://github.com/blocklet/payment-kit.git
16
16
  specVersion: 1.2.8
17
- version: 1.13.153
17
+ version: 1.13.154
18
18
  logo: logo.png
19
19
  files:
20
20
  - dist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payment-kit",
3
- "version": "1.13.153",
3
+ "version": "1.13.154",
4
4
  "scripts": {
5
5
  "dev": "cross-env COMPONENT_STORE_URL=https://test.store.blocklet.dev blocklet dev --open",
6
6
  "eject": "vite eject",
@@ -50,7 +50,7 @@
50
50
  "@arcblock/jwt": "^1.18.110",
51
51
  "@arcblock/ux": "^2.9.29",
52
52
  "@blocklet/logger": "1.16.23",
53
- "@blocklet/payment-react": "1.13.153",
53
+ "@blocklet/payment-react": "1.13.154",
54
54
  "@blocklet/sdk": "1.16.23",
55
55
  "@blocklet/ui-react": "^2.9.29",
56
56
  "@blocklet/uploader": "^0.0.73",
@@ -110,7 +110,7 @@
110
110
  "devDependencies": {
111
111
  "@abtnode/types": "1.16.23",
112
112
  "@arcblock/eslint-config-ts": "^0.2.4",
113
- "@blocklet/payment-types": "1.13.153",
113
+ "@blocklet/payment-types": "1.13.154",
114
114
  "@types/cookie-parser": "^1.4.6",
115
115
  "@types/cors": "^2.8.17",
116
116
  "@types/dotenv-flow": "^3.3.3",
@@ -149,5 +149,5 @@
149
149
  "parser": "typescript"
150
150
  }
151
151
  },
152
- "gitHead": "db16f61414e8f72da55dfa2faf9c17d79fcb6655"
152
+ "gitHead": "a8afe51b21c4155ae14468c619dde09bfbda168d"
153
153
  }
@@ -100,7 +100,7 @@ export default function CustomerInvoiceDetail() {
100
100
  </Typography>
101
101
  </Stack>
102
102
  </Link>
103
- <Stack direction="row" justifyContent="flex-end" alignItems="center">
103
+ <Stack direction="row" spacing={1} justifyContent="flex-end" alignItems="center">
104
104
  {['open', 'paid', 'uncollectible'].includes(data.status) && (
105
105
  <Button
106
106
  variant="contained"
@@ -112,13 +112,7 @@ export default function CustomerInvoiceDetail() {
112
112
  </Button>
113
113
  )}
114
114
  {['open', 'uncollectible'].includes(data.status) && (
115
- <Button
116
- variant="contained"
117
- color="primary"
118
- size="small"
119
- disabled={state.paying}
120
- sx={{ mr: 1 }}
121
- onClick={onPay}>
115
+ <Button variant="contained" color="primary" size="small" disabled={state.paying} onClick={onPay}>
122
116
  {t('payment.customer.invoice.pay')}
123
117
  </Button>
124
118
  )}