Skip to content

Commit

Permalink
Backport mui 7 to 1.18 esp (#7267)
Browse files Browse the repository at this point in the history
* Scale name in components fixed (#7258)

Mui data grid version change 6 -> 7

Co-authored-by: Marcel Philipiak <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored and lciolecki committed Dec 4, 2024
1 parent f7e631c commit 101f056
Show file tree
Hide file tree
Showing 21 changed files with 5,893 additions and 40,776 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion designer/client/cypress/e2e/components.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ describe("Components list", () => {
});

// Sort by processing mode
cy.get("[role='columnheader'][aria-label='Processing modes']").dblclick({ force: true });
cy.get("[role='columnheader'][data-field='allowedProcessingModes']").dblclick({ force: true });

cy.get("#app-container>main").matchImage();
});
Expand Down
28,822 changes: 2,900 additions & 25,922 deletions designer/client/package-lock.json

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions designer/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
"@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",
"@touk/federated-component": "1.0.0",
"@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",
"axios": "1.7.5",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ComponentType, PropsWithChildren } from "react";
import { ComponentType, ForwardRefExoticComponent, PropsWithChildren, PropsWithoutRef, RefAttributes } from "react";
import { Module } from "@touk/federated-component";

interface RedirectState {
Expand Down Expand Up @@ -40,7 +40,7 @@ export interface ExternalAuthModule extends Module {
/**
* provides auth context for hooks
*/
default: ComponentType<PropsWithChildren<Props>>;
default: ForwardRefExoticComponent<PropsWithoutRef<PropsWithChildren<Props>> & RefAttributes<unknown>>;
/**
* returns auth client from context
*/
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 101f056

Please sign in to comment.