@evergis/react 3.1.21 → 3.1.23

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
@@ -68,7 +68,7 @@ const ChartTooltipRow = styled(Flex) `
68
68
  flex-direction: row;
69
69
  flex-wrap: nowrap;
70
70
  align-items: center;
71
- margin-top: 0.25rem;
71
+ margin-top: 0.5rem;
72
72
  line-height: 0;
73
73
 
74
74
  ${ChartLegendColor$1} {
@@ -186,8 +186,7 @@ const LineChartStyles = createGlobalStyle `
186
186
  }
187
187
  `;
188
188
  const StyledBarChart = styled(BarChart$1) `
189
- .domain,
190
- line {
189
+ .domain {
191
190
  display: none;
192
191
  }
193
192
 
@@ -4002,7 +4001,7 @@ function wrap() {
4002
4001
  textLength = self.node().getComputedTextLength();
4003
4002
  }
4004
4003
  }
4005
- const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes, defaultColor, fontColor, showMarkers, }) => {
4004
+ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes, defaultColor, fontColor, markers, showMarkers, }) => {
4006
4005
  const { t } = useGlobalContext();
4007
4006
  const { layerInfos } = useWidgetContext();
4008
4007
  const strokeColors = relatedAttributes.filter(({ chartAxis }) => chartAxis === "y").map(({ axisColor }) => axisColor);
@@ -4039,8 +4038,11 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4039
4038
  if (index === nodes.length - 1) {
4040
4039
  nodes[index].style.textAnchor = "end";
4041
4040
  }
4041
+ if (markers) {
4042
+ nodes[index].remove();
4043
+ }
4042
4044
  if (showMarkers) {
4043
- if (index % (showMarkers || 1) !== 0) {
4045
+ if (index % showMarkers !== 0) {
4044
4046
  nodes[index].remove();
4045
4047
  }
4046
4048
  }
@@ -4095,7 +4097,7 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4095
4097
  onChange();
4096
4098
  });
4097
4099
  svg.append("defs").html(() => defs.join(""));
4098
- }, [fontColor, dataSources, layerInfos, relatedAttributes, chartId, strokeColors, defaultColor, width, onChange, showMarkers]);
4100
+ }, [fontColor, dataSources, layerInfos, relatedAttributes, chartId, strokeColors, defaultColor, width, onChange, showMarkers, markers]);
4099
4101
  return [customize, onChange];
4100
4102
  };
4101
4103
 
@@ -4942,6 +4944,19 @@ const useServerNotificationsContext = () => {
4942
4944
  return useContext(ServerNotificationsContext);
4943
4945
  };
4944
4946
 
4947
+ const useAppHeight = () => {
4948
+ useEffect(() => {
4949
+ const setAppHeight = () => {
4950
+ document.documentElement.style.setProperty("--app-height", `${window.innerHeight}px`);
4951
+ };
4952
+ window.addEventListener("resize", setAppHeight);
4953
+ setAppHeight();
4954
+ return () => {
4955
+ window.removeEventListener("resize", setAppHeight);
4956
+ };
4957
+ }, []);
4958
+ };
4959
+
4945
4960
  const useDebouncedCallback = (interval) => {
4946
4961
  return useMemo(() => debounce((cb) => {
4947
4962
  cb();
@@ -5384,14 +5399,20 @@ const getChartFilterName = (relatedDataSources) => {
5384
5399
  return axes?.[0]?.filterName;
5385
5400
  };
5386
5401
 
5402
+ function getValueIndex(items, attributes) {
5403
+ return items?.findIndex(({ name }) => name.toString() === attributes.value?.toString());
5404
+ }
5387
5405
  const getChartMarkers = (items, markers, dataSources) => {
5388
5406
  if (typeof markers === "string") {
5389
5407
  const dataSource = getDataSource(markers, dataSources);
5390
- return dataSource?.features?.map(({ attributes }) => attributes) || [];
5408
+ return dataSource?.features?.map(({ attributes }) => ({
5409
+ ...attributes,
5410
+ value: getValueIndex(items, attributes),
5411
+ })) || [];
5391
5412
  }
5392
5413
  return (markers?.map(marker => ({
5393
5414
  ...marker,
5394
- value: items?.findIndex(({ name }) => name.toString() === marker.value?.toString()),
5415
+ value: getValueIndex(items, marker),
5395
5416
  })) || []);
5396
5417
  };
5397
5418
 
@@ -8777,11 +8798,26 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
8777
8798
  const { dataSources } = useWidgetContext(widgetType);
8778
8799
  const { filters: configFilters, dataSources: configDataSources } = config || {};
8779
8800
  const prevFilters = useRef({});
8780
- const getDataSourcePromises = useCallback(async ({ ds, query, parameters, layerName, limit, condition, url, resourceId, type }, newFilters, offset = 0) => {
8801
+ const getDataSourcePromises = useCallback(async ({ ds, query, parameters, layerName, limit, condition, url, resourceId }, newFilters, offset = 0) => {
8781
8802
  const selectedFilters = {
8782
8803
  ...(filters || {}),
8783
8804
  ...(newFilters || {}),
8784
8805
  };
8806
+ if (resourceId) {
8807
+ const response = await api.remoteTaskManager.post({
8808
+ workerType: "pythonService",
8809
+ methodType: "pythonrunner/run",
8810
+ data: {
8811
+ method: "get",
8812
+ resourceId,
8813
+ parameters,
8814
+ }
8815
+ });
8816
+ return {
8817
+ items: response.result.items,
8818
+ attributeDefinition: null,
8819
+ };
8820
+ }
8785
8821
  const newParams = applyQueryFilters({
8786
8822
  parameters,
8787
8823
  dataSources,
@@ -8789,8 +8825,8 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
8789
8825
  filters: configFilters,
8790
8826
  geometry: ewktGeometry,
8791
8827
  });
8792
- if (url || resourceId) {
8793
- const response = await fetch(url || `https://beta5.evergis.ru/sp/${type}/resource/run?resourceId=${resourceId}`, {
8828
+ if (url) {
8829
+ const response = await fetch(url, {
8794
8830
  method: "POST",
8795
8831
  headers: {
8796
8832
  Accept: "application/json",
@@ -9160,6 +9196,7 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9160
9196
  fontColor,
9161
9197
  relatedAttributes,
9162
9198
  defaultColor: primaryColor,
9199
+ markers: configMarkers,
9163
9200
  showMarkers,
9164
9201
  });
9165
9202
  const { formatFilterColor, onFilter } = useFeatureFilters(type, filterName, data?.[0]?.items);
@@ -9189,6 +9226,15 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9189
9226
  })] }));
9190
9227
  }, [labels, layerInfos]);
9191
9228
  const markers = useMemo(() => getChartMarkers(data[0]?.items, configMarkers, dataSources), [data, dataSources, configMarkers]);
9229
+ const margin = useMemo(() => {
9230
+ const markersMargin = showMarkers ? 10 : 0;
9231
+ return {
9232
+ top: markersMargin,
9233
+ right: markersMargin,
9234
+ bottom: markers?.length ? 20 : markersMargin,
9235
+ left: markersMargin
9236
+ };
9237
+ }, [showMarkers, markers?.length]);
9192
9238
  const formatTooltipName = useCallback((name) => (isRelated ? name : tooltipNameFromAttributes(name, formattedAttributes)), [formattedAttributes, isRelated]);
9193
9239
  const formatTooltipValue = useCallback((value, name) => isRelated
9194
9240
  ? tooltipValueFromRelatedFeatures(t, value, relatedAttributes, data[0]?.layerInfo)
@@ -9197,11 +9243,14 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9197
9243
  yAxisLeft.tickFormat((index) => index);
9198
9244
  }, []);
9199
9245
  const customXAxisBottom = useCallback((xAxisBottom, data) => {
9200
- xAxisBottom.tickFormat((index) => (showMarkers
9201
- ? index % (showMarkers || 1) === 0
9202
- : index === 0 || index === data.length - 1)
9203
- ? data[index]?.groupName || "" : "");
9204
- }, [showMarkers]);
9246
+ xAxisBottom.tickFormat((index) => markers
9247
+ ? ""
9248
+ : (showMarkers
9249
+ ? index % showMarkers === 0
9250
+ : index === 0 || index === data.length - 1)
9251
+ ? data[index]?.groupName || ""
9252
+ : "");
9253
+ }, [markers, showMarkers]);
9205
9254
  const renderChart = useMemo(() => {
9206
9255
  if (!element)
9207
9256
  return null;
@@ -9219,16 +9268,11 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9219
9268
  .flat()
9220
9269
  .map(({ values }) => values)
9221
9270
  .flat();
9222
- return (jsxs(AnyChartWrapper, { height: height, children: [jsx(LineChartStyles, {}), jsx(LineChart, { data: lineChartData, labels: labels, width: +width, height: height, xAxisPadding: 15, yAxisPadding: 0, min: Math.min(...chartValues), customYAxisSelection: yAxis => {
9271
+ return (jsxs(AnyChartWrapper, { height: height, children: [jsx(LineChartStyles, {}), jsx(LineChart, { data: lineChartData, labels: labels, markers: markers, width: +width, height: height, xAxisPadding: 15, yAxisPadding: 0, min: Math.min(...chartValues), customYAxisSelection: yAxis => {
9223
9272
  if (isHidedY) {
9224
9273
  yAxis.remove();
9225
9274
  }
9226
- }, customYAxis: yAxis => yAxis.ticks(4), renderTooltip: renderLineChartTooltip, customize: customize, dynamicTooltipEnable: true, stackedTooltip: true, tooltipClassName: "dashboardLineChartTooltip", drawGridX: !isHidedY, margin: {
9227
- top: 0,
9228
- right: 0,
9229
- bottom: 0,
9230
- left: 0
9231
- } })] }));
9275
+ }, customYAxis: yAxis => yAxis.ticks(4), renderTooltip: renderLineChartTooltip, customize: customize, dynamicTooltipEnable: true, stackedTooltip: true, tooltipClassName: "dashboardLineChartTooltip", drawGridX: !isHidedY, margin: margin })] }));
9232
9276
  }
9233
9277
  if (isStackBar) {
9234
9278
  return (jsx(AnyChartWrapper, { height: height, children: jsx(StackBar, { data: data, filterName: filterName, type: type, alias: elementConfig?.children?.find(child => child.id === "alias"), options: options, renderTooltip: renderPieChartTooltip, renderElement: renderElement }) }));
@@ -9242,13 +9286,6 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9242
9286
  })) || []), width: +width, height: +width, padAngle: angle, outerRadius: radius, cornerRadius: cornerRadius, renderTooltip: renderPieChartTooltip, withTooltip: true, onClick: filterName ? item => onFilter(item.name) : undefined, children: showTotal && jsx(PieChartCenter, { children: totalWord || roundTotalSum(+totalSum) }) }) }));
9243
9287
  }
9244
9288
  const barChartData = getDataFromFilterItems(data[0]?.items);
9245
- const markersMargin = showMarkers ? 10 : 0;
9246
- const margin = {
9247
- top: markersMargin,
9248
- right: markersMargin,
9249
- bottom: markers?.length ? 20 : markersMargin,
9250
- left: markersMargin
9251
- };
9252
9289
  return (jsx(BarChartWrapper, { height: height + margin.bottom, children: jsx(BarChartContainer, { children: jsx(StyledBarChart, { data: barChartData, colors: getColorsFromFilterItems(data[0]?.items, defaultColor, formatFilterColor), minValue: getMinValueFromFilterItems(data[0]?.items), markers: markers, width: +width, height: height, barWidth: barWidth, barPadding: padding, customYAxisLeft: customYAxisLeft, customXAxisBottom: xAxisBottom => customXAxisBottom(xAxisBottom, barChartData), customYAxis: axis => !showLabels && axis.remove(), customBars: ({ bars }) => {
9253
9290
  bars.attr("rx", radius);
9254
9291
  bars.attr("ry", radius);
@@ -9275,6 +9312,7 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9275
9312
  filterName,
9276
9313
  axes,
9277
9314
  labels,
9315
+ margin,
9278
9316
  renderLineChartTooltip,
9279
9317
  customize,
9280
9318
  primaryColor,
@@ -9761,7 +9799,7 @@ const VectorLayer = ({ layer, tileUrl, visible, beforeId, getLayerTempStyle, })
9761
9799
  return (jsx(Source, { promoteId: idAttribute, id: layer.name, type: "vector", tiles: [tileUrl], children: clientStyle?.items ? renderClientStyle() : renderLayerByGeometryType() }));
9762
9800
  };
9763
9801
 
9764
- const Layer = ({ layer, layerType, visible, beforeId, tileUrl, getLayerTempStyle, onMount = () => null, }) => {
9802
+ const Layer = ({ layer, layerType, visible, beforeId, tileUrl, getLayerTempStyle, onMount = () => { }, }) => {
9765
9803
  useEffect(onMount, []); // eslint-disable-line
9766
9804
  if (!layer) {
9767
9805
  return null;
@@ -9805,5 +9843,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
9805
9843
  }, children: children }), upperSiblings] }));
9806
9844
  };
9807
9845
 
9808
- export { AddFeatureButton, AddFeatureContainer, AttributeGalleryContainer, AttributeLabel, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, ConfigContext, ConfigProvider, ContainerChildren, ContainerLoading, ContainerTemplate, ContainerWrapper, ContainersGroupContainer, DEFAULT_ATTRIBUTE_NAME, DEFAULT_BARCHART_RADIUS, DEFAULT_BASE_MAP, DEFAULT_CHART_ANGLE, DEFAULT_CHART_HEIGHT, DEFAULT_CHART_WIDTH, DEFAULT_CIRCLE_PAINT, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_FILL_EXTRUSION_PAINT, DEFAULT_FILL_PAINT, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LAT, DEFAULT_LINE_PAINT, DEFAULT_LNG, DEFAULT_PAGES_CONFIG, DEFAULT_PIECHART_RADIUS, DEFAULT_ZOOM, Dashboard, DashboardCheckbox, DashboardChip, DashboardContent, DashboardContext, DashboardDefaultHeader, DashboardHeader, DashboardPlaceholder, DashboardPlaceholderWrap, DashboardProvider, DashboardWrapper, DataSourceContainer, DataSourceError, DataSourceErrorContainer, DataSourceInnerContainer, DataSourceProgressContainer, DateFormat, DefaultAttributesContainer, DefaultHeaderContainer, DividerContainer, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementSlideshow, ElementSvg, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardGradientHeader, FeatureCardHeader, FeatureCardIconHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GlobalContext, GlobalProvider, Header, HeaderContainer, HeaderFrontView, HeaderTemplate, HeaderTitleContainer, HiddenTitleItems, IconContainer, ImageContainer, LEFT_PANEL_HEADER_HEIGHT, Layer, LayerDescription, LayerGroup, LayerGroupList, LayerIcon, LayerListContainer, LayerTree, LayersContainer, LayersListWrapper, LinearProgressContainer, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OneColumnContainer, PageNavigator, PageTitle, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, RoundedBackgroundContainer, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TmsType, TopContainer, TopContainerButtons, TwoColumnContainer, TwoColumnsInnerContainer, WidgetType, addDataSource, addDataSources, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, convertSpToTurfFeature, createConfigLayer, createConfigPage, createNewPageId, createTreeNode, dateOptions, debounce, decimalOpacityToHex, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, getActualExtrusionHeight, getAttributeByName, getAttributeValue, getAttributesConfiguration, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerDefinition, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getRelatedAttribute, getRenderElement, getResourceUrl, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isVisibleContainer, numberOptions, parseClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useFeatureFilters, useGetConfigLayer, useGlobalContext, useHeaderRender, useLayerParams, useMapContext, useMapDraw, useProjectDashboardInit, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
9846
+ export { AddFeatureButton, AddFeatureContainer, AttributeGalleryContainer, AttributeLabel, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, ConfigContext, ConfigProvider, ContainerChildren, ContainerLoading, ContainerTemplate, ContainerWrapper, ContainersGroupContainer, DEFAULT_ATTRIBUTE_NAME, DEFAULT_BARCHART_RADIUS, DEFAULT_BASE_MAP, DEFAULT_CHART_ANGLE, DEFAULT_CHART_HEIGHT, DEFAULT_CHART_WIDTH, DEFAULT_CIRCLE_PAINT, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_FILL_EXTRUSION_PAINT, DEFAULT_FILL_PAINT, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LAT, DEFAULT_LINE_PAINT, DEFAULT_LNG, DEFAULT_PAGES_CONFIG, DEFAULT_PIECHART_RADIUS, DEFAULT_ZOOM, Dashboard, DashboardCheckbox, DashboardChip, DashboardContent, DashboardContext, DashboardDefaultHeader, DashboardHeader, DashboardPlaceholder, DashboardPlaceholderWrap, DashboardProvider, DashboardWrapper, DataSourceContainer, DataSourceError, DataSourceErrorContainer, DataSourceInnerContainer, DataSourceProgressContainer, DateFormat, DefaultAttributesContainer, DefaultHeaderContainer, DividerContainer, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementSlideshow, ElementSvg, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardGradientHeader, FeatureCardHeader, FeatureCardIconHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GlobalContext, GlobalProvider, Header, HeaderContainer, HeaderFrontView, HeaderTemplate, HeaderTitleContainer, HiddenTitleItems, IconContainer, ImageContainer, LEFT_PANEL_HEADER_HEIGHT, Layer, LayerDescription, LayerGroup, LayerGroupList, LayerIcon, LayerListContainer, LayerTree, LayersContainer, LayersListWrapper, LinearProgressContainer, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OneColumnContainer, PageNavigator, PageTitle, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, RoundedBackgroundContainer, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TmsType, TopContainer, TopContainerButtons, TwoColumnContainer, TwoColumnsInnerContainer, WidgetType, addDataSource, addDataSources, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, convertSpToTurfFeature, createConfigLayer, createConfigPage, createNewPageId, createTreeNode, dateOptions, debounce, decimalOpacityToHex, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, getActualExtrusionHeight, getAttributeByName, getAttributeValue, getAttributesConfiguration, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerDefinition, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getRelatedAttribute, getRenderElement, getResourceUrl, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isVisibleContainer, numberOptions, parseClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, useAppHeight, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useFeatureFilters, useGetConfigLayer, useGlobalContext, useHeaderRender, useLayerParams, useMapContext, useMapDraw, useProjectDashboardInit, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
9809
9847
  //# sourceMappingURL=react.esm.js.map