@evergis/react 3.1.74 → 3.1.75
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/LogTerminal/index.d.ts +9 -0
- package/dist/components/Dashboard/components/LogTerminal/styled.d.ts +1 -0
- package/dist/components/Dashboard/components/index.d.ts +1 -0
- package/dist/index.js +127 -120
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +127 -121
- package/dist/react.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/react.esm.js
CHANGED
|
@@ -22,9 +22,9 @@ import 'mapbox-gl/dist/mapbox-gl.css';
|
|
|
22
22
|
import { Swiper, SwiperSlide } from 'swiper/react';
|
|
23
23
|
import ReactMarkdown from 'react-markdown';
|
|
24
24
|
import remarkGfm from 'remark-gfm';
|
|
25
|
-
import '@xterm/xterm/css/xterm.css';
|
|
26
25
|
import { Terminal } from '@xterm/xterm';
|
|
27
26
|
import { FitAddon } from '@xterm/addon-fit';
|
|
27
|
+
import '@xterm/xterm/css/xterm.css';
|
|
28
28
|
|
|
29
29
|
const AddFeatureButton = ({ title, icon = "feature_add" /* , layerName, geometryType*/ }) => {
|
|
30
30
|
// const [, handleAddFeature] = useFeatureCreator(layerName, geometryType);
|
|
@@ -5693,8 +5693,8 @@ const TwoColumnContainer = memo(({ config, elementConfig, type, renderElement })
|
|
|
5693
5693
|
const icon = children?.[iconIndex];
|
|
5694
5694
|
const hasIcon = !!icon;
|
|
5695
5695
|
const elementChildren = elementConfig?.children?.map(child => ({
|
|
5696
|
-
...child,
|
|
5697
5696
|
type: "attributeValue",
|
|
5697
|
+
...child,
|
|
5698
5698
|
attributeName: attribute,
|
|
5699
5699
|
options: { noUnits: hasUnits, ...child.options },
|
|
5700
5700
|
}));
|
|
@@ -6846,121 +6846,6 @@ const StatusBadge = styled(Chip) `
|
|
|
6846
6846
|
color: ${({ theme }) => theme.palette.iconContrast};
|
|
6847
6847
|
`;
|
|
6848
6848
|
|
|
6849
|
-
const TerminalWrapper = styled.div `
|
|
6850
|
-
flex: 1;
|
|
6851
|
-
overflow: hidden;
|
|
6852
|
-
padding: 0;
|
|
6853
|
-
margin: 0;
|
|
6854
|
-
box-sizing: border-box;
|
|
6855
|
-
min-height: 0;
|
|
6856
|
-
|
|
6857
|
-
.xterm-viewport {
|
|
6858
|
-
overflow-y: auto;
|
|
6859
|
-
}
|
|
6860
|
-
|
|
6861
|
-
.xterm-screen .xterm-rows span {
|
|
6862
|
-
letter-spacing: 0 !important;
|
|
6863
|
-
}
|
|
6864
|
-
`;
|
|
6865
|
-
|
|
6866
|
-
const LogTerminal = ({ log }) => {
|
|
6867
|
-
const terminalRef = useRef(null);
|
|
6868
|
-
const xtermRef = useRef(null);
|
|
6869
|
-
const fitAddonRef = useRef(null);
|
|
6870
|
-
const previousLogRef = useRef("");
|
|
6871
|
-
const theme = useTheme();
|
|
6872
|
-
useEffect(() => {
|
|
6873
|
-
if (!terminalRef.current)
|
|
6874
|
-
return;
|
|
6875
|
-
// Create terminal instance
|
|
6876
|
-
const terminal = new Terminal({
|
|
6877
|
-
cursorBlink: false,
|
|
6878
|
-
fontSize: 12,
|
|
6879
|
-
fontFamily: '"Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace',
|
|
6880
|
-
scrollback: 10000,
|
|
6881
|
-
convertEol: true,
|
|
6882
|
-
lineHeight: 1.5,
|
|
6883
|
-
theme: {
|
|
6884
|
-
background: theme.palette.background,
|
|
6885
|
-
foreground: theme.palette.textPrimary,
|
|
6886
|
-
cursor: theme.palette.primary,
|
|
6887
|
-
},
|
|
6888
|
-
});
|
|
6889
|
-
// Create fit addon
|
|
6890
|
-
const fitAddon = new FitAddon();
|
|
6891
|
-
terminal.loadAddon(fitAddon);
|
|
6892
|
-
// Open terminal
|
|
6893
|
-
terminal.open(terminalRef.current);
|
|
6894
|
-
fitAddon.fit();
|
|
6895
|
-
// Store refs
|
|
6896
|
-
xtermRef.current = terminal;
|
|
6897
|
-
fitAddonRef.current = fitAddon;
|
|
6898
|
-
// Handle window resize
|
|
6899
|
-
const handleResize = () => {
|
|
6900
|
-
fitAddon.fit();
|
|
6901
|
-
};
|
|
6902
|
-
window.addEventListener("resize", handleResize);
|
|
6903
|
-
// Cleanup
|
|
6904
|
-
return () => {
|
|
6905
|
-
window.removeEventListener("resize", handleResize);
|
|
6906
|
-
terminal.dispose();
|
|
6907
|
-
xtermRef.current = null;
|
|
6908
|
-
fitAddonRef.current = null;
|
|
6909
|
-
};
|
|
6910
|
-
}, [theme]);
|
|
6911
|
-
// Update log content
|
|
6912
|
-
useEffect(() => {
|
|
6913
|
-
if (!xtermRef.current)
|
|
6914
|
-
return;
|
|
6915
|
-
// Handle different log types
|
|
6916
|
-
if (typeof log === "string") {
|
|
6917
|
-
// For string logs, only write the new content (append mode)
|
|
6918
|
-
const previousLog = previousLogRef.current;
|
|
6919
|
-
if (log !== previousLog) {
|
|
6920
|
-
if (log.startsWith(previousLog)) {
|
|
6921
|
-
// Log is accumulated - write only the new part
|
|
6922
|
-
const newContent = log.substring(previousLog.length);
|
|
6923
|
-
xtermRef.current.write(newContent);
|
|
6924
|
-
}
|
|
6925
|
-
else {
|
|
6926
|
-
// Log was replaced completely - clear and write all
|
|
6927
|
-
xtermRef.current.clear();
|
|
6928
|
-
xtermRef.current.write(log);
|
|
6929
|
-
}
|
|
6930
|
-
previousLogRef.current = log;
|
|
6931
|
-
}
|
|
6932
|
-
}
|
|
6933
|
-
else if (typeof log === "object") {
|
|
6934
|
-
// JSON object (results) - always replace
|
|
6935
|
-
xtermRef.current.clear();
|
|
6936
|
-
const formatted = JSON.stringify(log, null, 2);
|
|
6937
|
-
xtermRef.current.write(formatted);
|
|
6938
|
-
previousLogRef.current = "";
|
|
6939
|
-
}
|
|
6940
|
-
else if (!log) {
|
|
6941
|
-
// No log - clear terminal
|
|
6942
|
-
xtermRef.current.clear();
|
|
6943
|
-
previousLogRef.current = "";
|
|
6944
|
-
}
|
|
6945
|
-
// Scroll to bottom
|
|
6946
|
-
xtermRef.current.scrollToBottom();
|
|
6947
|
-
}, [log]);
|
|
6948
|
-
useEffect(() => {
|
|
6949
|
-
if (!fitAddonRef.current)
|
|
6950
|
-
return;
|
|
6951
|
-
const resizeObserver = new ResizeObserver(() => {
|
|
6952
|
-
fitAddonRef.current?.fit();
|
|
6953
|
-
});
|
|
6954
|
-
if (terminalRef.current) {
|
|
6955
|
-
resizeObserver.observe(terminalRef.current);
|
|
6956
|
-
}
|
|
6957
|
-
return () => {
|
|
6958
|
-
resizeObserver.disconnect();
|
|
6959
|
-
};
|
|
6960
|
-
}, []);
|
|
6961
|
-
return jsx(TerminalWrapper, { ref: terminalRef });
|
|
6962
|
-
};
|
|
6963
|
-
|
|
6964
6849
|
const STATUS_TRANSLATION_KEYS = {
|
|
6965
6850
|
[RemoteTaskStatus.Process]: "taskProcess",
|
|
6966
6851
|
[RemoteTaskStatus.Completed]: "taskCompleted",
|
|
@@ -7430,7 +7315,7 @@ const FeatureCardGradientHeader = ({ isRow }) => {
|
|
|
7430
7315
|
};
|
|
7431
7316
|
|
|
7432
7317
|
const HeaderFontColorMixin = css `
|
|
7433
|
-
${HeaderTitleContainer}, ${LayerDescription} {
|
|
7318
|
+
${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
|
|
7434
7319
|
color: ${({ $fontColor }) => $fontColor};
|
|
7435
7320
|
}
|
|
7436
7321
|
`;
|
|
@@ -7979,8 +7864,13 @@ const LocalLinkButton = styled(IconButton).attrs(() => ({
|
|
|
7979
7864
|
width: 1rem;
|
|
7980
7865
|
height: 1rem;
|
|
7981
7866
|
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7867
|
+
padding: 0;
|
|
7982
7868
|
border-radius: 50%;
|
|
7983
7869
|
|
|
7870
|
+
:hover {
|
|
7871
|
+
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7872
|
+
}
|
|
7873
|
+
|
|
7984
7874
|
span[kind] {
|
|
7985
7875
|
display: flex;
|
|
7986
7876
|
justify-content: center;
|
|
@@ -8010,8 +7900,8 @@ const LocalLink = memo(({ link }) => {
|
|
|
8010
7900
|
const ElementLink = memo(({ type, elementConfig }) => {
|
|
8011
7901
|
const { attributes } = useWidgetContext(type);
|
|
8012
7902
|
const attribute = getAttributeByName(elementConfig?.attributeName, attributes);
|
|
8013
|
-
const link = attribute?.value;
|
|
8014
|
-
if (!link
|
|
7903
|
+
const link = getResourceUrl(attribute?.value?.toString());
|
|
7904
|
+
if (!link)
|
|
8015
7905
|
return null;
|
|
8016
7906
|
return link.startsWith("http") ? jsx(ExternalLink, { onClick: () => window.open(link) }) : jsx(LocalLink, { link: link });
|
|
8017
7907
|
});
|
|
@@ -10792,6 +10682,122 @@ const HiddenTitleItems = memo(({ elementConfig, config, type, filter }) => {
|
|
|
10792
10682
|
getConfigFilter(filterName, configFilters)?.defaultValue, index)) }));
|
|
10793
10683
|
});
|
|
10794
10684
|
|
|
10685
|
+
const TerminalWrapper = styled.div `
|
|
10686
|
+
flex: 1;
|
|
10687
|
+
overflow: hidden;
|
|
10688
|
+
padding: 0;
|
|
10689
|
+
margin: 0;
|
|
10690
|
+
box-sizing: border-box;
|
|
10691
|
+
min-height: 0;
|
|
10692
|
+
|
|
10693
|
+
.xterm-viewport {
|
|
10694
|
+
overflow-y: auto;
|
|
10695
|
+
}
|
|
10696
|
+
|
|
10697
|
+
.xterm-screen .xterm-rows span {
|
|
10698
|
+
letter-spacing: 0 !important;
|
|
10699
|
+
}
|
|
10700
|
+
`;
|
|
10701
|
+
|
|
10702
|
+
const LogTerminal = ({ log, terminalOptions, className, styles }) => {
|
|
10703
|
+
const terminalRef = useRef(null);
|
|
10704
|
+
const xtermRef = useRef(null);
|
|
10705
|
+
const fitAddonRef = useRef(null);
|
|
10706
|
+
const previousLogRef = useRef("");
|
|
10707
|
+
const theme = useTheme();
|
|
10708
|
+
useEffect(() => {
|
|
10709
|
+
if (!terminalRef.current)
|
|
10710
|
+
return;
|
|
10711
|
+
// Create terminal instance
|
|
10712
|
+
const terminal = new Terminal({
|
|
10713
|
+
cursorBlink: false,
|
|
10714
|
+
fontSize: 12,
|
|
10715
|
+
fontFamily: '"Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace',
|
|
10716
|
+
scrollback: 10000,
|
|
10717
|
+
convertEol: true,
|
|
10718
|
+
lineHeight: 1.5,
|
|
10719
|
+
theme: {
|
|
10720
|
+
background: theme.palette.background,
|
|
10721
|
+
foreground: theme.palette.textPrimary,
|
|
10722
|
+
cursor: theme.palette.primary,
|
|
10723
|
+
},
|
|
10724
|
+
...terminalOptions,
|
|
10725
|
+
});
|
|
10726
|
+
// Create fit addon
|
|
10727
|
+
const fitAddon = new FitAddon();
|
|
10728
|
+
terminal.loadAddon(fitAddon);
|
|
10729
|
+
// Open terminal
|
|
10730
|
+
terminal.open(terminalRef.current);
|
|
10731
|
+
fitAddon.fit();
|
|
10732
|
+
// Store refs
|
|
10733
|
+
xtermRef.current = terminal;
|
|
10734
|
+
fitAddonRef.current = fitAddon;
|
|
10735
|
+
// Handle window resize
|
|
10736
|
+
const handleResize = () => {
|
|
10737
|
+
fitAddon.fit();
|
|
10738
|
+
};
|
|
10739
|
+
window.addEventListener("resize", handleResize);
|
|
10740
|
+
// Cleanup
|
|
10741
|
+
return () => {
|
|
10742
|
+
window.removeEventListener("resize", handleResize);
|
|
10743
|
+
terminal.dispose();
|
|
10744
|
+
xtermRef.current = null;
|
|
10745
|
+
fitAddonRef.current = null;
|
|
10746
|
+
};
|
|
10747
|
+
}, [theme, terminalOptions]);
|
|
10748
|
+
// Update log content
|
|
10749
|
+
useEffect(() => {
|
|
10750
|
+
if (!xtermRef.current)
|
|
10751
|
+
return;
|
|
10752
|
+
// Handle different log types
|
|
10753
|
+
if (typeof log === "string") {
|
|
10754
|
+
// For string logs, only write the new content (append mode)
|
|
10755
|
+
const previousLog = previousLogRef.current;
|
|
10756
|
+
if (log !== previousLog) {
|
|
10757
|
+
if (log.startsWith(previousLog)) {
|
|
10758
|
+
// Log is accumulated - write only the new part
|
|
10759
|
+
const newContent = log.substring(previousLog.length);
|
|
10760
|
+
xtermRef.current.write(newContent);
|
|
10761
|
+
}
|
|
10762
|
+
else {
|
|
10763
|
+
// Log was replaced completely - clear and write all
|
|
10764
|
+
xtermRef.current.clear();
|
|
10765
|
+
xtermRef.current.write(log);
|
|
10766
|
+
}
|
|
10767
|
+
previousLogRef.current = log;
|
|
10768
|
+
}
|
|
10769
|
+
}
|
|
10770
|
+
else if (typeof log === "object") {
|
|
10771
|
+
// JSON object (results) - always replace
|
|
10772
|
+
xtermRef.current.clear();
|
|
10773
|
+
const formatted = JSON.stringify(log, null, 2);
|
|
10774
|
+
xtermRef.current.write(formatted);
|
|
10775
|
+
previousLogRef.current = "";
|
|
10776
|
+
}
|
|
10777
|
+
else if (!log) {
|
|
10778
|
+
// No log - clear terminal
|
|
10779
|
+
xtermRef.current.clear();
|
|
10780
|
+
previousLogRef.current = "";
|
|
10781
|
+
}
|
|
10782
|
+
// Scroll to bottom
|
|
10783
|
+
xtermRef.current.scrollToBottom();
|
|
10784
|
+
}, [log]);
|
|
10785
|
+
useEffect(() => {
|
|
10786
|
+
if (!fitAddonRef.current)
|
|
10787
|
+
return;
|
|
10788
|
+
const resizeObserver = new ResizeObserver(() => {
|
|
10789
|
+
fitAddonRef.current?.fit();
|
|
10790
|
+
});
|
|
10791
|
+
if (terminalRef.current) {
|
|
10792
|
+
resizeObserver.observe(terminalRef.current);
|
|
10793
|
+
}
|
|
10794
|
+
return () => {
|
|
10795
|
+
resizeObserver.disconnect();
|
|
10796
|
+
};
|
|
10797
|
+
}, []);
|
|
10798
|
+
return jsx(TerminalWrapper, { ref: terminalRef, className: className, style: styles });
|
|
10799
|
+
};
|
|
10800
|
+
|
|
10795
10801
|
const PageNavigator = styled(Flex) `
|
|
10796
10802
|
margin-right: -0.5rem;
|
|
10797
10803
|
align-items: center;
|
|
@@ -11109,5 +11115,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
|
|
|
11109
11115
|
}, children: children }), upperSiblings] }));
|
|
11110
11116
|
};
|
|
11111
11117
|
|
|
11112
|
-
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, 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, 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 };
|
|
11118
|
+
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, 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 };
|
|
11113
11119
|
//# sourceMappingURL=react.esm.js.map
|