@evergis/react 2.0.232 → 2.0.234

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.
@@ -5591,11 +5591,6 @@ const getMinimizedLegendValues = (attribute, classified, formatValue, index, oth
5591
5591
  result.hiddenCondition = createHiddenCondition(attribute.name, attribute.type, getClassificationValue(paramValue.value, result.title, new ClassificationCondition(paramValue.condition)));
5592
5592
  return result;
5593
5593
  });
5594
-
5595
- if (attribute.type !== api.AttributeType.String) {
5596
- items.reverse();
5597
- }
5598
-
5599
5594
  return [...items, other];
5600
5595
  };
5601
5596
  const getMaximizedLegendValues = (attribute, param, params, classified, symbol, formatValue, sectionIndex, otherTitle) => {
@@ -5614,11 +5609,6 @@ const getMaximizedLegendValues = (attribute, param, params, classified, symbol,
5614
5609
  result.hiddenCondition = createHiddenCondition(attribute.name, attribute.type, getClassificationValue(paramValue.value, result.title, new ClassificationCondition(classified.values[index].condition)));
5615
5610
  return result;
5616
5611
  });
5617
-
5618
- if (attribute.type !== api.AttributeType.String) {
5619
- items.reverse();
5620
- }
5621
-
5622
5612
  return [...items, other];
5623
5613
  };
5624
5614
  const classifyParamsReduce = (symbol, classifyParams, index) => {