@evergis/react 2.0.180 → 2.0.181

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/react.esm.js CHANGED
@@ -1393,7 +1393,7 @@ const formatDate = function formatDate(date, _temp) {
1393
1393
  return format(dateValue, dateFormat);
1394
1394
  }
1395
1395
 
1396
- return "" + defaultValue;
1396
+ return defaultValue.toString();
1397
1397
  };
1398
1398
 
1399
1399
  function numberWithSpaces(x, fractionDigits, delim) {
@@ -2547,39 +2547,25 @@ const isRangeCondition = condition => condition.includes("(");
2547
2547
  const getSymbolParameterInfo = parameter => {
2548
2548
  return PARAMETER_INFOS[parameter] || DEFAULT_PARAMETER_INFO;
2549
2549
  };
2550
- const formatValue$1 = (value, type, calculatedParameter) => {
2551
- var _ref;
2552
-
2553
- if (type === AttributeType.DateTime) {
2554
- return formatDate(value, {
2555
- dateFormat: DateFormat.DateTime
2556
- });
2557
- }
2558
-
2559
- const {
2560
- serialize
2561
- } = getSymbolParameterInfo(calculatedParameter);
2562
- return (_ref = value && typeof value === "number" ? serialize(value) : value) == null ? void 0 : _ref.toString();
2563
- };
2564
- const formatUniqueClassValue = value => {
2550
+ const formatUniqueClassValue = (value, formatValue) => {
2565
2551
  const {
2566
2552
  attribute,
2567
2553
  uniqueValue
2568
2554
  } = value;
2569
- return attribute ? formatValue$1(uniqueValue, attribute.type) : uniqueValue;
2555
+ return attribute && formatValue ? formatValue(attribute.type, uniqueValue, attribute.stringFormat) : uniqueValue;
2570
2556
  };
2571
- const getRangeValues$1 = (_ref2, isDouble, isDate, index) => {
2557
+ const getRangeValues$1 = (_ref, isDouble, isDate, index) => {
2572
2558
  let {
2573
2559
  from,
2574
2560
  to
2575
- } = _ref2;
2561
+ } = _ref;
2576
2562
  return {
2577
2563
  from: from !== null && index !== 0 ? isDate ? from : isDouble ? +from : +from + 1 : from,
2578
2564
  to
2579
2565
  };
2580
2566
  };
2581
- const formatRangeClassValue = (value, index) => {
2582
- var _value$attribute, _value$attribute2;
2567
+ const formatRangeClassValue = (value, formatValue, index) => {
2568
+ var _value$attribute, _value$attribute2, _value$attribute3, _value$attribute4, _value$attribute5, _value$attribute6;
2583
2569
 
2584
2570
  const isDouble = ((_value$attribute = value.attribute) == null ? void 0 : _value$attribute.type) === "Double";
2585
2571
  const isDate = ((_value$attribute2 = value.attribute) == null ? void 0 : _value$attribute2.type) === "DateTime";
@@ -2587,8 +2573,8 @@ const formatRangeClassValue = (value, index) => {
2587
2573
  from,
2588
2574
  to
2589
2575
  } = getRangeValues$1(value, isDouble, isDate, index);
2590
- const formattedFrom = isDate && from ? formatDate(from) : from;
2591
- const formattedTo = isDate && to ? formatDate(to) : to;
2576
+ const formattedFrom = formatValue ? formatValue((_value$attribute3 = value.attribute) == null ? void 0 : _value$attribute3.type, from, (_value$attribute4 = value.attribute) == null ? void 0 : _value$attribute4.stringFormat) : from;
2577
+ const formattedTo = formatValue ? formatValue((_value$attribute5 = value.attribute) == null ? void 0 : _value$attribute5.type, to, (_value$attribute6 = value.attribute) == null ? void 0 : _value$attribute6.stringFormat) : to;
2592
2578
 
2593
2579
  if (from === null) {
2594
2580
  return "" + formattedTo + (!isDate ? " и менее" : "");
@@ -2617,20 +2603,18 @@ const getTitleFromCondition = condition => {
2617
2603
  return (_parts$ = parts[1]) == null ? void 0 : _parts$.slice(1, -1);
2618
2604
  };
2619
2605
 
2620
- function createValueTitle$1(paramValue, attributeType, index) {
2606
+ function createValueTitle$1(paramValue, attribute, formatValue, index) {
2621
2607
  if (paramValue.title) return paramValue.title;
2622
2608
  const value = {
2623
2609
  parameterValue: getParameterValue(paramValue.value),
2624
- attribute: {
2625
- type: attributeType
2626
- }
2610
+ attribute
2627
2611
  };
2628
2612
  const sign = getSignFromConditionPart(paramValue.condition, 1);
2629
2613
  const isFirstFrom = sign.includes(">");
2630
2614
  value.from = isFirstFrom ? getValueFromConditionPart(paramValue.condition, 1) : null;
2631
2615
  value.to = paramValue.condition.includes(" && ") && isFirstFrom ? getValueFromConditionPart(paramValue.condition, 2) : !isFirstFrom ? getValueFromConditionPart(paramValue.condition, 1) : null;
2632
- if (isRangeClass(value)) return formatRangeClassValue(value, index);
2633
- if (isUniqueClass(value)) return formatUniqueClassValue(value);
2616
+ if (isRangeClass(value)) return formatRangeClassValue(value, formatValue, index);
2617
+ if (isUniqueClass(value)) return formatUniqueClassValue(value, formatValue);
2634
2618
  return "";
2635
2619
  } // Основывается на http://cf.everpoint.ru/pages/viewpage.action?pageId=45024217 ->
2636
2620
  // пункт "Настраиваемые значения параметров символики в системе"
@@ -2905,19 +2889,17 @@ const createOtherHiddenCondition = (values, attributeName, attributeType) => {
2905
2889
 
2906
2890
  return hiddenCondition;
2907
2891
  };
2908
- const getMinimizedLegendValues = (attributeName, attributeType, classified, index, otherTitle) => {
2892
+ const getMinimizedLegendValues = (attribute, classified, formatValue, index, otherTitle) => {
2909
2893
  const other = {
2910
2894
  title: otherTitle,
2911
2895
  parameterValue: classified.defaultValue,
2912
- hiddenCondition: createOtherHiddenCondition(classified.values.map(val => getClassificationValue(val.value, otherTitle, new ClassificationCondition(val.condition))), attributeName, attributeType)
2896
+ hiddenCondition: createOtherHiddenCondition(classified.values.map(val => getClassificationValue(val.value, otherTitle, new ClassificationCondition(val.condition))), attribute.name, attribute.type)
2913
2897
  };
2914
2898
  const items = classified.values.map(paramValue => {
2915
2899
  const parameterValue = getParameterValue(paramValue.value);
2916
2900
  const result = {
2917
2901
  parameterValue,
2918
- attribute: {
2919
- type: attributeType
2920
- }
2902
+ attribute
2921
2903
  };
2922
2904
 
2923
2905
  if (isRangeCondition(paramValue.condition)) {
@@ -2925,38 +2907,38 @@ const getMinimizedLegendValues = (attributeName, attributeType, classified, inde
2925
2907
  const to = getValueFromConditionPart(paramValue.condition, 2);
2926
2908
  result.from = from ? isNumeric(from) ? +from : formatDate(from) : null;
2927
2909
  result.to = to ? isNumeric(to) ? +to : formatDate(to) : null;
2928
- result.title = createValueTitle$1(paramValue, attributeType, index);
2910
+ result.title = createValueTitle$1(paramValue, attribute, formatValue, index);
2929
2911
  return result;
2930
2912
  }
2931
2913
 
2932
- result.uniqueValue = formatValue$1(paramValue.value);
2914
+ result.uniqueValue = formatValue ? formatValue(attribute.type, paramValue.value, attribute.stringFormat) : paramValue.value.toString();
2933
2915
  result.title = getTitleFromCondition(paramValue.condition);
2934
- result.hiddenCondition = createHiddenCondition(attributeName, attributeType, getClassificationValue(paramValue.value, result.title, new ClassificationCondition(paramValue.condition)));
2916
+ result.hiddenCondition = createHiddenCondition(attribute.name, attribute.type, getClassificationValue(paramValue.value, result.title, new ClassificationCondition(paramValue.condition)));
2935
2917
  return result;
2936
2918
  });
2937
2919
 
2938
- if (attributeType !== AttributeType.String) {
2920
+ if (attribute.type !== AttributeType.String) {
2939
2921
  items.reverse();
2940
2922
  }
2941
2923
 
2942
2924
  return [...items, other];
2943
2925
  };
2944
- const getMaximizedLegendValues = (attributeName, attributeType, param, params, classified, symbol, sectionIndex, otherTitle) => {
2926
+ const getMaximizedLegendValues = (attribute, param, params, classified, symbol, formatValue, sectionIndex, otherTitle) => {
2945
2927
  const other = {
2946
2928
  title: otherTitle,
2947
2929
  symbol: createLegendSymbol(classified.defaultValue, param, params, symbol),
2948
- hiddenCondition: createOtherHiddenCondition(classified.values.map(val => getClassificationValue(val.value, otherTitle, new ClassificationCondition(val.condition))), attributeName, attributeType)
2930
+ hiddenCondition: createOtherHiddenCondition(classified.values.map(val => getClassificationValue(val.value, otherTitle, new ClassificationCondition(val.condition))), attribute.name, attribute.type)
2949
2931
  };
2950
2932
  const items = classified.values.map((paramValue, index) => {
2951
2933
  const result = {
2952
- symbol: createLegendSymbol(classified.values[index].value, param, params, symbol)
2934
+ symbol: createLegendSymbol(paramValue.value, param, params, symbol)
2953
2935
  };
2954
- result.title = isRangeCondition(paramValue.condition) ? createValueTitle$1(paramValue, attributeType, sectionIndex) : getTitleFromCondition(paramValue.condition);
2955
- result.hiddenCondition = createHiddenCondition(attributeName, attributeType, getClassificationValue(classified.values[index].value, result.title, new ClassificationCondition(classified.values[index].condition)));
2936
+ result.title = isRangeCondition(paramValue.condition) ? createValueTitle$1(paramValue, attribute, formatValue, sectionIndex) : getTitleFromCondition(paramValue.condition);
2937
+ result.hiddenCondition = createHiddenCondition(attribute.name, attribute.type, getClassificationValue(paramValue.value, result.title, new ClassificationCondition(classified.values[index].condition)));
2956
2938
  return result;
2957
2939
  });
2958
2940
 
2959
- if (attributeType !== AttributeType.String) {
2941
+ if (attribute.type !== AttributeType.String) {
2960
2942
  items.reverse();
2961
2943
  }
2962
2944
 
@@ -6380,9 +6362,8 @@ const LegendSection = _ref => {
6380
6362
  classified,
6381
6363
  hiddenLegends,
6382
6364
  toggleHiddenLegend,
6383
- attributeName,
6384
- attributeTitle,
6385
- attributeType,
6365
+ attribute,
6366
+ formatValue,
6386
6367
  index
6387
6368
  } = _ref;
6388
6369
  const {
@@ -6391,7 +6372,7 @@ const LegendSection = _ref => {
6391
6372
  const [isExpanded, toggleExpanded] = useToggle();
6392
6373
  const [maxRef, maxNode] = useNode();
6393
6374
  const [minRef, minNode] = useNode();
6394
- return React.createElement(MapLegendSectionContainer, null, React.createElement(MapLegendHeader, null, attributeTitle), React.createElement(LegendParameterDescription, {
6375
+ return React.createElement(MapLegendSectionContainer, null, React.createElement(MapLegendHeader, null, attribute.alias || attribute.name), React.createElement(LegendParameterDescription, {
6395
6376
  parameter: parameter
6396
6377
  }), React.createElement(MapLegendSectionItems, {
6397
6378
  height: isExpanded ? ((maxNode == null ? void 0 : maxNode.offsetHeight) || 0) + 4 : minNode == null ? void 0 : minNode.offsetHeight
@@ -6403,15 +6384,15 @@ const LegendSection = _ref => {
6403
6384
  hiddenLegends: hiddenLegends == null ? void 0 : hiddenLegends[layerName],
6404
6385
  toggleHiddenLegend: toggleHiddenLegend,
6405
6386
  parameter: parameter,
6406
- attributeType: attributeType,
6387
+ attributeType: attribute.type,
6407
6388
  index: index,
6408
- values: getMaximizedLegendValues(attributeName, attributeType, parameter, parameters, classified, symbol, index, t("classification.other"))
6389
+ values: getMaximizedLegendValues(attribute, parameter, parameters, classified, symbol, formatValue, index, t("classification.other"))
6409
6390
  }), React.createElement(MinimizedLegend, {
6410
6391
  innerRef: minRef,
6411
6392
  isShown: !isExpanded,
6412
- values: getMinimizedLegendValues(attributeName, attributeType, classified, index, t("classification.other")),
6413
6393
  hiddenLegends: hiddenLegends == null ? void 0 : hiddenLegends[layerName],
6414
- parameter: parameter
6394
+ parameter: parameter,
6395
+ values: getMinimizedLegendValues(attribute, classified, formatValue, index, t("classification.other"))
6415
6396
  })), React.createElement(MapLegendExpandButton, {
6416
6397
  onClick: toggleExpanded
6417
6398
  }, t(isExpanded ? "toggleMenu" : "Развернуть")));
@@ -6429,21 +6410,19 @@ const Legend = /*#__PURE__*/memo(_ref => {
6429
6410
  const parameters = Object.keys(classified);
6430
6411
  const attributes = getLayerAttributes(layerInfo.layerDefinition);
6431
6412
  return React.createElement(MapLegendContainer, null, Object.keys(classified).map((param, index) => {
6432
- var _classified$param$val, _layerInfo$style, _attributes$find;
6413
+ var _classified$param$val, _layerInfo$style;
6433
6414
 
6434
6415
  const attributeName = getAttributeNameFromCondition((_classified$param$val = classified[param].values[0]) == null ? void 0 : _classified$param$val.condition);
6435
6416
  return React.createElement(LegendSection, Object.assign({
6436
6417
  key: index,
6437
6418
  layerName: layerInfo.name,
6438
6419
  symbol: (_layerInfo$style = layerInfo.style) == null ? void 0 : _layerInfo$style.symbol,
6439
- attributeName: attributeName,
6440
- attributeTitle: ((_attributes$find = attributes.find(_ref2 => {
6420
+ attribute: attributes.find(_ref2 => {
6441
6421
  let {
6442
6422
  name
6443
6423
  } = _ref2;
6444
6424
  return name === attributeName;
6445
- })) == null ? void 0 : _attributes$find.alias) || attributeName,
6446
- attributeType: getAttributeType(layerInfo, attributeName),
6425
+ }),
6447
6426
  classified: classified[param],
6448
6427
  parameter: param,
6449
6428
  parameters: parameters,
@@ -6854,5 +6833,5 @@ const DraggableMarker = _ref => {
6854
6833
  return React.createElement(Fragment, null);
6855
6834
  };
6856
6835
 
6857
- export { ArrowLineMiterRender, BASE_OPERATORS, BETWEEN_OPERATORS, BaseMeasureToolCreator, BaseMeasureToolEditor, CONTAINS_OPERATORS, CRS_MAP, CardAttributes, CardHeader, CircleLineMiterRender, ClassificationCondition, ClassificationManager, ClassifiedItem, ClusterLayer, ClusterSymbol, ComparisonOperator, CompoundIcon, DEFAULT_CRS, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LEGEND_SIZES, DEFAULT_LEGEND_STYLES, DEFAULT_LEGEND_SYMBOL_SIZE, DEFAULT_PARAMETER_INFO, DEFAULT_SRID, DEFAULT_SYMBOL_FILL_COLOR, DEFAULT_SYMBOL_OFFSET, DEFAULT_SYMBOL_SIZE, DEFAULT_SYMBOL_STROKE_COLOR, DEFAULT_SYMBOL_WITH_BG_SIZE, DateFormat, DraggableMarker, ENDS_WITH_OPERATORS, EXTRA_BORDER_SIZE, EvergisCard, EvergisCardAttribute, AttributeContainer as EvergisCardAttributeContainer, AttributeTitle as EvergisCardAttributeTitle, AttributeValueContainer as EvergisCardAttributeValueContainer, CardControls as EvergisCardCardControls, CardTitle as EvergisCardCardTitle, EvergisCardContainer, CurrentFeatureIndex as EvergisCardCurrentFeatureIndex, FeatureName as EvergisCardFeatureName, LayerName as EvergisCardLayerName, CardPagination as EvergisCardPagination, PaginationDescription as EvergisCardPaginationDescription, SimpleAttribute as EvergisCardSimpleValue, StickyHeader as EvergisCardStickyHeader, ValueLink as EvergisCardValueLink, EvergisDynamicLayer, EvergisFeature, EvergisLayer, EvergisProvider, EvergisSelect, EvergisSelectLayer, EvergisSelectProvider, EvergisStyle, EvergisTileLayer, FILLED_OPERATORS, FeatureLayer, FilterConditionOperation, Fullscreen, GEOMETRY_ATTRIBUTE, ItemSeparator, ItemText, LabelSymbol, Legend, LegendParameterDescription, LegendProvider, LegendSection, LegendSymbolRenderer, LineMiterKind, LineMiterRender, Map, MapControl, MapControls, MapLegendContainer, MapLegendControl, MapLegendDescription, MapLegendDescriptionContainer, MapLegendExpandButton, MapLegendHeader, MapLegendItem, MapLegendItems, MapLegendItemsContainer, MapLegendOther, MapLegendSectionContainer, MapLegendSectionItems, MapLegendValueDescr, MapLegendValues, MapLegendValuesOther, MapLegendValuesRange, MapProvider, MaximizedLegend, MaximizedLegendContainer, Measure, MeasureTool, Measurer, MinimizedLegend, MinimizedLegendContainer, NO_CONTENT_VALUE, Noop, OPERATOR_CONDITION_REMAP, PARAMETER_INFOS, PREVIEW_LIMITS, RANGE_OPERATORS, SGisBrushFill, SGisImageFill, SGisPolygonSymbol, SGisPolylineSymbol, SOLID_INTERVALS, STARTS_WITH_OPERATORS, SVGPoly, SYMBOL_CLASSIFICATION, SYMBOL_LIMITS, SYMBOL_SIZE_PARAMETERS, ScaleRuler, ScaleRulerBlock, ScaleRulerContainer, Search, SelectedPointSymbol, SelectedPolySymbol, ShadowedPointSymbol, ShadowedPolySymbol, SizeMinimizedLegend, SizeMinimizedLegendDown, SizeMinimizedLegendLabel, SizeMinimizedLegendSymbol, SizeMinimizedLegendUp, SquareLineMiterRender, SrId, StyleSymbol, SvgSymbol, SvgSymbolBg, Symbol, SymbolButton, SymbolByType, SymbolContainer, TextContainer, TileLayer, Tooltip, TooltipComponent, TooltipProvider, Zoom, ZoomLevel, adjustSymbol, applyParameterValue, checkLayerHasLegend, clamp, convertSvgToBase64, copyRings, createCompositeSymbol, createHiddenCondition, createLabelSymbol, createLegendSymbol, createOtherHiddenCondition, createSvgGradient, createValueTitle, dateComparisonOperators, defaultOffset, defineStrokeStylePreset, deserializeSymbol, evaluateFeature, extractStyle, extractSymbol, findChildFeatureStyle, findChildFeatureSymbol, formatArea, formatAttributeValue, formatDate, formatLength, formatPolygonMeasure, formatRangeClassValue, formatUniqueClassValue, formatValue$1 as formatValue, getAttributeFromCondition, getAttributeNameFromClassified, getAttributeNameFromCondition, getAttributeType, getAttributesConfiguration, getChildSymbols, getClassified, getCrs, getDashStylePreset, getDate, getDimensions, getExprFromCondition, getExtractedSymbol, getFeatureSymbol, getHexColor, getLayerDefinition, getLegendSymbolRenders, getLegendSymbolSize, getLineDash, getMapLegendSymbolRenders, getMapState, getMaximizedLegendValues, getMinimizedLegendValues, getOffsetParameterValue, getParameterFromSymbol, getParameterValue, getRangeValues$1 as getRangeValues, getScale, getServiceConfiguration, getSignFromConditionPart, getSymbolParameterInfo, getSymbolRenders, getSymbolStrokeWidth, getTitleFromCondition, getValueFromConditionPart, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isClusterFillColor, isClusterSymbol, isCompositeSymbol, isDashedBrush, isFilledLineMitter, isH3GridSymbol, isHatchBrush, isImageSymbol, isLabelSymbol, isLayerService, isMaskedImageSymbol, isMiterExist, isNumeric, isObject, isParameterByAttribute, isParameterType, isParameterValueSimple, isParameterValueSymbol, isPatternBrush, isPointLabelSymbol, isPointSymbol, isPolygonHasHatchBrush, isPolygonHasPatternBrush, isPolygonLabelSymbol, isPolygonSymbol, isPolylineLabelSymbol, isPolylineLikePolygon, isPolylineSymbol, isPolylineSymbols, isRangeClass, isRangeCondition, isRasterSymbol, isRequisiteNumbers, isSGisClusterSymbol, isSGisCombinedPolylineSymbol, isSGisH3Symbol, isSGisImageSymbol, isSGisPointSymbol, isSGisPolygonSymbol, isSGisPolylineSymbol, isScalablePolylineSymbol, isSimpleOffset, isSimplePolylineSymbol, isSimpleSymbol, isSizableSymbol, isSizeClassification, isSolidBrush, isSquareLineMiter, isSquareSymbol, isStaticImageSymbol, isStringAsInn, isStringAsKpp, isStringAsMail, isStringAsOgrn, isStringAsPhone, isStringAsUrl, isStringContainsDate, isStringParameterValue, isStrokeStyledSymbol, isStyle, isSvgPointSymbol, isSymbolWithOffset, isTwoDimensionalSymbol, isUniqueClass, isValidParameter, isValidUrl, mailHref, manipulateSvgSymbol, matchPhone, measureAreaSymbol, measureLengthSymbol, measurePolygonSnapSymbol, metersToPixels, numberComparisonOperators, numberWithSpaces, packStyle, phoneHref, polygonCircleFromPoint, printRangeClass, renderSymbolToCanvas, selectedPoint, selectedPolygon, selectedPolyline, serializeSvgPointSymbol, setDefaultParameterValue, setParameterValue, shouldUpdateMapState, solidStrokeStylePreset, strokeStylePresets, symbolParameterWalker, symbolTypeGuard, textComparisonOperators, toIntervals, toLineDash, unClassify, updateMapResolution, updateSymbolParameter, urlHref, useCanvas, useClusterLayer, useCrs, useDebouncedCallback, useDraggableMarker, useEventPoint, useEvergisContext, useEvergisDynamicLayer, useEvergisSelect, useEvergisSelectContext, useEvergisTileLayer, useFeatureLayer, useLayerOrder, useLayerVisibility, useLegendContext, useMapBboxChange, useMapContext, useMapLevel, useMapPick, useMapResize, useMapState, useMapView, useMapViewActions, useMapWrapper, useMaxMinScale, useMetersToPixels, useMetersToPixelsCb, useMount, useNode, useProperty, useScale, useSvgSymbol, useSymbol, useToggle, useTooltip, useTooltipContext, useUpdate, useUpdateMapView };
6836
+ export { ArrowLineMiterRender, BASE_OPERATORS, BETWEEN_OPERATORS, BaseMeasureToolCreator, BaseMeasureToolEditor, CONTAINS_OPERATORS, CRS_MAP, CardAttributes, CardHeader, CircleLineMiterRender, ClassificationCondition, ClassificationManager, ClassifiedItem, ClusterLayer, ClusterSymbol, ComparisonOperator, CompoundIcon, DEFAULT_CRS, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LEGEND_SIZES, DEFAULT_LEGEND_STYLES, DEFAULT_LEGEND_SYMBOL_SIZE, DEFAULT_PARAMETER_INFO, DEFAULT_SRID, DEFAULT_SYMBOL_FILL_COLOR, DEFAULT_SYMBOL_OFFSET, DEFAULT_SYMBOL_SIZE, DEFAULT_SYMBOL_STROKE_COLOR, DEFAULT_SYMBOL_WITH_BG_SIZE, DateFormat, DraggableMarker, ENDS_WITH_OPERATORS, EXTRA_BORDER_SIZE, EvergisCard, EvergisCardAttribute, AttributeContainer as EvergisCardAttributeContainer, AttributeTitle as EvergisCardAttributeTitle, AttributeValueContainer as EvergisCardAttributeValueContainer, CardControls as EvergisCardCardControls, CardTitle as EvergisCardCardTitle, EvergisCardContainer, CurrentFeatureIndex as EvergisCardCurrentFeatureIndex, FeatureName as EvergisCardFeatureName, LayerName as EvergisCardLayerName, CardPagination as EvergisCardPagination, PaginationDescription as EvergisCardPaginationDescription, SimpleAttribute as EvergisCardSimpleValue, StickyHeader as EvergisCardStickyHeader, ValueLink as EvergisCardValueLink, EvergisDynamicLayer, EvergisFeature, EvergisLayer, EvergisProvider, EvergisSelect, EvergisSelectLayer, EvergisSelectProvider, EvergisStyle, EvergisTileLayer, FILLED_OPERATORS, FeatureLayer, FilterConditionOperation, Fullscreen, GEOMETRY_ATTRIBUTE, ItemSeparator, ItemText, LabelSymbol, Legend, LegendParameterDescription, LegendProvider, LegendSection, LegendSymbolRenderer, LineMiterKind, LineMiterRender, Map, MapControl, MapControls, MapLegendContainer, MapLegendControl, MapLegendDescription, MapLegendDescriptionContainer, MapLegendExpandButton, MapLegendHeader, MapLegendItem, MapLegendItems, MapLegendItemsContainer, MapLegendOther, MapLegendSectionContainer, MapLegendSectionItems, MapLegendValueDescr, MapLegendValues, MapLegendValuesOther, MapLegendValuesRange, MapProvider, MaximizedLegend, MaximizedLegendContainer, Measure, MeasureTool, Measurer, MinimizedLegend, MinimizedLegendContainer, NO_CONTENT_VALUE, Noop, OPERATOR_CONDITION_REMAP, PARAMETER_INFOS, PREVIEW_LIMITS, RANGE_OPERATORS, SGisBrushFill, SGisImageFill, SGisPolygonSymbol, SGisPolylineSymbol, SOLID_INTERVALS, STARTS_WITH_OPERATORS, SVGPoly, SYMBOL_CLASSIFICATION, SYMBOL_LIMITS, SYMBOL_SIZE_PARAMETERS, ScaleRuler, ScaleRulerBlock, ScaleRulerContainer, Search, SelectedPointSymbol, SelectedPolySymbol, ShadowedPointSymbol, ShadowedPolySymbol, SizeMinimizedLegend, SizeMinimizedLegendDown, SizeMinimizedLegendLabel, SizeMinimizedLegendSymbol, SizeMinimizedLegendUp, SquareLineMiterRender, SrId, StyleSymbol, SvgSymbol, SvgSymbolBg, Symbol, SymbolButton, SymbolByType, SymbolContainer, TextContainer, TileLayer, Tooltip, TooltipComponent, TooltipProvider, Zoom, ZoomLevel, adjustSymbol, applyParameterValue, checkLayerHasLegend, clamp, convertSvgToBase64, copyRings, createCompositeSymbol, createHiddenCondition, createLabelSymbol, createLegendSymbol, createOtherHiddenCondition, createSvgGradient, createValueTitle, dateComparisonOperators, defaultOffset, defineStrokeStylePreset, deserializeSymbol, evaluateFeature, extractStyle, extractSymbol, findChildFeatureStyle, findChildFeatureSymbol, formatArea, formatAttributeValue, formatDate, formatLength, formatPolygonMeasure, formatRangeClassValue, formatUniqueClassValue, getAttributeFromCondition, getAttributeNameFromClassified, getAttributeNameFromCondition, getAttributeType, getAttributesConfiguration, getChildSymbols, getClassified, getCrs, getDashStylePreset, getDate, getDimensions, getExprFromCondition, getExtractedSymbol, getFeatureSymbol, getHexColor, getLayerDefinition, getLegendSymbolRenders, getLegendSymbolSize, getLineDash, getMapLegendSymbolRenders, getMapState, getMaximizedLegendValues, getMinimizedLegendValues, getOffsetParameterValue, getParameterFromSymbol, getParameterValue, getRangeValues$1 as getRangeValues, getScale, getServiceConfiguration, getSignFromConditionPart, getSymbolParameterInfo, getSymbolRenders, getSymbolStrokeWidth, getTitleFromCondition, getValueFromConditionPart, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isClusterFillColor, isClusterSymbol, isCompositeSymbol, isDashedBrush, isFilledLineMitter, isH3GridSymbol, isHatchBrush, isImageSymbol, isLabelSymbol, isLayerService, isMaskedImageSymbol, isMiterExist, isNumeric, isObject, isParameterByAttribute, isParameterType, isParameterValueSimple, isParameterValueSymbol, isPatternBrush, isPointLabelSymbol, isPointSymbol, isPolygonHasHatchBrush, isPolygonHasPatternBrush, isPolygonLabelSymbol, isPolygonSymbol, isPolylineLabelSymbol, isPolylineLikePolygon, isPolylineSymbol, isPolylineSymbols, isRangeClass, isRangeCondition, isRasterSymbol, isRequisiteNumbers, isSGisClusterSymbol, isSGisCombinedPolylineSymbol, isSGisH3Symbol, isSGisImageSymbol, isSGisPointSymbol, isSGisPolygonSymbol, isSGisPolylineSymbol, isScalablePolylineSymbol, isSimpleOffset, isSimplePolylineSymbol, isSimpleSymbol, isSizableSymbol, isSizeClassification, isSolidBrush, isSquareLineMiter, isSquareSymbol, isStaticImageSymbol, isStringAsInn, isStringAsKpp, isStringAsMail, isStringAsOgrn, isStringAsPhone, isStringAsUrl, isStringContainsDate, isStringParameterValue, isStrokeStyledSymbol, isStyle, isSvgPointSymbol, isSymbolWithOffset, isTwoDimensionalSymbol, isUniqueClass, isValidParameter, isValidUrl, mailHref, manipulateSvgSymbol, matchPhone, measureAreaSymbol, measureLengthSymbol, measurePolygonSnapSymbol, metersToPixels, numberComparisonOperators, numberWithSpaces, packStyle, phoneHref, polygonCircleFromPoint, printRangeClass, renderSymbolToCanvas, selectedPoint, selectedPolygon, selectedPolyline, serializeSvgPointSymbol, setDefaultParameterValue, setParameterValue, shouldUpdateMapState, solidStrokeStylePreset, strokeStylePresets, symbolParameterWalker, symbolTypeGuard, textComparisonOperators, toIntervals, toLineDash, unClassify, updateMapResolution, updateSymbolParameter, urlHref, useCanvas, useClusterLayer, useCrs, useDebouncedCallback, useDraggableMarker, useEventPoint, useEvergisContext, useEvergisDynamicLayer, useEvergisSelect, useEvergisSelectContext, useEvergisTileLayer, useFeatureLayer, useLayerOrder, useLayerVisibility, useLegendContext, useMapBboxChange, useMapContext, useMapLevel, useMapPick, useMapResize, useMapState, useMapView, useMapViewActions, useMapWrapper, useMaxMinScale, useMetersToPixels, useMetersToPixelsCb, useMount, useNode, useProperty, useScale, useSvgSymbol, useSymbol, useToggle, useTooltip, useTooltipContext, useUpdate, useUpdateMapView };
6858
6837
  //# sourceMappingURL=react.esm.js.map