@evergis/react 3.1.40 → 3.1.42

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
@@ -4498,7 +4498,7 @@ const ChartLegendColor = styled.div `
4498
4498
  `;
4499
4499
  const ChartLegendName = styled.div `
4500
4500
  flex: 1;
4501
- font-size: 0.625rem;
4501
+ font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
4502
4502
  color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
4503
4503
  `;
4504
4504
 
@@ -5101,6 +5101,9 @@ const LayerListContainer = styled(Flex) `
5101
5101
  const ElementValueWrapper = styled.div `
5102
5102
  transition: background-color ${transition.toggle};
5103
5103
  `;
5104
+ const InnerContainerWrapper$1 = styled.div `
5105
+ width: 100%;
5106
+ `;
5104
5107
  const ContainerWrapper = styled(Flex) `
5105
5108
  position: relative;
5106
5109
  min-height: 1rem;
@@ -6195,6 +6198,17 @@ const ContainerIconTitle = styled(Flex) `
6195
6198
  ${LegendToggler} {
6196
6199
  margin-left: 0.25rem;
6197
6200
  }
6201
+
6202
+ span[kind="download"] {
6203
+ opacity: 0;
6204
+ transition: opacity ${transition.hover};
6205
+ }
6206
+
6207
+ :hover {
6208
+ span[kind="download"] {
6209
+ opacity: 1;
6210
+ }
6211
+ }
6198
6212
  `;
6199
6213
  const ContainerTitle = styled(Flex) `
6200
6214
  align-items: center;
@@ -6230,8 +6244,9 @@ const TitleContainer = memo(({ containerId, templateName, layerNames, fontColor,
6230
6244
  const [layersVisibility, toggleVisibility] = useToggle(true);
6231
6245
  const { palette } = useTheme();
6232
6246
  const { style, options } = elementConfig || {};
6233
- const { simple } = options || {};
6247
+ const { simple, downloadById } = options || {};
6234
6248
  const isLayers = templateName === ContainerTemplate.Layers;
6249
+ const { onExport } = useExportPdf(downloadById);
6235
6250
  const onClick = useCallback(() => {
6236
6251
  if (!expandable)
6237
6252
  return;
@@ -6246,7 +6261,7 @@ const TitleContainer = memo(({ containerId, templateName, layerNames, fontColor,
6246
6261
  const renderVisibility = useMemo(() => isLayers && (jsx(FlexSpan, { mr: "-1rem", children: jsx(IconToggle, { kind: layersVisibility ? "password_show" : "password_hide", className: "feature-visible", isSelected: layersVisibility, onClick: onToggleVisibility }) })), [isLayers, layersVisibility, onToggleVisibility]);
6247
6262
  const renderToggler = useMemo(() => !!containerId &&
6248
6263
  expandable && (jsx("div", { children: jsx(LegendToggler, { color: palette.icon, toggled: expandedContainers?.[containerId] !== undefined ? expandedContainers[containerId] : expanded, onClick: onClick }) })), [containerId, expandable, expanded, expandedContainers, onClick, palette.icon]);
6249
- return (jsx(Container, { isTitle: isVisible, style: style, children: jsxs(ContainerTitle, { simple: simple, children: [jsxs(ContainerIconTitle, { fontColor: fontColor, children: [renderElement({ id: "titleIcon", wrap: false }), renderElement({ id: "title" }), isLayers && renderToggler] }), !isLayers && renderToggler, renderVisibility] }) }));
6264
+ return (jsx(Container, { isTitle: isVisible, style: style, children: jsxs(ContainerTitle, { simple: simple, children: [jsxs(ContainerIconTitle, { fontColor: fontColor, children: [renderElement({ id: "titleIcon", wrap: false }), renderElement({ id: "title" }), !!downloadById && (jsx(IconButton, { kind: "download", onClick: onExport })), isLayers && renderToggler] }), !isLayers && renderToggler, renderVisibility] }) }));
6250
6265
  });
6251
6266
 
6252
6267
  const ContainerDivider = styled(Divider) `
@@ -7435,7 +7450,7 @@ const ElementImage = memo(({ type, elementConfig }) => {
7435
7450
  const ElementLegend = memo(({ type, element, elementConfig, expandedContainers }) => {
7436
7451
  const { attributes, dataSources } = useWidgetContext(type);
7437
7452
  const { options } = elementConfig || {};
7438
- const { twoColumns, chartId, relatedDataSources } = options || {};
7453
+ const { twoColumns, chartId, relatedDataSources, fontSize } = options || {};
7439
7454
  const chartElement = useMemo(() => returnFound(element?.children, { id: chartId }), [chartId, element?.children]);
7440
7455
  const { data, loading } = useChartData({
7441
7456
  element: chartElement,
@@ -7462,7 +7477,7 @@ const ElementLegend = memo(({ type, element, elementConfig, expandedContainers }
7462
7477
  return { ...item, name: attribute?.alias || item.name };
7463
7478
  });
7464
7479
  }, [attributes, axes, data, options.chartType, relatedDataSources, dataSources]);
7465
- return !chartElement?.options?.expanded || expandedContainers?.[chartElement.id] ? (jsx(ChartLegend, { data: legendData, loading: loading, chartElement: chartElement, twoColumns: twoColumns, type: type })) : null;
7480
+ return !chartElement?.options?.expanded || expandedContainers?.[chartElement.id] ? (jsx(ChartLegend, { data: legendData, loading: loading, chartElement: chartElement, twoColumns: twoColumns, fontSize: fontSize, type: type })) : null;
7466
7481
  });
7467
7482
 
7468
7483
  const ExternalLink = styled(IconButton).attrs(() => ({
@@ -8833,7 +8848,7 @@ const useChartData = ({ element, type }) => {
8833
8848
  return [];
8834
8849
  return filteredAttributes
8835
8850
  .map(relatedAxis => {
8836
- const { dataSourceName, axisColor, attributeName } = relatedAxis;
8851
+ const { dataSourceName, axisColor, attributeName, attributeUnits } = relatedAxis;
8837
8852
  const dataSource = configDataSources.find(({ name }) => name === dataSourceName);
8838
8853
  const layerInfo = layerInfos?.find(item => item?.name === dataSource?.layerName);
8839
8854
  const featureDataSource = getDataSource(dataSourceName, dataSources);
@@ -8851,8 +8866,10 @@ const useChartData = ({ element, type }) => {
8851
8866
  })
8852
8867
  : null,
8853
8868
  color: axisColor,
8869
+ attributeName,
8870
+ attributeUnits,
8871
+ dataSourceName,
8854
8872
  layerInfo,
8855
- attributeName
8856
8873
  };
8857
8874
  })
8858
8875
  .filter(({ items }) => items === null || (items?.length && !items.every(({ value }) => value === null)));
@@ -8862,6 +8879,8 @@ const useChartData = ({ element, type }) => {
8862
8879
  items: getDataFromAttributes(t, element, attributes),
8863
8880
  layerInfo: null,
8864
8881
  attributeName: null,
8882
+ attributeUnits: null,
8883
+ dataSourceName: null,
8865
8884
  color: null
8866
8885
  }
8867
8886
  ];
@@ -9393,7 +9412,7 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9393
9412
  const { t } = useGlobalContext();
9394
9413
  const { expandedContainers, layerInfos, attributes, dataSources } = useWidgetContext(type);
9395
9414
  const { id, options, children } = element || {};
9396
- const { column, markers: configMarkers, showLabels, showMarkers, showTotal, totalWord: configTotalWord, totalAttribute, expandable, expanded, chartType, relatedDataSources, defaultColor } = options || {};
9415
+ const { column, markers: configMarkers, showLabels, showMarkers, showTotal, totalWord: configTotalWord, totalAttribute, expandable, expanded, chartType, relatedDataSources, defaultColor, dotSnapping, } = options || {};
9397
9416
  const isLineChart = chartType === "line";
9398
9417
  const isPieChart = chartType === "pie";
9399
9418
  const isStackBar = chartType === "stack";
@@ -9448,14 +9467,23 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9448
9467
  const renderLineChartTooltip = useCallback((items, { indexX }) => {
9449
9468
  return (jsxs(Tooltip, { children: [jsx(ChartTooltipLabel, { children: labels[indexX] }), items
9450
9469
  .filter(({ value }) => !isEmptyValue(value))
9451
- ?.map(({ layerName, attributeName, value, stroke }, index) => {
9452
- const layerInfo = layerInfos?.find(({ name }) => name === layerName);
9453
- const attribute = layerInfo?.layerDefinition.attributes[attributeName];
9454
- return (jsxs(ChartTooltipRow, { children: [jsx(ChartLegendColor$1, { "$color": stroke }), jsx(ChartLegendValue, { children: attribute
9455
- ? formatAttributeValue({ t, type: attribute.type, value, stringFormat: attribute.stringFormat })
9456
- : value })] }, index));
9470
+ ?.map(({ layerName, attributeName, attributeUnits, dataSourceName, value, stroke }, index) => {
9471
+ const layerInfo = !attributeUnits
9472
+ ? layerInfos?.find(({ name }) => name === layerName)
9473
+ : null;
9474
+ const attribute = !attributeUnits
9475
+ ? layerInfo?.layerDefinition.attributes[attributeName]
9476
+ : null;
9477
+ const dataSource = dataSourceName ? getDataSource(dataSourceName, dataSources) : null;
9478
+ const dataSourceUnits = !dataSource || !attributeUnits
9479
+ ? null
9480
+ : dataSource.features?.[0]?.attributes?.[attributeUnits];
9481
+ const legendValue = attribute
9482
+ ? formatAttributeValue({ t, type: attribute.type, value, stringFormat: attribute.stringFormat })
9483
+ : [value, dataSourceUnits].filter(Boolean).join(" ");
9484
+ return (jsxs(ChartTooltipRow, { children: [jsx(ChartLegendColor$1, { "$color": stroke }), jsx(ChartLegendValue, { children: legendValue })] }, index));
9457
9485
  })] }));
9458
- }, [labels, layerInfos]);
9486
+ }, [labels, layerInfos, dataSources, dotSnapping]);
9459
9487
  const markers = useMemo(() => getChartMarkers(data[0]?.items, configMarkers, dataSources), [data, dataSources, configMarkers]);
9460
9488
  const margin = useMemo(() => {
9461
9489
  const markersMargin = showMarkers ? 10 : 0;
@@ -9489,6 +9517,8 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9489
9517
  const lineChartData = data.map(item => ({
9490
9518
  layerName: item.layerInfo?.name,
9491
9519
  attributeName: item.attributeName,
9520
+ attributeUnits: item.attributeUnits,
9521
+ dataSourceName: item.dataSourceName,
9492
9522
  stroke: item.color || primaryColor,
9493
9523
  values: item.items
9494
9524
  ?.filter(({ value }) => !isEmptyValue(value))
@@ -9503,7 +9533,7 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9503
9533
  if (isHidedY) {
9504
9534
  yAxis.remove();
9505
9535
  }
9506
- }, customYAxis: yAxis => yAxis.ticks(4), renderTooltip: renderLineChartTooltip, customize: customize, dynamicTooltipEnable: true, stackedTooltip: true, tooltipClassName: "dashboardLineChartTooltip", drawGridX: !isHidedY, margin: margin })] }));
9536
+ }, customYAxis: yAxis => yAxis.ticks(4), renderTooltip: renderLineChartTooltip, customize: customize, dotSnapping: dotSnapping, dynamicTooltipEnable: true, stackedTooltip: true, tooltipClassName: "dashboardLineChartTooltip", drawGridX: !isHidedY, margin: margin })] }));
9507
9537
  }
9508
9538
  if (isStackBar) {
9509
9539
  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 }) }));
@@ -9565,7 +9595,7 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
9565
9595
  return (jsx(ChartWrapper, { width: width, height: isStackBar ? "auto" : isPieChart ? width : height, column: column, loading: loading, children: renderChart }));
9566
9596
  });
9567
9597
 
9568
- const ChartLegend = ({ data, chartElement, type, twoColumns, loading }) => {
9598
+ const ChartLegend = ({ data, chartElement, fontSize, type, twoColumns, loading }) => {
9569
9599
  const { t } = useGlobalContext();
9570
9600
  const { sliceItems, showMore, onShowMore } = useShownOtherItems(chartElement?.options);
9571
9601
  const axes = useMemo(() => getChartAxes(chartElement), [chartElement]);
@@ -9574,7 +9604,7 @@ const ChartLegend = ({ data, chartElement, type, twoColumns, loading }) => {
9574
9604
  const showMoreBtn = !!shownItems && data.length > shownItems;
9575
9605
  if (!loading && !data?.length && !!hideEmpty)
9576
9606
  return null;
9577
- return (jsxs(Flex, { flexDirection: "column", opacity: loading ? FILTERED_VALUE_OPACITY / 100 : 1, children: [jsx(ChartLegendContainer, { twoColumns: twoColumns, children: sliceItems(data)?.map(({ name, color }, index) => (jsxs(ChartLegendItem, { hasAnyFilter: hasAnyFilter, isFiltered: isFiltered(name), onClick: axes?.[0]?.filterName ? () => onFilter(name) : undefined, children: [jsx(ChartLegendColor, { color: color }), jsx(ChartLegendName, { "$fontColor": fontColor, children: name })] }, index))) }), showMoreBtn && (jsx(LegendToggler, { onClick: onShowMore, toggled: showMore, children: t("other", { ns: "dashboard", defaultValue: "Другое" }) }))] }));
9607
+ return (jsxs(Flex, { flexDirection: "column", opacity: loading ? FILTERED_VALUE_OPACITY / 100 : 1, children: [jsx(ChartLegendContainer, { twoColumns: twoColumns, children: sliceItems(data)?.map(({ name, color }, index) => (jsxs(ChartLegendItem, { hasAnyFilter: hasAnyFilter, isFiltered: isFiltered(name), onClick: axes?.[0]?.filterName ? () => onFilter(name) : undefined, children: [jsx(ChartLegendColor, { color: color }), jsx(ChartLegendName, { "$fontSize": fontSize, "$fontColor": fontColor, children: name })] }, index))) }), showMoreBtn && (jsx(LegendToggler, { onClick: onShowMore, toggled: showMore, children: t("other", { ns: "dashboard", defaultValue: "Другое" }) }))] }));
9578
9608
  };
9579
9609
 
9580
9610
  const ContainerChildren = memo(({ items, isColumn, isMain, renderElement }) => {
@@ -9586,7 +9616,7 @@ const ContainerChildren = memo(({ items, isColumn, isMain, renderElement }) => {
9586
9616
  index,
9587
9617
  wrap: isColumn || isMain,
9588
9618
  });
9589
- return isMain ? (jsx(ContainerWrapper, { "data-id": item.id, "data-templatename": item.templateName, children: jsx(DashboardWrapper, { children: render }) }, index)) : (jsx(Fragment, { children: render }, index));
9619
+ return isMain ? (jsx(ContainerWrapper, { id: item.id, "data-templatename": item.templateName, children: jsx(DashboardWrapper, { children: render }) }, index)) : (jsx(InnerContainerWrapper$1, { id: item.id, children: render }, index));
9590
9620
  }) }));
9591
9621
  });
9592
9622
 
@@ -10075,5 +10105,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
10075
10105
  }, children: children }), upperSiblings] }));
10076
10106
  };
10077
10107
 
10078
- export { AddFeatureButton, AddFeatureContainer, AttributeGalleryContainer, AttributeLabel, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, 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, DashboardLoading, DashboardPlaceholder, DashboardPlaceholderWrap, DashboardProvider, DashboardWrapper, DataSourceContainer, DataSourceError, DataSourceErrorContainer, DataSourceInnerContainer, DataSourceProgressContainer, DateFormat, DefaultAttributesContainer, DefaultHeaderContainer, DefaultHeaderWrapper, 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, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerDefinition, getLayerInfo, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isCompositeLayerConfiguration, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, numberOptions, parseClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, useAppHeight, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useExportPdf, useGetConfigLayer, useGlobalContext, useHeaderRender, useLayerParams, useMapContext, useMapDraw, useProjectDashboardInit, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
10108
+ export { AddFeatureButton, AddFeatureContainer, AttributeGalleryContainer, AttributeLabel, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, 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, DashboardLoading, DashboardPlaceholder, DashboardPlaceholderWrap, DashboardProvider, DashboardWrapper, DataSourceContainer, DataSourceError, DataSourceErrorContainer, DataSourceInnerContainer, DataSourceProgressContainer, DateFormat, DefaultAttributesContainer, DefaultHeaderContainer, DefaultHeaderWrapper, 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, InnerContainerWrapper$1 as InnerContainerWrapper, 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, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerDefinition, getLayerInfo, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isCompositeLayerConfiguration, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, numberOptions, parseClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, useAppHeight, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useExportPdf, useGetConfigLayer, useGlobalContext, useHeaderRender, useLayerParams, useMapContext, useMapDraw, useProjectDashboardInit, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
10079
10109
  //# sourceMappingURL=react.esm.js.map