chore(*): Update devui version. Fix the container growing out of viewport when too many actions.

This commit is contained in:
hanayashiki 2021-04-25 14:37:41 -07:00
parent 0e366fccc3
commit 39fbdef4e3
No known key found for this signature in database
GPG Key ID: A67140D398F164A2
3 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "devui", "name": "devui",
"version": "1.0.0-8", "version": "1.0.0-9",
"description": "Reusable React components for building DevTools monitors and apps.", "description": "Reusable React components for building DevTools monitors and apps.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/devui", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/devui",
"bugs": { "bugs": {

View File

@ -6,6 +6,8 @@ export const MainContainerWrapper = styled.div`
height: 100%; height: 100%;
width: 100%; width: 100%;
flex-flow: column nowrap; flex-flow: column nowrap;
flex-shrink: 1;
min-height: 0;
background-color: ${(props) => color(props.theme.base00, 'lighten', 0.03)}; background-color: ${(props) => color(props.theme.base00, 'lighten', 0.03)};
color: ${(props) => props.theme.base07}; color: ${(props) => props.theme.base07};
font-size: 12px; font-size: 12px;
@ -30,7 +32,8 @@ export const MainContainerWrapper = styled.div`
flex-grow: 1; flex-grow: 1;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
height: 100%; flex-shrink: 1;
min-height: 0;
> div { > div {
flex-grow: 1; flex-grow: 1;
@ -43,4 +46,6 @@ export const ContainerWrapper = styled.div`
height: 100%; height: 100%;
width: 100%; width: 100%;
flex-flow: column nowrap; flex-flow: column nowrap;
flex-shrink: 1;
min-height: 0;
`; `;

View File

@ -45,7 +45,7 @@
"@redux-devtools/log-monitor": "^2.3.0", "@redux-devtools/log-monitor": "^2.3.0",
"@redux-devtools/slider-monitor": "^2.0.0-7", "@redux-devtools/slider-monitor": "^2.0.0-7",
"d3-state-visualizer": "^1.4.0", "d3-state-visualizer": "^1.4.0",
"devui": "^1.0.0-8", "devui": "^1.0.0-9",
"javascript-stringify": "^2.0.1", "javascript-stringify": "^2.0.1",
"jsan": "^3.1.13", "jsan": "^3.1.13",
"jsondiffpatch": "^0.4.1", "jsondiffpatch": "^0.4.1",