@evergis/react 4.0.130 → 4.0.131

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.
Files changed (25) hide show
  1. package/dist/components/Dashboard/constants.d.ts +12 -0
  2. package/dist/components/Dashboard/hooks/index.d.ts +1 -0
  3. package/dist/components/Dashboard/hooks/useDataSourceLoading.d.ts +2 -0
  4. package/dist/components/Dashboard/hooks/useGlobalContext.d.ts +2 -0
  5. package/dist/components/Dashboard/types.d.ts +8 -0
  6. package/dist/components/Dashboard/utils/applyQueryFilters.d.ts +3 -1
  7. package/dist/components/Dashboard/utils/formatDataSourceCondition.d.ts +5 -1
  8. package/dist/components/Dashboard/utils/getMapViewDataSources.d.ts +7 -0
  9. package/dist/components/Dashboard/utils/index.d.ts +2 -0
  10. package/dist/components/Dashboard/utils/toConditionsArray.d.ts +2 -0
  11. package/dist/contexts/GlobalContext/types.d.ts +4 -0
  12. package/dist/index.js +96 -14
  13. package/dist/index.js.map +1 -1
  14. package/dist/react.esm.js +90 -15
  15. package/dist/react.esm.js.map +1 -1
  16. package/package.json +2 -2
  17. package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredData.d.ts +0 -28
  18. package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredDataDraft.d.ts +0 -25
  19. package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredDataSave.d.ts +0 -17
  20. package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredDataSchema.d.ts +0 -11
  21. package/dist/components/Dashboard/containers/StructuredDataContainer/utils/viewScroll.d.ts +0 -17
  22. package/dist/components/Dashboard/elements/ElementTable/hooks/useSurfaceColor.d.ts +0 -16
  23. package/dist/components/Dashboard/elements/ElementTable/useCellEditing.d.ts +0 -15
  24. package/dist/components/Dashboard/elements/ElementTable/useTableView.d.ts +0 -16
  25. package/dist/components/Dashboard/elements/ElementTable/utils/surfaceColor.d.ts +0 -13
package/dist/react.esm.js CHANGED
@@ -3539,6 +3539,18 @@ const DEFAULT_CHART_ANGLE = 4;
3539
3539
  const DEFAULT_CHART_HEIGHT = 90;
3540
3540
  const STACK_BAR_TOTAL_HEIGHT = 20;
3541
3541
  const FILTER_PREFIX = "%";
3542
+ /** Имя системного геометрического фильтра — выделение, нарисованное пользователем на карте. */
3543
+ const GEOMETRY_FILTER_NAME = "geometry";
3544
+ /** Имя системного фильтра «экстент видимой области карты» (EWKT, `SRID=3857`). */
3545
+ const EXTENT_FILTER_NAME = "extent";
3546
+ /** Имя системного фильтра «уровень зума карты» (целое число). */
3547
+ const ZOOM_FILTER_NAME = "zoom";
3548
+ /**
3549
+ * Системные фильтры текущего вида карты. Их значения приходят не из `SelectedFilters`, а из
3550
+ * `GlobalContext`, поэтому имена зарезервированы: одноимённый пользовательский фильтр будет
3551
+ * перехвачен системной подстановкой — ровно как в случае `geometry`.
3552
+ */
3553
+ const MAP_VIEW_FILTER_NAMES = [EXTENT_FILTER_NAME, ZOOM_FILTER_NAME];
3542
3554
  const PROVIDER_PREFIX = "$";
3543
3555
  var ProviderPrefix;
3544
3556
  (function (ProviderPrefix) {
@@ -4219,7 +4231,7 @@ const getSelectedFilterValue = (filterName, selectedFilters, defaultValue) => {
4219
4231
  : selectedFilters?.[filterName]?.value) ?? defaultValue);
4220
4232
  };
4221
4233
 
4222
- const applyQueryFilters = ({ parameters: configParameters, filters: configFilters, selectedFilters, geometry, attributes, layerInfo, dataSources, projectDataSources, }) => {
4234
+ const applyQueryFilters = ({ parameters: configParameters, filters: configFilters, selectedFilters, geometry, extent, zoomLevel, attributes, layerInfo, dataSources, projectDataSources, }) => {
4223
4235
  if (!configParameters) {
4224
4236
  return {};
4225
4237
  }
@@ -4264,12 +4276,27 @@ const applyQueryFilters = ({ parameters: configParameters, filters: configFilter
4264
4276
  const [filterName, filterProp] = filterFullName.includes(".") ? filterFullName.split(".") : [filterFullName, null];
4265
4277
  const configFilter = getConfigFilter(filterName, configFilters);
4266
4278
  const { defaultValue, relatedDataSource, attributeAlias } = configFilter || {};
4267
- if (filterName === "geometry" && geometry && !geometry.includes("()") && geometry.endsWith(")")) {
4279
+ if (filterName === GEOMETRY_FILTER_NAME && geometry && !geometry.includes("()") && geometry.endsWith(")")) {
4268
4280
  return {
4269
4281
  ...result,
4270
4282
  [key]: geometry,
4271
4283
  };
4272
4284
  }
4285
+ // Системные фильтры вида карты: значение приходит из `GlobalContext`, а не из `SelectedFilters`,
4286
+ // поэтому резолвятся до веток `.min` / `.max` / `.property` — как `geometry` выше.
4287
+ if (filterName === EXTENT_FILTER_NAME && extent) {
4288
+ return {
4289
+ ...result,
4290
+ [key]: extent,
4291
+ };
4292
+ }
4293
+ // Единственная нестроковая системная подстановка: уровень зума уходит числом.
4294
+ if (filterName === ZOOM_FILTER_NAME && !isNil(zoomLevel)) {
4295
+ return {
4296
+ ...result,
4297
+ [key]: zoomLevel,
4298
+ };
4299
+ }
4273
4300
  if (configParameters[key].endsWith(".max")) {
4274
4301
  return {
4275
4302
  ...result,
@@ -4520,7 +4547,7 @@ const applyFiltersToCondition = ({ condition, name, defaultValue, filters, isSin
4520
4547
  }
4521
4548
  return isSingle && isNumeric(result) ? Number(result) : result;
4522
4549
  };
4523
- const applyVarsToCondition = ({ section, configFilters, filters, attributes, layerParams, eqlParameters, geometry, isSetParams, }) => {
4550
+ const applyVarsToCondition = ({ section, configFilters, filters, attributes, layerParams, eqlParameters, geometry, extent, zoomLevel, isSetParams, }) => {
4524
4551
  if (!section?.length)
4525
4552
  return [];
4526
4553
  const isSingle = typeof section === "string";
@@ -4529,6 +4556,17 @@ const applyVarsToCondition = ({ section, configFilters, filters, attributes, lay
4529
4556
  if (geometry && !geometry.includes("()") && geometry.endsWith(")")) {
4530
4557
  result[index] = result[index].replace(new RegExp("%geometry"), `'${geometry}'`);
4531
4558
  }
4559
+ // Системные фильтры вида карты подставляются ДО цикла по `configFilters`: одноимённый
4560
+ // пользовательский фильтр не должен перехватывать `%extent` / `%zoom`. Lookahead `(?![\w.])`
4561
+ // оставляет фильтрам составные формы (`%zoomLevel`, `%extent_id`, `%zoom.min`) — та же
4562
+ // граница, что уже разводит `%name` и `%name2.l1` в `getUpdatingDataSources`.
4563
+ if (extent) {
4564
+ result[index] = result[index].replace(new RegExp(`${FILTER_PREFIX}${EXTENT_FILTER_NAME}(?![\\w.])`, "g"), `'${extent}'`);
4565
+ }
4566
+ // Зум — число, кавычки не ставим.
4567
+ if (!isNil(zoomLevel)) {
4568
+ result[index] = result[index].replace(new RegExp(`${FILTER_PREFIX}${ZOOM_FILTER_NAME}(?![\\w.])`, "g"), String(zoomLevel));
4569
+ }
4532
4570
  if (configFilters?.length) {
4533
4571
  configFilters.forEach(filter => {
4534
4572
  result[index] = applyFiltersToCondition({
@@ -4557,7 +4595,7 @@ const applyVarsToCondition = ({ section, configFilters, filters, attributes, lay
4557
4595
  });
4558
4596
  return isSingle ? result?.[0] : result;
4559
4597
  };
4560
- const formatSingleCondition = (condition, { configFilters, filters, attributes, eqlParameters, layerParams, geometry }) => {
4598
+ const formatSingleCondition = (condition, { configFilters, filters, attributes, eqlParameters, layerParams, geometry, extent, zoomLevel, }) => {
4561
4599
  const setParams = condition.match(new RegExp("\\$\\([^)]+\\)", "g"));
4562
4600
  const setParamsSection = applyVarsToCondition({
4563
4601
  section: setParams,
@@ -4567,6 +4605,8 @@ const formatSingleCondition = (condition, { configFilters, filters, attributes,
4567
4605
  eqlParameters,
4568
4606
  layerParams,
4569
4607
  geometry,
4608
+ extent,
4609
+ zoomLevel,
4570
4610
  isSetParams: true,
4571
4611
  });
4572
4612
  const splitter = " AND ";
@@ -4579,6 +4619,8 @@ const formatSingleCondition = (condition, { configFilters, filters, attributes,
4579
4619
  eqlParameters,
4580
4620
  layerParams,
4581
4621
  geometry,
4622
+ extent,
4623
+ zoomLevel,
4582
4624
  });
4583
4625
  return setParamsSection?.length && conditionSection.length
4584
4626
  ? [setParamsSection.join(""), conditionSection.join(splitter)].join(" ")
@@ -6356,7 +6398,7 @@ const useAttachmentItems = ({ type, elementConfig, valueOverride, }) => {
6356
6398
  };
6357
6399
 
6358
6400
  const useGlobalContext = () => {
6359
- const { t, language, themeName, api, ewktGeometry, notification } = useContext(GlobalContext) || {};
6401
+ const { t, language, themeName, api, ewktGeometry, ewktExtent, zoomLevel, notification } = useContext(GlobalContext) || {};
6360
6402
  const translate = useCallback((value, options) => {
6361
6403
  if (t)
6362
6404
  return t(value, options);
@@ -6368,8 +6410,10 @@ const useGlobalContext = () => {
6368
6410
  themeName,
6369
6411
  api,
6370
6412
  ewktGeometry,
6413
+ ewktExtent,
6414
+ zoomLevel,
6371
6415
  notification,
6372
- }), [language, translate, api, ewktGeometry, themeName, notification]);
6416
+ }), [language, translate, api, ewktGeometry, ewktExtent, zoomLevel, themeName, notification]);
6373
6417
  };
6374
6418
 
6375
6419
  const GRID_TILE_SIZE = "4.5rem";
@@ -7175,10 +7219,17 @@ const useDashboardHeader = () => {
7175
7219
  };
7176
7220
  };
7177
7221
 
7222
+ // Полноэкранная заглушка допустима только пока не пришёл ни один источник: дальше страницу
7223
+ // и модалку наполняют сами контейнеры — у каждого свой ContainerLoading / ChartLoading.
7224
+ const useDataSourceLoading = (type) => {
7225
+ const { dataSources, isLoading } = useWidgetContext(type);
7226
+ const { currentPage } = useWidgetPage(type);
7227
+ return useMemo(() => !!currentPage?.dataSources?.length && !dataSources?.length && !!isLoading, [currentPage?.dataSources?.length, dataSources?.length, isLoading]);
7228
+ };
7229
+
7178
7230
  /* eslint-disable max-lines */
7179
- const toConditionsArray = (value) => Array.isArray(value) ? value : value ? [value] : [];
7180
7231
  const useDataSources = ({ type: widgetType, config, attributes, filters, layerParams, eqlParameters, }) => {
7181
- const { ewktGeometry, api } = useGlobalContext();
7232
+ const { ewktGeometry, ewktExtent, zoomLevel, api } = useGlobalContext();
7182
7233
  const { dataSources, layerInfo } = useWidgetContext(widgetType);
7183
7234
  const { dataSources: projectDataSources } = useWidgetContext(WidgetType.Dashboard);
7184
7235
  const { filters: configFilters, dataSources: configDataSources } = config || {};
@@ -7206,6 +7257,8 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
7206
7257
  attributes,
7207
7258
  filters: configFilters,
7208
7259
  geometry: ewktGeometry,
7260
+ extent: ewktExtent,
7261
+ zoomLevel,
7209
7262
  layerInfo,
7210
7263
  dataSources,
7211
7264
  projectDataSources,
@@ -7280,6 +7333,8 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
7280
7333
  configFilters,
7281
7334
  filters: selectedFilters,
7282
7335
  geometry: ewktGeometry,
7336
+ extent: ewktExtent,
7337
+ zoomLevel,
7283
7338
  attributes,
7284
7339
  layerParams,
7285
7340
  eqlParameters,
@@ -7301,6 +7356,8 @@ const useDataSources = ({ type: widgetType, config, attributes, filters, layerPa
7301
7356
  dataSources,
7302
7357
  configFilters,
7303
7358
  ewktGeometry,
7359
+ ewktExtent,
7360
+ zoomLevel,
7304
7361
  api,
7305
7362
  attributes,
7306
7363
  layerParams,
@@ -15470,7 +15527,8 @@ const getRenderElement = ({ t, config, elementConfig, attributes = [], layerInfo
15470
15527
 
15471
15528
  const ElementModal = memo(({ type = WidgetType.Dashboard, elementConfig }) => {
15472
15529
  const { config } = useWidgetConfig(type);
15473
- const { expandedContainers, attributes, isLoading } = useWidgetContext(type);
15530
+ const { expandedContainers, attributes } = useWidgetContext(type);
15531
+ const isDataSourceLoading = useDataSourceLoading(type);
15474
15532
  const [isOpen, setIsOpen] = useState(false);
15475
15533
  const { options } = elementConfig || {};
15476
15534
  const { modalId, icon } = options || {};
@@ -15490,7 +15548,7 @@ const ElementModal = memo(({ type = WidgetType.Dashboard, elementConfig }) => {
15490
15548
  return null;
15491
15549
  const { options: modalOptions } = modalConfig;
15492
15550
  const { title, maxWidth, minWidth, minHeight } = modalOptions || {};
15493
- return (jsxs(Fragment$1, { children: [jsx(ModalIcon, { kind: icon || "new_window", onClick: handleOpen, children: title }), jsxs(Dialog, { maxWidth: maxWidth, minWidth: minWidth, minHeight: minHeight, isOpen: isOpen, modal: true, onCloseRequest: handleClose, style: { paddingBottom: "2rem" }, children: [jsx(DialogTitle, { children: jsxs(Flex, { justifyContent: "space-between", alignItems: "center", children: [!!title && jsx("span", { children: title }), jsx(IconButton, { kind: "close", onClick: handleClose })] }) }), jsx(DialogContent, { children: isLoading ? (jsx(DashboardLoading, {})) : (jsx(Container, { isColumn: true, noBorders: true, children: jsx(ContainerChildren, { type: type, items: modalContent, isMain: true, renderElement: renderElement }) })) })] })] }));
15551
+ return (jsxs(Fragment$1, { children: [jsx(ModalIcon, { kind: icon || "new_window", onClick: handleOpen, children: title }), jsxs(Dialog, { maxWidth: maxWidth, minWidth: minWidth, minHeight: minHeight, isOpen: isOpen, modal: true, onCloseRequest: handleClose, style: { paddingBottom: "2rem" }, children: [jsx(DialogTitle, { children: jsxs(Flex, { justifyContent: "space-between", alignItems: "center", children: [!!title && jsx("span", { children: title }), jsx(IconButton, { kind: "close", onClick: handleClose })] }) }), jsx(DialogContent, { children: isDataSourceLoading ? (jsx(DashboardLoading, {})) : (jsx(Container, { isColumn: true, noBorders: true, children: jsx(ContainerChildren, { type: type, items: modalContent, isMain: true, renderElement: renderElement }) })) })] })] }));
15494
15552
  });
15495
15553
 
15496
15554
  const elementComponents = {
@@ -16842,6 +16900,25 @@ const getFilterValue = ({ selectedFilters, configFilters, filterName, newValue,
16842
16900
  return valueType === "single" ? newValue : valueType === "range" ? [newValue, newValue] : [newValue];
16843
16901
  };
16844
16902
 
16903
+ /** Условие источника задаётся строкой или массивом строк — приводим к массиву для единообразного обхода. */
16904
+ const toConditionsArray = (value) => Array.isArray(value) ? value : value ? [value] : [];
16905
+
16906
+ const MAP_VIEW_PLACEHOLDERS = MAP_VIEW_FILTER_NAMES.map(name => `${FILTER_PREFIX}${name}`);
16907
+ // Та же граница, что и при подстановке в `formatDataSourceCondition`: составные формы
16908
+ // (`%zoomLevel`, `%extent_id`, `%zoom.min`) принадлежат пользовательским фильтрам, не карте.
16909
+ const hasMapViewPlaceholder = (value) => MAP_VIEW_PLACEHOLDERS.some(placeholder => new RegExp(`${placeholder}(?![\\w.])`).test(value));
16910
+ /**
16911
+ * Источники, чей запрос зависит от текущего вида карты — в `parameters` или `condition` у них
16912
+ * есть `%extent` / `%zoom`. Перезапрашивают при движении карты только их: иначе каждый пан
16913
+ * дёргал бы все запросы страницы.
16914
+ */
16915
+ const getMapViewDataSources = (dataSources) => dataSources?.filter(({ parameters, condition }) => {
16916
+ const hasInParameters = Object.values(parameters ?? {}).some(value => typeof value === "string" && MAP_VIEW_PLACEHOLDERS.includes(value));
16917
+ if (hasInParameters)
16918
+ return true;
16919
+ return toConditionsArray(condition).some(hasMapViewPlaceholder);
16920
+ }) ?? [];
16921
+
16845
16922
  const getFormattedAttributes = (t, data, attributes, config) => {
16846
16923
  const showOtherItems = config?.options?.otherItems < data?.length;
16847
16924
  const otherIndex = config?.options?.otherItems + 1;
@@ -17418,11 +17495,9 @@ const DashboardLoading = memo(() => {
17418
17495
  });
17419
17496
 
17420
17497
  const Dashboard = memo(({ type = WidgetType.Dashboard, noBorders }) => {
17421
- const { dataSources, isLoading } = useWidgetContext(type);
17422
- const { currentPage } = useWidgetPage(type);
17498
+ const isDataSourceLoading = useDataSourceLoading(type);
17423
17499
  const isDiffPage = useDiffPage(type);
17424
- const dataSourceLoading = useMemo(() => !!currentPage?.dataSources?.length && !dataSources?.length && isLoading, [currentPage?.dataSources?.length, dataSources?.length, isLoading]);
17425
- if (dataSourceLoading || isDiffPage) {
17500
+ if (isDataSourceLoading || isDiffPage) {
17426
17501
  return (jsx(DashboardLoading, {}));
17427
17502
  }
17428
17503
  return (jsx(PagesContainer, { type: type, noBorders: noBorders }));
@@ -18049,5 +18124,5 @@ const DEFAULT_HEATMAP_STYLE = {
18049
18124
  ],
18050
18125
  };
18051
18126
 
18052
- export { ALIGNMENTS, ALIGN_ITEMS, ATTRIBUTE_ICON_ELEMENT_TYPES, AddButtonRow, AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttachmentContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, BaseMapTheme, CHART_TYPES, COMPACT_FRACTION_DIGITS, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CONTAINERS_GROUP_DEFAULTS, CONTAINER_BODY_ATTRIBUTE, CONTAINER_BODY_FILL_STYLE, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, Container, ContainerChildren, ContainerLoading, ContainerRoot, 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_STROKE_WIDTH, DEFAULT_CIRCLE_STYLE, DEFAULT_COLOR, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_BASE, DEFAULT_FILL_EXTRUSION_HEIGHT, DEFAULT_FILL_EXTRUSION_STYLE, DEFAULT_FILL_EXTRUSION_VERTICAL_GRADIENT, DEFAULT_FILL_STYLE, DEFAULT_FILTER_PADDING, DEFAULT_GRID_GAP, DEFAULT_HEATMAP_COLOR, DEFAULT_HEATMAP_INTENSITY, DEFAULT_HEATMAP_RADIUS, DEFAULT_HEATMAP_STYLE, DEFAULT_HEATMAP_WEIGHT, DEFAULT_ICON_ANCHOR, DEFAULT_ICON_OVERLAP, DEFAULT_ICON_PADDING, DEFAULT_ICON_ROTATE, DEFAULT_ICON_SIZE, 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_SYMBOL_COLOR, DEFAULT_SYMBOL_HALO_COLOR, DEFAULT_SYMBOL_PLACEMENT, DEFAULT_SYMBOL_SPACING, DEFAULT_SYMBOL_STYLE, DEFAULT_TEXT_ANCHOR, DEFAULT_TEXT_JUSTIFY, DEFAULT_TEXT_SIZE, DEFAULT_TEXT_TRANSFORM, DEFAULT_TRACK_FR, DEFAULT_TRANSLATE, DEFAULT_ZOOM, DRAG_THRESHOLD_PX, 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, ElementTable, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILL_SIZE, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FR_PRECISION, FeatureCardBackgroundHeader, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GRID_AUTO_FILL_DEFAULTS, GRID_CELL_ATTR, GRID_CELL_ID_PREFIX, GRID_DRAGGING_ATTR, GRID_DRAG_SOURCE_ATTR, GRID_DROP_TARGET_ATTR, GRID_FILL_DEFAULTS, GRID_HANDLE_ATTR, GRID_HANDLE_PROPS, GRID_ROW_ID_PREFIX, GlobalContext, GlobalProvider, GridRowContainer, HANDLE_BLEED_PX, 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, MAX_TRACKS, MIN_TRACK_PX, MIN_TRACK_RATIO, Map$1 as Map, MapContext, MapProvider, NO_CELL_DRAG_SELECTOR, 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, StructuredDataContainer, SvgImage, TILE_ALIGNMENTS, TIME_ZONE_FORMAT, TITLE_SLOT_IDS, 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, buildGridTemplate, buildTrackTemplate, checkEqualOrIncludes, checkIsLoading, collectConfigIds, containsNodeId, createConfigLayer, createConfigPage, createGridCell, createGridIdFactory, createGridRow, createNewPageId, createSaveNotificationId, dateOptions, debounce, decimalOpacityToHex, enrichStyleItemsWithIds, enrichStyleModelsWithIds, eqlParametersToPayload, fetchQueryDescription, findAttributeInExpression, findCellContext, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, geometryToEwkt, getActualExtrusionHeight, getAttributeByName, getAttributeConfigurationByName, getAttributeIconElement, getAttributeIconUrl, getAttributeValue, getAttributesConfiguration, getAverageTrackSize, 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, getLayoutChildren, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getStyleAttributes, getSvgUrl, getTemplateNameFromAttribute, getThemeByName, getTotalFromAttributes, getTotalFromRelatedFeatures, getTrackSize, getTrackSizeKey, getTrackSizes, getWrapperSizeStyle, hexToRgba, isEmptyElementValue, isEmptyValue, isFeaturesFilterValue, isFillSize, isFrSize, isGridNode, isHiddenEmptyValue, isHookActive, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isRootOwningContainer, isTreeFilterValue, isVisibleContainer, mapNodeById, mergeAttributeConfigurations, metersPerPixel, noMarginMixin, numberOptions, parseFrValue, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, removeTracks, replaceNodesByIds, rgbToHex, roundFr, roundTotalSum, setLayoutChildren, sizeCssMixin, sliceShownOtherItems, stretchPalette, timeOptions, toCssSize, toFrSize, toPxNumber, toRenderableValue, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, updateDataSource, useAfterSave, useAppHeight, useAttachmentItems, useAttachmentPreviewImages, useAutoCompleteControl, useBeforeSave, useChartChange, useChartData, useContainerAttributes, useContainerRoot, 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, withTrackSize };
18127
+ export { ALIGNMENTS, ALIGN_ITEMS, ATTRIBUTE_ICON_ELEMENT_TYPES, AddButtonRow, AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttachmentContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, BaseMapTheme, CHART_TYPES, COMPACT_FRACTION_DIGITS, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CONTAINERS_GROUP_DEFAULTS, CONTAINER_BODY_ATTRIBUTE, CONTAINER_BODY_FILL_STYLE, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, Container, ContainerChildren, ContainerLoading, ContainerRoot, 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_STROKE_WIDTH, DEFAULT_CIRCLE_STYLE, DEFAULT_COLOR, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_BASE, DEFAULT_FILL_EXTRUSION_HEIGHT, DEFAULT_FILL_EXTRUSION_STYLE, DEFAULT_FILL_EXTRUSION_VERTICAL_GRADIENT, DEFAULT_FILL_STYLE, DEFAULT_FILTER_PADDING, DEFAULT_GRID_GAP, DEFAULT_HEATMAP_COLOR, DEFAULT_HEATMAP_INTENSITY, DEFAULT_HEATMAP_RADIUS, DEFAULT_HEATMAP_STYLE, DEFAULT_HEATMAP_WEIGHT, DEFAULT_ICON_ANCHOR, DEFAULT_ICON_OVERLAP, DEFAULT_ICON_PADDING, DEFAULT_ICON_ROTATE, DEFAULT_ICON_SIZE, 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_SYMBOL_COLOR, DEFAULT_SYMBOL_HALO_COLOR, DEFAULT_SYMBOL_PLACEMENT, DEFAULT_SYMBOL_SPACING, DEFAULT_SYMBOL_STYLE, DEFAULT_TEXT_ANCHOR, DEFAULT_TEXT_JUSTIFY, DEFAULT_TEXT_SIZE, DEFAULT_TEXT_TRANSFORM, DEFAULT_TRACK_FR, DEFAULT_TRANSLATE, DEFAULT_ZOOM, DRAG_THRESHOLD_PX, 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, EXTENT_FILTER_NAME, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, ElementSlideshow, ElementSvg, ElementTable, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILL_SIZE, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FR_PRECISION, FeatureCardBackgroundHeader, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GEOMETRY_FILTER_NAME, GRID_AUTO_FILL_DEFAULTS, GRID_CELL_ATTR, GRID_CELL_ID_PREFIX, GRID_DRAGGING_ATTR, GRID_DRAG_SOURCE_ATTR, GRID_DROP_TARGET_ATTR, GRID_FILL_DEFAULTS, GRID_HANDLE_ATTR, GRID_HANDLE_PROPS, GRID_ROW_ID_PREFIX, GlobalContext, GlobalProvider, GridRowContainer, HANDLE_BLEED_PX, 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, MAP_VIEW_FILTER_NAMES, MAX_CHART_WIDTH, MAX_TRACKS, MIN_TRACK_PX, MIN_TRACK_RATIO, Map$1 as Map, MapContext, MapProvider, NO_CELL_DRAG_SELECTOR, 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, StructuredDataContainer, SvgImage, TILE_ALIGNMENTS, TIME_ZONE_FORMAT, TITLE_SLOT_IDS, TabsContainer, TextTrim, ThemeName, TitleContainer, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, VIEW_MODES, WidgetType, ZOOM_FILTER_NAME, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyTreeFilterToCondition, applyVarsToCondition, asAttributeName, asChartId, asContainerId, asDataSourceName, asFilterName, asLayerName, asModalId, asResourceId, asTabId, buildGridTemplate, buildTrackTemplate, checkEqualOrIncludes, checkIsLoading, collectConfigIds, containsNodeId, createConfigLayer, createConfigPage, createGridCell, createGridIdFactory, createGridRow, createNewPageId, createSaveNotificationId, dateOptions, debounce, decimalOpacityToHex, enrichStyleItemsWithIds, enrichStyleModelsWithIds, eqlParametersToPayload, fetchQueryDescription, findAttributeInExpression, findCellContext, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, geometryToEwkt, getActualExtrusionHeight, getAttributeByName, getAttributeConfigurationByName, getAttributeIconElement, getAttributeIconUrl, getAttributeValue, getAttributesConfiguration, getAverageTrackSize, 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, getLayoutChildren, getMapViewDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getStyleAttributes, getSvgUrl, getTemplateNameFromAttribute, getThemeByName, getTotalFromAttributes, getTotalFromRelatedFeatures, getTrackSize, getTrackSizeKey, getTrackSizes, getWrapperSizeStyle, hexToRgba, isEmptyElementValue, isEmptyValue, isFeaturesFilterValue, isFillSize, isFrSize, isGridNode, isHiddenEmptyValue, isHookActive, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isRootOwningContainer, isTreeFilterValue, isVisibleContainer, mapNodeById, mergeAttributeConfigurations, metersPerPixel, noMarginMixin, numberOptions, parseFrValue, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, removeTracks, replaceNodesByIds, rgbToHex, roundFr, roundTotalSum, setLayoutChildren, sizeCssMixin, sliceShownOtherItems, stretchPalette, timeOptions, toConditionsArray, toCssSize, toFrSize, toPxNumber, toRenderableValue, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, updateDataSource, useAfterSave, useAppHeight, useAttachmentItems, useAttachmentPreviewImages, useAutoCompleteControl, useBeforeSave, useChartChange, useChartData, useContainerAttributes, useContainerRoot, useCurrentPageLayers, useCustomFeatureSelect, useDashboardHeader, useDataSourceLoading, 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, withTrackSize };
18053
18128
  //# sourceMappingURL=react.esm.js.map