@fxlt/common-ui 0.0.5-rc4 → 0.0.5

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.
@@ -684,7 +684,7 @@ class BaseTableComponent extends BaseComponent {
684
684
  }
685
685
  }
686
686
  tagClass(tag) {
687
- return FxUtils.getTagClass(tag);
687
+ return FxUtils.getTagClass(tag, true);
688
688
  }
689
689
  capitalize(label) {
690
690
  return _.capitalize(label);
@@ -1480,6 +1480,7 @@ class ChartComponent {
1480
1480
  icon: 'circle',
1481
1481
  align: 'left',
1482
1482
  itemGap: 12,
1483
+ width: 150,
1483
1484
  formatter: (name) => {
1484
1485
  const item = data.find((d) => d.name === name);
1485
1486
  return item ? `${name}: ${item.value}` : name;