Merge branch 'notebooks-v2' into notebooks-v2
Signed-off-by: bhaktinarvekar <56331957+bhaktinarvekar@users.noreply.github.com>
This commit is contained in:
commit
073b16f329
|
|
@ -1,11 +1,13 @@
|
|||
# Binaries for programs and plugins
|
||||
bin/*
|
||||
Dockerfile.cross
|
||||
|
||||
# Package managers generated files
|
||||
**/node_modules
|
||||
dist
|
||||
yarn-error.log
|
||||
yarn.lock
|
||||
|
||||
# Test files generated by Jest or Cypress
|
||||
stats.json
|
||||
coverage
|
||||
.idea
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
bin/*
|
||||
Dockerfile.cross
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -42,7 +42,7 @@
|
|||
"prepare": "cd ../../ && husky workspaces/frontend/.husky"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@module-federation/enhanced": "^0.13.1",
|
||||
"@module-federation/enhanced": "^0.18.4",
|
||||
"@mui/icons-material": "^6.4.8",
|
||||
"@mui/material": "^6.3.1",
|
||||
"@mui/types": "^7.2.21",
|
||||
|
|
@ -103,6 +103,8 @@
|
|||
"webpack-merge": "^6.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@patternfly/patternfly": "^6.3.1",
|
||||
"@patternfly/react-catalog-view-extension": "^6.2.0",
|
||||
"@patternfly/react-code-editor": "^6.3.1",
|
||||
|
|
@ -113,11 +115,9 @@
|
|||
"@patternfly/react-templates": "^6.3.1",
|
||||
"@patternfly/react-tokens": "^6.3.1",
|
||||
"@types/js-yaml": "^4.0.9",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"axios": "^1.10.0",
|
||||
"date-fns": "^4.1.0",
|
||||
"classnames": "^2.2.6",
|
||||
"date-fns": "^4.1.0",
|
||||
"dompurify": "^3.2.4",
|
||||
"js-yaml": "^4.1.0",
|
||||
"lodash-es": "^4.17.15",
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { Theme } from 'mod-arch-kubeflow';
|
|||
|
||||
export const STYLE_THEME = asEnumMember(process.env.STYLE_THEME, Theme) || Theme.MUI;
|
||||
export const DEPLOYMENT_MODE =
|
||||
asEnumMember(process.env.DEPLOYMENT_MODE, DeploymentMode) || DeploymentMode.Federated;
|
||||
asEnumMember(process.env.DEPLOYMENT_MODE, DeploymentMode) || DeploymentMode.Kubeflow;
|
||||
export const DEV_MODE = process.env.APP_ENV === 'development';
|
||||
export const POLL_INTERVAL = process.env.POLL_INTERVAL
|
||||
? parseInt(process.env.POLL_INTERVAL)
|
||||
|
|
|
|||
Loading…
Reference in New Issue