axidio-styleguide-library1-v2 0.0.898 → 0.0.900

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.
@@ -4139,7 +4139,7 @@ class GroupChartComponent extends ComponentUniqueId {
4139
4139
  .attr('transform', 'translate(' + x.bandwidth() / 2 + ',' + height + ')')
4140
4140
  .call(d3.axisBottom(x).tickSize(-height).tickFormat(''))
4141
4141
  .style('stroke-dasharray', '5 5')
4142
- .style('color', '#999999')
4142
+ .style('color', 'var(--chart-grid-color, #999999)')
4143
4143
  .call((g) => g.select('.domain').remove());
4144
4144
  }
4145
4145
  if (this.chartConfiguration.yAxisGrid) {
@@ -4152,7 +4152,7 @@ class GroupChartComponent extends ComponentUniqueId {
4152
4152
  .axisLeft(y)
4153
4153
  .ticks(self.chartConfiguration.numberOfYTicks)
4154
4154
  .tickSize(-width))
4155
- .style('color', '#B9B9B9')
4155
+ .style('color', 'var(--chart-axis-color, #B9B9B9)')
4156
4156
  .style('opacity', '0.5')
4157
4157
  .call((g) => g.select('.domain').remove());
4158
4158
  }
@@ -8807,7 +8807,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8807
8807
  })
8808
8808
  .text(function (d) {
8809
8809
  var isValueToBeIgnored = false;
8810
- if (isMobile && !self.isHeaderVisible) {
8810
+ if ((isMobile && !self.isHeaderVisible) || isria) {
8811
8811
  let firstPart = d.split(/[\s\-]+/)[0];
8812
8812
  return firstPart.substring(0, 3).toLowerCase();
8813
8813
  }
@@ -8853,7 +8853,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8853
8853
  });
8854
8854
  }
8855
8855
  }
8856
- if (isMobile && !this.isHeaderVisible) {
8856
+ if ((isMobile && !this.isHeaderVisible) || isria) {
8857
8857
  svg
8858
8858
  .selectAll('g.x1.axis1 g.tick text')
8859
8859
  .classed('mobile-xaxis-override', true);