Skip to content

Commit

Permalink
Revert "Scale fields in components (#7213)" (#7253)
Browse files Browse the repository at this point in the history
This reverts commit 1a4c2d0.

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

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions designer/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
"@hello-pangea/dnd": "16.6.0",
"@juggle/resize-observer": "3.3.1",
"@loadable/component": "5.15.2",
"@mui/icons-material": "5.16.7",
"@mui/lab": "5.0.0-alpha.173",
"@mui/material": "5.16.7",
"@mui/system": "5.16.7",
"@mui/icons-material": "5.15.7",
"@mui/lab": "5.0.0-alpha.165",
"@mui/material": "5.15.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,7 +2,12 @@

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 @@ -23,7 +28,12 @@ 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 @@ -43,7 +53,12 @@ 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 @@ -63,7 +78,12 @@ 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 @@ -83,7 +103,12 @@ 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 0f94b80

Please sign in to comment.