Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scale fields in components #7213

Merged
merged 8 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading