Skip to content

Commit

Permalink
Scale fields in components (#7213)
Browse files Browse the repository at this point in the history
Bump up mui versions to support dynamic user scaling of fields in components view with x-data-grid. Also changed flex to 4 to display the name as longer by default
---------

Co-authored-by: Marcel Philipiak <[email protected]>
  • Loading branch information
Diamekod0221 and Marcel Philipiak authored Nov 26, 2024
1 parent 0fc6d66 commit 1a4c2d0
Show file tree
Hide file tree
Showing 8 changed files with 636 additions and 574 deletions.
562 changes: 291 additions & 271 deletions designer/client/package-lock.json

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions designer/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
"@hello-pangea/dnd": "16.6.0",
"@juggle/resize-observer": "3.3.1",
"@loadable/component": "5.15.2",
"@mui/icons-material": "5.15.7",
"@mui/lab": "5.0.0-alpha.165",
"@mui/material": "5.15.7",
"@mui/icons-material": "5.16.7",
"@mui/lab": "5.0.0-alpha.173",
"@mui/material": "5.16.7",
"@mui/system": "5.16.7",
"@touk/federated-component": "1.1.0",
"@touk/window-manager": "1.9.0",
"ace-builds": "1.34.2",
Expand Down
2 changes: 1 addition & 1 deletion designer/client/src/components/NodeInput.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css } from "@mui/material";

export const nodeInputCss = css({
height: "35px",
width: "100%",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@

exports[`ProcessStateIcon tests should show data from loaded process.state 1`] = `
.emotion-0 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
width: 20px;
height: 20px;
}
Expand All @@ -28,12 +23,7 @@ exports[`ProcessStateIcon tests should show data from loaded process.state 1`] =

exports[`ProcessStateIcon tests should show defaults for loaded process.state without data 1`] = `
.emotion-0 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
width: 20px;
height: 20px;
}
Expand All @@ -53,12 +43,7 @@ exports[`ProcessStateIcon tests should show defaults for loaded process.state wi

exports[`ProcessStateIcon tests should show defaults for missing process.state and stateProcess 1`] = `
.emotion-0 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
width: 20px;
height: 20px;
}
Expand All @@ -78,12 +63,7 @@ exports[`ProcessStateIcon tests should show defaults for missing process.state a

exports[`ProcessStateIcon tests should show defaults if loadedProcess is empty 1`] = `
.emotion-0 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
width: 20px;
height: 20px;
}
Expand All @@ -103,12 +83,7 @@ exports[`ProcessStateIcon tests should show defaults if loadedProcess is empty 1

exports[`ProcessStateIcon tests should show loadedProcess data 1`] = `
.emotion-0 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
width: 20px;
height: 20px;
}
Expand Down
Loading

0 comments on commit 1a4c2d0

Please sign in to comment.