Merge pull request #47 from PRO-Robotech/feature/dev

no pagination tables
This commit is contained in:
typescreep
2025-07-15 16:24:14 +03:00
committed by GitHub
5 changed files with 8 additions and 8 deletions

8
package-lock.json generated
View File

@@ -11,7 +11,7 @@
"@ant-design/icons": "5.6.0",
"@monaco-editor/react": "4.6.0",
"@originjs/vite-plugin-federation": "1.3.6",
"@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.53",
"@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.54",
"@readme/openapi-parser": "4.0.0",
"@reduxjs/toolkit": "2.2.5",
"@tanstack/react-query": "5.62.2",
@@ -2798,9 +2798,9 @@
}
},
"node_modules/@prorobotech/openapi-k8s-toolkit": {
"version": "0.0.1-alpha.53",
"resolved": "https://registry.npmjs.org/@prorobotech/openapi-k8s-toolkit/-/openapi-k8s-toolkit-0.0.1-alpha.53.tgz",
"integrity": "sha512-L9gRFZ2JFd9TYz2k3myKaEkSAYvwWumcGJTaNvWiEe1+uJb4eAKkJB2eHIalk4XneJT0ij1pAl0qWVzoNPWTkw==",
"version": "0.0.1-alpha.54",
"resolved": "https://registry.npmjs.org/@prorobotech/openapi-k8s-toolkit/-/openapi-k8s-toolkit-0.0.1-alpha.54.tgz",
"integrity": "sha512-ocIFnyKyi9xf55eJloy00wJBnzo7gppSkBKqLa4fclaB4rsm8rQA49oPzPyqTB8QGFCfFs4qjfCBsLRghvOBqw==",
"license": "MIT",
"dependencies": {
"@monaco-editor/react": "4.6.0",

View File

@@ -20,7 +20,7 @@
"@ant-design/icons": "5.6.0",
"@monaco-editor/react": "4.6.0",
"@originjs/vite-plugin-federation": "1.3.6",
"@prorobotech/openapi-k8s-toolkit": "0.0.1-alpha.53",
"@prorobotech/openapi-k8s-toolkit": "0.0.1-alpha.54",
"@readme/openapi-parser": "4.0.0",
"@reduxjs/toolkit": "2.2.5",
"@tanstack/react-query": "5.62.2",

View File

@@ -172,7 +172,7 @@ export const TableBuiltinInfo: FC<TTableBuiltinInfoProps> = ({ namespace, typeNa
setSelectedRowsData(selectedRowsData)
},
}}
tableProps={TABLE_PROPS}
tableProps={{ ...TABLE_PROPS, disablePagination: true }}
// maxHeight={height - 65}
/>
)}

View File

@@ -171,7 +171,7 @@ export const ResourceInfo: FC<TResourceInfoProps> = ({
setSelectedRowsData(selectedRowsData)
},
}}
tableProps={TABLE_PROPS}
tableProps={{ ...TABLE_PROPS, disablePagination: true }}
// maxHeight={height - 65}
/>
)}

View File

@@ -186,7 +186,7 @@ export const TableNonCrdInfo: FC<TTableNonCrdInfoProps> = ({
setSelectedRowsData(selectedRowsData)
},
}}
tableProps={TABLE_PROPS}
tableProps={{ ...TABLE_PROPS, disablePagination: true }}
// maxHeight={height - 65}
/>
)}