@evergis/react 4.0.112 → 4.0.114
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/constants.d.ts +1 -0
- package/dist/components/Dashboard/types.d.ts +4 -3
- package/dist/components/Dashboard/utils/fetchQueryDescription.d.ts +8 -0
- package/dist/components/Dashboard/utils/index.d.ts +1 -1
- package/dist/index.js +50 -26
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +49 -27
- package/dist/react.esm.js.map +1 -1
- package/dist/utils/format.d.ts +9 -1
- package/dist/utils/index.d.ts +1 -0
- package/package.json +2 -2
- /package/dist/{components/Dashboard/utils → utils}/roundTotalSum.d.ts +0 -0
package/dist/react.esm.js
CHANGED
|
@@ -3500,6 +3500,7 @@ var ProviderPrefix;
|
|
|
3500
3500
|
const FILTERED_VALUE_OPACITY = 28;
|
|
3501
3501
|
const DEFAULT_ATTRIBUTE_NAME = "name";
|
|
3502
3502
|
const DEFAULT_DATA_SOURCE_LIMIT = 100;
|
|
3503
|
+
const QUERY_DESCRIPTION_CACHE_TTL = 60000;
|
|
3503
3504
|
const LEFT_PANEL_HEADER_HEIGHT = "9.1875rem";
|
|
3504
3505
|
const DEFAULT_BASE_MAP = "Mapbox_Light";
|
|
3505
3506
|
const DEFAULT_LNG = 37.618423;
|
|
@@ -3803,6 +3804,22 @@ const debounce = (callback, delay) => {
|
|
|
3803
3804
|
};
|
|
3804
3805
|
};
|
|
3805
3806
|
|
|
3807
|
+
const MILLION = 1000000;
|
|
3808
|
+
const TEN_THOUSANDS = 10000;
|
|
3809
|
+
const THOUSAND = 1000;
|
|
3810
|
+
const FRACTION_DIGITS = 1;
|
|
3811
|
+
const roundTotalSum = (value) => {
|
|
3812
|
+
if (!value)
|
|
3813
|
+
return "";
|
|
3814
|
+
if (value >= MILLION) {
|
|
3815
|
+
return `${(value / MILLION).toFixed(FRACTION_DIGITS)}M`;
|
|
3816
|
+
}
|
|
3817
|
+
if (value >= TEN_THOUSANDS) {
|
|
3818
|
+
return `${(value / THOUSAND).toFixed(FRACTION_DIGITS)}K`;
|
|
3819
|
+
}
|
|
3820
|
+
return value;
|
|
3821
|
+
};
|
|
3822
|
+
|
|
3806
3823
|
const TIME_ZONE_FORMAT = ' "GMT"z'; // eslint-disable-line
|
|
3807
3824
|
var ScalingFactor;
|
|
3808
3825
|
(function (ScalingFactor) {
|
|
@@ -3931,8 +3948,9 @@ const formatDateValue = (stringFormat, dateValue) => {
|
|
|
3931
3948
|
const timeFormat = (timeOptionValue && format(value, showTimeZone ? `${timeOptionValue} zz` : timeOptionValue)) || "";
|
|
3932
3949
|
return dateFormat ? `${dateFormat} ${timeFormat}` : "";
|
|
3933
3950
|
};
|
|
3951
|
+
const appendUnitsLabel = (value, unitsLabel, noUnits) => (unitsLabel && !noUnits ? `${value} ${unitsLabel}` : value)?.toString() || "";
|
|
3934
3952
|
const formatNumberValue = (stringFormat, value, type, noUnits = false) => {
|
|
3935
|
-
const { scalingFactor, rounding, splitDigitGroup, unitsLabel } = stringFormat || {};
|
|
3953
|
+
const { scalingFactor, rounding, splitDigitGroup, roundDigitGroup, unitsLabel } = stringFormat || {};
|
|
3936
3954
|
const isIntValue = [AttributeType.Int32, AttributeType.Int64].includes(type);
|
|
3937
3955
|
const isDefaultScaling = stringFormat && stringFormat.scalingFactor === +numberOptions[0].value;
|
|
3938
3956
|
let currentValue = value;
|
|
@@ -3942,6 +3960,10 @@ const formatNumberValue = (stringFormat, value, type, noUnits = false) => {
|
|
|
3942
3960
|
if (scalingFactor) {
|
|
3943
3961
|
currentValue *= scalingFactor;
|
|
3944
3962
|
}
|
|
3963
|
+
const compactValue = roundDigitGroup ? roundTotalSum(Number(currentValue)) : null;
|
|
3964
|
+
if (typeof compactValue === "string" && compactValue) {
|
|
3965
|
+
return appendUnitsLabel(compactValue, unitsLabel, noUnits);
|
|
3966
|
+
}
|
|
3945
3967
|
if ((rounding || rounding === 0) && (!isIntValue || (isIntValue && !isDefaultScaling))) {
|
|
3946
3968
|
currentValue = currentValue && Number(currentValue).toFixed(rounding);
|
|
3947
3969
|
}
|
|
@@ -3951,10 +3973,7 @@ const formatNumberValue = (stringFormat, value, type, noUnits = false) => {
|
|
|
3951
3973
|
if (currentValue) {
|
|
3952
3974
|
currentValue = currentValue.toString().replace(".", ",");
|
|
3953
3975
|
}
|
|
3954
|
-
|
|
3955
|
-
currentValue = `${currentValue} ${unitsLabel}`;
|
|
3956
|
-
}
|
|
3957
|
-
return currentValue?.toString() || "";
|
|
3976
|
+
return appendUnitsLabel(currentValue, unitsLabel, noUnits);
|
|
3958
3977
|
};
|
|
3959
3978
|
const formatAttributeValue = ({ t, type, value, stringFormat, noUnits = false }) => {
|
|
3960
3979
|
const isNilValue = isNil(value);
|
|
@@ -4328,6 +4347,25 @@ const formatChartRelatedValue = (t, value, layerInfo, relatedAttributes) => {
|
|
|
4328
4347
|
: value;
|
|
4329
4348
|
};
|
|
4330
4349
|
|
|
4350
|
+
const descriptionCache = new Map();
|
|
4351
|
+
const fetchQueryDescription = (api, { ds, query, parameters }) => {
|
|
4352
|
+
const key = JSON.stringify([ds ?? null, query ?? null]);
|
|
4353
|
+
const cached = descriptionCache.get(key);
|
|
4354
|
+
if (cached && Date.now() - cached.requestedAt < QUERY_DESCRIPTION_CACHE_TTL) {
|
|
4355
|
+
return cached.request;
|
|
4356
|
+
}
|
|
4357
|
+
const request = api.eql
|
|
4358
|
+
.getQueryDescription({ ds, query, parameters })
|
|
4359
|
+
.then(description => description)
|
|
4360
|
+
.catch(error => {
|
|
4361
|
+
if (descriptionCache.get(key)?.request === request)
|
|
4362
|
+
descriptionCache.delete(key);
|
|
4363
|
+
throw error;
|
|
4364
|
+
});
|
|
4365
|
+
descriptionCache.set(key, { requestedAt: Date.now(), request });
|
|
4366
|
+
return request;
|
|
4367
|
+
};
|
|
4368
|
+
|
|
4331
4369
|
const applyFiltersToCondition = ({ condition, name, defaultValue, filters, isSingle, isSetParams, }) => {
|
|
4332
4370
|
const rawValue = filters[name] !== undefined ? filters[name].value : defaultValue;
|
|
4333
4371
|
if (isTreeFilterValue(rawValue)) {
|
|
@@ -7091,8 +7129,10 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
|
|
|
7091
7129
|
};
|
|
7092
7130
|
const newSignature = JSON.stringify(["eql", ds, query, newParams, offset, limit]);
|
|
7093
7131
|
return dedupe(newSignature, async () => {
|
|
7094
|
-
const queryResponse = await
|
|
7095
|
-
|
|
7132
|
+
const [queryResponse, descriptionResponse] = await Promise.all([
|
|
7133
|
+
api.eql.getPagedQueryResult({ saveInHistory: false }, getProps),
|
|
7134
|
+
fetchQueryDescription(api, { ds, query, parameters: newParams }),
|
|
7135
|
+
]);
|
|
7096
7136
|
return {
|
|
7097
7137
|
items: queryResponse.features,
|
|
7098
7138
|
attributes: descriptionResponse,
|
|
@@ -7126,9 +7166,7 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
|
|
|
7126
7166
|
dataSources,
|
|
7127
7167
|
configFilters,
|
|
7128
7168
|
ewktGeometry,
|
|
7129
|
-
api
|
|
7130
|
-
api.remoteTaskManager,
|
|
7131
|
-
api.eql,
|
|
7169
|
+
api,
|
|
7132
7170
|
attributes,
|
|
7133
7171
|
layerParams,
|
|
7134
7172
|
layerInfo,
|
|
@@ -14155,22 +14193,6 @@ const removeDataSource = (dashboardConfiguration, name, pageIndex) => {
|
|
|
14155
14193
|
return newConfig;
|
|
14156
14194
|
};
|
|
14157
14195
|
|
|
14158
|
-
const BILLION = 1000000;
|
|
14159
|
-
const TEN_THOUSANDS = 10000;
|
|
14160
|
-
const THOUSAND = 1000;
|
|
14161
|
-
const FRACTION_DIGITS = 1;
|
|
14162
|
-
const roundTotalSum = (value) => {
|
|
14163
|
-
if (!value)
|
|
14164
|
-
return "";
|
|
14165
|
-
if (value >= BILLION) {
|
|
14166
|
-
return `${(value / BILLION).toFixed(FRACTION_DIGITS)}M`;
|
|
14167
|
-
}
|
|
14168
|
-
if (value >= TEN_THOUSANDS) {
|
|
14169
|
-
return `${(value / THOUSAND).toFixed(FRACTION_DIGITS)}K`;
|
|
14170
|
-
}
|
|
14171
|
-
return value;
|
|
14172
|
-
};
|
|
14173
|
-
|
|
14174
14196
|
const updateDataSource = (dashboardConfiguration, name, pageIndex, data) => {
|
|
14175
14197
|
const newConfig = JSON.parse(JSON.stringify(dashboardConfiguration));
|
|
14176
14198
|
if (newConfig.dataSources?.length) {
|
|
@@ -15183,5 +15205,5 @@ const DEFAULT_CIRCLE_STYLE = {
|
|
|
15183
15205
|
],
|
|
15184
15206
|
};
|
|
15185
15207
|
|
|
15186
|
-
export { ALIGNMENTS, ALIGN_ITEMS, ATTRIBUTE_ICON_ELEMENT_TYPES, AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttachmentContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, BaseMapTheme, CHART_TYPES, 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_BLUR, DEFAULT_CHART_ANGLE, DEFAULT_CHART_HEIGHT, DEFAULT_CHART_WIDTH, DEFAULT_CIRCLE_RADIUS, DEFAULT_CIRCLE_STYLE, DEFAULT_COLOR, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_STYLE, DEFAULT_FILL_STYLE, DEFAULT_FILTER_PADDING, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LAT, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_LINE_STYLE, DEFAULT_LINE_WIDTH, DEFAULT_LNG, DEFAULT_OPACITY, 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, EMPTY_DATA_SOURCE_LAYER_INFO, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, ElementSlideshow, ElementSvg, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILL_SIZE, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FeatureCardBackgroundHeader, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GlobalContext, GlobalProvider, Header, HeaderContainer, HeaderFontColorMixin, HeaderFrontView, HeaderTemplate, HeaderTitleContainer, HiddenTitleItems, IconContainer, ImageContainer, LEFT_PANEL_HEADER_HEIGHT, Layer, LayerDescription, LayerGroupList, LayerIcon, LayerIconContainer, LayerListContainer, LayerTree, LayersContainer, LayersListWrapper, LinearProgressContainer, LogTerminal, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OBJECT_FITS, OVERFLOWS, OneColumnContainer, POLL_SUBTASK_INTERVAL_MS, POLL_SUBTASK_TIMEOUT_MS, PROVIDER_PREFIX, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, ProviderPrefix, RoundedBackgroundContainer, SAVE_HOOK_RESULT_DURATION, SERVER_NOTIFICATION_EVENT, STACK_BAR_TOTAL_HEIGHT, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TILE_ALIGNMENTS, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, VIEW_MODES, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyTreeFilterToCondition, applyVarsToCondition, asAttributeName, asChartId, asContainerId, asDataSourceName, asFilterName, asLayerName, asModalId, asResourceId, asTabId, checkEqualOrIncludes, checkIsLoading, createConfigLayer, createConfigPage, createNewPageId, createSaveNotificationId, dateOptions, debounce, decimalOpacityToHex, enrichStyleItemsWithIds, enrichStyleModelsWithIds, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, geometryToEwkt, getActualExtrusionHeight, getAttributeByName, getAttributeConfigurationByName, getAttributeIconElement, getAttributeIconUrl, getAttributeValue, getAttributesConfiguration, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDataSourceLayerInfo, getDate, getDefaultConfig, getDisplayTemplateNameFromAttribute, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getImageUrl, getLayerClientStyle, getLayerInfo, getLayerInfoAttribute, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getStyleAttributes, getSvgUrl, getTemplateNameFromAttribute, getThemeByName, getTotalFromAttributes, getTotalFromRelatedFeatures, getWrapperSizeStyle, hexToRgba, isEmptyElementValue, isEmptyValue, isFillSize, isHiddenEmptyValue, isHookActive, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isTreeFilterValue, isVisibleContainer, mergeAttributeConfigurations, metersPerPixel, numberOptions, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sizeCssMixin, sliceShownOtherItems, stretchPalette, timeOptions, toCssSize, toPxNumber, toRenderableValue, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, updateDataSource, useAfterSave, useAppHeight, useAttachmentItems, useAttachmentPreviewImages, useAutoCompleteControl, useBeforeSave, useChartChange, useChartData, useContainerAttributes, useCurrentPageLayers, useCustomFeatureSelect, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useEditGroupAttributes, useEqualTileWidth, useExpandableContainers, useExportPdf, useFeatureSaveHooks, useFetchImageWithAuth, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerHiddenAttributes, useLayerParams, useMapContext, useMapDraw, useMapImages, useMaxZoomTo, useProjectDashboardInit, usePythonSandbox, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRemoteTask, useRenderElement, useResizeBox, useSavePrototypeBuilder, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useVisibleProjectItems, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useWrapperSize, useZoomToFeatures, useZoomToPoint };
|
|
15208
|
+
export { ALIGNMENTS, ALIGN_ITEMS, ATTRIBUTE_ICON_ELEMENT_TYPES, AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttachmentContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, BaseMapTheme, CHART_TYPES, 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_BLUR, DEFAULT_CHART_ANGLE, DEFAULT_CHART_HEIGHT, DEFAULT_CHART_WIDTH, DEFAULT_CIRCLE_RADIUS, DEFAULT_CIRCLE_STYLE, DEFAULT_COLOR, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_STYLE, DEFAULT_FILL_STYLE, DEFAULT_FILTER_PADDING, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LAT, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_LINE_STYLE, DEFAULT_LINE_WIDTH, DEFAULT_LNG, DEFAULT_OPACITY, 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, EMPTY_DATA_SOURCE_LAYER_INFO, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, ElementSlideshow, ElementSvg, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILL_SIZE, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FeatureCardBackgroundHeader, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GlobalContext, GlobalProvider, Header, HeaderContainer, HeaderFontColorMixin, HeaderFrontView, HeaderTemplate, HeaderTitleContainer, HiddenTitleItems, IconContainer, ImageContainer, LEFT_PANEL_HEADER_HEIGHT, Layer, LayerDescription, LayerGroupList, LayerIcon, LayerIconContainer, LayerListContainer, LayerTree, LayersContainer, LayersListWrapper, LinearProgressContainer, LogTerminal, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OBJECT_FITS, OVERFLOWS, OneColumnContainer, POLL_SUBTASK_INTERVAL_MS, POLL_SUBTASK_TIMEOUT_MS, PROVIDER_PREFIX, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, ProviderPrefix, QUERY_DESCRIPTION_CACHE_TTL, RoundedBackgroundContainer, SAVE_HOOK_RESULT_DURATION, SERVER_NOTIFICATION_EVENT, STACK_BAR_TOTAL_HEIGHT, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TILE_ALIGNMENTS, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, VIEW_MODES, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyTreeFilterToCondition, applyVarsToCondition, asAttributeName, asChartId, asContainerId, asDataSourceName, asFilterName, asLayerName, asModalId, asResourceId, asTabId, checkEqualOrIncludes, checkIsLoading, createConfigLayer, createConfigPage, createNewPageId, createSaveNotificationId, dateOptions, debounce, decimalOpacityToHex, enrichStyleItemsWithIds, enrichStyleModelsWithIds, eqlParametersToPayload, fetchQueryDescription, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, geometryToEwkt, getActualExtrusionHeight, getAttributeByName, getAttributeConfigurationByName, getAttributeIconElement, getAttributeIconUrl, getAttributeValue, getAttributesConfiguration, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDataSourceLayerInfo, getDate, getDefaultConfig, getDisplayTemplateNameFromAttribute, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getImageUrl, getLayerClientStyle, getLayerInfo, getLayerInfoAttribute, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getStyleAttributes, getSvgUrl, getTemplateNameFromAttribute, getThemeByName, getTotalFromAttributes, getTotalFromRelatedFeatures, getWrapperSizeStyle, hexToRgba, isEmptyElementValue, isEmptyValue, isFillSize, isHiddenEmptyValue, isHookActive, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isTreeFilterValue, isVisibleContainer, mergeAttributeConfigurations, metersPerPixel, numberOptions, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sizeCssMixin, sliceShownOtherItems, stretchPalette, timeOptions, toCssSize, toPxNumber, toRenderableValue, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, updateDataSource, useAfterSave, useAppHeight, useAttachmentItems, useAttachmentPreviewImages, useAutoCompleteControl, useBeforeSave, useChartChange, useChartData, useContainerAttributes, useCurrentPageLayers, useCustomFeatureSelect, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useEditGroupAttributes, useEqualTileWidth, useExpandableContainers, useExportPdf, useFeatureSaveHooks, useFetchImageWithAuth, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerHiddenAttributes, useLayerParams, useMapContext, useMapDraw, useMapImages, useMaxZoomTo, useProjectDashboardInit, usePythonSandbox, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRemoteTask, useRenderElement, useResizeBox, useSavePrototypeBuilder, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useVisibleProjectItems, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useWrapperSize, useZoomToFeatures, useZoomToPoint };
|
|
15187
15209
|
//# sourceMappingURL=react.esm.js.map
|