@evergis/react 3.1.81 → 3.1.83
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/components/Dashboard/components/Dashboard/index.d.ts +1 -2
- package/dist/components/Dashboard/constants.d.ts +2 -0
- package/dist/components/Dashboard/hooks/useWidgetConfig.d.ts +1 -2
- package/dist/components/Dashboard/hooks/useWidgetContext.d.ts +3 -0
- package/dist/components/Dashboard/types.d.ts +2 -0
- package/dist/contexts/DashboardContext/types.d.ts +1 -0
- package/dist/contexts/FeatureCardContext/types.d.ts +3 -1
- package/dist/index.js +45 -45
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +44 -46
- package/dist/react.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/react.esm.js
CHANGED
|
@@ -3436,6 +3436,8 @@ const DEFAULT_ZOOM = 10;
|
|
|
3436
3436
|
const NUMERIC_ATTRIBUTE_TYPES = [AttributeType.Double, AttributeType.Int32, AttributeType.Int64];
|
|
3437
3437
|
const GEOMETRY_ATTRIBUTE = "geometry";
|
|
3438
3438
|
const DEFAULT_ID_ATTRIBUTE_NAME = "gid";
|
|
3439
|
+
const DEFAULT_DROPDOWN_WIDTH = 312;
|
|
3440
|
+
const DEFAULT_FILTER_PADDING = 12;
|
|
3439
3441
|
|
|
3440
3442
|
const StackBarContainer = styled(Flex) `
|
|
3441
3443
|
flex-wrap: nowrap;
|
|
@@ -4001,8 +4003,8 @@ const ServerNotificationsProvider = ({ url, initialized, children }) => {
|
|
|
4001
4003
|
};
|
|
4002
4004
|
|
|
4003
4005
|
const useWidgetContext = (type = WidgetType.Dashboard) => {
|
|
4004
|
-
const { projectInfo, updateProject, layerInfos, geometryFilter, dashboardLayers, setDashboardLayer, components: dashboardComponents, config: dashboardConfig, containerIds, pageIndex: projectPageIndex, selectedTabId: projectSelectedTabId, setSelectedTabId: setProjectSelectedTabId, dataSources: projectDataSources, loading: projectLoading, filters: projectFilters, changeFilters: projectChangeFilters, expandContainer: projectExpandContainer, expandedContainers: projectExpandedContainers, nextPage: projectNextPage, prevPage: projectPrevPage, changePage: projectChangePage, } = useContext(DashboardContext) || {};
|
|
4005
|
-
const { layerInfo, attributes, feature, closeFeatureCard, config: featureConfig, pageIndex: featurePageIndex, selectedTabId: featureSelectedTabId, setSelectedTabId: setFeatureSelectedTabId, dataSources: featureDataSources, loading: featureLoading, filters: featureFilters, changeFilters: featureChangeFilters, expandContainer: featureExpandContainer, expandedContainers: featureExpandedContainers, nextPage: featureNextPage, prevPage: featurePrevPage, changePage: featureChangePage, } = useContext(FeatureCardContext) || {};
|
|
4006
|
+
const { projectInfo, updateProject, layerInfos, geometryFilter, dashboardLayers, setDashboardLayer, components: dashboardComponents, config: dashboardConfig, containerIds, pageIndex: projectPageIndex, selectedTabId: projectSelectedTabId, setSelectedTabId: setProjectSelectedTabId, dataSources: projectDataSources, loading: projectLoading, editMode: projectEditMode, filters: projectFilters, changeFilters: projectChangeFilters, expandContainer: projectExpandContainer, expandedContainers: projectExpandedContainers, nextPage: projectNextPage, prevPage: projectPrevPage, changePage: projectChangePage, } = useContext(DashboardContext) || {};
|
|
4007
|
+
const { layerInfo, attributes, feature, controls, changeControls, closeFeatureCard, config: featureConfig, pageIndex: featurePageIndex, selectedTabId: featureSelectedTabId, setSelectedTabId: setFeatureSelectedTabId, dataSources: featureDataSources, loading: featureLoading, editMode: featureEditMode, filters: featureFilters, changeFilters: featureChangeFilters, expandContainer: featureExpandContainer, expandedContainers: featureExpandedContainers, nextPage: featureNextPage, prevPage: featurePrevPage, changePage: featureChangePage, } = useContext(FeatureCardContext) || {};
|
|
4006
4008
|
return {
|
|
4007
4009
|
projectInfo,
|
|
4008
4010
|
layerInfos,
|
|
@@ -4015,8 +4017,11 @@ const useWidgetContext = (type = WidgetType.Dashboard) => {
|
|
|
4015
4017
|
feature,
|
|
4016
4018
|
closeFeatureCard,
|
|
4017
4019
|
containerIds,
|
|
4020
|
+
controls,
|
|
4021
|
+
changeControls,
|
|
4018
4022
|
components: dashboardComponents,
|
|
4019
4023
|
config: type === WidgetType.Dashboard ? dashboardConfig : featureConfig,
|
|
4024
|
+
isEditing: type === WidgetType.Dashboard ? projectEditMode : featureEditMode,
|
|
4020
4025
|
isLoading: type === WidgetType.Dashboard ? projectLoading : featureLoading,
|
|
4021
4026
|
pageIndex: type === WidgetType.Dashboard ? projectPageIndex || 1 : featurePageIndex || 1,
|
|
4022
4027
|
filters: type === WidgetType.Dashboard ? projectFilters : featureFilters,
|
|
@@ -6007,7 +6012,7 @@ const DEFAULT_BAR_CHART_MARGINS = {
|
|
|
6007
6012
|
|
|
6008
6013
|
const FiltersContainerWrapper = styled(Flex) `
|
|
6009
6014
|
flex-direction: column;
|
|
6010
|
-
padding: ${({ $padding }) => $padding ??
|
|
6015
|
+
padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
|
|
6011
6016
|
background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
|
|
6012
6017
|
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6013
6018
|
|
|
@@ -7768,34 +7773,29 @@ const ElementChips = memo(({ type, elementConfig }) => {
|
|
|
7768
7773
|
|
|
7769
7774
|
const ElementControl = ({ elementConfig }) => {
|
|
7770
7775
|
const { t } = useGlobalContext();
|
|
7771
|
-
const { dataSources,
|
|
7776
|
+
const { dataSources, controls, changeControls } = useWidgetContext(WidgetType.FeatureCard);
|
|
7777
|
+
const [value, setValue] = useState();
|
|
7772
7778
|
const { options, attributeName } = elementConfig || {};
|
|
7773
|
-
const {
|
|
7774
|
-
// Получаем данные из datasource
|
|
7779
|
+
const { relatedDataSource, controlName, label, width, placeholder = t("selectValue", { ns: "dashboard", defaultValue: "Выберите значение" }) } = options || {};
|
|
7775
7780
|
const dataSource = useMemo(() => getDataSource(relatedDataSource, dataSources), [relatedDataSource, dataSources]);
|
|
7776
|
-
// Формируем опции для dropdown из features datasource
|
|
7777
7781
|
const items = useMemo(() => {
|
|
7778
7782
|
if (!dataSource?.features?.length || !attributeName) {
|
|
7779
7783
|
return [];
|
|
7780
7784
|
}
|
|
7781
|
-
return dataSource.features.map((
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
label: feature.attributes?.[attributeName] || "",
|
|
7785
|
+
return dataSource.features.map(({ attributes }) => ({
|
|
7786
|
+
value: attributes?.[attributeName] || "",
|
|
7787
|
+
text: attributes?.[attributeName] || "",
|
|
7785
7788
|
}));
|
|
7786
|
-
}, [dataSource, attributeName]);
|
|
7787
|
-
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
[filterName]: {
|
|
7793
|
-
value: option?.value || null,
|
|
7794
|
-
},
|
|
7789
|
+
}, [dataSource?.features, attributeName]);
|
|
7790
|
+
const handleChange = useCallback(([option]) => {
|
|
7791
|
+
setValue(option?.value);
|
|
7792
|
+
if (controlName && changeControls) {
|
|
7793
|
+
changeControls({
|
|
7794
|
+
[controlName]: option?.value,
|
|
7795
7795
|
});
|
|
7796
7796
|
}
|
|
7797
|
-
}, [
|
|
7798
|
-
return (jsx(Dropdown, { label: label, options: items, value:
|
|
7797
|
+
}, [changeControls, controlName]);
|
|
7798
|
+
return (jsx(Dropdown, { zIndex: 1000, width: `${width ?? DEFAULT_DROPDOWN_WIDTH}px`, label: label, options: items, value: controls?.[controlName] ?? value, placeholder: placeholder, onChange: handleChange }));
|
|
7799
7799
|
};
|
|
7800
7800
|
|
|
7801
7801
|
const StyledIconFontSizeMixin = css `
|
|
@@ -8716,7 +8716,7 @@ const DropdownFilter = ({ type, filter, elementConfig }) => {
|
|
|
8716
8716
|
}, [changeFilters, filterName]);
|
|
8717
8717
|
if (!configFilter)
|
|
8718
8718
|
return null;
|
|
8719
|
-
return (jsx(Dropdown, { zIndex: 100, width: `${width ??
|
|
8719
|
+
return (jsx(Dropdown, { zIndex: 100, width: `${width ?? (DEFAULT_DROPDOWN_WIDTH - DEFAULT_FILTER_PADDING * 2)}px`, value: value, placeholder: placeholder, options: filterOptions, onChange: onChange }));
|
|
8720
8720
|
};
|
|
8721
8721
|
|
|
8722
8722
|
const CheckboxFilter = ({ type, filter, elementConfig }) => {
|
|
@@ -9618,11 +9618,16 @@ const tooltipValueFromRelatedFeatures = (t, value, relatedAttributes, layerInfo)
|
|
|
9618
9618
|
};
|
|
9619
9619
|
|
|
9620
9620
|
const useWidgetConfig = (type = WidgetType.Dashboard) => {
|
|
9621
|
-
const { config: configProp, containerIds, projectInfo, layerInfo } = useWidgetContext(type);
|
|
9621
|
+
const { config: configProp, containerIds, projectInfo, layerInfo, isEditing } = useWidgetContext(type);
|
|
9622
9622
|
const config = useMemo(() => {
|
|
9623
9623
|
if (configProp) {
|
|
9624
9624
|
return configProp;
|
|
9625
9625
|
}
|
|
9626
|
+
if (isEditing) {
|
|
9627
|
+
return type === WidgetType.Dashboard
|
|
9628
|
+
? (projectInfo?.content?.editConfiguration || {})
|
|
9629
|
+
: (layerInfo?.configuration?.editConfiguration || {});
|
|
9630
|
+
}
|
|
9626
9631
|
const currentConfig = type === WidgetType.Dashboard
|
|
9627
9632
|
? (projectInfo?.content?.dashboardConfiguration || {})
|
|
9628
9633
|
: (layerInfo?.configuration?.cardConfiguration || {});
|
|
@@ -9638,14 +9643,10 @@ const useWidgetConfig = (type = WidgetType.Dashboard) => {
|
|
|
9638
9643
|
return newConfig;
|
|
9639
9644
|
}
|
|
9640
9645
|
return currentConfig;
|
|
9641
|
-
}, [configProp, containerIds, layerInfo?.configuration?.cardConfiguration, projectInfo?.content?.dashboardConfiguration, type]);
|
|
9642
|
-
const editConfig = useMemo(() => type === WidgetType.Dashboard
|
|
9643
|
-
? (projectInfo?.content?.editConfiguration || {})
|
|
9644
|
-
: (layerInfo?.configuration?.editConfiguration || {}), []);
|
|
9646
|
+
}, [configProp, containerIds, layerInfo?.configuration?.cardConfiguration, projectInfo?.content?.dashboardConfiguration, type, isEditing]);
|
|
9645
9647
|
const pages = useMemo(() => (getPagesFromConfig(config) || []), [config]);
|
|
9646
9648
|
return {
|
|
9647
9649
|
config,
|
|
9648
|
-
editConfig,
|
|
9649
9650
|
pages,
|
|
9650
9651
|
};
|
|
9651
9652
|
};
|
|
@@ -10382,20 +10383,17 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
|
|
|
10382
10383
|
return (jsxs(Tooltip, { children: [jsx(ChartTooltipLabel, { children: labels[indexX] }), items
|
|
10383
10384
|
.filter(({ value }) => !isEmptyValue(value))
|
|
10384
10385
|
?.map(({ layerName, attributeName, attributeUnits, dataSourceName, value, stroke }, index) => {
|
|
10385
|
-
const layerInfo =
|
|
10386
|
-
|
|
10387
|
-
|
|
10388
|
-
const
|
|
10389
|
-
?
|
|
10390
|
-
:
|
|
10391
|
-
const
|
|
10392
|
-
|
|
10393
|
-
|
|
10394
|
-
|
|
10395
|
-
|
|
10396
|
-
? formatAttributeValue({ t, type: attribute.type, value, stringFormat: attribute.stringFormat })
|
|
10397
|
-
: [value, dataSourceUnits].filter(Boolean).join(" ");
|
|
10398
|
-
return (jsxs(ChartTooltipRow, { children: [jsx(ChartLegendColor$1, { "$color": stroke }), jsx(ChartLegendValue, { children: legendValue })] }, index));
|
|
10386
|
+
const layerInfo = layerInfos?.find(({ name }) => name === layerName);
|
|
10387
|
+
const attribute = layerInfo?.layerDefinition.attributes[attributeName];
|
|
10388
|
+
const dataSource = getDataSource(dataSourceName, dataSources);
|
|
10389
|
+
const units = attributeUnits
|
|
10390
|
+
? dataSource?.features?.[0]?.attributes?.[attributeUnits]
|
|
10391
|
+
: attribute?.stringFormat?.unitsLabel;
|
|
10392
|
+
const formatValue = attribute
|
|
10393
|
+
? formatAttributeValue({ t, type: attribute.type, value, stringFormat: attribute.stringFormat, noUnits: true })
|
|
10394
|
+
: value;
|
|
10395
|
+
const resultValue = [formatValue, units].filter(Boolean).join(" ");
|
|
10396
|
+
return (jsxs(ChartTooltipRow, { children: [jsx(ChartLegendColor$1, { "$color": stroke }), jsx(ChartLegendValue, { children: resultValue })] }, index));
|
|
10399
10397
|
})] }));
|
|
10400
10398
|
}, [labels, layerInfos, dataSources, dotSnapping]);
|
|
10401
10399
|
const markers = useMemo(() => getChartMarkers(data[0]?.items, configMarkers, dataSources), [data, dataSources, configMarkers]);
|
|
@@ -10541,7 +10539,7 @@ const DashboardLoading = memo(() => {
|
|
|
10541
10539
|
return (jsx(Container, { noBorders: true, children: jsx(ContainerWrapper, { "$noMargin": true, children: jsx(DashboardWrapper, { children: jsx(DashboardPlaceholderWrap, { children: jsxs(DashboardPlaceholder, { isLoading: true, children: [jsx(Icon, { kind: "dashboard_loading" }), jsx(Flex, { width: "8rem", children: jsx(LinearProgress, {}) })] }) }) }) }) }));
|
|
10542
10540
|
});
|
|
10543
10541
|
|
|
10544
|
-
const Dashboard = memo(({ type = WidgetType.Dashboard,
|
|
10542
|
+
const Dashboard = memo(({ type = WidgetType.Dashboard, noBorders }) => {
|
|
10545
10543
|
const { dataSources, isLoading } = useWidgetContext(type);
|
|
10546
10544
|
const { currentPage } = useWidgetPage(type);
|
|
10547
10545
|
const isDiffPage = useDiffPage(type);
|
|
@@ -10549,7 +10547,7 @@ const Dashboard = memo(({ type = WidgetType.Dashboard, config, noBorders }) => {
|
|
|
10549
10547
|
if (dataSourceLoading || isDiffPage) {
|
|
10550
10548
|
return (jsx(DashboardLoading, {}));
|
|
10551
10549
|
}
|
|
10552
|
-
return (jsx(PagesContainer, { type: type,
|
|
10550
|
+
return (jsx(PagesContainer, { type: type, noBorders: noBorders }));
|
|
10553
10551
|
});
|
|
10554
10552
|
|
|
10555
10553
|
const CardCheckbox = styled(Checkbox) `
|
|
@@ -11138,5 +11136,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
|
|
|
11138
11136
|
}, children: children }), upperSiblings] }));
|
|
11139
11137
|
};
|
|
11140
11138
|
|
|
11141
|
-
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_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, 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, 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, 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, useLayerParams, useMapContext, useMapDraw, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
|
|
11139
|
+
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, 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, 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, useLayerParams, useMapContext, useMapDraw, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
|
|
11142
11140
|
//# sourceMappingURL=react.esm.js.map
|