@evergis/react 3.1.109 → 3.1.110

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
@@ -6070,62 +6070,40 @@ const TwoColumnContainerWrapper = styled(Flex) `
6070
6070
  }
6071
6071
  `;
6072
6072
 
6073
- const OneColumnContainer = memo(({ elementConfig, renderElement }) => {
6074
- const { id, options, style } = elementConfig || {};
6075
- const { innerTemplateStyle, hideEmpty } = options || {};
6076
- const value = renderElement({ id: "value" });
6077
- const hasUnits = elementConfig?.children?.some(({ id }) => id === "units");
6078
- if (!value && hideEmpty)
6079
- return null;
6080
- return (jsxs(Container, { id: id, isColumn: true, style: innerTemplateStyle || style, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [renderElement({ id: "alias" }), renderElement({ id: "tooltip" })] }), jsxs(ContainerValue, { children: [value, hasUnits && jsx(ContainerUnits, { children: renderElement({ id: "units" }) })] })] }));
6073
+ const BASE_STYLE = {
6074
+ marginBottom: "1rem",
6075
+ };
6076
+ const OneColumnContainer = memo(({ config, elementConfig, type, renderElement }) => {
6077
+ const { getAttributesToRender, renderContainer } = useMultipleAttributesRender(config, elementConfig, type, renderElement);
6078
+ const attributesToRender = getAttributesToRender();
6079
+ if (!attributesToRender.length) {
6080
+ const { id, options, style } = elementConfig || {};
6081
+ const { innerTemplateStyle, hideEmpty } = options || {};
6082
+ const value = renderElement({ id: "value" });
6083
+ const hasUnits = elementConfig?.children?.some(({ id }) => id === "units");
6084
+ if (!value && hideEmpty)
6085
+ return null;
6086
+ return (jsxs(Container, { id: id, isColumn: true, style: { ...BASE_STYLE, ...(innerTemplateStyle || style) }, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [renderElement({ id: "alias" }), renderElement({ id: "tooltip" })] }), jsxs(ContainerValue, { children: [value, hasUnits && jsx(ContainerUnits, { children: renderElement({ id: "units" }) })] })] }));
6087
+ }
6088
+ return (jsx(Fragment$1, { children: attributesToRender.map(attribute => {
6089
+ const containerData = renderContainer(attribute);
6090
+ if (!containerData)
6091
+ return null;
6092
+ const { render, hasUnits, id, style } = containerData;
6093
+ return (jsxs(Container, { id: id, isColumn: true, style: { ...BASE_STYLE, ...(elementConfig?.options?.innerTemplateStyle || style) }, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [render({ id: "alias" }), render({ id: "tooltip" })] }), jsxs(ContainerValue, { children: [render({ id: "value" }), hasUnits && jsx(ContainerUnits, { children: render({ id: "units" }) })] })] }, attribute));
6094
+ }) }));
6081
6095
  });
6082
6096
 
6083
6097
  const TwoColumnContainer = memo(({ config, elementConfig, type, renderElement }) => {
6084
- const { selectedTabId, layerInfo, attributes } = useWidgetContext(type);
6085
- const { attributes: renderAttributes } = elementConfig?.options || {};
6086
- const renderContainer = useCallback((attribute) => {
6087
- const { id, options, style, children } = elementConfig || {};
6088
- const { hideEmpty, innerTemplateStyle } = options || {};
6089
- const hasUnits = children?.some(({ id }) => id === "units");
6090
- const iconIndex = children?.findIndex(({ id }) => id === "icon");
6091
- const icon = children?.[iconIndex];
6092
- const hasIcon = !!icon;
6093
- const elementChildren = elementConfig?.children?.map(child => ({
6094
- type: "attributeValue",
6095
- ...child,
6096
- attributeName: attribute,
6097
- options: { noUnits: hasUnits, ...child.options },
6098
- }));
6099
- const attr = attribute
6100
- ? layerInfo?.layerAttributes?.find(({ attributeName }) => attributeName === attribute)
6101
- : null;
6102
- if (hasIcon) {
6103
- elementChildren[iconIndex] = {
6104
- ...elementChildren[iconIndex],
6105
- type: attr?.icon?.type?.toLowerCase(),
6106
- value: attr?.icon?.resourceId || attr?.icon?.url || attr?.icon?.iconName,
6107
- attributeName: null,
6108
- };
6109
- }
6110
- const render = attribute
6111
- ? getRenderElement({
6112
- config,
6113
- elementConfig: {
6114
- ...elementConfig,
6115
- children: elementChildren,
6116
- },
6117
- selectedTabId,
6118
- attributes,
6119
- layerInfo,
6120
- type,
6121
- })
6122
- : renderElement;
6123
- const value = render({ id: "value" });
6124
- if (!value && hideEmpty)
6125
- return null;
6126
- return (jsxs(TwoColumnContainerWrapper, { id: id, style: innerTemplateStyle || style, children: [jsxs(ContainerAlias, { children: [hasIcon && jsx(ContainerAliasIcon, { children: render({ id: "icon" }) }), render({ id: "alias" }), render({ id: "tooltip" })] }), jsxs(ContainerValue, { big: true, children: [value, hasUnits && jsx(ContainerUnits, { children: render({ id: "units" }) })] })] }, attribute));
6127
- }, [attributes, config, getRenderElement, layerInfo, renderElement, selectedTabId, type, elementConfig]);
6128
- return renderAttributes?.length ? (jsx(Fragment$1, { children: renderAttributes.map(attribute => renderContainer(attribute)) })) : (renderContainer());
6098
+ const { getAttributesToRender, renderContainer } = useMultipleAttributesRender(config, elementConfig, type, renderElement);
6099
+ const attributesToRender = getAttributesToRender();
6100
+ return (jsx(Fragment$1, { children: attributesToRender.map(attribute => {
6101
+ const containerData = renderContainer(attribute);
6102
+ if (!containerData)
6103
+ return null;
6104
+ const { render, hasUnits, id, style, hasIcon } = containerData;
6105
+ return (jsxs(TwoColumnContainerWrapper, { id: id, style: style, children: [jsxs(ContainerAlias, { children: [hasIcon && jsx(ContainerAliasIcon, { children: render({ id: "icon" }) }), render({ id: "alias" }), render({ id: "tooltip" })] }), jsxs(ContainerValue, { big: true, children: [render({ id: "value" }), hasUnits && jsx(ContainerUnits, { children: render({ id: "units" }) })] })] }, attribute));
6106
+ }) }));
6129
6107
  });
6130
6108
 
6131
6109
  const InnerContainerWrapper = styled.div `
@@ -6632,6 +6610,7 @@ const PagesContainer = memo(({ type = WidgetType.Dashboard, noBorders }) => {
6632
6610
  setSelectedTabId,
6633
6611
  type,
6634
6612
  ]);
6613
+ console.info("PagesContainer", config, filteredChildren);
6635
6614
  return (jsx(Container, { id: getRootElementId(type), style: { width }, isMain: true, isColumn: isColumn, noBorders: noBorders, children: jsx(ContainerChildren, { type: type, items: filteredChildren, isMain: true, renderElement: renderElement }) }));
6636
6615
  });
6637
6616
 
@@ -10761,6 +10740,75 @@ const useUpdateDataSource = ({ dataSource, config, filters, attributes, layerPar
10761
10740
  }, [dataSource, getDataSourcePromises, getUpdatedDataSources, dataSources]);
10762
10741
  };
10763
10742
 
10743
+ const useMultipleAttributesRender = (config, elementConfig, type, renderElement) => {
10744
+ const { selectedTabId, layerInfo, attributes } = useWidgetContext(type);
10745
+ const { attributes: renderAttributes, attributesExclude } = elementConfig?.options || {};
10746
+ const getAttributesToRender = useCallback(() => {
10747
+ if (renderAttributes && renderAttributes.length > 0) {
10748
+ return renderAttributes;
10749
+ }
10750
+ const allAttributes = attributes?.map(attr => attr.name) || [];
10751
+ if (attributesExclude && attributesExclude.length > 0) {
10752
+ return allAttributes.filter(attr => !attributesExclude.includes(attr));
10753
+ }
10754
+ return allAttributes;
10755
+ }, [renderAttributes, attributesExclude, attributes]);
10756
+ const renderContainer = useCallback((attribute) => {
10757
+ const { id, options, style, children } = elementConfig || {};
10758
+ const { hideEmpty, innerTemplateStyle } = options || {};
10759
+ const hasUnits = children?.some(({ id }) => id === "units");
10760
+ const iconIndex = children?.findIndex(({ id }) => id === "icon");
10761
+ const icon = children?.[iconIndex];
10762
+ const hasIcon = !!icon;
10763
+ const elementChildren = elementConfig?.children?.map(child => ({
10764
+ type: "attributeValue",
10765
+ ...child,
10766
+ attributeName: attribute,
10767
+ options: { noUnits: hasUnits, ...child.options },
10768
+ }));
10769
+ const attr = attribute
10770
+ ? layerInfo?.layerAttributes?.find(({ attributeName }) => attributeName === attribute)
10771
+ : null;
10772
+ if (hasIcon) {
10773
+ elementChildren[iconIndex] = {
10774
+ ...elementChildren[iconIndex],
10775
+ type: attr?.icon?.type?.toLowerCase(),
10776
+ value: attr?.icon?.resourceId || attr?.icon?.url || attr?.icon?.iconName,
10777
+ attributeName: null,
10778
+ };
10779
+ }
10780
+ const render = attribute
10781
+ ? getRenderElement({
10782
+ config,
10783
+ elementConfig: {
10784
+ ...elementConfig,
10785
+ children: elementChildren,
10786
+ },
10787
+ selectedTabId,
10788
+ attributes,
10789
+ layerInfo,
10790
+ type,
10791
+ })
10792
+ : renderElement;
10793
+ const value = render({ id: "value" });
10794
+ if (!value && hideEmpty)
10795
+ return null;
10796
+ return {
10797
+ render,
10798
+ value,
10799
+ hasUnits,
10800
+ id,
10801
+ style: innerTemplateStyle || style,
10802
+ hasIcon,
10803
+ attr,
10804
+ };
10805
+ }, [attributes, config, getRenderElement, layerInfo, renderElement, selectedTabId, type, elementConfig]);
10806
+ return {
10807
+ getAttributesToRender,
10808
+ renderContainer,
10809
+ };
10810
+ };
10811
+
10764
10812
  const StackBar = ({ data, filterName, type, alias, options, renderElement, renderTooltip }) => {
10765
10813
  const { height, showTotal, cornerRadius, groupTooltip } = options || {};
10766
10814
  const { t } = useGlobalContext();
@@ -11631,5 +11679,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
11631
11679
  }, children: children }), upperSiblings] }));
11632
11680
  };
11633
11681
 
11634
- export { AddFeatureButton, AddFeatureContainer, AttributeGalleryContainer, AttributeLabel, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, Container, 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_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_PAINT, DEFAULT_FILL_PAINT, DEFAULT_FILTER_PADDING, 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, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, 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, LogTerminal, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OneColumnContainer, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, RoundedBackgroundContainer, SERVER_NOTIFICATION_EVENT, 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, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, 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, parseIconNames, parseIconNamesFromClientStyle, 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, useHideIfEmptyDataSource, useIconsFromLayers, useLayerParams, useMapContext, useMapDraw, useMapImages, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
11682
+ export { AddFeatureButton, AddFeatureContainer, AttributeGalleryContainer, AttributeLabel, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, Container, 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_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_PAINT, DEFAULT_FILL_PAINT, DEFAULT_FILTER_PADDING, 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, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, 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, LogTerminal, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OneColumnContainer, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, RoundedBackgroundContainer, SERVER_NOTIFICATION_EVENT, 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, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, 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, parseIconNames, parseIconNamesFromClientStyle, 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, useHideIfEmptyDataSource, useIconsFromLayers, useLayerParams, useMapContext, useMapDraw, useMapImages, useMultipleAttributesRender, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
11635
11683
  //# sourceMappingURL=react.esm.js.map