Browse Source

chore: update snapshot

pull/11250/head
期贤 2 years ago
parent
commit
559c01d1d4
  1. 2
      config/proxy.ts
  2. 36
      package.json
  3. 28855
      pnpm-lock.yaml
  4. 6
      src/pages/TableList/components/UpdateForm.tsx
  5. 12
      src/pages/Welcome.tsx

2
config/proxy.ts

@ -21,7 +21,7 @@ export default {
// changeOrigin: true, // changeOrigin: true,
// }, // },
// }, // },
mako: {},
/** /**
* @name * @name
* @doc https://github.com/chimurai/http-proxy-middleware * @doc https://github.com/chimurai/http-proxy-middleware

36
package.json

@ -46,38 +46,37 @@
"not ie <= 10" "not ie <= 10"
], ],
"dependencies": { "dependencies": {
"@ant-design/icons": "^4.8.1", "@ant-design/icons": "^4.8.3",
"@ant-design/pro-components": "^2.6.48", "@ant-design/pro-components": "^2.7.9",
"@umijs/route-utils": "^2.2.2", "@umijs/route-utils": "^2.2.2",
"antd": "^5.13.2", "antd": "^5.18.0",
"antd-style": "^3.6.1", "antd-style": "^3.6.2",
"classnames": "^2.5.1", "classnames": "^2.5.1",
"omit.js": "^2.0.2", "omit.js": "^2.0.2",
"querystring": "^0.2.1", "querystring": "^0.2.1",
"rc-menu": "^9.12.4", "rc-menu": "^9.14.0",
"rc-util": "^5.38.1", "rc-util": "^5.41.0",
"react": "^18.2.0", "react": "^18.3.1",
"react-dom": "^18.2.0", "react-dom": "^18.3.1",
"react-helmet-async": "^1.3.0" "react-helmet-async": "^1.3.0"
}, },
"devDependencies": { "devDependencies": {
"react-dev-inspector": "^1.9.0",
"@ant-design/pro-cli": "^3.3.0", "@ant-design/pro-cli": "^3.3.0",
"@testing-library/react": "^13.4.0", "@testing-library/react": "^13.4.0",
"@types/classnames": "^2.3.1", "@types/classnames": "^2.3.1",
"@types/express": "^4.17.21", "@types/express": "^4.17.21",
"@types/history": "^4.7.11", "@types/history": "^4.7.11",
"@types/jest": "^29.5.11", "@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202", "@types/lodash": "^4.17.4",
"@types/react": "^18.2.48", "@types/react": "^18.3.3",
"@types/react-dom": "^18.2.18", "@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11", "@types/react-helmet": "^6.1.11",
"@umijs/fabric": "^2.14.1", "@umijs/fabric": "^2.14.1",
"@umijs/lint": "^4.1.1", "@umijs/lint": "^4.2.9",
"@umijs/max": "^4.1.1", "@umijs/max": "^4.2.9",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.56.0", "eslint": "^8.57.0",
"express": "^4.18.2", "express": "^4.19.2",
"gh-pages": "^3.2.3", "gh-pages": "^3.2.3",
"husky": "^7.0.4", "husky": "^7.0.4",
"jest": "^29.7.0", "jest": "^29.7.0",
@ -85,9 +84,10 @@
"lint-staged": "^10.5.4", "lint-staged": "^10.5.4",
"mockjs": "^1.1.0", "mockjs": "^1.1.0",
"prettier": "^2.8.8", "prettier": "^2.8.8",
"react-dev-inspector": "^1.9.0",
"swagger-ui-dist": "^4.19.1", "swagger-ui-dist": "^4.19.1",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.3.3", "typescript": "^5.4.5",
"umi-presets-pro": "^2.0.3", "umi-presets-pro": "^2.0.3",
"umi-serve": "^1.9.11" "umi-serve": "^1.9.11"
}, },

28855
pnpm-lock.yaml

File diff suppressed because it is too large

6
src/pages/TableList/components/UpdateForm.tsx

@ -36,7 +36,11 @@ const UpdateForm: React.FC<UpdateFormProps> = (props) => {
return ( return (
<Modal <Modal
width={640} width={640}
bodyStyle={{ padding: '32px 40px 48px' }} styles={{
body: {
padding: '32px 40px 48px',
},
}}
destroyOnClose destroyOnClose
title={intl.formatMessage({ title={intl.formatMessage({
id: 'pages.searchTable.updateForm.ruleConfig', id: 'pages.searchTable.updateForm.ruleConfig',

12
src/pages/Welcome.tsx

@ -92,11 +92,13 @@ const Welcome: React.FC = () => {
style={{ style={{
borderRadius: 8, borderRadius: 8,
}} }}
bodyStyle={{ styles={{
backgroundImage: body: {
initialState?.settings?.navTheme === 'realDark' backgroundImage:
? 'background-image: linear-gradient(75deg, #1A1B1F 0%, #191C1F 100%)' initialState?.settings?.navTheme === 'realDark'
: 'background-image: linear-gradient(75deg, #FBFDFF 0%, #F5F7FF 100%)', ? 'background-image: linear-gradient(75deg, #1A1B1F 0%, #191C1F 100%)'
: 'background-image: linear-gradient(75deg, #FBFDFF 0%, #F5F7FF 100%)',
},
}} }}
> >
<div <div

Loading…
Cancel
Save