@blocklet/payment-react 1.13.249 → 1.13.251
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/es/history/invoice/list.js +1 -0
- package/es/locales/en.js +2 -0
- package/es/locales/zh.js +2 -0
- package/es/payment/form/index.js +1 -0
- package/es/payment/index.js +9 -0
- package/lib/history/invoice/list.js +1 -0
- package/lib/locales/en.js +2 -0
- package/lib/locales/zh.js +2 -0
- package/lib/payment/form/index.js +1 -0
- package/lib/payment/index.js +9 -0
- package/package.json +3 -3
- package/src/history/invoice/list.tsx +1 -0
- package/src/locales/en.tsx +2 -0
- package/src/locales/zh.tsx +2 -0
- package/src/payment/form/index.tsx +1 -0
- package/src/payment/index.tsx +9 -0
package/es/locales/en.js
CHANGED
package/es/locales/zh.js
CHANGED
|
@@ -26,6 +26,8 @@ export default flat({
|
|
|
26
26
|
saved: "\u66F4\u6539\u5DF2\u4FDD\u5B58",
|
|
27
27
|
remove: "\u5220\u9664",
|
|
28
28
|
removed: "\u8D44\u6E90\u5DF2\u5220\u9664",
|
|
29
|
+
upload: "\u4E0A\u4F20",
|
|
30
|
+
change: "\u66F4\u6362",
|
|
29
31
|
confirm: "\u786E\u8BA4",
|
|
30
32
|
cancel: "\u53D6\u6D88",
|
|
31
33
|
every: "\u6BCF",
|
package/es/payment/form/index.js
CHANGED
|
@@ -379,6 +379,7 @@ export default function PaymentForm({
|
|
|
379
379
|
variant: "contained",
|
|
380
380
|
color: "primary",
|
|
381
381
|
size: "large",
|
|
382
|
+
className: "cko-submit-button",
|
|
382
383
|
onClick: onAction,
|
|
383
384
|
fullWidth: true,
|
|
384
385
|
disabled: state.submitting || state.paying || state.stripePaying,
|
package/es/payment/index.js
CHANGED
|
@@ -374,6 +374,15 @@ export const Root = styled(Box)`
|
|
|
374
374
|
.MuiButtonBase-root {
|
|
375
375
|
border-radius: 0;
|
|
376
376
|
font-size: 1.3rem;
|
|
377
|
+
position: relative;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.cko-submit-progress {
|
|
381
|
+
position: absolute;
|
|
382
|
+
top: 0;
|
|
383
|
+
width: 100%;
|
|
384
|
+
height: 100%;
|
|
385
|
+
opacity: 0.3;
|
|
377
386
|
}
|
|
378
387
|
}
|
|
379
388
|
|
package/lib/locales/en.js
CHANGED
package/lib/locales/zh.js
CHANGED
|
@@ -33,6 +33,8 @@ module.exports = (0, _flat.default)({
|
|
|
33
33
|
saved: "\u66F4\u6539\u5DF2\u4FDD\u5B58",
|
|
34
34
|
remove: "\u5220\u9664",
|
|
35
35
|
removed: "\u8D44\u6E90\u5DF2\u5220\u9664",
|
|
36
|
+
upload: "\u4E0A\u4F20",
|
|
37
|
+
change: "\u66F4\u6362",
|
|
36
38
|
confirm: "\u786E\u8BA4",
|
|
37
39
|
cancel: "\u53D6\u6D88",
|
|
38
40
|
every: "\u6BCF",
|
package/lib/payment/index.js
CHANGED
|
@@ -449,6 +449,15 @@ const Root = exports.Root = (0, _system.styled)(_material.Box)`
|
|
|
449
449
|
.MuiButtonBase-root {
|
|
450
450
|
border-radius: 0;
|
|
451
451
|
font-size: 1.3rem;
|
|
452
|
+
position: relative;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.cko-submit-progress {
|
|
456
|
+
position: absolute;
|
|
457
|
+
top: 0;
|
|
458
|
+
width: 100%;
|
|
459
|
+
height: 100%;
|
|
460
|
+
opacity: 0.3;
|
|
452
461
|
}
|
|
453
462
|
}
|
|
454
463
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/payment-react",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.251",
|
|
4
4
|
"description": "Reusable react components for payment kit v2",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@babel/core": "^7.24.5",
|
|
92
92
|
"@babel/preset-env": "^7.24.5",
|
|
93
93
|
"@babel/preset-react": "^7.24.1",
|
|
94
|
-
"@blocklet/payment-types": "1.13.
|
|
94
|
+
"@blocklet/payment-types": "1.13.251",
|
|
95
95
|
"@storybook/addon-essentials": "^7.6.19",
|
|
96
96
|
"@storybook/addon-interactions": "^7.6.19",
|
|
97
97
|
"@storybook/addon-links": "^7.6.19",
|
|
@@ -120,5 +120,5 @@
|
|
|
120
120
|
"vite-plugin-babel": "^1.2.0",
|
|
121
121
|
"vite-plugin-node-polyfills": "^0.21.0"
|
|
122
122
|
},
|
|
123
|
-
"gitHead": "
|
|
123
|
+
"gitHead": "46caad7baca15f2ba3876018589f78ba11179f59"
|
|
124
124
|
}
|
package/src/locales/en.tsx
CHANGED
package/src/locales/zh.tsx
CHANGED
package/src/payment/index.tsx
CHANGED
|
@@ -429,6 +429,15 @@ export const Root = styled(Box)<{ mode: LiteralUnion<'standalone' | 'inline' | '
|
|
|
429
429
|
.MuiButtonBase-root {
|
|
430
430
|
border-radius: 0;
|
|
431
431
|
font-size: 1.3rem;
|
|
432
|
+
position: relative;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.cko-submit-progress {
|
|
436
|
+
position: absolute;
|
|
437
|
+
top: 0;
|
|
438
|
+
width: 100%;
|
|
439
|
+
height: 100%;
|
|
440
|
+
opacity: 0.3;
|
|
432
441
|
}
|
|
433
442
|
}
|
|
434
443
|
|