update pay function
This commit is contained in:
16
package.json
16
package.json
@@ -44,14 +44,14 @@
|
|||||||
"match-sorter": "6.3.0",
|
"match-sorter": "6.3.0",
|
||||||
"nouislider": "15.0.0",
|
"nouislider": "15.0.0",
|
||||||
"posthog-js": "^1.295.0",
|
"posthog-js": "^1.295.0",
|
||||||
"react": "18.3.1",
|
"react": "^19.0.0",
|
||||||
"react-apexcharts": "^1.3.9",
|
"react-apexcharts": "^1.3.9",
|
||||||
"react-big-calendar": "^0.33.2",
|
"react-big-calendar": "^0.33.2",
|
||||||
"react-bootstrap-sweetalert": "5.2.0",
|
"react-bootstrap-sweetalert": "5.2.0",
|
||||||
"react-circular-slider-svg": "^0.1.5",
|
"react-circular-slider-svg": "^0.1.5",
|
||||||
"react-custom-scrollbars-2": "^4.4.0",
|
"react-custom-scrollbars-2": "^4.4.0",
|
||||||
"react-datetime": "^3.0.4",
|
"react-datetime": "^3.0.4",
|
||||||
"react-dom": "^18.3.1",
|
"react-dom": "^19.0.0",
|
||||||
"react-dropzone": "^11.4.2",
|
"react-dropzone": "^11.4.2",
|
||||||
"react-github-btn": "^1.2.1",
|
"react-github-btn": "^1.2.1",
|
||||||
"react-icons": "^4.12.0",
|
"react-icons": "^4.12.0",
|
||||||
@@ -85,8 +85,8 @@
|
|||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"react-error-overlay": "6.0.9",
|
"react-error-overlay": "6.0.9",
|
||||||
"@types/react": "18.2.0",
|
"@types/react": "^19.0.0",
|
||||||
"@types/react-dom": "18.2.0"
|
"@types/react-dom": "^19.0.0"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"uuid": "^9.0.1"
|
"uuid": "^9.0.1"
|
||||||
@@ -118,13 +118,13 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@craco/craco": "^7.1.0",
|
"@craco/craco": "^7.1.0",
|
||||||
|
"@tailwindcss/postcss": "next",
|
||||||
"@types/node": "^20.19.25",
|
"@types/node": "^20.19.25",
|
||||||
"@types/react": "^18.2.0",
|
"@types/react": "^19.0.0",
|
||||||
"@types/react-dom": "^18.2.0",
|
"@types/react-dom": "^19.0.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
||||||
"@typescript-eslint/parser": "^8.46.4",
|
"@typescript-eslint/parser": "^8.46.4",
|
||||||
"ajv": "^8.17.1",
|
"ajv": "^8.17.1",
|
||||||
"autoprefixer": "^10.4.21",
|
|
||||||
"concurrently": "^8.2.2",
|
"concurrently": "^8.2.2",
|
||||||
"env-cmd": "^11.0.0",
|
"env-cmd": "^11.0.0",
|
||||||
"eslint-config-prettier": "8.3.0",
|
"eslint-config-prettier": "8.3.0",
|
||||||
@@ -136,10 +136,10 @@
|
|||||||
"imagemin-pngquant": "^10.0.0",
|
"imagemin-pngquant": "^10.0.0",
|
||||||
"kill-port": "^2.0.1",
|
"kill-port": "^2.0.1",
|
||||||
"msw": "^2.11.5",
|
"msw": "^2.11.5",
|
||||||
"postcss": "^8.5.6",
|
|
||||||
"prettier": "2.2.1",
|
"prettier": "2.2.1",
|
||||||
"react-error-overlay": "6.0.9",
|
"react-error-overlay": "6.0.9",
|
||||||
"sharp": "^0.34.4",
|
"sharp": "^0.34.4",
|
||||||
|
"tailwindcss": "next",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"webpack-bundle-analyzer": "^4.10.2",
|
"webpack-bundle-analyzer": "^4.10.2",
|
||||||
"yn": "^5.1.0"
|
"yn": "^5.1.0"
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
|
// PostCSS 配置 - Tailwind CSS v4
|
||||||
|
// 文档: https://tailwindcss.com/docs/upgrade-guide
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: [
|
plugins: {
|
||||||
require('tailwindcss'),
|
'@tailwindcss/postcss': {},
|
||||||
require('autoprefixer'),
|
// Tailwind v4 已内置 autoprefixer,不再需要单独配置
|
||||||
],
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user