@adsgency_npm/adsgency-ads-ui 0.1.0-alpha.25 → 0.1.0-alpha.27

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.
package/dist/index.cjs CHANGED
@@ -6274,7 +6274,7 @@ function AdsBarChart({
6274
6274
  axisLine: xAxis?.axisLine ?? false,
6275
6275
  dataKey: xKey,
6276
6276
  hide: xAxis?.hide ?? true,
6277
- tick: xAxis?.tick ?? true,
6277
+ tick: xAxis?.tick === false ? false : { fill: xAxis?.tickColor, fontSize: xAxis?.tickFontSize },
6278
6278
  tickLine: xAxis?.tickLine ?? false,
6279
6279
  tickMargin: xAxis?.tickMargin,
6280
6280
  type: "category"
@@ -6285,7 +6285,7 @@ function AdsBarChart({
6285
6285
  {
6286
6286
  axisLine: yAxis.axisLine ?? false,
6287
6287
  domain: yAxis.domain,
6288
- tick: yAxis.tick ?? true,
6288
+ tick: yAxis.tick === false ? false : { fill: yAxis.tickColor, fontSize: yAxis.tickFontSize },
6289
6289
  tickCount: yAxis.tickCount,
6290
6290
  tickLine: yAxis.tickLine ?? false,
6291
6291
  tickMargin: yAxis.tickMargin,