playbook_ui 13.25.0.pre.alpha.PLAY1249fixTooltipswrappingformelementscausingmisalignment2785 → 13.25.0.pre.alpha.barchartfix2766

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e1ea03cb7f1ad7dcd721058695e458d82f63b284b3fc2d65b4c1d88ad4fe1e2
4
- data.tar.gz: 3d9ab6d3753875a400c5a42cf053e657ed911b0ad83f04b4d918012217a06689
3
+ metadata.gz: 316498c60328f47c61c0c80097cd58e075a3a5c3011679fb2f932570e1d3429a
4
+ data.tar.gz: 1ef2cf350e7c11fb2b108a5de7d7a3b6cf604e27d42764fb97d521be63a98954
5
5
  SHA512:
6
- metadata.gz: 81c8fcbcd01a0d2d350de7e728e91a4a30804b757dba46c08bdd7c2842350912b002114d13a111fa5f34d83e07deb2987687766c706f34b1766cc94bc251bfc0
7
- data.tar.gz: fbfafa2c2e5048a254b3cfe0f79080679fc2655a83ca84963322cfc2e69c66998d8da411296d793f8424d7439b67382d94c6c0682d1c7b70a98e45701e2e8306
6
+ metadata.gz: aaf75bdae9c9ab9f5197f91162698e97462532ccc9a87b1d76d8379da4cfbdd59c7441a9fb97dd30dea06d2b153d0c1c033761ec830a915ca0a594b1c455c128
7
+ data.tar.gz: 8c703bb58ce255fb29513b79b6353d6025689514537e6c9fde9608d69b54868a8b37ea14d83131605ed50cdae55dfd3aea65e647f8ebd8a0a2a582361c8c70b1
@@ -102,7 +102,7 @@ const BarGraph = ({
102
102
  max: yAxisMax,
103
103
  opposite: false,
104
104
  title: {
105
- text: typeof axisTitle === 'string' ? axisTitle : axisTitle[0].name,
105
+ text: Array.isArray(axisTitle) ? (axisTitle.length > 0 ? axisTitle[0].name : null) : axisTitle,
106
106
  },
107
107
  plotLines: typeof yAxisMin !== 'undefined' && yAxisMin !== null ? [] : [{
108
108
  value: 0,
@@ -127,7 +127,7 @@ const Tooltip = forwardRef((props: TooltipProps, ref: ForwardedRef<unknown>): Re
127
127
  }
128
128
  }}
129
129
  role="tooltip_trigger"
130
- style={{ display: "inline-block" }}
130
+ style={{ display: "inline-flex" }}
131
131
  {...ariaProps}
132
132
  {...dataProps}
133
133
  {...htmlProps}