@blocklet/payment-react 1.19.11 → 1.19.12

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/libs/util.js CHANGED
@@ -1011,5 +1011,5 @@ export function showStaking(method, currency, noStake) {
1011
1011
  if (method.type === "arcblock") {
1012
1012
  return currency.type !== "credit";
1013
1013
  }
1014
- return true;
1014
+ return false;
1015
1015
  }
package/lib/libs/util.js CHANGED
@@ -1245,5 +1245,5 @@ function showStaking(method, currency, noStake) {
1245
1245
  if (method.type === "arcblock") {
1246
1246
  return currency.type !== "credit";
1247
1247
  }
1248
- return true;
1248
+ return false;
1249
1249
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/payment-react",
3
- "version": "1.19.11",
3
+ "version": "1.19.12",
4
4
  "description": "Reusable react components for payment kit v2",
5
5
  "keywords": [
6
6
  "react",
@@ -54,16 +54,16 @@
54
54
  }
55
55
  },
56
56
  "dependencies": {
57
- "@arcblock/did-connect": "^3.0.37",
58
- "@arcblock/ux": "^3.0.37",
59
- "@arcblock/ws": "^1.21.0",
60
- "@blocklet/theme": "^3.0.37",
61
- "@blocklet/ui-react": "^3.0.37",
57
+ "@arcblock/did-connect": "^3.0.39",
58
+ "@arcblock/ux": "^3.0.39",
59
+ "@arcblock/ws": "^1.21.1",
60
+ "@blocklet/theme": "^3.0.39",
61
+ "@blocklet/ui-react": "^3.0.39",
62
62
  "@mui/icons-material": "^7.1.2",
63
63
  "@mui/lab": "7.0.0-beta.14",
64
64
  "@mui/material": "^7.1.2",
65
65
  "@mui/system": "^7.1.1",
66
- "@ocap/util": "^1.21.0",
66
+ "@ocap/util": "^1.21.1",
67
67
  "@stripe/react-stripe-js": "^2.9.0",
68
68
  "@stripe/stripe-js": "^2.4.0",
69
69
  "@vitejs/plugin-legacy": "^7.0.0",
@@ -94,7 +94,7 @@
94
94
  "@babel/core": "^7.27.4",
95
95
  "@babel/preset-env": "^7.27.2",
96
96
  "@babel/preset-react": "^7.27.1",
97
- "@blocklet/payment-types": "1.19.11",
97
+ "@blocklet/payment-types": "1.19.12",
98
98
  "@storybook/addon-essentials": "^7.6.20",
99
99
  "@storybook/addon-interactions": "^7.6.20",
100
100
  "@storybook/addon-links": "^7.6.20",
@@ -125,5 +125,5 @@
125
125
  "vite-plugin-babel": "^1.3.1",
126
126
  "vite-plugin-node-polyfills": "^0.23.0"
127
127
  },
128
- "gitHead": "8742626f35fe37db1691744217cfa13547e91591"
128
+ "gitHead": "2496138990f95bb979125127a06c5e9d731877c9"
129
129
  }
package/src/libs/util.ts CHANGED
@@ -1295,5 +1295,5 @@ export function showStaking(method: TPaymentMethod, currency: TPaymentCurrency,
1295
1295
  if (method.type === 'arcblock') {
1296
1296
  return currency.type !== 'credit';
1297
1297
  }
1298
- return true;
1298
+ return false;
1299
1299
  }