@evergis/react 4.0.57 → 4.0.59
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/headers/{FeatureCardGradientHeader → FeatureCardBackgroundHeader}/index.d.ts +1 -1
- package/dist/components/Dashboard/headers/{FeatureCardGradientHeader → FeatureCardBackgroundHeader}/styled.d.ts +1 -1
- package/dist/components/Dashboard/headers/FeatureCardDefaultHeader/styled.d.ts +1 -0
- package/dist/components/Dashboard/headers/index.d.ts +1 -1
- package/dist/components/Dashboard/types.d.ts +2 -1
- package/dist/index.js +68 -34
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +68 -34
- package/dist/react.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/react.esm.js
CHANGED
|
@@ -3403,7 +3403,7 @@ var HeaderTemplate;
|
|
|
3403
3403
|
(function (HeaderTemplate) {
|
|
3404
3404
|
HeaderTemplate["Default"] = "Default";
|
|
3405
3405
|
HeaderTemplate["Slideshow"] = "Slideshow";
|
|
3406
|
-
HeaderTemplate["
|
|
3406
|
+
HeaderTemplate["Background"] = "Background";
|
|
3407
3407
|
})(HeaderTemplate || (HeaderTemplate = {}));
|
|
3408
3408
|
var WidgetType;
|
|
3409
3409
|
(function (WidgetType) {
|
|
@@ -3836,8 +3836,12 @@ const formatAttributeValue = ({ t, type, value, stringFormat, noUnits = false })
|
|
|
3836
3836
|
return formatPointValue({ t, stringFormat, value: coordinates });
|
|
3837
3837
|
}
|
|
3838
3838
|
if (type === AttributeType.DateTime) {
|
|
3839
|
-
if (
|
|
3839
|
+
if (isNilValue) {
|
|
3840
3840
|
return null;
|
|
3841
|
+
}
|
|
3842
|
+
if (!stringFormat?.format) {
|
|
3843
|
+
return value;
|
|
3844
|
+
}
|
|
3841
3845
|
return formatDateValue(stringFormat, value);
|
|
3842
3846
|
}
|
|
3843
3847
|
if ([
|
|
@@ -8741,6 +8745,21 @@ const RowHeaderMixin = css `
|
|
|
8741
8745
|
max-width: calc(100% - 3.8rem);
|
|
8742
8746
|
}
|
|
8743
8747
|
`;
|
|
8748
|
+
const OverlayHeaderMixin = (overlay) => css `
|
|
8749
|
+
&&& {
|
|
8750
|
+
:after {
|
|
8751
|
+
content: "";
|
|
8752
|
+
z-index: 2;
|
|
8753
|
+
position: absolute;
|
|
8754
|
+
top: 0;
|
|
8755
|
+
left: 0;
|
|
8756
|
+
width: 100%;
|
|
8757
|
+
height: 100%;
|
|
8758
|
+
background: ${overlay};
|
|
8759
|
+
pointer-events: none;
|
|
8760
|
+
}
|
|
8761
|
+
}
|
|
8762
|
+
`;
|
|
8744
8763
|
const Header = styled(Flex) `
|
|
8745
8764
|
z-index: 1;
|
|
8746
8765
|
position: relative;
|
|
@@ -8751,6 +8770,8 @@ const Header = styled(Flex) `
|
|
|
8751
8770
|
overflow: hidden;
|
|
8752
8771
|
|
|
8753
8772
|
${({ $isRow }) => $isRow && RowHeaderMixin};
|
|
8773
|
+
|
|
8774
|
+
${({ $overlay }) => $overlay && OverlayHeaderMixin($overlay)};
|
|
8754
8775
|
`;
|
|
8755
8776
|
const DefaultHeaderWrapper = styled.div `
|
|
8756
8777
|
width: ${({ withPadding }) => (withPadding ? "100%" : "calc(100% + 1rem)")};
|
|
@@ -8861,8 +8882,8 @@ const FeatureCardDefaultHeader = ({ noFeature }) => {
|
|
|
8861
8882
|
const { config } = useWidgetConfig(WidgetType.FeatureCard);
|
|
8862
8883
|
const { header } = config || {};
|
|
8863
8884
|
const { options } = header || {};
|
|
8864
|
-
const { themeName, withPadding, column, height } = options || {};
|
|
8865
|
-
return (jsx(DefaultHeaderWrapper, { withPadding: withPadding, height: height, children: jsx(ThemeProvider, { theme: getThemeByName(themeName), children: jsx(Header, { "$isRow": !column, children: jsxs(HeaderFrontView, { isDefault: !column, children: [jsxs(HeaderContainer, { children: [jsx(HeaderLayerIcon, {}), jsx(HeaderTitle, { noFeature: noFeature })] }), jsx(FeatureCardButtons, {})] }) }) }) }));
|
|
8885
|
+
const { themeName, withPadding, column, height, overlay } = options || {};
|
|
8886
|
+
return (jsx(DefaultHeaderWrapper, { withPadding: withPadding, height: height, children: jsx(ThemeProvider, { theme: getThemeByName(themeName), children: jsx(Header, { "$overlay": overlay, "$isRow": !column, children: jsxs(HeaderFrontView, { isDefault: !column, children: [jsxs(HeaderContainer, { children: [jsx(HeaderLayerIcon, {}), jsx(HeaderTitle, { noFeature: noFeature })] }), jsx(FeatureCardButtons, {})] }) }) }) }));
|
|
8866
8887
|
};
|
|
8867
8888
|
|
|
8868
8889
|
const HeaderWrapperMixin = css `
|
|
@@ -8939,10 +8960,10 @@ const BottomBlurHeaderMixin = css `
|
|
|
8939
8960
|
&::after {
|
|
8940
8961
|
content: "";
|
|
8941
8962
|
position: absolute;
|
|
8942
|
-
|
|
8963
|
+
top: 0;
|
|
8943
8964
|
right: 0;
|
|
8944
8965
|
bottom: 0;
|
|
8945
|
-
|
|
8966
|
+
left: 0;
|
|
8946
8967
|
z-index: 11;
|
|
8947
8968
|
pointer-events: none;
|
|
8948
8969
|
background: ${({ theme: { palette } }) => palette.background};
|
|
@@ -8955,7 +8976,7 @@ const BottomBlurHeaderMixin = css `
|
|
|
8955
8976
|
z-index: 12;
|
|
8956
8977
|
}
|
|
8957
8978
|
`;
|
|
8958
|
-
const
|
|
8979
|
+
const BackgroundHeaderWrapper = styled.div `
|
|
8959
8980
|
${Header} {
|
|
8960
8981
|
width: calc(100% + 1rem);
|
|
8961
8982
|
height: ${({ $height }) => $height ? `${$height}px` : "auto"};
|
|
@@ -8974,24 +8995,6 @@ const GradientHeaderWrapper = styled.div `
|
|
|
8974
8995
|
${({ $bottomBlur }) => $bottomBlur && BottomBlurHeaderMixin};
|
|
8975
8996
|
`;
|
|
8976
8997
|
|
|
8977
|
-
const FeatureCardGradientHeader = () => {
|
|
8978
|
-
const { config } = useWidgetConfig(WidgetType.FeatureCard);
|
|
8979
|
-
const { header } = config || {};
|
|
8980
|
-
const { options } = header || {};
|
|
8981
|
-
const { fontColor, bgColor, height, bigIcon, withPadding, bottomBlur, themeName, column } = options || {};
|
|
8982
|
-
const renderElement = useHeaderRender(header);
|
|
8983
|
-
return (jsx(GradientHeaderWrapper, { "$fontColor": fontColor, "$bgColor": bgColor, "$height": height, "$bigIcon": bigIcon, "$withPadding": withPadding, "$bottomBlur": bottomBlur, children: jsx(ThemeProvider, { theme: getThemeByName(themeName), children: jsxs(Header, { "$isRow": !column, children: [jsxs(HeaderFrontView, { children: [jsxs(HeaderContainer, { column: column, children: [jsx(HeaderLayerIcon, {}), jsx(FeatureCardTitle, { title: renderElement({
|
|
8984
|
-
id: "title",
|
|
8985
|
-
wrap: false,
|
|
8986
|
-
}), description: renderElement({
|
|
8987
|
-
id: "description",
|
|
8988
|
-
wrap: false,
|
|
8989
|
-
}) })] }), jsx(FeatureCardButtons, {})] }), jsx(HeaderIcon, { children: renderElement({
|
|
8990
|
-
id: "icon",
|
|
8991
|
-
wrap: false,
|
|
8992
|
-
}) })] }) }) }));
|
|
8993
|
-
};
|
|
8994
|
-
|
|
8995
8998
|
const ImageContainerButton = styled(FlatButton) `
|
|
8996
8999
|
min-height: 1.5rem;
|
|
8997
9000
|
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
@@ -9106,6 +9109,7 @@ const SmallPreviewRight = styled(SmallPreviewControl).attrs(() => ({
|
|
|
9106
9109
|
`;
|
|
9107
9110
|
const imgSlideShowMixin = css `
|
|
9108
9111
|
&:nth-child(${({ prevIndex }) => prevIndex}) {
|
|
9112
|
+
visibility: visible;
|
|
9109
9113
|
z-index: 2;
|
|
9110
9114
|
position: absolute;
|
|
9111
9115
|
top: 0;
|
|
@@ -9113,6 +9117,7 @@ const imgSlideShowMixin = css `
|
|
|
9113
9117
|
right: 0;
|
|
9114
9118
|
bottom: 0;
|
|
9115
9119
|
opacity: 0;
|
|
9120
|
+
pointer-events: none;
|
|
9116
9121
|
|
|
9117
9122
|
animation-duration: 0.25s;
|
|
9118
9123
|
animation-name: fadeOut;
|
|
@@ -9154,6 +9159,7 @@ const SmallPreviewContainer$1 = styled.div `
|
|
|
9154
9159
|
}
|
|
9155
9160
|
|
|
9156
9161
|
img {
|
|
9162
|
+
visibility: hidden;
|
|
9157
9163
|
z-index: 0;
|
|
9158
9164
|
cursor: pointer;
|
|
9159
9165
|
position: absolute;
|
|
@@ -9166,6 +9172,7 @@ const SmallPreviewContainer$1 = styled.div `
|
|
|
9166
9172
|
object-fit: cover;
|
|
9167
9173
|
|
|
9168
9174
|
&:nth-child(${({ currentIndex }) => currentIndex}) {
|
|
9175
|
+
visibility: visible;
|
|
9169
9176
|
z-index: 1;
|
|
9170
9177
|
}
|
|
9171
9178
|
|
|
@@ -9180,7 +9187,7 @@ const NoLiveSnapshot = () => {
|
|
|
9180
9187
|
|
|
9181
9188
|
const SmallPreview = ({ images, totalCount, currentIndex, isLoading, setCurrentIndex, onClick, onNextPage }) => {
|
|
9182
9189
|
const { t } = useGlobalContext();
|
|
9183
|
-
const [prevIndex, setPrevIndex] = useState(currentIndex
|
|
9190
|
+
const [prevIndex, setPrevIndex] = useState(currentIndex);
|
|
9184
9191
|
const isPrevDisabled = currentIndex === 0;
|
|
9185
9192
|
const total = totalCount || images?.length || 0;
|
|
9186
9193
|
const isNextDisabled = currentIndex === total - 1;
|
|
@@ -9199,7 +9206,7 @@ const SmallPreview = ({ images, totalCount, currentIndex, isLoading, setCurrentI
|
|
|
9199
9206
|
onNextPage();
|
|
9200
9207
|
}
|
|
9201
9208
|
}, [currentIndex, images, isNextDisabled, onNextPage, setCurrentIndex]);
|
|
9202
|
-
return (jsxs(SmallPreviewContainer$1, { currentIndex: currentIndex + 1, prevIndex: prevIndex + 1, children: [isLoading && jsx(LinearProgress, {}), images.length > 1 && (jsxs(Fragment$1, { children: [jsx(SmallPreviewLeft, { "$isDisabled": isPrevDisabled, onClick: prev }), jsx(SmallPreviewRight, { "$isDisabled": isNextDisabled, onClick: next }), jsx(SmallPreviewCounter, { children: jsxs("div", { children: [currentIndex + 1, " ", t("of", { ns: "dashboard", defaultValue: "из" }), " ", total] }) })] })), jsx(SmallPreviewImages, { onClick: onClick, children: images.map(image => (jsx("img", { src: image.src, alt: "" },
|
|
9209
|
+
return (jsxs(SmallPreviewContainer$1, { currentIndex: currentIndex + 1, prevIndex: prevIndex + 1, children: [isLoading && jsx(LinearProgress, {}), images.length > 1 && (jsxs(Fragment$1, { children: [jsx(SmallPreviewLeft, { "$isDisabled": isPrevDisabled, onClick: prev }), jsx(SmallPreviewRight, { "$isDisabled": isNextDisabled, onClick: next }), jsx(SmallPreviewCounter, { children: jsxs("div", { children: [currentIndex + 1, " ", t("of", { ns: "dashboard", defaultValue: "из" }), " ", total] }) })] })), jsx(SmallPreviewImages, { onClick: onClick, children: images.map((image, index) => (jsx("img", { src: image.src, alt: "" }, index))) })] }));
|
|
9203
9210
|
};
|
|
9204
9211
|
|
|
9205
9212
|
// const DEFAULT_ARCHIVED_PERIOD = "#24h";
|
|
@@ -9774,7 +9781,7 @@ const ElementSlideshow = ({ elementConfig, type, renderElement }) => {
|
|
|
9774
9781
|
const { images } = useElementSlideshow({ type, elementConfig });
|
|
9775
9782
|
const handleOpenGallery = useCallback(() => setPreviewIndex(currentIndex), [currentIndex]);
|
|
9776
9783
|
const handleCloseGallery = useCallback(() => setPreviewIndex(null), []);
|
|
9777
|
-
return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && (jsxs(SmallPreviewContainer, { children: [jsx(SmallPreview, { images: images, currentIndex: currentIndex, setCurrentIndex: setCurrentIndex, onClick: handleOpenGallery }), previewIndex !== null && (jsx(Preview, { images: images, initialIndex: previewIndex, isOpen:
|
|
9784
|
+
return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && (jsxs(SmallPreviewContainer, { children: [jsx(SmallPreview, { images: images, currentIndex: currentIndex, setCurrentIndex: setCurrentIndex, onClick: handleOpenGallery }), previewIndex !== null && (jsx(Preview, { images: images, initialIndex: previewIndex, isOpen: true, onClose: handleCloseGallery }, previewIndex))] }))] }));
|
|
9778
9785
|
};
|
|
9779
9786
|
|
|
9780
9787
|
const ElementSvg = memo(({ type, elementConfig, ...rest }) => {
|
|
@@ -9828,7 +9835,8 @@ const SlideshowHeaderWrapper = styled.div `
|
|
|
9828
9835
|
position: absolute;
|
|
9829
9836
|
top: 0;
|
|
9830
9837
|
left: 0;
|
|
9831
|
-
|
|
9838
|
+
right: 0;
|
|
9839
|
+
pointer-events: none;
|
|
9832
9840
|
}
|
|
9833
9841
|
|
|
9834
9842
|
:before {
|
|
@@ -9877,16 +9885,42 @@ const HeaderSlideshow = styled.div `
|
|
|
9877
9885
|
min-height: inherit;
|
|
9878
9886
|
object-position: center;
|
|
9879
9887
|
object-fit: cover;
|
|
9888
|
+
transition: transform 0.3s ease;
|
|
9889
|
+
}
|
|
9890
|
+
|
|
9891
|
+
&:hover img {
|
|
9892
|
+
transform: scale(1.1);
|
|
9880
9893
|
}
|
|
9881
9894
|
`;
|
|
9882
9895
|
|
|
9896
|
+
const FeatureCardBackgroundHeader = () => {
|
|
9897
|
+
const { config } = useWidgetConfig(WidgetType.FeatureCard);
|
|
9898
|
+
const { header } = config || {};
|
|
9899
|
+
const { options } = header || {};
|
|
9900
|
+
const { fontColor, bgColor, height, overlay, bigIcon, withPadding, bottomBlur, themeName, column } = options || {};
|
|
9901
|
+
const renderElement = useHeaderRender(header);
|
|
9902
|
+
return (jsx(BackgroundHeaderWrapper, { "$fontColor": fontColor, "$bgColor": bgColor, "$height": height, "$bigIcon": bigIcon, "$withPadding": withPadding, "$bottomBlur": bottomBlur, children: jsx(ThemeProvider, { theme: getThemeByName(themeName), children: jsxs(Header, { "$overlay": overlay, "$isRow": !column, children: [jsxs(HeaderFrontView, { children: [jsxs(HeaderContainer, { column: column, children: [jsx(HeaderLayerIcon, {}), jsx(FeatureCardTitle, { title: renderElement({
|
|
9903
|
+
id: "title",
|
|
9904
|
+
wrap: false,
|
|
9905
|
+
}), description: renderElement({
|
|
9906
|
+
id: "description",
|
|
9907
|
+
wrap: false,
|
|
9908
|
+
}) })] }), jsx(FeatureCardButtons, {})] }), jsx(ImageContainerBg, { children: renderElement({
|
|
9909
|
+
id: "bgImage",
|
|
9910
|
+
wrap: false,
|
|
9911
|
+
}) }), jsx(HeaderIcon, { children: renderElement({
|
|
9912
|
+
id: "icon",
|
|
9913
|
+
wrap: false,
|
|
9914
|
+
}) })] }) }) }));
|
|
9915
|
+
};
|
|
9916
|
+
|
|
9883
9917
|
const FeatureCardSlideshowHeader = () => {
|
|
9884
9918
|
const { config } = useWidgetConfig(WidgetType.FeatureCard);
|
|
9885
9919
|
const { header } = config || {};
|
|
9886
9920
|
const { options } = header || {};
|
|
9887
|
-
const { height, fontColor, withPadding, themeName, column } = options || {};
|
|
9921
|
+
const { height, fontColor, withPadding, themeName, column, overlay } = options || {};
|
|
9888
9922
|
const renderElement = useHeaderRender(header);
|
|
9889
|
-
return (jsx(SlideshowHeaderWrapper, { fontColor: fontColor, withPadding: withPadding, height: height, big: true, children: jsx(ThemeProvider, { theme: getThemeByName(themeName), children: jsxs(Header, { "$isRow": !column, children: [jsxs(HeaderFrontView, { children: [jsxs(HeaderContainer, { column: column, children: [jsx(HeaderLayerIcon, {}), jsx(FeatureCardTitle, { title: renderElement({
|
|
9923
|
+
return (jsx(SlideshowHeaderWrapper, { fontColor: fontColor, withPadding: withPadding, height: height, big: true, children: jsx(ThemeProvider, { theme: getThemeByName(themeName), children: jsxs(Header, { "$overlay": overlay, "$isRow": !column, children: [jsxs(HeaderFrontView, { children: [jsxs(HeaderContainer, { column: column, children: [jsx(HeaderLayerIcon, {}), jsx(FeatureCardTitle, { title: renderElement({
|
|
9890
9924
|
id: "title",
|
|
9891
9925
|
wrap: false,
|
|
9892
9926
|
}), description: renderElement({
|
|
@@ -10328,8 +10362,8 @@ const getFeatureCardHeader = (templateName) => {
|
|
|
10328
10362
|
switch (templateName) {
|
|
10329
10363
|
case HeaderTemplate.Slideshow:
|
|
10330
10364
|
return FeatureCardSlideshowHeader;
|
|
10331
|
-
case HeaderTemplate.
|
|
10332
|
-
return
|
|
10365
|
+
case HeaderTemplate.Background:
|
|
10366
|
+
return FeatureCardBackgroundHeader;
|
|
10333
10367
|
case HeaderTemplate.Default:
|
|
10334
10368
|
default:
|
|
10335
10369
|
return FeatureCardDefaultHeader;
|
|
@@ -13423,5 +13457,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
|
|
|
13423
13457
|
}, children: children }), upperSiblings] }));
|
|
13424
13458
|
};
|
|
13425
13459
|
|
|
13426
|
-
export { AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttachmentContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, 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,
|
|
13460
|
+
export { AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttachmentContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, 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, 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, LayerGroup, 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, 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, SERVER_NOTIFICATION_EVENT, STACK_BAR_TOTAL_HEIGHT, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, 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, getDisplayTemplateNameFromAttribute, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerInfo, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTemplateNameFromAttribute, getThemeByName, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, metersPerPixel, numberOptions, parseClientStyle, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, toRenderableValue, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, updateDataSource, useAppHeight, useAttachmentItems, useAttachmentPreviewImages, useAutoCompleteControl, useChartChange, useChartData, useContainerAttributes, useCurrentPageLayers, useCustomFeatureSelect, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useEditGroupAttributes, useExpandableContainers, useExportPdf, useFetchImageWithAuth, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerHiddenAttributes, useLayerParams, useMapContext, useMapDraw, useMapImages, useMaxZoomTo, useProjectDashboardInit, usePythonSandbox, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useVisibleProjectItems, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
|
|
13427
13461
|
//# sourceMappingURL=react.esm.js.map
|