@evergis/react 2.0.179 → 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
@@ -38,7 +38,9 @@ import { StaticImageSymbol } from '@evergis/sgis/es/symbols/point/StaticImageSym
38
38
  import { SquareSymbol } from '@evergis/sgis/es/symbols/point/Square';
39
39
  import { MaskedImage } from '@evergis/sgis/es/symbols/point/MaskedImage';
40
40
  import { H3Symbol } from '@evergis/sgis/es/symbols/H3Symbol';
41
+ import { CombinedPolylineSymbol } from '@evergis/sgis/es/symbols/CombinedPolylineSymbol';
41
42
  import { H3Feature } from '@evergis/sgis/es/features/H3Feature';
43
+ import { CombinedPolyline } from '@evergis/sgis/es/features/CombinedPolyline';
42
44
  import { Canvas } from '@evergis/sgis/es/painters/DomPainter/Canvas';
43
45
  import { sGisClickEvent } from '@evergis/sgis/es/commonEvents';
44
46
  import { ClusterLayer as ClusterLayer$1 } from '@evergis/sgis/es/layers/ClusterLayer';
@@ -1391,7 +1393,7 @@ const formatDate = function formatDate(date, _temp) {
1391
1393
  return format(dateValue, dateFormat);
1392
1394
  }
1393
1395
 
1394
- return "" + defaultValue;
1396
+ return defaultValue.toString();
1395
1397
  };
1396
1398
 
1397
1399
  function numberWithSpaces(x, fractionDigits, delim) {
@@ -2545,39 +2547,25 @@ const isRangeCondition = condition => condition.includes("(");
2545
2547
  const getSymbolParameterInfo = parameter => {
2546
2548
  return PARAMETER_INFOS[parameter] || DEFAULT_PARAMETER_INFO;
2547
2549
  };
2548
- const formatValue$1 = (value, type, calculatedParameter) => {
2549
- var _ref;
2550
-
2551
- if (type === AttributeType.DateTime) {
2552
- return formatDate(value, {
2553
- dateFormat: DateFormat.DateTime
2554
- });
2555
- }
2556
-
2557
- const {
2558
- serialize
2559
- } = getSymbolParameterInfo(calculatedParameter);
2560
- return (_ref = value && typeof value === "number" ? serialize(value) : value) == null ? void 0 : _ref.toString();
2561
- };
2562
- const formatUniqueClassValue = value => {
2550
+ const formatUniqueClassValue = (value, formatValue) => {
2563
2551
  const {
2564
2552
  attribute,
2565
2553
  uniqueValue
2566
2554
  } = value;
2567
- return attribute ? formatValue$1(uniqueValue, attribute.type) : uniqueValue;
2555
+ return attribute && formatValue ? formatValue(attribute.type, uniqueValue, attribute.stringFormat) : uniqueValue;
2568
2556
  };
2569
- const getRangeValues$1 = (_ref2, isDouble, isDate, index) => {
2557
+ const getRangeValues$1 = (_ref, isDouble, isDate, index) => {
2570
2558
  let {
2571
2559
  from,
2572
2560
  to
2573
- } = _ref2;
2561
+ } = _ref;
2574
2562
  return {
2575
2563
  from: from !== null && index !== 0 ? isDate ? from : isDouble ? +from : +from + 1 : from,
2576
2564
  to
2577
2565
  };
2578
2566
  };
2579
- const formatRangeClassValue = (value, index) => {
2580
- 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;
2581
2569
 
2582
2570
  const isDouble = ((_value$attribute = value.attribute) == null ? void 0 : _value$attribute.type) === "Double";
2583
2571
  const isDate = ((_value$attribute2 = value.attribute) == null ? void 0 : _value$attribute2.type) === "DateTime";
@@ -2585,8 +2573,8 @@ const formatRangeClassValue = (value, index) => {
2585
2573
  from,
2586
2574
  to
2587
2575
  } = getRangeValues$1(value, isDouble, isDate, index);
2588
- const formattedFrom = isDate && from ? formatDate(from) : from;
2589
- 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;
2590
2578
 
2591
2579
  if (from === null) {
2592
2580
  return "" + formattedTo + (!isDate ? " и менее" : "");
@@ -2615,20 +2603,18 @@ const getTitleFromCondition = condition => {
2615
2603
  return (_parts$ = parts[1]) == null ? void 0 : _parts$.slice(1, -1);
2616
2604
  };
2617
2605
 
2618
- function createValueTitle$1(paramValue, attributeType, index) {
2606
+ function createValueTitle$1(paramValue, attribute, formatValue, index) {
2619
2607
  if (paramValue.title) return paramValue.title;
2620
2608
  const value = {
2621
2609
  parameterValue: getParameterValue(paramValue.value),
2622
- attribute: {
2623
- type: attributeType
2624
- }
2610
+ attribute
2625
2611
  };
2626
2612
  const sign = getSignFromConditionPart(paramValue.condition, 1);
2627
2613
  const isFirstFrom = sign.includes(">");
2628
2614
  value.from = isFirstFrom ? getValueFromConditionPart(paramValue.condition, 1) : null;
2629
2615
  value.to = paramValue.condition.includes(" && ") && isFirstFrom ? getValueFromConditionPart(paramValue.condition, 2) : !isFirstFrom ? getValueFromConditionPart(paramValue.condition, 1) : null;
2630
- if (isRangeClass(value)) return formatRangeClassValue(value, index);
2631
- if (isUniqueClass(value)) return formatUniqueClassValue(value);
2616
+ if (isRangeClass(value)) return formatRangeClassValue(value, formatValue, index);
2617
+ if (isUniqueClass(value)) return formatUniqueClassValue(value, formatValue);
2632
2618
  return "";
2633
2619
  } // Основывается на http://cf.everpoint.ru/pages/viewpage.action?pageId=45024217 ->
2634
2620
  // пункт "Настраиваемые значения параметров символики в системе"
@@ -2903,19 +2889,17 @@ const createOtherHiddenCondition = (values, attributeName, attributeType) => {
2903
2889
 
2904
2890
  return hiddenCondition;
2905
2891
  };
2906
- const getMinimizedLegendValues = (attributeName, attributeType, classified, index, otherTitle) => {
2892
+ const getMinimizedLegendValues = (attribute, classified, formatValue, index, otherTitle) => {
2907
2893
  const other = {
2908
2894
  title: otherTitle,
2909
2895
  parameterValue: classified.defaultValue,
2910
- 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)
2911
2897
  };
2912
2898
  const items = classified.values.map(paramValue => {
2913
2899
  const parameterValue = getParameterValue(paramValue.value);
2914
2900
  const result = {
2915
2901
  parameterValue,
2916
- attribute: {
2917
- type: attributeType
2918
- }
2902
+ attribute
2919
2903
  };
2920
2904
 
2921
2905
  if (isRangeCondition(paramValue.condition)) {
@@ -2923,38 +2907,38 @@ const getMinimizedLegendValues = (attributeName, attributeType, classified, inde
2923
2907
  const to = getValueFromConditionPart(paramValue.condition, 2);
2924
2908
  result.from = from ? isNumeric(from) ? +from : formatDate(from) : null;
2925
2909
  result.to = to ? isNumeric(to) ? +to : formatDate(to) : null;
2926
- result.title = createValueTitle$1(paramValue, attributeType, index);
2910
+ result.title = createValueTitle$1(paramValue, attribute, formatValue, index);
2927
2911
  return result;
2928
2912
  }
2929
2913
 
2930
- result.uniqueValue = formatValue$1(paramValue.value);
2914
+ result.uniqueValue = formatValue ? formatValue(attribute.type, paramValue.value, attribute.stringFormat) : paramValue.value.toString();
2931
2915
  result.title = getTitleFromCondition(paramValue.condition);
2932
- 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)));
2933
2917
  return result;
2934
2918
  });
2935
2919
 
2936
- if (attributeType !== AttributeType.String) {
2920
+ if (attribute.type !== AttributeType.String) {
2937
2921
  items.reverse();
2938
2922
  }
2939
2923
 
2940
2924
  return [...items, other];
2941
2925
  };
2942
- const getMaximizedLegendValues = (attributeName, attributeType, param, params, classified, symbol, sectionIndex, otherTitle) => {
2926
+ const getMaximizedLegendValues = (attribute, param, params, classified, symbol, formatValue, sectionIndex, otherTitle) => {
2943
2927
  const other = {
2944
2928
  title: otherTitle,
2945
2929
  symbol: createLegendSymbol(classified.defaultValue, param, params, symbol),
2946
- 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)
2947
2931
  };
2948
2932
  const items = classified.values.map((paramValue, index) => {
2949
2933
  const result = {
2950
- symbol: createLegendSymbol(classified.values[index].value, param, params, symbol)
2934
+ symbol: createLegendSymbol(paramValue.value, param, params, symbol)
2951
2935
  };
2952
- result.title = isRangeCondition(paramValue.condition) ? createValueTitle$1(paramValue, attributeType, sectionIndex) : getTitleFromCondition(paramValue.condition);
2953
- 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)));
2954
2938
  return result;
2955
2939
  });
2956
2940
 
2957
- if (attributeType !== AttributeType.String) {
2941
+ if (attribute.type !== AttributeType.String) {
2958
2942
  items.reverse();
2959
2943
  }
2960
2944
 
@@ -4159,7 +4143,7 @@ function isSGisH3Symbol(symbol) {
4159
4143
  return symbol instanceof H3Symbol;
4160
4144
  }
4161
4145
  function isSGisCombinedPolylineSymbol(symbol) {
4162
- return symbol.type === "combinedPolylineSymbol";
4146
+ return symbol instanceof CombinedPolylineSymbol;
4163
4147
  }
4164
4148
  function isSGisClusterSymbol(symbol) {
4165
4149
  return !!symbol.singleObjectSymbol;
@@ -4177,6 +4161,9 @@ const pointFeature = /*#__PURE__*/new PointFeature([50, -50], {
4177
4161
  const lineFeature = /*#__PURE__*/new Polyline([[0, -57], [26, -57], [40, -35], [60, -65], [74, -43], [100, -43]], {
4178
4162
  crs: plain
4179
4163
  });
4164
+ const combinedLineFeature = /*#__PURE__*/new CombinedPolyline([[0, -57], [26, -57], [40, -35], [60, -65], [74, -43], [100, -43]], {
4165
+ crs: plain
4166
+ });
4180
4167
  const polygonFeature = /*#__PURE__*/new Polygon([[20, -20], [80, -20], [80, -80], [20, -80]], {
4181
4168
  crs: plain
4182
4169
  });
@@ -4198,14 +4185,14 @@ const MAP_LEGEND_FEATURES = {
4198
4185
  const LEGEND_FEATURES = {
4199
4186
  point: pointFeature,
4200
4187
  polyline: lineLegendFeature,
4201
- combinedPolyline: lineLegendFeature,
4188
+ combinedPolyline: combinedLineFeature,
4202
4189
  polygon: polygonLegendFeature,
4203
4190
  h3grid: h3gridFeature
4204
4191
  };
4205
4192
  const MOCK_FEATURES = {
4206
4193
  point: pointFeature,
4207
4194
  polyline: lineFeature,
4208
- combinedPolyline: lineFeature,
4195
+ combinedPolyline: combinedLineFeature,
4209
4196
  polygon: polygonFeature,
4210
4197
  h3grid: h3gridFeature
4211
4198
  };
@@ -6375,9 +6362,8 @@ const LegendSection = _ref => {
6375
6362
  classified,
6376
6363
  hiddenLegends,
6377
6364
  toggleHiddenLegend,
6378
- attributeName,
6379
- attributeTitle,
6380
- attributeType,
6365
+ attribute,
6366
+ formatValue,
6381
6367
  index
6382
6368
  } = _ref;
6383
6369
  const {
@@ -6386,7 +6372,7 @@ const LegendSection = _ref => {
6386
6372
  const [isExpanded, toggleExpanded] = useToggle();
6387
6373
  const [maxRef, maxNode] = useNode();
6388
6374
  const [minRef, minNode] = useNode();
6389
- 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, {
6390
6376
  parameter: parameter
6391
6377
  }), React.createElement(MapLegendSectionItems, {
6392
6378
  height: isExpanded ? ((maxNode == null ? void 0 : maxNode.offsetHeight) || 0) + 4 : minNode == null ? void 0 : minNode.offsetHeight
@@ -6398,15 +6384,15 @@ const LegendSection = _ref => {
6398
6384
  hiddenLegends: hiddenLegends == null ? void 0 : hiddenLegends[layerName],
6399
6385
  toggleHiddenLegend: toggleHiddenLegend,
6400
6386
  parameter: parameter,
6401
- attributeType: attributeType,
6387
+ attributeType: attribute.type,
6402
6388
  index: index,
6403
- 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"))
6404
6390
  }), React.createElement(MinimizedLegend, {
6405
6391
  innerRef: minRef,
6406
6392
  isShown: !isExpanded,
6407
- values: getMinimizedLegendValues(attributeName, attributeType, classified, index, t("classification.other")),
6408
6393
  hiddenLegends: hiddenLegends == null ? void 0 : hiddenLegends[layerName],
6409
- parameter: parameter
6394
+ parameter: parameter,
6395
+ values: getMinimizedLegendValues(attribute, classified, formatValue, index, t("classification.other"))
6410
6396
  })), React.createElement(MapLegendExpandButton, {
6411
6397
  onClick: toggleExpanded
6412
6398
  }, t(isExpanded ? "toggleMenu" : "Развернуть")));
@@ -6424,21 +6410,19 @@ const Legend = /*#__PURE__*/memo(_ref => {
6424
6410
  const parameters = Object.keys(classified);
6425
6411
  const attributes = getLayerAttributes(layerInfo.layerDefinition);
6426
6412
  return React.createElement(MapLegendContainer, null, Object.keys(classified).map((param, index) => {
6427
- var _classified$param$val, _layerInfo$style, _attributes$find;
6413
+ var _classified$param$val, _layerInfo$style;
6428
6414
 
6429
6415
  const attributeName = getAttributeNameFromCondition((_classified$param$val = classified[param].values[0]) == null ? void 0 : _classified$param$val.condition);
6430
6416
  return React.createElement(LegendSection, Object.assign({
6431
6417
  key: index,
6432
6418
  layerName: layerInfo.name,
6433
6419
  symbol: (_layerInfo$style = layerInfo.style) == null ? void 0 : _layerInfo$style.symbol,
6434
- attributeName: attributeName,
6435
- attributeTitle: ((_attributes$find = attributes.find(_ref2 => {
6420
+ attribute: attributes.find(_ref2 => {
6436
6421
  let {
6437
6422
  name
6438
6423
  } = _ref2;
6439
6424
  return name === attributeName;
6440
- })) == null ? void 0 : _attributes$find.alias) || attributeName,
6441
- attributeType: getAttributeType(layerInfo, attributeName),
6425
+ }),
6442
6426
  classified: classified[param],
6443
6427
  parameter: param,
6444
6428
  parameters: parameters,
@@ -6849,5 +6833,5 @@ const DraggableMarker = _ref => {
6849
6833
  return React.createElement(Fragment, null);
6850
6834
  };
6851
6835
 
6852
- 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 };
6853
6837
  //# sourceMappingURL=react.esm.js.map