@industry-theme/repository-composition-panels 0.2.35 → 0.2.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8053,6 +8053,7 @@ var GitStatusFileTree = ({
8053
8053
  transparentBackground = false,
8054
8054
  horizontalNodePadding,
8055
8055
  verticalNodePadding,
8056
+ verticalPadding,
8056
8057
  onContextMenu,
8057
8058
  openByDefault,
8058
8059
  initialHeight = 600,
@@ -8162,7 +8163,8 @@ var GitStatusFileTree = ({
8162
8163
  backgroundColor: transparentBackground ? "transparent" : theme.colors.background,
8163
8164
  color: theme.colors.text,
8164
8165
  fontFamily: theme.fonts.body,
8165
- ...autoHeight ? {} : { height: "100%" }
8166
+ ...autoHeight ? {} : { height: "100%" },
8167
+ ...verticalPadding ? { paddingTop: verticalPadding, paddingBottom: verticalPadding } : {}
8166
8168
  }
8167
8169
  }, /* @__PURE__ */ React2.createElement(GitStatusContext.Provider, {
8168
8170
  value: { gitStatusMap, hasChangedChildrenMap }
@@ -8304,6 +8306,7 @@ var TelemetryCoverageFileTree = ({
8304
8306
  transparentBackground = false,
8305
8307
  horizontalNodePadding,
8306
8308
  verticalNodePadding,
8309
+ verticalPadding,
8307
8310
  onContextMenu,
8308
8311
  openByDefault = true,
8309
8312
  initialHeight = 600,
@@ -8432,7 +8435,8 @@ var TelemetryCoverageFileTree = ({
8432
8435
  backgroundColor: transparentBackground ? "transparent" : theme.colors.background,
8433
8436
  color: theme.colors.text,
8434
8437
  fontFamily: theme.fonts.body,
8435
- ...autoHeight ? {} : { height: "100%" }
8438
+ ...autoHeight ? {} : { height: "100%" },
8439
+ ...verticalPadding ? { paddingTop: verticalPadding, paddingBottom: verticalPadding } : {}
8436
8440
  }
8437
8441
  }, /* @__PURE__ */ React2.createElement(TelemetryCoverageContext.Provider, {
8438
8442
  value: { coverageMap, hasTracedChildrenMap }
@@ -8977,7 +8981,7 @@ const GitChangesPanelContent = ({
8977
8981
  selectedFile,
8978
8982
  transparentBackground: true,
8979
8983
  horizontalNodePadding: "16px",
8980
- verticalNodePadding: "16px",
8984
+ verticalPadding: "16px",
8981
8985
  openByDefault: !showFullTree
8982
8986
  },
8983
8987
  showFullTree ? "full-tree" : "changes-only"
@@ -65753,7 +65757,7 @@ const TelemetryCoveragePanelContent = ({
65753
65757
  showUncoveredFiles: true,
65754
65758
  openByDefault: true,
65755
65759
  horizontalNodePadding: "16px",
65756
- verticalNodePadding: "16px"
65760
+ verticalPadding: "16px"
65757
65761
  }
65758
65762
  ) })
65759
65763
  ] });
@@ -66001,7 +66005,7 @@ const TelemetryCoveragePanelContent = ({
66001
66005
  showUncoveredFiles: true,
66002
66006
  openByDefault: true,
66003
66007
  horizontalNodePadding: "16px",
66004
- verticalNodePadding: "16px"
66008
+ verticalPadding: "16px"
66005
66009
  }
66006
66010
  ) })
66007
66011
  ]