Skip to content

Commit

Permalink
v4.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
novykh committed Nov 13, 2023
1 parent bb8e9cb commit 0cdbdd9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netdata/charts",
"version": "4.3.4",
"version": "4.3.5",
"description": "Netdata frontend SDK and chart utilities",
"main": "dist/index.js",
"module": "dist/es6/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/components/bars/dimensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ const Grid = styled.div`
grid-template-columns: ${({ cols }) => {
switch (cols) {
case "full":
return "2fr 1fr 1fr 1fr"
return "3fr 1fr 1fr 1fr"
default:
return "3fr 1fr"
return "5fr 2fr"
}
}};
gap: ${props => props.gap || 0};
Expand Down
1 change: 0 additions & 1 deletion src/components/filterToolbox/label.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const Container = styled(Flex).attrs(({ width = { max: 100 }, open, ...re
cursor: "pointer",
role: "button",
padding: [0.5],
round: true,
gap: 0.5,
width,
alignItems: "center",
Expand Down
1 change: 0 additions & 1 deletion src/components/line/popover/dimensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import Dimension from "./dimension"

const Container = styled(Flex).attrs({
round: true,
border: { side: "all", color: "elementBackground" },
width: { min: "196px", max: "80vw" },
background: "dropdown",
column: true,
Expand Down
6 changes: 4 additions & 2 deletions src/sdk/initialAttributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ export default {
eliminateZeroDimensions: true,
fullscreen: false,
overlays: {},
themeGridColor: ["#E4E8E8", "#212727"],
themeCrosshair: ["#536775", "#536775"],

showingInfo: false,
colors: [],

Expand Down Expand Up @@ -156,6 +155,9 @@ export default {

pristine: {},

themeGridColor: ["#E4E8E8", "#212727"],
themeCrosshair: ["#536775", "#536775"],

themeTrackColor: ["#DBE1E1", "#353F3F"],
themeScaleColor: ["#F7F8F8", "#2B3136"],

Expand Down

0 comments on commit 0cdbdd9

Please sign in to comment.