@evergis/react 3.1.132 → 3.1.133

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/react.esm.js CHANGED
@@ -3,7 +3,7 @@ import { IconButton, Flex, transition, Chip, Icon, Description, FlexSpan, IconTo
3
3
  import { useState, useMemo, useCallback, useRef, useEffect, createContext, memo, useContext, Fragment } from 'react';
4
4
  import styled, { createGlobalStyle, css, useTheme } from 'styled-components';
5
5
  import { lineChartClassNames, BarChart as BarChart$1, barChartClassNames, LineChart, PieChart } from '@evergis/charts';
6
- import { AttributeType, STORAGE_TOKEN_KEY, generateId, GeometryType, RemoteTaskStatus } from '@evergis/api';
6
+ import { AttributeType, STORAGE_TOKEN_KEY, generateId, parseJwt, STORAGE_REFRESH_TOKEN_KEY, GeometryType, RemoteTaskStatus } from '@evergis/api';
7
7
  import Gradient from 'javascript-color-gradient';
8
8
  import { Color as Color$1 } from '@evergis/color';
9
9
  import { isValid, format, parseJSON, parseISO, toDate } from 'date-fns';
@@ -34,180 +34,180 @@ const AddFeatureButton = ({ title, icon = "feature_add" /* , layerName, geometry
34
34
  return (jsx(IconButton, { kind: icon, primary: true, onClick: handleAddFeature, children: title }));
35
35
  };
36
36
 
37
- const ChartTooltipTable = styled.table `
38
- td {
39
- padding: 0;
40
- }
41
-
42
- tr:not(:last-child) td {
43
- padding-bottom: 0.375rem;
44
- }
37
+ const ChartTooltipTable = styled.table `
38
+ td {
39
+ padding: 0;
40
+ }
41
+
42
+ tr:not(:last-child) td {
43
+ padding-bottom: 0.375rem;
44
+ }
45
45
  `;
46
- const ChartTooltip = styled(Flex) `
47
- flex-wrap: nowrap;
48
- background: rgb(48, 69, 79);
49
- border-radius: 0.25rem;
50
- color: white;
51
-
52
- :not(:last-child) {
53
- margin-bottom: 0.25rem;
54
- }
46
+ const ChartTooltip = styled(Flex) `
47
+ flex-wrap: nowrap;
48
+ background: rgb(48, 69, 79);
49
+ border-radius: 0.25rem;
50
+ color: white;
51
+
52
+ :not(:last-child) {
53
+ margin-bottom: 0.25rem;
54
+ }
55
55
  `;
56
- const ChartTooltipLabel = styled.div `
57
- margin-right: 0.25rem;
58
- `;
59
- const ChartTooltipColor = styled.div `
60
- width: 0.625rem;
61
- height: 0.625rem;
62
- background-color: ${({ $color }) => $color};
63
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
64
- margin-right: 0.25rem;
65
- `;
66
- const ChartLegendColor$1 = styled.div `
67
- width: 0.5rem;
68
- height: 0.5rem;
69
- background-color: ${({ $color }) => $color};
70
- border-radius: 0.125rem;
71
- `;
72
- const ChartLegendValue = styled.div `
73
- opacity: 0.65;
74
- `;
75
- const ChartTooltipRow = styled(Flex) `
76
- display: flex;
77
- flex-direction: row;
78
- flex-wrap: nowrap;
79
- align-items: center;
80
- margin-top: 0.5rem;
81
- line-height: 0;
82
-
83
- ${ChartLegendColor$1} {
84
- margin-right: 0.25rem;
85
- }
56
+ const ChartTooltipLabel = styled.div `
57
+ margin-right: 0.25rem;
58
+ `;
59
+ const ChartTooltipColor = styled.div `
60
+ width: 0.625rem;
61
+ height: 0.625rem;
62
+ background-color: ${({ $color }) => $color};
63
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
64
+ margin-right: 0.25rem;
65
+ `;
66
+ const ChartLegendColor$1 = styled.div `
67
+ width: 0.5rem;
68
+ height: 0.5rem;
69
+ background-color: ${({ $color }) => $color};
70
+ border-radius: 0.125rem;
71
+ `;
72
+ const ChartLegendValue = styled.div `
73
+ opacity: 0.65;
74
+ `;
75
+ const ChartTooltipRow = styled(Flex) `
76
+ display: flex;
77
+ flex-direction: row;
78
+ flex-wrap: nowrap;
79
+ align-items: center;
80
+ margin-top: 0.5rem;
81
+ line-height: 0;
82
+
83
+ ${ChartLegendColor$1} {
84
+ margin-right: 0.25rem;
85
+ }
86
86
  `;
87
- const ChartTooltipName = styled.div `
88
- margin-right: 1rem;
89
- opacity: 0.65;
90
- `;
91
- const PieChartCenter = styled.div `
92
- position: absolute;
93
- top: 50%;
94
- left: 50%;
95
- transform: translate(-50%, -50%);
96
- text-align: center;
97
- font-weight: bold;
98
- font-size: 1.5rem;
99
- `;
100
- const ChartWrapperContainer = styled.div `
101
- position: relative;
102
- width: 100%;
103
- `;
104
- const Tooltip = styled.div `
105
- position: relative;
106
- border-radius: 0.25rem;
107
- background-color: rgba(28, 33, 48);
108
- padding: 0.5rem;
109
- box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.15);
110
- font-size: 0.75rem;
111
- transform: ${({ transform }) => transform};
112
- color: white;
113
-
114
- :before {
115
- position: absolute;
116
- display: block;
117
- content: "";
118
- width: 0;
119
- height: 0;
120
- }
87
+ const ChartTooltipName = styled.div `
88
+ margin-right: 1rem;
89
+ opacity: 0.65;
90
+ `;
91
+ const PieChartCenter = styled.div `
92
+ position: absolute;
93
+ top: 50%;
94
+ left: 50%;
95
+ transform: translate(-50%, -50%);
96
+ text-align: center;
97
+ font-weight: bold;
98
+ font-size: 1.5rem;
99
+ `;
100
+ const ChartWrapperContainer = styled.div `
101
+ position: relative;
102
+ width: 100%;
103
+ `;
104
+ const Tooltip = styled.div `
105
+ position: relative;
106
+ border-radius: 0.25rem;
107
+ background-color: rgba(28, 33, 48);
108
+ padding: 0.5rem;
109
+ box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.15);
110
+ font-size: 0.75rem;
111
+ transform: ${({ transform }) => transform};
112
+ color: white;
113
+
114
+ :before {
115
+ position: absolute;
116
+ display: block;
117
+ content: "";
118
+ width: 0;
119
+ height: 0;
120
+ }
121
121
  `;
122
- const LineChartStyles = createGlobalStyle `
123
- .dashboardLineChartTooltip.${lineChartClassNames.lineChartMouseLabel} {
124
- .${lineChartClassNames.lineChartLabelFlex} {
125
- justify-content: center;
126
- align-items: flex-end;
127
-
128
- ${Tooltip} {
129
- margin: 0 0 12px 0;
130
-
131
- :before {
132
- top: auto;
133
- bottom: 0;
134
- left: 50%;
135
- transform: translate(-50%, 100%);
136
- border-left: 4px solid transparent;
137
- border-right: 4px solid transparent;
138
- border-top: 4px solid rgba(28, 33, 48, 0.9);
139
- }
140
- }
141
- }
142
- }
143
-
144
- .${lineChartClassNames.lineChartYScaleGlobal}, .${lineChartClassNames.lineChartXScaleGlobal} {
145
- .domain {
146
- visibility: hidden;
147
- }
148
-
149
- .tick {
150
- text {
151
- fill: ${({ theme: { palette } }) => palette.textDisabled};
152
- }
153
-
154
- line {
155
- visibility: hidden;
156
- }
157
- }
158
- }
159
-
160
- .${lineChartClassNames.lineChartXScaleGlobal} {
161
- .tick {
162
- :first-of-type {
163
- text {
164
- text-anchor: start;
165
- }
166
- }
167
-
168
- :last-of-type {
169
- text {
170
- text-anchor: end;
171
- }
172
- }
173
- }
174
- }
175
-
176
- .${lineChartClassNames.lineChartLine} {
177
- stroke-width: 2px;
178
- }
179
-
180
- .${lineChartClassNames.lineChartLabel} {
181
- color: ${({ theme: { palette } }) => palette.textPrimary};
182
- }
183
-
184
- .${lineChartClassNames.lineChartMouseCircle} {
185
- stroke: #ffffff;
186
- stroke-width: 2px;
187
- }
188
-
189
- .${lineChartClassNames.lineChartGridLineX} {
190
- stroke: ${({ theme: { palette } }) => palette.element};
191
- }
192
-
193
- text {
194
- fill: ${({ theme: { palette } }) => palette.textDisabled};
195
- }
122
+ const LineChartStyles = createGlobalStyle `
123
+ .dashboardLineChartTooltip.${lineChartClassNames.lineChartMouseLabel} {
124
+ .${lineChartClassNames.lineChartLabelFlex} {
125
+ justify-content: center;
126
+ align-items: flex-end;
127
+
128
+ ${Tooltip} {
129
+ margin: 0 0 12px 0;
130
+
131
+ :before {
132
+ top: auto;
133
+ bottom: 0;
134
+ left: 50%;
135
+ transform: translate(-50%, 100%);
136
+ border-left: 4px solid transparent;
137
+ border-right: 4px solid transparent;
138
+ border-top: 4px solid rgba(28, 33, 48, 0.9);
139
+ }
140
+ }
141
+ }
142
+ }
143
+
144
+ .${lineChartClassNames.lineChartYScaleGlobal}, .${lineChartClassNames.lineChartXScaleGlobal} {
145
+ .domain {
146
+ visibility: hidden;
147
+ }
148
+
149
+ .tick {
150
+ text {
151
+ fill: ${({ theme: { palette } }) => palette.textDisabled};
152
+ }
153
+
154
+ line {
155
+ visibility: hidden;
156
+ }
157
+ }
158
+ }
159
+
160
+ .${lineChartClassNames.lineChartXScaleGlobal} {
161
+ .tick {
162
+ :first-of-type {
163
+ text {
164
+ text-anchor: start;
165
+ }
166
+ }
167
+
168
+ :last-of-type {
169
+ text {
170
+ text-anchor: end;
171
+ }
172
+ }
173
+ }
174
+ }
175
+
176
+ .${lineChartClassNames.lineChartLine} {
177
+ stroke-width: 2px;
178
+ }
179
+
180
+ .${lineChartClassNames.lineChartLabel} {
181
+ color: ${({ theme: { palette } }) => palette.textPrimary};
182
+ }
183
+
184
+ .${lineChartClassNames.lineChartMouseCircle} {
185
+ stroke: #ffffff;
186
+ stroke-width: 2px;
187
+ }
188
+
189
+ .${lineChartClassNames.lineChartGridLineX} {
190
+ stroke: ${({ theme: { palette } }) => palette.element};
191
+ }
192
+
193
+ text {
194
+ fill: ${({ theme: { palette } }) => palette.textDisabled};
195
+ }
196
196
  `;
197
- const StyledBarChart = styled(BarChart$1) `
198
- .domain {
199
- display: none;
200
- }
201
-
202
- .tick {
203
- text {
204
- fill: ${({ theme: { palette } }) => palette.textDisabled};
205
- }
206
-
207
- line {
208
- visibility: hidden;
209
- }
210
- }
197
+ const StyledBarChart = styled(BarChart$1) `
198
+ .domain {
199
+ display: none;
200
+ }
201
+
202
+ .tick {
203
+ text {
204
+ fill: ${({ theme: { palette } }) => palette.textDisabled};
205
+ }
206
+
207
+ line {
208
+ visibility: hidden;
209
+ }
210
+ }
211
211
  `;
212
212
 
213
213
  function range(start, stop, step) {
@@ -3456,42 +3456,42 @@ const BASE_CONTAINER_STYLE = {
3456
3456
  marginBottom: "1rem",
3457
3457
  };
3458
3458
 
3459
- const StackBarContainer = styled(Flex) `
3460
- flex-wrap: nowrap;
3461
- width: 100%;
3459
+ const StackBarContainer = styled(Flex) `
3460
+ flex-wrap: nowrap;
3461
+ width: 100%;
3462
3462
  `;
3463
- const StackBarHeader = styled(Flex) `
3464
- justify-content: space-between;
3465
- margin-bottom: 0.375rem;
3466
- font-size: 0.75rem;
3463
+ const StackBarHeader = styled(Flex) `
3464
+ justify-content: space-between;
3465
+ margin-bottom: 0.375rem;
3466
+ font-size: 0.75rem;
3467
3467
  `;
3468
- const StackBarSection = styled.div `
3469
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
3470
- width: ${({ $width }) => $width}%;
3471
- height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
3472
- margin: 0 0.5px;
3473
- background-color: ${({ $color }) => $color};
3474
- opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
3475
- transition: opacity ${transition.release}, background-color ${transition.release};
3476
-
3477
- :first-child {
3478
- border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3479
- border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3480
- }
3481
-
3482
- :last-child {
3483
- border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3484
- border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3485
- }
3468
+ const StackBarSection = styled.div `
3469
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
3470
+ width: ${({ $width }) => $width}%;
3471
+ height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
3472
+ margin: 0 0.5px;
3473
+ background-color: ${({ $color }) => $color};
3474
+ opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
3475
+ transition: opacity ${transition.release}, background-color ${transition.release};
3476
+
3477
+ :first-child {
3478
+ border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3479
+ border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3480
+ }
3481
+
3482
+ :last-child {
3483
+ border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3484
+ border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3485
+ }
3486
3486
  `;
3487
- const StackBarAlias = styled.div `
3488
- color: ${({ theme: { palette } }) => palette.textSecondary};
3487
+ const StackBarAlias = styled.div `
3488
+ color: ${({ theme: { palette } }) => palette.textSecondary};
3489
3489
  `;
3490
3490
  const StackBarTotal = styled(Flex) ``;
3491
3491
  const StackBarValue = styled.div ``;
3492
- const StackBarUnits = styled.div `
3493
- margin-left: 0.25rem;
3494
- color: ${({ theme: { palette } }) => palette.textSecondary};
3492
+ const StackBarUnits = styled.div `
3493
+ margin-left: 0.25rem;
3494
+ color: ${({ theme: { palette } }) => palette.textSecondary};
3495
3495
  `;
3496
3496
 
3497
3497
  const transparentizeColor = (originalColor, percent) => {
@@ -3997,7 +3997,7 @@ var BaseMapTheme;
3997
3997
 
3998
3998
  const ServerNotificationsContext = createContext({});
3999
3999
 
4000
- const useServerNotifications = (url, initialized) => {
4000
+ const useServerNotifications = (url, initialized, apiClient) => {
4001
4001
  const hubConnection = useRef(null);
4002
4002
  const [connection, setConnection] = useState(null);
4003
4003
  const subscribeNotifications = useCallback(() => {
@@ -4018,8 +4018,27 @@ const useServerNotifications = (url, initialized) => {
4018
4018
  withCredentials: true,
4019
4019
  skipNegotiation: true,
4020
4020
  transport: HttpTransportType.WebSockets,
4021
- accessTokenFactory: () => {
4022
- return window.localStorage.getItem(STORAGE_TOKEN_KEY) || "";
4021
+ accessTokenFactory: async () => {
4022
+ let accessToken = window.localStorage.getItem(STORAGE_TOKEN_KEY) || "";
4023
+ const { exp } = parseJwt(accessToken);
4024
+ const currentTime = new Date().getTime() / 1000;
4025
+ if (currentTime > exp) {
4026
+ const refreshToken = window.localStorage.getItem(STORAGE_REFRESH_TOKEN_KEY);
4027
+ if (refreshToken) {
4028
+ const refreshTokenResponse = await apiClient.account.refreshToken({
4029
+ refreshToken,
4030
+ });
4031
+ if (refreshTokenResponse) {
4032
+ accessToken = refreshTokenResponse.token;
4033
+ window.localStorage.setItem(STORAGE_TOKEN_KEY, refreshTokenResponse.token);
4034
+ window.localStorage.setItem(STORAGE_REFRESH_TOKEN_KEY, refreshTokenResponse.refreshToken);
4035
+ }
4036
+ }
4037
+ else {
4038
+ await apiClient.logout();
4039
+ }
4040
+ }
4041
+ return accessToken;
4023
4042
  },
4024
4043
  })
4025
4044
  .withAutomaticReconnect()
@@ -4042,8 +4061,8 @@ const useServerNotifications = (url, initialized) => {
4042
4061
  return connection;
4043
4062
  };
4044
4063
 
4045
- const ServerNotificationsProvider = ({ url, initialized, children }) => {
4046
- const connection = useServerNotifications(url, initialized);
4064
+ const ServerNotificationsProvider = ({ url, initialized, apiClient, children }) => {
4065
+ const connection = useServerNotifications(url, initialized, apiClient);
4047
4066
  const addSubscription = useCallback(async (payload) => {
4048
4067
  if (!connection || connection.state !== "Connected" || !payload) {
4049
4068
  return;
@@ -4080,7 +4099,12 @@ const ServerNotificationsProvider = ({ url, initialized, children }) => {
4080
4099
  console.info(`Ошибка отписки по ${id}:`, err);
4081
4100
  }
4082
4101
  }, [connection]);
4083
- return (jsx(ServerNotificationsContext.Provider, { value: { connection, addSubscription, updateSubscription, unsubscribeById }, children: children }));
4102
+ return (jsx(ServerNotificationsContext.Provider, { value: {
4103
+ connection,
4104
+ addSubscription,
4105
+ updateSubscription,
4106
+ unsubscribeById,
4107
+ }, children: children }));
4084
4108
  };
4085
4109
 
4086
4110
  const useWidgetContext = (type = WidgetType.Dashboard) => {
@@ -4202,8 +4226,8 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4202
4226
  const customize = useCallback(({ svg }) => {
4203
4227
  svg.style("overflow", "visible");
4204
4228
  svg
4205
- .selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
4206
- .${lineChartClassNames.lineChartYScaleGlobal} line,
4229
+ .selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
4230
+ .${lineChartClassNames.lineChartYScaleGlobal} line,
4207
4231
  .domain`)
4208
4232
  .each((_, index, nodes) => {
4209
4233
  nodes[index].remove();
@@ -4260,11 +4284,11 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4260
4284
  .attr("fill", `url(#${gradientId})`)
4261
4285
  .attr("stroke-width", "0")
4262
4286
  .attr("fill-opacity", FILL_OPACITY);
4263
- defs.push(`
4264
- <linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
4265
- <stop offset="0" stop-color="${color}" stop-opacity="1" />
4266
- <stop offset="1" stop-color="${color}" stop-opacity="0" />
4267
- </linearGradient>
4287
+ defs.push(`
4288
+ <linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
4289
+ <stop offset="0" stop-color="${color}" stop-opacity="1" />
4290
+ <stop offset="1" stop-color="${color}" stop-opacity="0" />
4291
+ </linearGradient>
4268
4292
  `);
4269
4293
  ref.current = {
4270
4294
  path: newPath,
@@ -4619,104 +4643,104 @@ const formatDataSourceCondition = ({ condition, configFilters, filters, attribut
4619
4643
  : conditionSection.join(splitter);
4620
4644
  };
4621
4645
 
4622
- const DashboardChipsContainer = styled(Flex) `
4623
- flex-wrap: wrap;
4624
- `;
4625
- const DefaultChipColorMixin = css `
4626
- && {
4627
- color: ${({ theme: { palette } }) => palette.textPrimary};
4628
- }
4629
-
4630
- && > * {
4631
- color: ${({ theme: { palette } }) => palette.textPrimary};
4632
- }
4633
-
4634
- && span[kind]:after {
4635
- color: ${({ theme: { palette } }) => palette.icon};
4636
- }
4646
+ const DashboardChipsContainer = styled(Flex) `
4647
+ flex-wrap: wrap;
4637
4648
  `;
4638
- const CustomChipColorMixin = css `
4639
- && {
4640
- color: ${({ $fontColor }) => $fontColor};
4641
- }
4642
-
4643
- && > * {
4644
- color: ${({ $fontColor }) => $fontColor};
4645
- }
4646
-
4647
- && span[kind]:after {
4648
- color: ${({ $fontColor }) => $fontColor};
4649
- }
4649
+ const DefaultChipColorMixin = css `
4650
+ && {
4651
+ color: ${({ theme: { palette } }) => palette.textPrimary};
4652
+ }
4653
+
4654
+ && > * {
4655
+ color: ${({ theme: { palette } }) => palette.textPrimary};
4656
+ }
4657
+
4658
+ && span[kind]:after {
4659
+ color: ${({ theme: { palette } }) => palette.icon};
4660
+ }
4650
4661
  `;
4651
- const DashboardChip$1 = styled(Chip) `
4652
- margin: 0 0.25rem 0.25rem 0;
4653
- background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
4654
- border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
4655
- white-space: nowrap;
4656
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4657
- color: ${({ theme: { palette } }) => palette.iconContrast};
4658
-
4659
- > * {
4660
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4661
- }
4662
-
4663
- span[kind] {
4664
- height: 0.875rem;
4665
-
4666
- :after {
4667
- font-size: 0.875rem;
4668
- }
4669
- }
4670
-
4671
- button {
4672
- width: auto;
4673
- padding: 0 0.5rem;
4674
- }
4675
-
4676
- ${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
4677
- ${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
4662
+ const CustomChipColorMixin = css `
4663
+ && {
4664
+ color: ${({ $fontColor }) => $fontColor};
4665
+ }
4666
+
4667
+ && > * {
4668
+ color: ${({ $fontColor }) => $fontColor};
4669
+ }
4670
+
4671
+ && span[kind]:after {
4672
+ color: ${({ $fontColor }) => $fontColor};
4673
+ }
4678
4674
  `;
4675
+ const DashboardChip$1 = styled(Chip) `
4676
+ margin: 0 0.25rem 0.25rem 0;
4677
+ background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
4678
+ border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
4679
+ white-space: nowrap;
4680
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4681
+ color: ${({ theme: { palette } }) => palette.iconContrast};
4679
4682
 
4680
- const LayerGroupContainer = styled(Flex) `
4681
- display: flex;
4682
- justify-content: center;
4683
- position: relative;
4684
- flex-direction: column;
4685
- padding: 0 0.25rem 0 1rem;
4686
- box-sizing: border-box;
4687
- transition: opacity ${transition.hover}, background-color ${transition.hover};
4688
- font-family: "NunitoSans", sans-serif;
4689
- `;
4690
- const LayerGroupMain = styled(Flex) `
4691
- flex-direction: row;
4692
- flex-wrap: nowrap;
4693
- align-items: center;
4694
- justify-content: space-between;
4695
- width: 100%;
4696
-
4697
- ${Icon} {
4698
- width: 2rem;
4699
- min-width: 2rem;
4700
- height: 2rem;
4701
- display: inline-flex;
4702
- align-items: center;
4703
- justify-content: center;
4704
- margin-right: 0.75rem;
4705
- }
4706
-
4707
- ${Description} {
4708
- display: flex;
4709
- align-items: center;
4710
- flex-grow: 1;
4711
- width: 100%;
4712
- margin-right: 0.25rem;
4713
- color: ${({ theme }) => theme.palette.textPrimary};
4714
- }
4715
-
4716
- button {
4717
- width: 2.25rem;
4718
- justify-content: flex-start;
4719
- }
4683
+ > * {
4684
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4685
+ }
4686
+
4687
+ span[kind] {
4688
+ height: 0.875rem;
4689
+
4690
+ :after {
4691
+ font-size: 0.875rem;
4692
+ }
4693
+ }
4694
+
4695
+ button {
4696
+ width: auto;
4697
+ padding: 0 0.5rem;
4698
+ }
4699
+
4700
+ ${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
4701
+ ${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
4702
+ `;
4703
+
4704
+ const LayerGroupContainer = styled(Flex) `
4705
+ display: flex;
4706
+ justify-content: center;
4707
+ position: relative;
4708
+ flex-direction: column;
4709
+ padding: 0 0.25rem 0 1rem;
4710
+ box-sizing: border-box;
4711
+ transition: opacity ${transition.hover}, background-color ${transition.hover};
4712
+ font-family: "NunitoSans", sans-serif;
4713
+ `;
4714
+ const LayerGroupMain = styled(Flex) `
4715
+ flex-direction: row;
4716
+ flex-wrap: nowrap;
4717
+ align-items: center;
4718
+ justify-content: space-between;
4719
+ width: 100%;
4720
+
4721
+ ${Icon} {
4722
+ width: 2rem;
4723
+ min-width: 2rem;
4724
+ height: 2rem;
4725
+ display: inline-flex;
4726
+ align-items: center;
4727
+ justify-content: center;
4728
+ margin-right: 0.75rem;
4729
+ }
4730
+
4731
+ ${Description} {
4732
+ display: flex;
4733
+ align-items: center;
4734
+ flex-grow: 1;
4735
+ width: 100%;
4736
+ margin-right: 0.25rem;
4737
+ color: ${({ theme }) => theme.palette.textPrimary};
4738
+ }
4739
+
4740
+ button {
4741
+ width: 2.25rem;
4742
+ justify-content: flex-start;
4743
+ }
4720
4744
  `;
4721
4745
 
4722
4746
  const customModes = MapboxDraw.modes;
@@ -5596,330 +5620,330 @@ const LayerTree = ({ layers, onlyMainTools }) => {
5596
5620
  return (jsx(DraggableTree, { nodes: nodes, disableDrag: onlyMainTools, options: { pastePlaceholderHeight: "0.025rem" }, onUpdate: onUpdate }));
5597
5621
  };
5598
5622
 
5599
- const LayersListWrapper = styled(Flex) `
5600
- flex-direction: column;
5601
- height: 100%;
5602
- width: 100%;
5603
- box-sizing: border-box;
5623
+ const LayersListWrapper = styled(Flex) `
5624
+ flex-direction: column;
5625
+ height: 100%;
5626
+ width: 100%;
5627
+ box-sizing: border-box;
5604
5628
  `;
5605
- const LayerListContainer = styled(Flex) `
5606
- flex-grow: 1;
5607
- height: 100%;
5608
- box-sizing: border-box;
5609
- padding-top: 0.25rem;
5629
+ const LayerListContainer = styled(Flex) `
5630
+ flex-grow: 1;
5631
+ height: 100%;
5632
+ box-sizing: border-box;
5633
+ padding-top: 0.25rem;
5610
5634
  `;
5611
5635
 
5612
- const ElementValueWrapper = styled.div `
5613
- transition: background-color ${transition.toggle};
5614
-
5636
+ const ElementValueWrapper = styled.div `
5637
+ transition: background-color ${transition.toggle};
5638
+
5615
5639
  ${({ noMargin }) => !!noMargin &&
5616
- css `
5617
- &&&& {
5618
- margin-bottom: 0;
5619
- }
5620
- `};
5621
- `;
5622
- const Container = styled(Flex) `
5623
- flex-direction: column;
5624
- width: 100%;
5625
-
5640
+ css `
5641
+ &&&& {
5642
+ margin-bottom: 0;
5643
+ }
5644
+ `};
5645
+ `;
5646
+ const Container = styled(Flex) `
5647
+ flex-direction: column;
5648
+ width: 100%;
5649
+
5626
5650
  ${({ isColumn }) => isColumn
5627
- ? css `
5628
- &&& > * {
5629
- justify-content: flex-start;
5630
- }
5631
- > * {
5632
- width: 100%;
5633
-
5634
- :not(:last-child) {
5635
- margin-bottom: 0.5rem;
5636
- }
5637
- }
5651
+ ? css `
5652
+ &&& > * {
5653
+ justify-content: flex-start;
5654
+ }
5655
+ > * {
5656
+ width: 100%;
5657
+
5658
+ :not(:last-child) {
5659
+ margin-bottom: 0.5rem;
5660
+ }
5661
+ }
5638
5662
  `
5639
- : css `
5640
- flex-direction: row;
5641
- justify-content: space-between;
5642
- align-items: center;
5643
- `}
5644
-
5663
+ : css `
5664
+ flex-direction: row;
5665
+ justify-content: space-between;
5666
+ align-items: center;
5667
+ `}
5668
+
5645
5669
  ${({ isTitle }) => isTitle &&
5646
- css `
5647
- &&&& {
5648
- margin-bottom: 0.75rem;
5649
- }
5650
- `}
5651
-
5670
+ css `
5671
+ &&&& {
5672
+ margin-bottom: 0.75rem;
5673
+ }
5674
+ `}
5675
+
5652
5676
  ${({ noBorders }) => noBorders &&
5653
- css `
5654
- ${ContainerWrapper} {
5655
- box-shadow: none;
5656
- padding: 0;
5657
- }
5658
- `}
5659
- `;
5660
- const ContainerWrapper = styled(Flex) `
5661
- position: relative;
5662
- box-sizing: border-box;
5663
- width: 100%;
5664
- background: ${({ theme: { palette } }) => palette.backgroundAlpha};
5665
- box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
5666
- margin-bottom: 2rem;
5667
- padding: 1.5rem;
5668
- border-radius: 0.5rem;
5669
- backdrop-filter: blur(20px);
5670
- color: ${({ theme: { palette } }) => palette.textPrimary};
5671
- z-index: ${({ $zIndex }) => $zIndex ?? 1};
5672
- transition: background-color ${transition.toggle};
5673
-
5677
+ css `
5678
+ ${ContainerWrapper} {
5679
+ box-shadow: none;
5680
+ padding: 0;
5681
+ }
5682
+ `}
5683
+ `;
5684
+ const ContainerWrapper = styled(Flex) `
5685
+ position: relative;
5686
+ box-sizing: border-box;
5687
+ width: 100%;
5688
+ background: ${({ theme: { palette } }) => palette.backgroundAlpha};
5689
+ box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
5690
+ margin-bottom: 2rem;
5691
+ padding: 1.5rem;
5692
+ border-radius: 0.5rem;
5693
+ backdrop-filter: blur(20px);
5694
+ color: ${({ theme: { palette } }) => palette.textPrimary};
5695
+ z-index: ${({ $zIndex }) => $zIndex ?? 1};
5696
+ transition: background-color ${transition.toggle};
5697
+
5674
5698
  ${({ $noMargin }) => $noMargin &&
5675
- css `
5676
- &&&& {
5677
- margin-bottom: 0;
5678
- }
5679
- `}
5680
- `;
5681
- const DashboardChip = styled(Chip) `
5682
- margin: 0 0.25rem 0.25rem 0;
5683
- background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
5684
- border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
5685
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5686
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5687
-
5688
- > * {
5689
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5690
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5691
- }
5692
-
5693
- span[kind]:after {
5694
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.icon : $fontColor || "#fff"};
5695
- }
5699
+ css `
5700
+ &&&& {
5701
+ margin-bottom: 0;
5702
+ }
5703
+ `}
5704
+ `;
5705
+ const DashboardChip = styled(Chip) `
5706
+ margin: 0 0.25rem 0.25rem 0;
5707
+ background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
5708
+ border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
5709
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5710
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5711
+
5712
+ > * {
5713
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5714
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5715
+ }
5716
+
5717
+ span[kind]:after {
5718
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.icon : $fontColor || "#fff"};
5719
+ }
5696
5720
  `;
5697
- const DashboardPlaceholderWrap = styled(Flex) `
5698
- flex-grow: 1;
5699
- flex-direction: column;
5700
- justify-content: center;
5701
- align-items: center;
5702
- width: 100%;
5703
- margin-bottom: 2rem;
5704
- `;
5705
- const DashboardPlaceholder = styled(Flex) `
5706
- flex-direction: column;
5707
- justify-content: center;
5708
- align-items: center;
5709
- margin-top: 2rem;
5710
-
5721
+ const DashboardPlaceholderWrap = styled(Flex) `
5722
+ flex-grow: 1;
5723
+ flex-direction: column;
5724
+ justify-content: center;
5725
+ align-items: center;
5726
+ width: 100%;
5727
+ margin-bottom: 2rem;
5728
+ `;
5729
+ const DashboardPlaceholder = styled(Flex) `
5730
+ flex-direction: column;
5731
+ justify-content: center;
5732
+ align-items: center;
5733
+ margin-top: 2rem;
5734
+
5711
5735
  ${({ isLoading }) => isLoading &&
5712
- css `
5713
- width: 6.25rem;
5714
- `}
5715
-
5716
- &&& > * {
5717
- margin-bottom: 0;
5718
- }
5719
-
5720
- > div {
5721
- width: 100%;
5722
- margin-top: 1rem;
5723
- font-size: 0.75rem;
5724
- text-align: center;
5725
- color: ${({ theme: { palette } }) => palette.textDisabled};
5726
- }
5727
-
5728
- span[kind] {
5729
- width: 2.25rem;
5730
- height: 2.25rem;
5731
- opacity: 0.28;
5732
-
5733
- :after {
5734
- font-size: 32px;
5735
- }
5736
- }
5736
+ css `
5737
+ width: 6.25rem;
5738
+ `}
5739
+
5740
+ &&& > * {
5741
+ margin-bottom: 0;
5742
+ }
5743
+
5744
+ > div {
5745
+ width: 100%;
5746
+ margin-top: 1rem;
5747
+ font-size: 0.75rem;
5748
+ text-align: center;
5749
+ color: ${({ theme: { palette } }) => palette.textDisabled};
5750
+ }
5751
+
5752
+ span[kind] {
5753
+ width: 2.25rem;
5754
+ height: 2.25rem;
5755
+ opacity: 0.28;
5756
+
5757
+ :after {
5758
+ font-size: 32px;
5759
+ }
5760
+ }
5737
5761
  `;
5738
- const DashboardWrapper = styled(Flex) `
5739
- flex-direction: column;
5740
- flex-wrap: nowrap;
5741
- flex-grow: 1;
5742
- width: calc(100% - 3rem);
5743
- height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
5744
-
5762
+ const DashboardWrapper = styled(Flex) `
5763
+ flex-direction: column;
5764
+ flex-wrap: nowrap;
5765
+ flex-grow: 1;
5766
+ width: calc(100% - 3rem);
5767
+ height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
5768
+
5745
5769
  ${({ hasImage, isPresentationMode }) => hasImage &&
5746
5770
  !isPresentationMode &&
5747
- css `
5748
- margin-top: -0.35rem;
5749
- `}
5750
- `;
5751
- const DashboardContent = styled(Flex) `
5752
- flex-grow: 1;
5753
- width: 100%;
5754
- padding: 1.5rem 1.5rem 2rem;
5755
- overflow-y: auto;
5756
- scrollbar-gutter: stable;
5757
- `;
5758
- const PresentationWrapperCss = css `
5759
- margin-bottom: 0.75rem;
5760
- padding: 1.5rem;
5761
- background-color: ${({ theme: { palette } }) => palette.panelBackground};
5762
- backdrop-filter: blur(10px);
5763
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5764
- box-shadow: ${shadows.raised};
5765
- `;
5766
- const PresentationWrapper = styled.div `
5767
- ${PresentationWrapperCss};
5768
- position: relative;
5769
- z-index: 1;
5770
- `;
5771
- const PresentationPanelWrapper = styled(PresentationWrapper) `
5772
- margin-top: 0.75rem;
5773
- transition: background-color ${transition.toggle};
5774
- `;
5775
- const PresentationHeader = styled.div `
5776
- margin: -1.5rem -1.5rem 0 -1.5rem;
5777
- padding: 1.5rem;
5778
- // background: url(images.presentationHeader) 0 0 no-repeat;
5779
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5780
- transition: background-color ${transition.toggle};
5781
-
5771
+ css `
5772
+ margin-top: -0.35rem;
5773
+ `}
5774
+ `;
5775
+ const DashboardContent = styled(Flex) `
5776
+ flex-grow: 1;
5777
+ width: 100%;
5778
+ padding: 1.5rem 1.5rem 2rem;
5779
+ overflow-y: auto;
5780
+ scrollbar-gutter: stable;
5781
+ `;
5782
+ const PresentationWrapperCss = css `
5783
+ margin-bottom: 0.75rem;
5784
+ padding: 1.5rem;
5785
+ background-color: ${({ theme: { palette } }) => palette.panelBackground};
5786
+ backdrop-filter: blur(10px);
5787
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5788
+ box-shadow: ${shadows.raised};
5789
+ `;
5790
+ const PresentationWrapper = styled.div `
5791
+ ${PresentationWrapperCss};
5792
+ position: relative;
5793
+ z-index: 1;
5794
+ `;
5795
+ const PresentationPanelWrapper = styled(PresentationWrapper) `
5796
+ margin-top: 0.75rem;
5797
+ transition: background-color ${transition.toggle};
5798
+ `;
5799
+ const PresentationHeader = styled.div `
5800
+ margin: -1.5rem -1.5rem 0 -1.5rem;
5801
+ padding: 1.5rem;
5802
+ // background: url(images.presentationHeader) 0 0 no-repeat;
5803
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5804
+ transition: background-color ${transition.toggle};
5805
+
5782
5806
  ${({ image }) => !!image &&
5783
- css `
5784
- padding-top: 7rem;
5785
- `};
5786
- `;
5787
- const PresentationHeaderTools = styled(Flex) `
5788
- justify-content: space-between;
5789
- align-items: center;
5790
- margin-bottom: -0.5rem;
5791
- margin-right: -0.5rem;
5792
-
5793
- span[kind="sun"],
5794
- span[kind="moon"] {
5795
- :after {
5796
- font-size: 0.85rem;
5797
- color: ${({ theme: { palette } }) => palette.iconDisabled};
5798
- }
5799
-
5800
- :hover:after {
5801
- color: ${({ theme: { palette } }) => palette.icon};
5802
- }
5803
- }
5807
+ css `
5808
+ padding-top: 7rem;
5809
+ `};
5804
5810
  `;
5805
- const LayerGroupList = styled(Flex) `
5806
- flex-direction: column;
5807
- height: 100%;
5808
- flex-wrap: nowrap;
5809
- overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
5810
- overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
5811
- padding: 0 0.125rem 0 0.75rem;
5812
- scrollbar-gutter: stable;
5813
-
5814
- > * {
5815
- flex-grow: 1;
5816
- }
5811
+ const PresentationHeaderTools = styled(Flex) `
5812
+ justify-content: space-between;
5813
+ align-items: center;
5814
+ margin-bottom: -0.5rem;
5815
+ margin-right: -0.5rem;
5816
+
5817
+ span[kind="sun"],
5818
+ span[kind="moon"] {
5819
+ :after {
5820
+ font-size: 0.85rem;
5821
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
5822
+ }
5823
+
5824
+ :hover:after {
5825
+ color: ${({ theme: { palette } }) => palette.icon};
5826
+ }
5827
+ }
5828
+ `;
5829
+ const LayerGroupList = styled(Flex) `
5830
+ flex-direction: column;
5831
+ height: 100%;
5832
+ flex-wrap: nowrap;
5833
+ overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
5834
+ overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
5835
+ padding: 0 0.125rem 0 0.75rem;
5836
+ scrollbar-gutter: stable;
5837
+
5838
+ > * {
5839
+ flex-grow: 1;
5840
+ }
5817
5841
  `;
5818
5842
  const PresentationHeaderButtons = styled(Flex) ``;
5819
- const PresentationPanelContainer = styled.div `
5820
- position: absolute;
5821
- top: 0;
5822
- left: calc(${({ left }) => left || 0}px + 0.75rem);
5823
- bottom: 0;
5824
- z-index: 3;
5825
- display: flex;
5826
- flex-direction: column;
5827
- width: ${LEFT_PANEL_HEADER_HEIGHT}px;
5828
- padding-right: 0.5rem;
5829
- scrollbar-gutter: stable;
5830
- overflow-y: hidden;
5831
-
5832
- :hover {
5833
- overflow-y: auto;
5834
- }
5835
-
5843
+ const PresentationPanelContainer = styled.div `
5844
+ position: absolute;
5845
+ top: 0;
5846
+ left: calc(${({ left }) => left || 0}px + 0.75rem);
5847
+ bottom: 0;
5848
+ z-index: 3;
5849
+ display: flex;
5850
+ flex-direction: column;
5851
+ width: ${LEFT_PANEL_HEADER_HEIGHT}px;
5852
+ padding-right: 0.5rem;
5853
+ scrollbar-gutter: stable;
5854
+ overflow-y: hidden;
5855
+
5856
+ :hover {
5857
+ overflow-y: auto;
5858
+ }
5859
+
5836
5860
  ${({ showLayers }) => !showLayers &&
5837
- css `
5838
- > :first-child {
5839
- padding-bottom: 0;
5840
- }
5841
- `};
5842
-
5843
- ${PresentationHeader} > * {
5844
- position: relative;
5845
- z-index: 2;
5846
- }
5847
-
5848
- /* PaginationWrapper {
5849
- ${PresentationWrapperCss};
5850
- width: calc(100% - 2rem);
5851
- min-height: 8.625rem;
5852
- padding-top: 0.5rem;
5853
- padding-bottom: 0.5rem;
5854
- margin-bottom: 0.75rem;
5855
- }*/
5856
-
5857
- ${DashboardWrapper} {
5858
- width: 100%;
5859
- margin-top: 0;
5860
-
5861
- ${DashboardContent} {
5862
- padding: 0;
5863
- overflow-y: unset;
5864
-
5865
- > * > ${ContainerWrapper} > * > ${ContainerWrapper} {
5866
- ${PresentationWrapperCss};
5867
- width: calc(100% - 3rem);
5868
- }
5869
- }
5870
- }
5871
-
5872
- ${DashboardPlaceholder} {
5873
- ${PresentationWrapperCss};
5874
- width: 18.5rem;
5875
- height: 10.75rem;
5876
- }
5877
-
5878
- ${LayerListContainer} {
5879
- height: auto;
5880
- margin: 0 -1.125rem -1.5rem;
5881
- padding: 0;
5882
-
5883
- ${LayerGroupList} {
5884
- padding: 0;
5885
- }
5886
- }
5861
+ css `
5862
+ > :first-child {
5863
+ padding-bottom: 0;
5864
+ }
5865
+ `};
5866
+
5867
+ ${PresentationHeader} > * {
5868
+ position: relative;
5869
+ z-index: 2;
5870
+ }
5871
+
5872
+ /* PaginationWrapper {
5873
+ ${PresentationWrapperCss};
5874
+ width: calc(100% - 2rem);
5875
+ min-height: 8.625rem;
5876
+ padding-top: 0.5rem;
5877
+ padding-bottom: 0.5rem;
5878
+ margin-bottom: 0.75rem;
5879
+ }*/
5880
+
5881
+ ${DashboardWrapper} {
5882
+ width: 100%;
5883
+ margin-top: 0;
5884
+
5885
+ ${DashboardContent} {
5886
+ padding: 0;
5887
+ overflow-y: unset;
5888
+
5889
+ > * > ${ContainerWrapper} > * > ${ContainerWrapper} {
5890
+ ${PresentationWrapperCss};
5891
+ width: calc(100% - 3rem);
5892
+ }
5893
+ }
5894
+ }
5895
+
5896
+ ${DashboardPlaceholder} {
5897
+ ${PresentationWrapperCss};
5898
+ width: 18.5rem;
5899
+ height: 10.75rem;
5900
+ }
5901
+
5902
+ ${LayerListContainer} {
5903
+ height: auto;
5904
+ margin: 0 -1.125rem -1.5rem;
5905
+ padding: 0;
5906
+
5907
+ ${LayerGroupList} {
5908
+ padding: 0;
5909
+ }
5910
+ }
5887
5911
  `;
5888
- const DataSourceErrorContainer = styled(Flex) `
5889
- align-items: center;
5890
- justify-content: center;
5891
- flex-wrap: nowrap;
5892
- flex-grow: 1;
5893
- padding: 1rem;
5894
- border: 1px ${({ theme: { palette } }) => palette.element} solid;
5895
- border-radius: 10px;
5896
- font-size: 0.875rem;
5897
- color: ${({ theme: { palette } }) => palette.textDisabled};
5898
-
5899
- span[kind] {
5900
- margin-right: 1rem;
5901
-
5902
- :after {
5903
- color: ${({ theme: { palette } }) => palette.iconDisabled};
5904
- }
5905
- }
5912
+ const DataSourceErrorContainer = styled(Flex) `
5913
+ align-items: center;
5914
+ justify-content: center;
5915
+ flex-wrap: nowrap;
5916
+ flex-grow: 1;
5917
+ padding: 1rem;
5918
+ border: 1px ${({ theme: { palette } }) => palette.element} solid;
5919
+ border-radius: 10px;
5920
+ font-size: 0.875rem;
5921
+ color: ${({ theme: { palette } }) => palette.textDisabled};
5922
+
5923
+ span[kind] {
5924
+ margin-right: 1rem;
5925
+
5926
+ :after {
5927
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
5928
+ }
5929
+ }
5906
5930
  `;
5907
- const AttributeLabel = styled(Description) `
5908
- margin-top: 0 !important;
5909
- margin-bottom: ${({ forCheckbox }) => forCheckbox ? "0.75rem" : "0.25rem"} !important;
5910
- padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
5911
- `;
5912
- const FeatureControls = styled(Flex) `
5913
- align-items: center;
5914
- gap: 1rem;
5915
- flex-wrap: nowrap;
5916
- position: relative;
5917
- flex-shrink: 0;
5918
-
5919
- button {
5920
- padding: 0;
5921
- width: auto;
5922
- }
5931
+ const AttributeLabel = styled(Description) `
5932
+ margin-top: 0 !important;
5933
+ margin-bottom: ${({ forCheckbox }) => forCheckbox ? "0.75rem" : "0.25rem"} !important;
5934
+ padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
5935
+ `;
5936
+ const FeatureControls = styled(Flex) `
5937
+ align-items: center;
5938
+ gap: 1rem;
5939
+ flex-wrap: nowrap;
5940
+ position: relative;
5941
+ flex-shrink: 0;
5942
+
5943
+ button {
5944
+ padding: 0;
5945
+ width: auto;
5946
+ }
5923
5947
  `;
5924
5948
 
5925
5949
  const getAttributeByName = (attributeName, attributes) => {
@@ -6002,148 +6026,148 @@ const ContainersGroupContainer = memo(({ elementConfig, type, renderElement }) =
6002
6026
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && (jsx(Container, { id: id, isColumn: isColumn, children: jsx(ContainerChildren, { type: type, items: children, elementConfig: elementConfig, isColumn: isColumn, isMain: id?.startsWith(CONFIG_PAGE_ID), renderElement: renderElement }) }))] }));
6003
6027
  });
6004
6028
 
6005
- const ChartLegendContainer = styled(Flex) `
6006
- flex-direction: column;
6007
- flex-wrap: wrap;
6008
- justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
6009
- `;
6010
- const ChartLegendItem = styled(Flex) `
6011
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6012
- align-items: center;
6013
- flex-wrap: nowrap;
6014
- width: auto;
6015
- margin-right: 0.375rem;
6016
- margin-bottom: 0.25rem;
6017
- line-height: 0.75rem;
6018
- opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6019
- `;
6020
- const ChartLegendColor = styled.div `
6021
- width: 0.5rem;
6022
- height: 0.5rem;
6023
- margin-right: 0.375rem;
6024
- background-color: ${({ color }) => color};
6025
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
6026
- `;
6027
- const ChartLegendName = styled.div `
6028
- flex: 1;
6029
- font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
6030
- color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
6031
- `;
6029
+ const ChartLegendContainer = styled(Flex) `
6030
+ flex-direction: column;
6031
+ flex-wrap: wrap;
6032
+ justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
6033
+ `;
6034
+ const ChartLegendItem = styled(Flex) `
6035
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6036
+ align-items: center;
6037
+ flex-wrap: nowrap;
6038
+ width: auto;
6039
+ margin-right: 0.375rem;
6040
+ margin-bottom: 0.25rem;
6041
+ line-height: 0.75rem;
6042
+ opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6043
+ `;
6044
+ const ChartLegendColor = styled.div `
6045
+ width: 0.5rem;
6046
+ height: 0.5rem;
6047
+ margin-right: 0.375rem;
6048
+ background-color: ${({ color }) => color};
6049
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
6050
+ `;
6051
+ const ChartLegendName = styled.div `
6052
+ flex: 1;
6053
+ font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
6054
+ color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
6055
+ `;
6056
+
6057
+ const ContainerAlias = styled(Flex) `
6058
+ align-items: center;
6059
+ flex-wrap: nowrap;
6060
+ font-size: 0.75rem;
6061
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6062
+
6063
+ &&& {
6064
+ margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
6065
+ }
6066
+
6067
+ span[kind] {
6068
+ margin-right: 0.5rem;
6032
6069
 
6033
- const ContainerAlias = styled(Flex) `
6034
- align-items: center;
6035
- flex-wrap: nowrap;
6036
- font-size: 0.75rem;
6037
- color: ${({ theme: { palette } }) => palette.textSecondary};
6038
-
6039
- &&& {
6040
- margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
6041
- }
6042
-
6043
- span[kind] {
6044
- margin-right: 0.5rem;
6045
-
6046
- :after {
6047
- color: ${({ theme: { palette } }) => palette.primary};
6048
- }
6049
- }
6050
- `;
6051
- const ContainerAliasIcon = styled.div `
6052
- margin-right: 0.5rem;
6070
+ :after {
6071
+ color: ${({ theme: { palette } }) => palette.primary};
6072
+ }
6073
+ }
6053
6074
  `;
6054
- const ContainerChart = styled(Flex) `
6055
- justify-content: flex-start;
6056
-
6057
- > * {
6058
- display: flex;
6059
- justify-content: center;
6060
- width: 100%;
6061
- }
6075
+ const ContainerAliasIcon = styled.div `
6076
+ margin-right: 0.5rem;
6077
+ `;
6078
+ const ContainerChart = styled(Flex) `
6079
+ justify-content: flex-start;
6080
+
6081
+ > * {
6082
+ display: flex;
6083
+ justify-content: center;
6084
+ width: 100%;
6085
+ }
6062
6086
  `;
6063
6087
  const ContainerLegend = styled(Flex) ``;
6064
- const ContainerUnits = styled.div `
6065
- margin-left: 0.5rem;
6066
- white-space: nowrap;
6067
- font-size: 0.75rem;
6068
- `;
6069
- const ContainerValue = styled(Flex) `
6070
- justify-content: flex-end;
6071
- align-items: center;
6072
- flex-wrap: nowrap;
6073
- width: 100%;
6074
- font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
6075
- color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
6076
-
6077
- > * {
6078
- width: ${({ column }) => (column ? "100%" : "auto")};
6079
- }
6080
-
6081
- ${ContainerChart}, ${ContainerLegend} {
6082
- width: ${({ column }) => (column ? "100%" : "50%")};
6083
- }
6084
-
6085
- ${ContainerLegend} {
6086
- margin-left: ${({ column }) => (column ? 0 : "1rem")};
6087
- }
6088
-
6089
- ${ChartLegendContainer} {
6090
- flex-direction: ${({ column }) => (column ? "row" : "column")};
6091
- margin-top: ${({ column }) => (column ? "1rem" : 0)};
6092
- }
6088
+ const ContainerUnits = styled.div `
6089
+ margin-left: 0.5rem;
6090
+ white-space: nowrap;
6091
+ font-size: 0.75rem;
6092
+ `;
6093
+ const ContainerValue = styled(Flex) `
6094
+ justify-content: flex-end;
6095
+ align-items: center;
6096
+ flex-wrap: nowrap;
6097
+ width: 100%;
6098
+ font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
6099
+ color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
6100
+
6101
+ > * {
6102
+ width: ${({ column }) => (column ? "100%" : "auto")};
6103
+ }
6104
+
6105
+ ${ContainerChart}, ${ContainerLegend} {
6106
+ width: ${({ column }) => (column ? "100%" : "50%")};
6107
+ }
6108
+
6109
+ ${ContainerLegend} {
6110
+ margin-left: ${({ column }) => (column ? 0 : "1rem")};
6111
+ }
6112
+
6113
+ ${ChartLegendContainer} {
6114
+ flex-direction: ${({ column }) => (column ? "row" : "column")};
6115
+ margin-top: ${({ column }) => (column ? "1rem" : 0)};
6116
+ }
6093
6117
  `;
6094
- const ColorIconMixin = css `
6095
- :after {
6096
- color: ${({ $fontColor }) => $fontColor} !important;
6097
- }
6118
+ const ColorIconMixin = css `
6119
+ :after {
6120
+ color: ${({ $fontColor }) => $fontColor} !important;
6121
+ }
6098
6122
  `;
6099
- const SizeIconMixin = css `
6100
- :after {
6101
- font-size: ${({ $fontSize }) => $fontSize}px !important;
6102
- }
6123
+ const SizeIconMixin = css `
6124
+ :after {
6125
+ font-size: ${({ $fontSize }) => $fontSize}px !important;
6126
+ }
6103
6127
  `;
6104
- const ContainerIcon = styled(Icon) `
6105
- width: auto;
6106
- height: auto;
6107
- margin-bottom: 0.5rem;
6108
- ${({ $fontColor }) => !!$fontColor && ColorIconMixin};
6109
- ${({ $fontSize }) => !!$fontSize && SizeIconMixin};
6110
- `;
6111
- const SvgContainerColorMixin$1 = css `
6112
- path,
6113
- line,
6114
- circle {
6115
- fill: ${({ $fontColor }) => $fontColor};
6116
- }
6128
+ const ContainerIcon = styled(Icon) `
6129
+ width: auto;
6130
+ height: auto;
6131
+ margin-bottom: 0.5rem;
6132
+ ${({ $fontColor }) => !!$fontColor && ColorIconMixin};
6133
+ ${({ $fontSize }) => !!$fontSize && SizeIconMixin};
6134
+ `;
6135
+ const SvgContainerColorMixin$1 = css `
6136
+ path,
6137
+ line,
6138
+ circle {
6139
+ fill: ${({ $fontColor }) => $fontColor};
6140
+ }
6117
6141
  `;
6118
- const SvgContainer$1 = styled.div `
6119
- &&& {
6120
- min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6121
- max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6122
-
6123
- ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
6124
-
6125
- > * {
6126
- min-width: inherit;
6127
- }
6128
- }
6142
+ const SvgContainer$1 = styled.div `
6143
+ &&& {
6144
+ min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6145
+ max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6146
+
6147
+ ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
6148
+
6149
+ > * {
6150
+ min-width: inherit;
6151
+ }
6152
+ }
6129
6153
  `;
6130
- const TwoColumnContainerWrapper = styled(Flex) `
6131
- width: 100%;
6132
- flex-direction: row;
6133
- flex-wrap: nowrap;
6134
- align-items: center;
6135
-
6136
- > * {
6137
- flex: 1;
6138
- }
6139
-
6140
- > ${ContainerValue} {
6141
- justify-content: flex-end;
6142
-
6143
- > * {
6144
- text-align: right;
6145
- }
6146
- }
6154
+ const TwoColumnContainerWrapper = styled(Flex) `
6155
+ width: 100%;
6156
+ flex-direction: row;
6157
+ flex-wrap: nowrap;
6158
+ align-items: center;
6159
+
6160
+ > * {
6161
+ flex: 1;
6162
+ }
6163
+
6164
+ > ${ContainerValue} {
6165
+ justify-content: flex-end;
6166
+
6167
+ > * {
6168
+ text-align: right;
6169
+ }
6170
+ }
6147
6171
  `;
6148
6172
 
6149
6173
  const useRenderContainerItem = (type, renderElement) => {
@@ -6224,10 +6248,10 @@ const TwoColumnContainer = memo(({ elementConfig, type, renderElement }) => {
6224
6248
  return renderAttributes?.length ? (jsx(Fragment$1, { children: renderAttributes.map(attribute => renderContainer(attribute)) })) : (renderContainer());
6225
6249
  });
6226
6250
 
6227
- const InnerContainerWrapper = styled.div `
6228
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6229
- width: ${({ column }) => (column ? "100%" : "auto")};
6230
- opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6251
+ const InnerContainerWrapper = styled.div `
6252
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6253
+ width: ${({ column }) => (column ? "100%" : "auto")};
6254
+ opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6231
6255
  `;
6232
6256
 
6233
6257
  const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValue, type, index, innerComponent }) => {
@@ -6298,107 +6322,107 @@ const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValu
6298
6322
  return (jsx(InnerContainerWrapper, { hasAnyFilter: hasAnyFilter, isFiltered: isFiltered(value), column: column === undefined || column, onClick: filterName ? () => onFilter(value) : undefined, children: jsx(InnerContainer, { config: config, elementConfig: elementConfig, feature: feature, maxValue: maxValue, type: type, index: index, renderElement: render }) }));
6299
6323
  });
6300
6324
 
6301
- const DataSourceProgressContainerWrapper = styled.div `
6302
- width: 100%;
6325
+ const DataSourceProgressContainerWrapper = styled.div `
6326
+ width: 100%;
6303
6327
  `;
6304
- const ContainerToggler = styled(LegendToggler) `
6305
- width: auto;
6306
- margin-left: -1rem;
6328
+ const ContainerToggler = styled(LegendToggler) `
6329
+ width: auto;
6330
+ margin-left: -1rem;
6307
6331
  `;
6308
6332
 
6309
- const ProgressContainerWrapper = styled(Flex) `
6310
- align-items: center;
6311
- width: 100%;
6312
- margin-bottom: 1rem;
6333
+ const ProgressContainerWrapper = styled(Flex) `
6334
+ align-items: center;
6335
+ width: 100%;
6336
+ margin-bottom: 1rem;
6313
6337
  `;
6314
- const ProgressIcon = styled.div `
6315
- margin-right: 0.5rem;
6338
+ const ProgressIcon = styled.div `
6339
+ margin-right: 0.5rem;
6316
6340
  `;
6317
- const ProgressContent = styled(Flex) `
6318
- flex: 1;
6319
- flex-direction: column;
6341
+ const ProgressContent = styled(Flex) `
6342
+ flex: 1;
6343
+ flex-direction: column;
6320
6344
  `;
6321
- const ProgressAlias = styled(Flex) `
6322
- flex: 1;
6323
- justify-content: space-between;
6324
- margin-bottom: 0.25rem;
6325
- font-size: 0.75rem;
6326
- color: ${({ theme: { palette } }) => palette.textSecondary};
6327
- `;
6328
- const ProgressValue = styled(Flex) `
6329
- align-items: center;
6330
- width: auto;
6331
- font-size: 1rem;
6332
- color: ${({ theme: { palette } }) => palette.textPrimary};
6333
- `;
6334
- const ProgressInnerValue = styled(ProgressValue) `
6335
- justify-content: flex-end;
6336
- width: 4rem;
6337
- margin-left: 0.5rem;
6338
- `;
6339
- const ProgressUnits = styled(Flex) `
6340
- margin-left: 0.25rem;
6341
- font-size: 0.75rem;
6342
- color: ${({ theme: { palette } }) => palette.textSecondary};
6343
- `;
6344
- const ProgressBarWrapper = styled.div `
6345
- flex-grow: 1;
6346
- height: 0.5rem;
6347
- background-color: ${({ theme: { palette } }) => palette.element};
6348
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6349
- `;
6350
- const ProgressBarContainer = styled(Flex) `
6351
- position: relative;
6352
- align-items: center;
6353
- width: 100%;
6354
-
6345
+ const ProgressAlias = styled(Flex) `
6346
+ flex: 1;
6347
+ justify-content: space-between;
6348
+ margin-bottom: 0.25rem;
6349
+ font-size: 0.75rem;
6350
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6351
+ `;
6352
+ const ProgressValue = styled(Flex) `
6353
+ align-items: center;
6354
+ width: auto;
6355
+ font-size: 1rem;
6356
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6357
+ `;
6358
+ const ProgressInnerValue = styled(ProgressValue) `
6359
+ justify-content: flex-end;
6360
+ width: 4rem;
6361
+ margin-left: 0.5rem;
6362
+ `;
6363
+ const ProgressUnits = styled(Flex) `
6364
+ margin-left: 0.25rem;
6365
+ font-size: 0.75rem;
6366
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6367
+ `;
6368
+ const ProgressBarWrapper = styled.div `
6369
+ flex-grow: 1;
6370
+ height: 0.5rem;
6371
+ background-color: ${({ theme: { palette } }) => palette.element};
6372
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6373
+ `;
6374
+ const ProgressBarContainer = styled(Flex) `
6375
+ position: relative;
6376
+ align-items: center;
6377
+ width: 100%;
6378
+
6355
6379
  ${({ innerValue }) => innerValue &&
6356
- css `
6357
- ${ProgressBarWrapper} {
6358
- height: 1.125rem;
6359
- }
6360
-
6361
- ${ProgressInnerValue} {
6362
- z-index: 1;
6363
- position: absolute;
6364
- right: 0.25rem;
6365
- }
6366
- `}
6367
- `;
6368
- const ProgressBar = styled.div `
6369
- width: ${({ $width }) => $width};
6370
- height: inherit;
6371
- background-color: ${({ $color }) => $color || "#a7d759"};
6372
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6373
- `;
6374
- const ProgressTooltipAlias = styled.div `
6375
- margin-bottom: 0.25rem;
6376
- text-align: left;
6377
- color: ${({ theme: { palette } }) => palette.primary};
6380
+ css `
6381
+ ${ProgressBarWrapper} {
6382
+ height: 1.125rem;
6383
+ }
6384
+
6385
+ ${ProgressInnerValue} {
6386
+ z-index: 1;
6387
+ position: absolute;
6388
+ right: 0.25rem;
6389
+ }
6390
+ `}
6391
+ `;
6392
+ const ProgressBar = styled.div `
6393
+ width: ${({ $width }) => $width};
6394
+ height: inherit;
6395
+ background-color: ${({ $color }) => $color || "#a7d759"};
6396
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6397
+ `;
6398
+ const ProgressTooltipAlias = styled.div `
6399
+ margin-bottom: 0.25rem;
6400
+ text-align: left;
6401
+ color: ${({ theme: { palette } }) => palette.primary};
6378
6402
  `;
6379
6403
  const ProgressTooltipValue = styled.div ``;
6380
- const ProgressTooltipValueContainer = styled(Flex) `
6381
- align-items: center;
6382
-
6383
- > * {
6384
- opacity: 0.65;
6385
- }
6386
-
6387
- ${ProgressTooltipValue} {
6388
- opacity: 1;
6389
- }
6404
+ const ProgressTooltipValueContainer = styled(Flex) `
6405
+ align-items: center;
6406
+
6407
+ > * {
6408
+ opacity: 0.65;
6409
+ }
6410
+
6411
+ ${ProgressTooltipValue} {
6412
+ opacity: 1;
6413
+ }
6390
6414
  `;
6391
- const ProgressTooltipValueOf = styled.div `
6392
- margin: 0 0.25rem;
6415
+ const ProgressTooltipValueOf = styled.div `
6416
+ margin: 0 0.25rem;
6393
6417
  `;
6394
- const ProgressTotalTitle = styled.div `
6395
- font-size: 0.75rem;
6396
- font-weight: bold;
6418
+ const ProgressTotalTitle = styled.div `
6419
+ font-size: 0.75rem;
6420
+ font-weight: bold;
6397
6421
  `;
6398
- const ProgressTotal = styled(Flex) `
6399
- align-items: center;
6400
- justify-content: space-between;
6401
- margin-top: 1rem;
6422
+ const ProgressTotal = styled(Flex) `
6423
+ align-items: center;
6424
+ justify-content: space-between;
6425
+ margin-top: 1rem;
6402
6426
  `;
6403
6427
 
6404
6428
  const DataSourceProgressContainer = memo(({ config, elementConfig, type, innerComponent, renderElement }) => {
@@ -6495,166 +6519,166 @@ const DEFAULT_BAR_CHART_MARGINS = {
6495
6519
  right: 0,
6496
6520
  };
6497
6521
 
6498
- const FiltersContainerWrapper = styled(Flex) `
6499
- flex-direction: column;
6500
- padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
6501
- background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
6502
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6503
-
6504
- ${DropdownField}, input {
6505
- background-color: ${({ theme: { palette } }) => palette.background};
6506
- }
6507
-
6508
- > div:not(:last-child) {
6509
- margin-bottom: 0.5rem;
6510
- }
6511
-
6512
- > label {
6513
- align-items: flex-start;
6514
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
6515
-
6516
- &.active {
6517
- color: ${({ $fontColor }) => $fontColor};
6518
-
6519
- svg rect {
6520
- fill: ${({ $fontColor }) => $fontColor} !important;
6521
- }
6522
- }
6523
-
6524
- &:not(:last-child) {
6525
- margin-bottom: 0.75rem;
6526
- }
6527
-
6528
- &:last-child {
6529
- margin-bottom: 0;
6530
- }
6531
- }
6522
+ const FiltersContainerWrapper = styled(Flex) `
6523
+ flex-direction: column;
6524
+ padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
6525
+ background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
6526
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6527
+
6528
+ ${DropdownField}, input {
6529
+ background-color: ${({ theme: { palette } }) => palette.background};
6530
+ }
6531
+
6532
+ > div:not(:last-child) {
6533
+ margin-bottom: 0.5rem;
6534
+ }
6535
+
6536
+ > label {
6537
+ align-items: flex-start;
6538
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
6539
+
6540
+ &.active {
6541
+ color: ${({ $fontColor }) => $fontColor};
6542
+
6543
+ svg rect {
6544
+ fill: ${({ $fontColor }) => $fontColor} !important;
6545
+ }
6546
+ }
6547
+
6548
+ &:not(:last-child) {
6549
+ margin-bottom: 0.75rem;
6550
+ }
6551
+
6552
+ &:last-child {
6553
+ margin-bottom: 0;
6554
+ }
6555
+ }
6532
6556
  `;
6533
- const StyledIconButton = styled(IconButton) `
6534
- width: 0.75rem;
6535
- height: 0.75rem;
6536
-
6537
- span[kind] {
6538
- height: 0.75rem;
6539
-
6540
- :after {
6541
- font-size: 0.75rem;
6542
- }
6543
- }
6557
+ const StyledIconButton = styled(IconButton) `
6558
+ width: 0.75rem;
6559
+ height: 0.75rem;
6560
+
6561
+ span[kind] {
6562
+ height: 0.75rem;
6563
+
6564
+ :after {
6565
+ font-size: 0.75rem;
6566
+ }
6567
+ }
6544
6568
  `;
6545
- const TextFilterContainer = styled.div `
6546
- width: 15.85rem;
6547
-
6548
- ${MultiSelectContainer} {
6549
- color: ${({ theme: { palette } }) => palette.textPrimary};
6550
-
6551
- ${IconButtonButton} {
6552
- span[kind]:after {
6553
- color: ${({ theme: { palette } }) => palette.textPrimary};
6554
- }
6555
- }
6556
- }
6569
+ const TextFilterContainer = styled.div `
6570
+ width: 15.85rem;
6571
+
6572
+ ${MultiSelectContainer} {
6573
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6574
+
6575
+ ${IconButtonButton} {
6576
+ span[kind]:after {
6577
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6578
+ }
6579
+ }
6580
+ }
6557
6581
  `;
6558
- const BarChartContainer = styled.div `
6559
- width: 100%;
6560
- overflow-x: hidden;
6561
-
6582
+ const BarChartContainer = styled.div `
6583
+ width: 100%;
6584
+ overflow-x: hidden;
6585
+
6562
6586
  ${({ barHeight, marginBottom }) => !!barHeight &&
6563
- css `
6564
- .barChartBarGlobal rect {
6565
- height: ${barHeight}px;
6566
- y: calc(100% - ${barHeight + marginBottom}px);
6567
- }
6568
- `}
6569
- `;
6570
- const AnyChartWrapper = styled.div `
6571
- width: 100%;
6572
- height: ${({ height }) => height}px;
6573
- `;
6574
- const BarChartWrapper = styled(AnyChartWrapper) `
6575
- width: 100%;
6576
- margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
6577
-
6578
- :hover {
6579
- ${BarChartContainer} {
6580
- overflow-x: auto;
6581
- }
6582
- }
6587
+ css `
6588
+ .barChartBarGlobal rect {
6589
+ height: ${barHeight}px;
6590
+ y: calc(100% - ${barHeight + marginBottom}px);
6591
+ }
6592
+ `}
6583
6593
  `;
6584
- const BarChartFilterHeader = styled(Flex) `
6585
- justify-content: space-between;
6586
- align-items: center;
6587
- height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
6588
- padding: 0.25rem 0;
6594
+ const AnyChartWrapper = styled.div `
6595
+ width: 100%;
6596
+ height: ${({ height }) => height}px;
6589
6597
  `;
6590
- const BarChartFilterArrows = styled(Flex) `
6591
- margin-left: -0.5rem;
6592
-
6593
- span[kind] {
6594
- display: flex;
6595
- align-items: center;
6596
-
6597
- :after {
6598
- font-size: 0.75rem;
6599
- }
6600
- }
6598
+ const BarChartWrapper = styled(AnyChartWrapper) `
6599
+ width: 100%;
6600
+ margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
6601
+
6602
+ :hover {
6603
+ ${BarChartContainer} {
6604
+ overflow-x: auto;
6605
+ }
6606
+ }
6601
6607
  `;
6602
- const BarChartFilterSelected = styled.div `
6603
- font-size: 0.75rem;
6604
- font-weight: bold;
6605
- color: ${({ theme: { palette } }) => palette.textPrimary};
6608
+ const BarChartFilterHeader = styled(Flex) `
6609
+ justify-content: space-between;
6610
+ align-items: center;
6611
+ height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
6612
+ padding: 0.25rem 0;
6606
6613
  `;
6607
- styled.div `
6608
- color: ${({ theme: { palette } }) => palette.textSecondary};
6614
+ const BarChartFilterArrows = styled(Flex) `
6615
+ margin-left: -0.5rem;
6616
+
6617
+ span[kind] {
6618
+ display: flex;
6619
+ align-items: center;
6620
+
6621
+ :after {
6622
+ font-size: 0.75rem;
6623
+ }
6624
+ }
6609
6625
  `;
6610
- const BarChart = styled(BarChart$1) `
6611
- .${barChartClassNames.barChartXAxis} {
6612
- .domain,
6613
- line {
6614
- display: none;
6615
- }
6616
-
6617
- .tick {
6618
- text {
6619
- text-anchor: start;
6620
- font-size: 12px;
6621
- color: rgba(48, 69, 79, 0.46);
6622
- }
6623
-
6624
- :last-of-type {
6625
- text {
6626
- text-anchor: end;
6627
- }
6628
- }
6629
- }
6630
- }
6631
-
6632
- .marker {
6633
- font-size: 12px;
6634
- }
6626
+ const BarChartFilterSelected = styled.div `
6627
+ font-size: 0.75rem;
6628
+ font-weight: bold;
6629
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6635
6630
  `;
6636
- const TooltipContainer = styled.div `
6637
- position: relative;
6638
- font-size: 0.75rem;
6639
- color: #ffffff;
6640
- margin-bottom: 0.5rem;
6641
- padding: 0.375rem;
6642
- background-color: rgba(0, 0, 0, 1);
6643
- border-radius: 0.25rem;
6644
- box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
6645
-
6646
- :before {
6647
- content: "";
6648
- position: absolute;
6649
- bottom: 0;
6650
- left: 50%;
6651
- transform: translate(-50%, 100%);
6652
- width: 0;
6653
- height: 0;
6654
- border-style: solid;
6655
- border-width: 0.25rem 0.1875rem 0 0.1875rem;
6656
- border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
6657
- }
6631
+ styled.div `
6632
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6633
+ `;
6634
+ const BarChart = styled(BarChart$1) `
6635
+ .${barChartClassNames.barChartXAxis} {
6636
+ .domain,
6637
+ line {
6638
+ display: none;
6639
+ }
6640
+
6641
+ .tick {
6642
+ text {
6643
+ text-anchor: start;
6644
+ font-size: 12px;
6645
+ color: rgba(48, 69, 79, 0.46);
6646
+ }
6647
+
6648
+ :last-of-type {
6649
+ text {
6650
+ text-anchor: end;
6651
+ }
6652
+ }
6653
+ }
6654
+ }
6655
+
6656
+ .marker {
6657
+ font-size: 12px;
6658
+ }
6659
+ `;
6660
+ const TooltipContainer = styled.div `
6661
+ position: relative;
6662
+ font-size: 0.75rem;
6663
+ color: #ffffff;
6664
+ margin-bottom: 0.5rem;
6665
+ padding: 0.375rem;
6666
+ background-color: rgba(0, 0, 0, 1);
6667
+ border-radius: 0.25rem;
6668
+ box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
6669
+
6670
+ :before {
6671
+ content: "";
6672
+ position: absolute;
6673
+ bottom: 0;
6674
+ left: 50%;
6675
+ transform: translate(-50%, 100%);
6676
+ width: 0;
6677
+ height: 0;
6678
+ border-style: solid;
6679
+ border-width: 0.25rem 0.1875rem 0 0.1875rem;
6680
+ border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
6681
+ }
6658
6682
  `;
6659
6683
 
6660
6684
  const FiltersContainer = memo(({ elementConfig, config, type, renderElement }) => {
@@ -6731,64 +6755,64 @@ const PagesContainer = memo(({ type = WidgetType.Dashboard, noBorders }) => {
6731
6755
  return (jsx(Container, { id: getRootElementId(type), style: { width }, isMain: true, isColumn: isColumn, noBorders: noBorders, children: jsx(ContainerChildren, { type: type, items: filteredChildren, isMain: true, renderElement: renderElement }) }));
6732
6756
  });
6733
6757
 
6734
- const ImageContainerBg$1 = styled.div `
6735
- position: absolute;
6736
- top: 0;
6737
- bottom: 0;
6738
- left: 0;
6739
- right: 0;
6740
-
6741
- img {
6742
- width: 100%;
6743
- height: 100%;
6744
- object-position: center;
6745
- object-fit: cover;
6746
- }
6758
+ const ImageContainerBg$1 = styled.div `
6759
+ position: absolute;
6760
+ top: 0;
6761
+ bottom: 0;
6762
+ left: 0;
6763
+ right: 0;
6764
+
6765
+ img {
6766
+ width: 100%;
6767
+ height: 100%;
6768
+ object-position: center;
6769
+ object-fit: cover;
6770
+ }
6747
6771
  `;
6748
- const ImageContainerTitle = styled.div `
6749
- width: 100%;
6750
- overflow-wrap: break-word;
6751
- font-size: 1rem;
6752
- font-weight: 500;
6753
- `;
6754
- const ImageContainerText = styled.div `
6755
- width: 100%;
6756
- overflow-wrap: break-word;
6757
- margin-top: 0.5rem;
6758
- font-size: 0.75rem;
6759
- `;
6760
- const ImageContainerButton$1 = styled(FlatButton) `
6761
- min-height: 1.5rem;
6762
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
6763
- background-color: ${({ theme: { palette } }) => palette.primary};
6764
- text-transform: none;
6765
-
6766
- :hover {
6767
- background-color: ${({ theme: { palette } }) => palette.primaryDeep};
6768
- }
6772
+ const ImageContainerTitle = styled.div `
6773
+ width: 100%;
6774
+ overflow-wrap: break-word;
6775
+ font-size: 1rem;
6776
+ font-weight: 500;
6777
+ `;
6778
+ const ImageContainerText = styled.div `
6779
+ width: 100%;
6780
+ overflow-wrap: break-word;
6781
+ margin-top: 0.5rem;
6782
+ font-size: 0.75rem;
6783
+ `;
6784
+ const ImageContainerButton$1 = styled(FlatButton) `
6785
+ min-height: 1.5rem;
6786
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
6787
+ background-color: ${({ theme: { palette } }) => palette.primary};
6788
+ text-transform: none;
6789
+
6790
+ :hover {
6791
+ background-color: ${({ theme: { palette } }) => palette.primaryDeep};
6792
+ }
6769
6793
  `;
6770
- const ImageContainerWrapper = styled(Flex) `
6771
- flex-direction: column;
6772
- justify-content: flex-end;
6773
- position: relative;
6774
- padding: 1rem;
6775
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6776
- overflow: hidden;
6777
-
6778
- ${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
6779
- z-index: 1;
6780
- color: ${({ theme: { palette } }) => palette.textContrast};
6781
- }
6782
-
6783
- :after {
6784
- content: "";
6785
- position: absolute;
6786
- top: 0;
6787
- bottom: 0;
6788
- left: 0;
6789
- right: 0;
6790
- background-color: rgba(0, 0, 0, 0.4);
6791
- }
6794
+ const ImageContainerWrapper = styled(Flex) `
6795
+ flex-direction: column;
6796
+ justify-content: flex-end;
6797
+ position: relative;
6798
+ padding: 1rem;
6799
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6800
+ overflow: hidden;
6801
+
6802
+ ${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
6803
+ z-index: 1;
6804
+ color: ${({ theme: { palette } }) => palette.textContrast};
6805
+ }
6806
+
6807
+ :after {
6808
+ content: "";
6809
+ position: absolute;
6810
+ top: 0;
6811
+ bottom: 0;
6812
+ left: 0;
6813
+ right: 0;
6814
+ background-color: rgba(0, 0, 0, 0.4);
6815
+ }
6792
6816
  `;
6793
6817
 
6794
6818
  const ImageContainer = memo(({ elementConfig, renderElement }) => {
@@ -6796,52 +6820,52 @@ const ImageContainer = memo(({ elementConfig, renderElement }) => {
6796
6820
  return (jsxs(ImageContainerWrapper, { id: id, style: style, children: [jsx(ImageContainerTitle, { children: renderElement({ id: "alias" }) }), jsx(ImageContainerText, { children: renderElement({ id: "text" }) }), renderElement({ id: "button" }), jsx(ImageContainerBg$1, { children: renderElement({ id: "image" }) })] }));
6797
6821
  });
6798
6822
 
6799
- const IconContainerWrapper = styled(Flex) `
6800
- flex-direction: column;
6801
- justify-content: center;
6802
- position: relative;
6803
- padding: 0.5rem 1rem 1rem;
6804
- background-color: ${({ theme: { palette } }) => palette.element};
6805
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6806
- overflow: hidden;
6807
- `;
6808
- const IconContainerHeaderWrapper = styled(Flex) `
6809
- justify-content: space-between;
6810
- align-items: center;
6811
- flex-wrap: nowrap;
6812
- width: 100%;
6813
- margin-bottom: 0.25rem;
6814
- `;
6815
- const IconContainerHeader = styled(Flex) `
6816
- align-items: center;
6817
- flex-wrap: nowrap;
6818
- width: 100%;
6819
- margin-right: 0.5rem;
6820
- font-size: 0.875rem;
6821
-
6822
- ${Icon} {
6823
- margin-right: 0.5rem;
6824
-
6825
- :after {
6826
- font-size: 1.15rem;
6827
- color: ${({ theme: { palette } }) => palette.textSecondary};
6828
- }
6829
- }
6823
+ const IconContainerWrapper = styled(Flex) `
6824
+ flex-direction: column;
6825
+ justify-content: center;
6826
+ position: relative;
6827
+ padding: 0.5rem 1rem 1rem;
6828
+ background-color: ${({ theme: { palette } }) => palette.element};
6829
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6830
+ overflow: hidden;
6831
+ `;
6832
+ const IconContainerHeaderWrapper = styled(Flex) `
6833
+ justify-content: space-between;
6834
+ align-items: center;
6835
+ flex-wrap: nowrap;
6836
+ width: 100%;
6837
+ margin-bottom: 0.25rem;
6838
+ `;
6839
+ const IconContainerHeader = styled(Flex) `
6840
+ align-items: center;
6841
+ flex-wrap: nowrap;
6842
+ width: 100%;
6843
+ margin-right: 0.5rem;
6844
+ font-size: 0.875rem;
6845
+
6846
+ ${Icon} {
6847
+ margin-right: 0.5rem;
6848
+
6849
+ :after {
6850
+ font-size: 1.15rem;
6851
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6852
+ }
6853
+ }
6830
6854
  `;
6831
- const IconContainerTitle = styled(Flex) `
6832
- > * {
6833
- width: 13rem;
6834
- white-space: nowrap;
6835
- overflow: hidden;
6836
- font-weight: bold;
6837
- text-overflow: ellipsis;
6838
- }
6855
+ const IconContainerTitle = styled(Flex) `
6856
+ > * {
6857
+ width: 13rem;
6858
+ white-space: nowrap;
6859
+ overflow: hidden;
6860
+ font-weight: bold;
6861
+ text-overflow: ellipsis;
6862
+ }
6839
6863
  `;
6840
- const IconContainerText = styled.div `
6841
- width: 100%;
6842
- overflow-wrap: break-word;
6843
- font-size: 0.75rem;
6844
- color: ${({ theme: { palette } }) => palette.textSecondary};
6864
+ const IconContainerText = styled.div `
6865
+ width: 100%;
6866
+ overflow-wrap: break-word;
6867
+ font-size: 0.75rem;
6868
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6845
6869
  `;
6846
6870
 
6847
6871
  const IconContainer = memo(({ elementConfig, renderElement }) => {
@@ -6864,107 +6888,107 @@ const DataSourceContainer = memo(({ config, elementConfig, type, innerComponent,
6864
6888
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), !isVisible ? null : dataSource ? (jsx(Container, { id: id, isColumn: column, style: { height: isLoading ? "3rem" : "auto", ...style }, children: dataSource.features?.map((feature, index) => (jsx(DataSourceInnerContainer, { index: index, type: type, config: config, feature: feature, elementConfig: elementConfig, innerComponent: innerComponent }, index))) })) : (jsx(ContainerLoading, {}))] }));
6865
6889
  });
6866
6890
 
6867
- const SvgContainerColorMixin = css `
6868
- path,
6869
- line,
6870
- circle {
6871
- fill: ${({ $fontColor }) => $fontColor};
6872
- }
6891
+ const SvgContainerColorMixin = css `
6892
+ path,
6893
+ line,
6894
+ circle {
6895
+ fill: ${({ $fontColor }) => $fontColor};
6896
+ }
6873
6897
  `;
6874
- const SvgContainer = styled.div `
6875
- &&& {
6876
- min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6877
- max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6878
-
6879
- ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
6880
-
6881
- > * {
6882
- min-width: inherit;
6883
- }
6884
- }
6898
+ const SvgContainer = styled.div `
6899
+ &&& {
6900
+ min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6901
+ max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6902
+
6903
+ ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
6904
+
6905
+ > * {
6906
+ min-width: inherit;
6907
+ }
6908
+ }
6885
6909
  `;
6886
6910
 
6887
- const ContainerIconTitle = styled(Flex) `
6888
- align-items: center;
6889
- flex-wrap: nowrap;
6890
- flex-shrink: 1;
6891
- flex-grow: 0;
6892
- color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
6893
-
6894
- > div {
6895
- flex-shrink: 1;
6896
- flex-grow: 0;
6897
- width: auto;
6898
- }
6899
-
6900
- ${SvgContainer} {
6901
- flex-shrink: 0;
6902
- flex-grow: 0;
6903
- margin-right: 0.5rem;
6904
- }
6905
-
6906
- svg,
6907
- img,
6908
- span[kind] {
6909
- margin-right: 0.5rem;
6910
- }
6911
-
6911
+ const ContainerIconTitle = styled(Flex) `
6912
+ align-items: center;
6913
+ flex-wrap: nowrap;
6914
+ flex-shrink: 1;
6915
+ flex-grow: 0;
6916
+ color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
6917
+
6918
+ > div {
6919
+ flex-shrink: 1;
6920
+ flex-grow: 0;
6921
+ width: auto;
6922
+ }
6923
+
6924
+ ${SvgContainer} {
6925
+ flex-shrink: 0;
6926
+ flex-grow: 0;
6927
+ margin-right: 0.5rem;
6928
+ }
6929
+
6930
+ svg,
6931
+ img,
6932
+ span[kind] {
6933
+ margin-right: 0.5rem;
6934
+ }
6935
+
6912
6936
  ${({ fontColor }) => !!fontColor &&
6913
- css `
6914
- span[kind] {
6915
- color: ${fontColor};
6916
- }
6917
-
6918
- ${SvgContainer} {
6919
- path,
6920
- circle {
6921
- fill: ${fontColor};
6922
- }
6923
- }
6924
- `};
6925
-
6926
- ${LegendToggler} {
6927
- margin-left: 0.25rem;
6928
- }
6929
-
6930
- span[kind="download"] {
6931
- opacity: 0;
6932
- transition: opacity ${transition.hover};
6933
- }
6934
-
6935
- :hover {
6936
- span[kind="download"] {
6937
- opacity: 1;
6938
- }
6939
- }
6937
+ css `
6938
+ span[kind] {
6939
+ color: ${fontColor};
6940
+ }
6941
+
6942
+ ${SvgContainer} {
6943
+ path,
6944
+ circle {
6945
+ fill: ${fontColor};
6946
+ }
6947
+ }
6948
+ `};
6949
+
6950
+ ${LegendToggler} {
6951
+ margin-left: 0.25rem;
6952
+ }
6953
+
6954
+ span[kind="download"] {
6955
+ opacity: 0;
6956
+ transition: opacity ${transition.hover};
6957
+ }
6958
+
6959
+ :hover {
6960
+ span[kind="download"] {
6961
+ opacity: 1;
6962
+ }
6963
+ }
6940
6964
  `;
6941
- const ContainerTitle = styled(Flex) `
6942
- align-items: center;
6943
- justify-content: space-between;
6944
- width: 100%;
6945
-
6946
- > * {
6947
- font-size: 1.125rem;
6948
- font-weight: 500;
6949
- }
6950
-
6951
- ${LegendToggler} {
6952
- padding-right: 0;
6953
- }
6954
-
6965
+ const ContainerTitle = styled(Flex) `
6966
+ align-items: center;
6967
+ justify-content: space-between;
6968
+ width: 100%;
6969
+
6970
+ > * {
6971
+ font-size: 1.125rem;
6972
+ font-weight: 500;
6973
+ }
6974
+
6975
+ ${LegendToggler} {
6976
+ padding-right: 0;
6977
+ }
6978
+
6955
6979
  ${({ simple }) => simple &&
6956
- css `
6957
- justify-content: flex-start;
6958
-
6959
- ${ContainerIconTitle} {
6960
- font-size: 0.75rem;
6961
- }
6962
-
6963
- ${LegendToggler} {
6964
- margin-left: 0;
6965
- padding-left: 0.25rem;
6966
- }
6967
- `}
6980
+ css `
6981
+ justify-content: flex-start;
6982
+
6983
+ ${ContainerIconTitle} {
6984
+ font-size: 0.75rem;
6985
+ }
6986
+
6987
+ ${LegendToggler} {
6988
+ margin-left: 0;
6989
+ padding-left: 0.25rem;
6990
+ }
6991
+ `}
6968
6992
  `;
6969
6993
 
6970
6994
  const TitleContainer = memo(({ containerId, templateName, layerNames, fontColor, expandable, expanded, isVisible, elementConfig, renderElement, type, }) => {
@@ -7038,82 +7062,82 @@ const CameraContainer = memo(({ elementConfig, type, renderElement }) => {
7038
7062
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && (jsxs(Container, { id: id, style: style, children: [jsx(ContainerAlias, { hasBottomMargin: true, children: renderElement({ id: "alias" }) }), jsx(ContainerValue, { children: renderElement({ id: "value", wrap: false }) })] }))] }));
7039
7063
  });
7040
7064
 
7041
- const TabAnchor = styled.div `
7042
- position: absolute;
7043
- top: -1.5rem;
7044
- right: 0;
7065
+ const TabAnchor = styled.div `
7066
+ position: absolute;
7067
+ top: -1.5rem;
7068
+ right: 0;
7045
7069
  `;
7046
- const TabValue = styled(Flex) `
7047
- flex-wrap: nowrap;
7070
+ const TabValue = styled(Flex) `
7071
+ flex-wrap: nowrap;
7048
7072
  `;
7049
- const noBgMixin = css `
7050
- background-color: transparent;
7051
- border-radius: 0;
7052
- border-bottom: 0.125rem solid
7053
- ${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
7054
-
7055
- ${TabValue},
7056
- span[kind] {
7057
- color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7058
- }
7059
-
7060
- &&& svg {
7061
- path,
7062
- line,
7063
- circle {
7064
- fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7065
- }
7066
- }
7067
-
7068
- :not(:last-child) {
7069
- margin-right: 0;
7070
- }
7073
+ const noBgMixin = css `
7074
+ background-color: transparent;
7075
+ border-radius: 0;
7076
+ border-bottom: 0.125rem solid
7077
+ ${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
7078
+
7079
+ ${TabValue},
7080
+ span[kind] {
7081
+ color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7082
+ }
7083
+
7084
+ &&& svg {
7085
+ path,
7086
+ line,
7087
+ circle {
7088
+ fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7089
+ }
7090
+ }
7091
+
7092
+ :not(:last-child) {
7093
+ margin-right: 0;
7094
+ }
7071
7095
  `;
7072
- const TabContainer = styled.a `
7073
- display: flex;
7074
- flex-direction: ${({ column }) => (column ? "column" : "row")};
7075
- align-items: center;
7076
- justify-content: center;
7077
- flex-wrap: nowrap;
7078
- padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
7079
- background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
7080
- border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
7081
- text-decoration: none;
7082
-
7083
- :not(:last-child) {
7084
- margin-right: 0.5rem;
7085
- }
7086
-
7087
- ${TabValue} {
7088
- margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
7089
- margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
7090
- font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
7091
- white-space: nowrap;
7092
- }
7093
-
7094
- ${TabValue},
7095
- span[kind] {
7096
- color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
7097
- }
7098
-
7099
- ${SvgContainer$1} {
7100
- height: 1rem;
7101
- }
7102
-
7103
- svg,
7104
- img {
7105
- max-width: 1rem;
7106
- max-height: 1rem;
7107
- }
7108
-
7109
- ${({ noBg }) => noBg && noBgMixin};
7096
+ const TabContainer = styled.a `
7097
+ display: flex;
7098
+ flex-direction: ${({ column }) => (column ? "column" : "row")};
7099
+ align-items: center;
7100
+ justify-content: center;
7101
+ flex-wrap: nowrap;
7102
+ padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
7103
+ background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
7104
+ border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
7105
+ text-decoration: none;
7106
+
7107
+ :not(:last-child) {
7108
+ margin-right: 0.5rem;
7109
+ }
7110
+
7111
+ ${TabValue} {
7112
+ margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
7113
+ margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
7114
+ font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
7115
+ white-space: nowrap;
7116
+ }
7117
+
7118
+ ${TabValue},
7119
+ span[kind] {
7120
+ color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
7121
+ }
7122
+
7123
+ ${SvgContainer$1} {
7124
+ height: 1rem;
7125
+ }
7126
+
7127
+ svg,
7128
+ img {
7129
+ max-width: 1rem;
7130
+ max-height: 1rem;
7131
+ }
7132
+
7133
+ ${({ noBg }) => noBg && noBgMixin};
7110
7134
  `;
7111
- const SwiperContainer = styled.div `
7112
- width: 100%;
7113
-
7114
- .swiper-wrapper {
7115
- display: flex;
7116
- }
7135
+ const SwiperContainer = styled.div `
7136
+ width: 100%;
7137
+
7138
+ .swiper-wrapper {
7139
+ display: flex;
7140
+ }
7117
7141
  `;
7118
7142
 
7119
7143
  const TabsContainer = memo(({ elementConfig, type }) => {
@@ -7141,96 +7165,96 @@ const TabsContainer = memo(({ elementConfig, type }) => {
7141
7165
  });
7142
7166
 
7143
7167
  const ContainerIconValue = styled(Flex) ``;
7144
- const RoundedBackgroundContainerWrapper = styled(Flex) `
7145
- position: relative;
7146
- flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
7147
- width: 9rem;
7148
- padding: 0.75rem 0.75rem 0.5rem;
7149
- background-color: ${({ theme: { palette } }) => palette.element};
7150
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
7151
- flex-wrap: nowrap;
7152
-
7153
- && {
7154
- margin-bottom: 0.5rem;
7155
- }
7156
-
7168
+ const RoundedBackgroundContainerWrapper = styled(Flex) `
7169
+ position: relative;
7170
+ flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
7171
+ width: 9rem;
7172
+ padding: 0.75rem 0.75rem 0.5rem;
7173
+ background-color: ${({ theme: { palette } }) => palette.element};
7174
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
7175
+ flex-wrap: nowrap;
7176
+
7177
+ && {
7178
+ margin-bottom: 0.5rem;
7179
+ }
7180
+
7157
7181
  ${({ $center }) => $center &&
7158
- css `
7159
- align-items: center;
7160
-
7161
- > * {
7162
- display: flex;
7163
- justify-content: center;
7164
- text-align: center;
7165
- width: 100%;
7166
- }
7167
- `};
7168
-
7182
+ css `
7183
+ align-items: center;
7184
+
7185
+ > * {
7186
+ display: flex;
7187
+ justify-content: center;
7188
+ text-align: center;
7189
+ width: 100%;
7190
+ }
7191
+ `};
7192
+
7169
7193
  ${({ $color }) => $color &&
7170
- css `
7171
- background-color: ${transparentizeColor($color, 6)};
7172
-
7173
- * {
7174
- color: ${$color};
7175
- }
7176
- `};
7177
-
7178
- ${ContainerIcon}, ${SvgContainer$1} {
7179
- margin-bottom: 0.25rem;
7180
- }
7181
-
7194
+ css `
7195
+ background-color: ${transparentizeColor($color, 6)};
7196
+
7197
+ * {
7198
+ color: ${$color};
7199
+ }
7200
+ `};
7201
+
7202
+ ${ContainerIcon}, ${SvgContainer$1} {
7203
+ margin-bottom: 0.25rem;
7204
+ }
7205
+
7182
7206
  ${({ $bigIcon }) => $bigIcon &&
7183
- css `
7184
- ${ContainerIcon}, ${SvgContainer$1} {
7185
- position: absolute;
7186
- top: 0.75rem;
7187
- right: 0.75rem;
7188
- width: 3rem;
7189
- opacity: 0.12;
7190
-
7191
- :after {
7192
- font-size: 3rem;
7193
- }
7194
- }
7195
- `};
7196
-
7197
- ${ContainerIconValue} {
7198
- align-items: center;
7199
- flex-direction: column;
7200
-
7207
+ css `
7208
+ ${ContainerIcon}, ${SvgContainer$1} {
7209
+ position: absolute;
7210
+ top: 0.75rem;
7211
+ right: 0.75rem;
7212
+ width: 3rem;
7213
+ opacity: 0.12;
7214
+
7215
+ :after {
7216
+ font-size: 3rem;
7217
+ }
7218
+ }
7219
+ `};
7220
+
7221
+ ${ContainerIconValue} {
7222
+ align-items: center;
7223
+ flex-direction: column;
7224
+
7201
7225
  ${({ $big }) => $big &&
7202
- css `
7203
- flex-direction: row;
7204
- margin-bottom: 0.5rem;
7205
-
7206
- > * {
7207
- text-align: left;
7208
- }
7209
-
7210
- span[kind] {
7211
- margin-right: 0.5rem;
7212
- }
7213
-
7214
- ${ContainerValue} {
7215
- width: auto;
7216
- }
7217
- `};
7218
- }
7219
-
7220
- ${ContainerValue} {
7221
- flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
7222
- justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
7223
- align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
7224
- line-height: 1;
7225
- }
7226
-
7227
- ${ContainerUnits} {
7228
- margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
7229
- }
7230
-
7231
- ${ContainerAlias} {
7232
- margin-top: 0.25rem;
7233
- }
7226
+ css `
7227
+ flex-direction: row;
7228
+ margin-bottom: 0.5rem;
7229
+
7230
+ > * {
7231
+ text-align: left;
7232
+ }
7233
+
7234
+ span[kind] {
7235
+ margin-right: 0.5rem;
7236
+ }
7237
+
7238
+ ${ContainerValue} {
7239
+ width: auto;
7240
+ }
7241
+ `};
7242
+ }
7243
+
7244
+ ${ContainerValue} {
7245
+ flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
7246
+ justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
7247
+ align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
7248
+ line-height: 1;
7249
+ }
7250
+
7251
+ ${ContainerUnits} {
7252
+ margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
7253
+ }
7254
+
7255
+ ${ContainerAlias} {
7256
+ margin-top: 0.25rem;
7257
+ }
7234
7258
  `;
7235
7259
 
7236
7260
  const ALIAS_DEFAULT_MAX_LENGTH = 28;
@@ -7277,20 +7301,20 @@ const AddFeatureContainer = memo(({ elementConfig }) => {
7277
7301
  .map(({ options }, index) => (jsx(AddFeatureButton, { icon: options?.icon, title: options?.title, layerName: options?.layerName, geometryType: options?.geometryType }, index))) }));
7278
7302
  });
7279
7303
 
7280
- const LayersContainerWrapper = styled(Container) `
7281
- ${DraggableTreeContainer} {
7282
- width: calc(100% + 3rem);
7283
- margin: -0.75rem -1.5rem 0;
7284
- }
7285
-
7286
- ${LayerListContainer} {
7287
- height: auto;
7288
- }
7289
-
7290
- ${LayerGroupList} {
7291
- margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
7292
- padding: 0;
7293
- }
7304
+ const LayersContainerWrapper = styled(Container) `
7305
+ ${DraggableTreeContainer} {
7306
+ width: calc(100% + 3rem);
7307
+ margin: -0.75rem -1.5rem 0;
7308
+ }
7309
+
7310
+ ${LayerListContainer} {
7311
+ height: auto;
7312
+ }
7313
+
7314
+ ${LayerGroupList} {
7315
+ margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
7316
+ padding: 0;
7317
+ }
7294
7318
  `;
7295
7319
 
7296
7320
  const LayersContainer = memo(({ type, elementConfig, renderElement }) => {
@@ -7325,9 +7349,9 @@ const UploadContainer = memo(({ type, elementConfig, renderElement }) => {
7325
7349
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && renderElement({ id: "uploader", wrap: false })] }));
7326
7350
  });
7327
7351
 
7328
- const StatusBadge = styled(Chip) `
7329
- background-color: ${({ bgColor }) => bgColor};
7330
- color: ${({ theme }) => theme.palette.iconContrast};
7352
+ const StatusBadge = styled(Chip) `
7353
+ background-color: ${({ bgColor }) => bgColor};
7354
+ color: ${({ theme }) => theme.palette.iconContrast};
7331
7355
  `;
7332
7356
 
7333
7357
  const STATUS_TRANSLATION_KEYS = {
@@ -7385,22 +7409,22 @@ var EditGeometryType;
7385
7409
  EditGeometryType["Raster"] = "raster";
7386
7410
  })(EditGeometryType || (EditGeometryType = {}));
7387
7411
 
7388
- const StyledButton = styled(FlatButton) `
7389
- display: flex;
7390
- align-items: center;
7391
-
7392
- ${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
7393
- transition: background-color ${transition.toggle};
7394
- background-color: ${statusColors[status]};
7395
-
7396
- :hover {
7397
- background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
7398
- }
7399
-
7400
- :active {
7401
- background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
7402
- }
7403
- `}
7412
+ const StyledButton = styled(FlatButton) `
7413
+ display: flex;
7414
+ align-items: center;
7415
+
7416
+ ${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
7417
+ transition: background-color ${transition.toggle};
7418
+ background-color: ${statusColors[status]};
7419
+
7420
+ :hover {
7421
+ background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
7422
+ }
7423
+
7424
+ :active {
7425
+ background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
7426
+ }
7427
+ `}
7404
7428
  `;
7405
7429
 
7406
7430
  const StatusWaitingButton = ({ title, icon = "play", status, statusColors, isWaiting, isDisabled, onClick }) => {
@@ -7564,23 +7588,23 @@ const EditDropdownContainer = ({ type, elementConfig, renderElement, }) => {
7564
7588
  return (jsxs(Container, { id: id, isColumn: true, style: { ...BASE_CONTAINER_STYLE, ...style }, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [renderElement({ id: "alias" }), renderElement({ id: "tooltip" })] }), jsx(ContainerValue, { column: true, children: jsx(Dropdown, { zIndex: 1000, label: control.label, placeholder: control.placeholder, options: optionsList, value: value, width: `${control.width ?? DEFAULT_DROPDOWN_WIDTH}px`, onChange: ([option]) => onChange(option.value) }) })] }));
7565
7589
  };
7566
7590
 
7567
- const CheckboxWrapper = styled(ContainerValue) `
7568
- flex-wrap: wrap;
7569
-
7570
- && > label {
7571
- cursor: pointer;
7572
- margin-bottom: 0.25rem;
7573
- }
7591
+ const CheckboxWrapper = styled(ContainerValue) `
7592
+ flex-wrap: wrap;
7593
+
7594
+ && > label {
7595
+ cursor: pointer;
7596
+ margin-bottom: 0.25rem;
7597
+ }
7574
7598
  `;
7575
- const ChipsWrapper = styled(ContainerValue) `
7576
- flex-wrap: wrap;
7577
-
7578
- && > span {
7579
- cursor: pointer;
7580
- margin: 0 0.25rem 0.25rem 0;
7581
- padding: 0.25rem 0.5rem;
7582
- border-radius: 0.25rem;
7583
- }
7599
+ const ChipsWrapper = styled(ContainerValue) `
7600
+ flex-wrap: wrap;
7601
+
7602
+ && > span {
7603
+ cursor: pointer;
7604
+ margin: 0 0.25rem 0.25rem 0;
7605
+ padding: 0.25rem 0.5rem;
7606
+ border-radius: 0.25rem;
7607
+ }
7584
7608
  `;
7585
7609
 
7586
7610
  const EditChipsContainer = ({ type, elementConfig, renderElement, }) => {
@@ -7605,9 +7629,9 @@ const EditDateContainer = ({ type, elementConfig, renderElement, }) => {
7605
7629
  return (jsxs(Container, { id: id, isColumn: true, style: { ...BASE_CONTAINER_STYLE, ...style }, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [renderElement({ id: "alias" }), renderElement({ id: "tooltip" })] }), jsx(ContainerValue, { column: true, children: jsx(DatePicker, { value: dateValue, locale: getLocale(language), withTime: withTime ?? false, withHeader: true, width: "100%", onChange: handleChange }) })] }));
7606
7630
  };
7607
7631
 
7608
- const ContainerDivider = styled(Divider) `
7609
- width: 100%;
7610
- border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
7632
+ const ContainerDivider = styled(Divider) `
7633
+ width: 100%;
7634
+ border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
7611
7635
  `;
7612
7636
 
7613
7637
  const DividerContainer = memo(({ elementConfig, config }) => {
@@ -7657,149 +7681,149 @@ const getContainerComponent = (innerTemplateName) => innerTemplateName
7657
7681
  var img$3 = "data:image/png;base64,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";
7658
7682
 
7659
7683
  const getMaskColor = (isDark) => (isDark ? "0, 0, 0" : "255, 255, 255");
7660
- const DefaultHeaderContainer = styled(Flex) `
7661
- flex-direction: column;
7662
- position: relative;
7663
- flex-shrink: 0;
7664
- min-height: 8.175rem;
7665
- margin-bottom: -1.5rem;
7666
- padding: 1.5rem 1.5rem 0;
7667
- border-top-left-radius: 0.5rem;
7668
- border-top-right-radius: 0.5rem;
7669
- overflow: hidden;
7670
-
7671
- > * {
7672
- z-index: 1;
7673
- }
7674
-
7675
- &::before {
7676
- content: "";
7677
- position: absolute;
7678
- top: 0;
7679
- left: 0;
7680
- width: 100%;
7681
- height: 100%;
7682
-
7684
+ const DefaultHeaderContainer = styled(Flex) `
7685
+ flex-direction: column;
7686
+ position: relative;
7687
+ flex-shrink: 0;
7688
+ min-height: 8.175rem;
7689
+ margin-bottom: -1.5rem;
7690
+ padding: 1.5rem 1.5rem 0;
7691
+ border-top-left-radius: 0.5rem;
7692
+ border-top-right-radius: 0.5rem;
7693
+ overflow: hidden;
7694
+
7695
+ > * {
7696
+ z-index: 1;
7697
+ }
7698
+
7699
+ &::before {
7700
+ content: "";
7701
+ position: absolute;
7702
+ top: 0;
7703
+ left: 0;
7704
+ width: 100%;
7705
+ height: 100%;
7706
+
7683
7707
  ${({ image, isDark }) => image
7684
- ? css `
7685
- background: url(${image}) 0 0 no-repeat;
7686
- background-size: cover;
7708
+ ? css `
7709
+ background: url(${image}) 0 0 no-repeat;
7710
+ background-size: cover;
7687
7711
  `
7688
- : css `
7689
- background: url(${img$3}) 50% 0 no-repeat;
7690
- opacity: ${isDark ? 1 : 0.5};
7691
- `}
7692
- }
7693
-
7712
+ : css `
7713
+ background: url(${img$3}) 50% 0 no-repeat;
7714
+ opacity: ${isDark ? 1 : 0.5};
7715
+ `}
7716
+ }
7717
+
7694
7718
  ${({ image, isDark }) => image &&
7695
- css `
7696
- &::before {
7697
- -webkit-mask-image: linear-gradient(
7698
- to bottom,
7699
- rgba(${getMaskColor(isDark)}, 1),
7700
- rgba(${getMaskColor(isDark)}, 0)
7701
- );
7702
- mask-image: linear-gradient(to bottom, rgba(${getMaskColor(isDark)}, 1), rgba(${getMaskColor(isDark)}, 0));
7703
- }
7704
- `}
7705
- ${LinearProgress} {
7706
- position: absolute;
7707
- top: 0;
7708
- left: 0;
7709
- }
7719
+ css `
7720
+ &::before {
7721
+ -webkit-mask-image: linear-gradient(
7722
+ to bottom,
7723
+ rgba(${getMaskColor(isDark)}, 1),
7724
+ rgba(${getMaskColor(isDark)}, 0)
7725
+ );
7726
+ mask-image: linear-gradient(to bottom, rgba(${getMaskColor(isDark)}, 1), rgba(${getMaskColor(isDark)}, 0));
7727
+ }
7728
+ `}
7729
+ ${LinearProgress} {
7730
+ position: absolute;
7731
+ top: 0;
7732
+ left: 0;
7733
+ }
7710
7734
  `;
7711
- const TopContainer = styled(Flex) `
7712
- z-index: 1;
7713
- position: relative;
7714
- justify-content: space-between;
7715
- flex-wrap: nowrap;
7716
- width: 100%;
7717
- align-items: flex-start;
7718
- `;
7719
- const TopContainerButtons = styled(Flex) `
7720
- align-items: center;
7721
- width: auto;
7722
- margin-right: -0.5rem;
7723
-
7724
- button {
7725
- width: auto;
7726
- height: 1rem;
7727
- padding: 0 0.5rem;
7728
- }
7735
+ const TopContainer = styled(Flex) `
7736
+ z-index: 1;
7737
+ position: relative;
7738
+ justify-content: space-between;
7739
+ flex-wrap: nowrap;
7740
+ width: 100%;
7741
+ align-items: flex-start;
7742
+ `;
7743
+ const TopContainerButtons = styled(Flex) `
7744
+ align-items: center;
7745
+ width: auto;
7746
+ margin-right: -0.5rem;
7747
+
7748
+ button {
7749
+ width: auto;
7750
+ height: 1rem;
7751
+ padding: 0 0.5rem;
7752
+ }
7729
7753
  `;
7730
- const LogoContainer = styled(Flex) `
7731
- max-width: calc(100% - 1.4rem);
7732
- max-height: 1.875rem;
7733
- flex-grow: 1;
7734
- font-size: 0;
7735
-
7736
- & > span::after {
7737
- font-size: 2rem;
7738
- }
7739
-
7740
- img {
7741
- max-height: 1.875rem;
7742
- }
7754
+ const LogoContainer = styled(Flex) `
7755
+ max-width: calc(100% - 1.4rem);
7756
+ max-height: 1.875rem;
7757
+ flex-grow: 1;
7758
+ font-size: 0;
7759
+
7760
+ & > span::after {
7761
+ font-size: 2rem;
7762
+ }
7763
+
7764
+ img {
7765
+ max-height: 1.875rem;
7766
+ }
7743
7767
  `;
7744
- const PageTitle = styled(H2) `
7745
- cursor: pointer;
7746
- text-align: left;
7747
- flex: 1 1 auto;
7748
- min-width: 0;
7749
- margin: 0;
7750
- font-size: 1.25rem;
7751
- font-weight: 600;
7752
- pointer-events: initial;
7753
- font-family: "Nunito Sans", serif;
7754
-
7755
- > * {
7756
- white-space: nowrap;
7757
- overflow: hidden;
7758
- text-overflow: ellipsis;
7759
- }
7768
+ const PageTitle = styled(H2) `
7769
+ cursor: pointer;
7770
+ text-align: left;
7771
+ flex: 1 1 auto;
7772
+ min-width: 0;
7773
+ margin: 0;
7774
+ font-size: 1.25rem;
7775
+ font-weight: 600;
7776
+ pointer-events: initial;
7777
+ font-family: "Nunito Sans", serif;
7778
+
7779
+ > * {
7780
+ white-space: nowrap;
7781
+ overflow: hidden;
7782
+ text-overflow: ellipsis;
7783
+ }
7760
7784
  `;
7761
- const PageTitleContainer = styled(Flex) `
7762
- flex-grow: 1;
7763
- align-items: center;
7764
-
7765
- ${PageTitle} {
7766
- max-width: 15.75rem;
7767
- }
7768
-
7769
- &&& button {
7770
- width: 0;
7771
- overflow: hidden;
7772
-
7773
- span[kind] {
7774
- display: flex;
7775
- align-items: center;
7776
- justify-content: center;
7777
- width: 0.75rem;
7778
-
7779
- :after {
7780
- font-size: 0.75rem;
7781
- color: ${({ theme: { palette } }) => palette.textDisabled};
7782
- transition: color ${transition.hover};
7783
- }
7784
- }
7785
-
7786
- &:hover,
7787
- &:active {
7788
- span[kind]:after {
7789
- color: ${({ theme: { palette } }) => palette.textPrimary};
7790
- }
7791
- }
7792
- }
7793
-
7794
- :hover {
7795
- ${PageTitle} {
7796
- max-width: 14.25rem;
7797
- }
7798
-
7799
- &&& button {
7800
- width: 1.5rem;
7801
- }
7802
- }
7785
+ const PageTitleContainer = styled(Flex) `
7786
+ flex-grow: 1;
7787
+ align-items: center;
7788
+
7789
+ ${PageTitle} {
7790
+ max-width: 15.75rem;
7791
+ }
7792
+
7793
+ &&& button {
7794
+ width: 0;
7795
+ overflow: hidden;
7796
+
7797
+ span[kind] {
7798
+ display: flex;
7799
+ align-items: center;
7800
+ justify-content: center;
7801
+ width: 0.75rem;
7802
+
7803
+ :after {
7804
+ font-size: 0.75rem;
7805
+ color: ${({ theme: { palette } }) => palette.textDisabled};
7806
+ transition: color ${transition.hover};
7807
+ }
7808
+ }
7809
+
7810
+ &:hover,
7811
+ &:active {
7812
+ span[kind]:after {
7813
+ color: ${({ theme: { palette } }) => palette.textPrimary};
7814
+ }
7815
+ }
7816
+ }
7817
+
7818
+ :hover {
7819
+ ${PageTitle} {
7820
+ max-width: 14.25rem;
7821
+ }
7822
+
7823
+ &&& button {
7824
+ width: 1.5rem;
7825
+ }
7826
+ }
7803
7827
  `;
7804
7828
 
7805
7829
  const DashboardDefaultHeader = memo(() => {
@@ -7809,83 +7833,83 @@ const DashboardDefaultHeader = memo(() => {
7809
7833
  return (jsxs(DefaultHeaderContainer, { image: backgroundImage ?? undefined, isDark: themeName === ThemeName.Dark, children: [!pageId && jsx(LinearProgress, {}), jsxs(Flex, { column: true, gap: "1rem", children: [jsx(FlexSpan, { children: jsxs(TopContainer, { children: [jsx(LogoContainer, { children: icon }), jsx(TopContainerButtons, { children: jsx(ProjectPanelMenu, {}) })] }) }), jsx(FlexSpan, { children: jsx(Flex, { column: true, gap: "0.25rem", children: jsx(FlexSpan, { children: jsxs(Flex, { alignItems: "center", children: [jsxs(PageTitleContainer, { children: [jsx(Tooltip$1, { arrow: true, content: tooltip, children: ref => (jsx(PageTitle, { ref: ref, onClick: toggleLayersVisibility, children: title })) }), jsx(ProjectPagesMenu, {})] }), jsx(FlexSpan, { children: jsx(Pagination, {}) })] }) }) }) })] })] }));
7810
7834
  });
7811
7835
 
7812
- const HeaderFrontView = styled(Flex) `
7813
- z-index: 10;
7814
- position: relative;
7815
- justify-content: space-between;
7816
- align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
7817
- width: 100%;
7818
- font: ${({ theme: { fonts } }) => fonts.subtitle};
7819
- `;
7820
- const HeaderContainer = styled(FlexSpan) `
7821
- display: flex;
7822
- flex-grow: 1;
7823
- flex-wrap: nowrap;
7824
- width: calc(100% - 48px);
7825
- `;
7826
- const FeatureTitleContainer = styled.div `
7827
- display: -webkit-box;
7828
- max-width: 100%;
7829
- width: 100%;
7830
- margin: 0.5rem 0;
7831
- -webkit-line-clamp: 2;
7832
- -webkit-box-orient: vertical;
7833
- overflow: hidden;
7834
- text-overflow: ellipsis;
7835
- color: ${({ theme: { palette } }) => palette.textPrimary};
7836
-
7837
- & > ${FlexSpan} {
7838
- cursor: ${({ clickable }) => clickable && "pointer"};
7839
-
7840
- &:hover {
7841
- color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
7842
- }
7843
- }
7836
+ const HeaderFrontView = styled(Flex) `
7837
+ z-index: 10;
7838
+ position: relative;
7839
+ justify-content: space-between;
7840
+ align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
7841
+ width: 100%;
7842
+ font: ${({ theme: { fonts } }) => fonts.subtitle};
7843
+ `;
7844
+ const HeaderContainer = styled(FlexSpan) `
7845
+ display: flex;
7846
+ flex-grow: 1;
7847
+ flex-wrap: nowrap;
7848
+ width: calc(100% - 48px);
7849
+ `;
7850
+ const FeatureTitleContainer = styled.div `
7851
+ display: -webkit-box;
7852
+ max-width: 100%;
7853
+ width: 100%;
7854
+ margin: 0.5rem 0;
7855
+ -webkit-line-clamp: 2;
7856
+ -webkit-box-orient: vertical;
7857
+ overflow: hidden;
7858
+ text-overflow: ellipsis;
7859
+ color: ${({ theme: { palette } }) => palette.textPrimary};
7860
+
7861
+ & > ${FlexSpan} {
7862
+ cursor: ${({ clickable }) => clickable && "pointer"};
7863
+
7864
+ &:hover {
7865
+ color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
7866
+ }
7867
+ }
7844
7868
  `;
7845
- const LayerDescription = styled(Description) `
7846
- width: calc(100% - 4rem);
7847
- display: -webkit-box;
7848
- -webkit-line-clamp: 2;
7849
- -webkit-box-orient: vertical;
7850
- overflow: hidden;
7851
- text-overflow: ellipsis;
7869
+ const LayerDescription = styled(Description) `
7870
+ width: calc(100% - 4rem);
7871
+ display: -webkit-box;
7872
+ -webkit-line-clamp: 2;
7873
+ -webkit-box-orient: vertical;
7874
+ overflow: hidden;
7875
+ text-overflow: ellipsis;
7852
7876
  `;
7853
- const HeaderTitleContainer = styled(Flex) `
7854
- flex-direction: column;
7855
- width: 100%;
7877
+ const HeaderTitleContainer = styled(Flex) `
7878
+ flex-direction: column;
7879
+ width: 100%;
7856
7880
  `;
7857
- const RowHeaderMixin = css `
7858
- &&& {
7859
- min-height: auto;
7860
-
7861
- ${FeatureTitleContainer}, ${LayerDescription} {
7862
- text-align: left;
7863
- }
7864
- }
7865
-
7866
- ${HeaderContainer} {
7867
- flex-direction: row;
7868
- }
7869
-
7870
- ${FeatureTitleContainer} {
7871
- max-width: calc(100% - 3.8rem);
7872
- }
7881
+ const RowHeaderMixin = css `
7882
+ &&& {
7883
+ min-height: auto;
7884
+
7885
+ ${FeatureTitleContainer}, ${LayerDescription} {
7886
+ text-align: left;
7887
+ }
7888
+ }
7889
+
7890
+ ${HeaderContainer} {
7891
+ flex-direction: row;
7892
+ }
7893
+
7894
+ ${FeatureTitleContainer} {
7895
+ max-width: calc(100% - 3.8rem);
7896
+ }
7873
7897
  `;
7874
- const Header = styled(Flex) `
7875
- z-index: 1;
7876
- position: relative;
7877
- top: 0;
7878
- flex-shrink: 0;
7879
- overflow: hidden;
7880
- width: 100%;
7881
- padding: 0.5rem;
7882
-
7883
- ${({ $isRow }) => $isRow && RowHeaderMixin};
7898
+ const Header = styled(Flex) `
7899
+ z-index: 1;
7900
+ position: relative;
7901
+ top: 0;
7902
+ flex-shrink: 0;
7903
+ overflow: hidden;
7904
+ width: 100%;
7905
+ padding: 0.5rem;
7906
+
7907
+ ${({ $isRow }) => $isRow && RowHeaderMixin};
7884
7908
  `;
7885
- const DefaultHeaderWrapper = styled.div `
7886
- ${Header} {
7887
- padding: 0 1.5rem 1.5rem 0;
7888
- }
7909
+ const DefaultHeaderWrapper = styled.div `
7910
+ ${Header} {
7911
+ padding: 0 1.5rem 1.5rem 0;
7912
+ }
7889
7913
  `;
7890
7914
 
7891
7915
  const HeaderTitle = ({ noFeature }) => {
@@ -7913,24 +7937,24 @@ const HeaderTitle = ({ noFeature }) => {
7913
7937
  return (jsxs(HeaderTitleContainer, { children: [noFeature ? (jsx(FeatureTitleContainer, { children: t("noObjectFound", { ns: "dashboard", defaultValue: "Объектов не найдено" }) })) : (jsx(FeatureTitleContainer, { clickable: true, children: jsx(Tooltip$1, { arrow: true, placement: "top", content: t("zoomToFeature", { ns: "dashboard", defaultValue: "Приблизить к объекту" }), delay: [600, 0], children: ref => (jsx(FlexSpan, { ref: ref, onClick: () => zoomToFeatures([feature]), children: resultTitle })) }) })), jsx(LayerDescription, { title: resultDescription, children: resultDescription })] }));
7914
7938
  };
7915
7939
 
7916
- const LayerIconContainer = styled.div `
7917
- display: flex;
7918
- align-items: center;
7919
- justify-content: center;
7920
- min-width: 2rem;
7921
- margin-right: 0.5rem;
7940
+ const LayerIconContainer = styled.div `
7941
+ display: flex;
7942
+ align-items: center;
7943
+ justify-content: center;
7944
+ min-width: 2rem;
7945
+ margin-right: 0.5rem;
7922
7946
  `;
7923
- const AlertIconContainer = styled(Flex) `
7924
- align-items: center;
7925
- justify-content: center;
7926
- width: 2rem;
7927
- height: 2rem;
7928
-
7929
- ${Icon} {
7930
- :after {
7931
- color: ${({ theme: { palette } }) => palette.error};
7932
- }
7933
- }
7947
+ const AlertIconContainer = styled(Flex) `
7948
+ align-items: center;
7949
+ justify-content: center;
7950
+ width: 2rem;
7951
+ height: 2rem;
7952
+
7953
+ ${Icon} {
7954
+ :after {
7955
+ color: ${({ theme: { palette } }) => palette.error};
7956
+ }
7957
+ }
7934
7958
  `;
7935
7959
 
7936
7960
  var img$2 = "data:image/svg+xml,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3crect width='32' height='32' fill='transparent'/%3e %3cpath d='M20.248 9.67787C18.5318 8.04035 15.9473 7.54977 13.7024 8.43543C11.4576 9.32109 9.99566 11.4081 10 13.721C10 18.2894 16 24 16 24C16 24 22 18.2894 22 13.721C22.0028 12.2054 21.3726 10.7509 20.248 9.67787Z' fill='url(%23paint0_linear_6459_10338)'/%3e %3ccircle cx='16' cy='14' r='2' fill='white'/%3e %3cdefs%3e %3clinearGradient id='paint0_linear_6459_10338' x1='10' y1='8' x2='25.36' y2='19.52' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%230084D6'/%3e %3cstop offset='0.489583' stop-color='%230084D6'/%3e %3cstop offset='0.489683' stop-color='%2305A9FF'/%3e %3cstop offset='0.921875' stop-color='%2305A9FF'/%3e %3c/linearGradient%3e %3c/defs%3e%3c/svg%3e";
@@ -7963,54 +7987,54 @@ const FeatureCardDefaultHeader = ({ noFeature }) => {
7963
7987
  return (jsx(DefaultHeaderWrapper, { children: jsx(Header, { "$isRow": true, children: jsxs(HeaderFrontView, { isDefault: true, children: [jsxs(HeaderContainer, { children: [!!layerInfo?.name && jsx(LayerIcon, { layerInfo: layerInfo }), jsx(HeaderTitle, { noFeature: noFeature })] }), jsx(FeatureCardButtons, {})] }) }) }));
7964
7988
  };
7965
7989
 
7966
- const HeaderFontColorMixin$1 = css `
7967
- ${HeaderTitleContainer}, ${LayerDescription} {
7968
- color: ${({ $fontColor }) => $fontColor};
7969
- }
7990
+ const HeaderFontColorMixin$1 = css `
7991
+ ${HeaderTitleContainer}, ${LayerDescription} {
7992
+ color: ${({ $fontColor }) => $fontColor};
7993
+ }
7970
7994
  `;
7971
- const HeaderWrapperMixin$1 = css `
7972
- ${Header} {
7973
- min-height: 5.25rem;
7974
- }
7975
-
7976
- ${HeaderContainer} {
7977
- max-width: 100%;
7978
- width: 100%;
7979
- }
7980
-
7981
- ${FeatureControls} {
7982
- max-width: calc(100% - 2rem);
7983
- width: calc(100% - 2rem);
7984
- margin-top: -0.5rem;
7985
- padding-top: 1rem;
7986
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
7987
- }
7988
-
7989
- ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
7995
+ const HeaderWrapperMixin$1 = css `
7996
+ ${Header} {
7997
+ min-height: 5.25rem;
7998
+ }
7999
+
8000
+ ${HeaderContainer} {
8001
+ max-width: 100%;
8002
+ width: 100%;
8003
+ }
8004
+
8005
+ ${FeatureControls} {
8006
+ max-width: calc(100% - 2rem);
8007
+ width: calc(100% - 2rem);
8008
+ margin-top: -0.5rem;
8009
+ padding-top: 1rem;
8010
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8011
+ }
8012
+
8013
+ ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
7990
8014
  `;
7991
- const GradientHeaderWrapper = styled.div `
7992
- ${Header} {
7993
- background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
7994
- }
7995
-
7996
- ${HeaderContainer} {
7997
- align-items: center;
7998
- }
7999
-
8000
- ${HeaderTitleContainer} {
8001
- margin-left: 0;
8002
- text-align: center;
8003
- }
8004
-
8005
- ${FeatureTitleContainer} {
8006
- text-align: center;
8007
- }
8008
-
8009
- ${LayerDescription} {
8010
- text-align: center;
8011
- }
8012
-
8013
- ${HeaderWrapperMixin$1};
8015
+ const GradientHeaderWrapper = styled.div `
8016
+ ${Header} {
8017
+ background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
8018
+ }
8019
+
8020
+ ${HeaderContainer} {
8021
+ align-items: center;
8022
+ }
8023
+
8024
+ ${HeaderTitleContainer} {
8025
+ margin-left: 0;
8026
+ text-align: center;
8027
+ }
8028
+
8029
+ ${FeatureTitleContainer} {
8030
+ text-align: center;
8031
+ }
8032
+
8033
+ ${LayerDescription} {
8034
+ text-align: center;
8035
+ }
8036
+
8037
+ ${HeaderWrapperMixin$1};
8014
8038
  `;
8015
8039
 
8016
8040
  const FeatureCardGradientHeader = ({ isRow }) => {
@@ -8029,80 +8053,80 @@ const FeatureCardGradientHeader = ({ isRow }) => {
8029
8053
  }) })] }), jsx(FeatureCardButtons, {})] }) }) }) }));
8030
8054
  };
8031
8055
 
8032
- const HeaderFontColorMixin = css `
8033
- ${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
8034
- color: ${({ $fontColor }) => $fontColor};
8035
- }
8056
+ const HeaderFontColorMixin = css `
8057
+ ${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
8058
+ color: ${({ $fontColor }) => $fontColor};
8059
+ }
8036
8060
  `;
8037
- const HeaderWrapperMixin = css `
8038
- ${Header} {
8039
- min-height: 5.25rem;
8040
- }
8041
-
8042
- ${HeaderContainer} {
8043
- max-width: 100%;
8044
- width: 100%;
8045
- }
8046
-
8047
- ${FeatureControls} {
8048
- max-width: calc(100% - 2rem);
8049
- width: calc(100% - 2rem);
8050
- margin-top: -0.5rem;
8051
- padding-top: 1rem;
8052
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8053
- }
8054
-
8055
- ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
8056
- `;
8057
- const HeaderIcon = styled(Flex) `
8058
- position: absolute;
8059
- top: 0;
8060
- right: 0;
8061
- justify-content: flex-end;
8062
- align-items: center;
8063
- min-width: 7.5rem;
8064
- height: 100%;
8065
-
8066
- span[kind]:after {
8067
- font-size: 7.5rem;
8068
- }
8069
-
8070
- span[kind]:after,
8071
- path,
8072
- line,
8073
- circle {
8074
- fill: rgba(255, 255, 255, 0.36);
8075
- }
8076
-
8077
- && > * {
8078
- display: flex;
8079
- align-items: center;
8080
- height: 100%;
8081
- }
8061
+ const HeaderWrapperMixin = css `
8062
+ ${Header} {
8063
+ min-height: 5.25rem;
8064
+ }
8065
+
8066
+ ${HeaderContainer} {
8067
+ max-width: 100%;
8068
+ width: 100%;
8069
+ }
8070
+
8071
+ ${FeatureControls} {
8072
+ max-width: calc(100% - 2rem);
8073
+ width: calc(100% - 2rem);
8074
+ margin-top: -0.5rem;
8075
+ padding-top: 1rem;
8076
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8077
+ }
8078
+
8079
+ ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
8082
8080
  `;
8083
- const BigIconHeaderMixin = css `
8084
- ${HeaderIcon} {
8085
- min-width: 14rem;
8086
- right: -3rem;
8087
-
8088
- span[kind]:after {
8089
- font-size: 14rem;
8090
- }
8091
- }
8081
+ const HeaderIcon = styled(Flex) `
8082
+ position: absolute;
8083
+ top: 0;
8084
+ right: 0;
8085
+ justify-content: flex-end;
8086
+ align-items: center;
8087
+ min-width: 7.5rem;
8088
+ height: 100%;
8089
+
8090
+ span[kind]:after {
8091
+ font-size: 7.5rem;
8092
+ }
8093
+
8094
+ span[kind]:after,
8095
+ path,
8096
+ line,
8097
+ circle {
8098
+ fill: rgba(255, 255, 255, 0.36);
8099
+ }
8100
+
8101
+ && > * {
8102
+ display: flex;
8103
+ align-items: center;
8104
+ height: 100%;
8105
+ }
8092
8106
  `;
8093
- const IconHeaderWrapper = styled.div `
8094
- ${Header} {
8095
- width: calc(100% + 0.5rem);
8096
- margin: -1rem -1rem 0.5rem -1rem;
8097
- padding: 1.5rem;
8098
- border-top-left-radius: 0.5rem;
8099
- border-top-right-radius: 0.5rem;
8100
- background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
8101
- }
8102
-
8103
- ${HeaderWrapperMixin};
8104
-
8105
- ${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
8107
+ const BigIconHeaderMixin = css `
8108
+ ${HeaderIcon} {
8109
+ min-width: 14rem;
8110
+ right: -3rem;
8111
+
8112
+ span[kind]:after {
8113
+ font-size: 14rem;
8114
+ }
8115
+ }
8116
+ `;
8117
+ const IconHeaderWrapper = styled.div `
8118
+ ${Header} {
8119
+ width: calc(100% + 0.5rem);
8120
+ margin: -1rem -1rem 0.5rem -1rem;
8121
+ padding: 1.5rem;
8122
+ border-top-left-radius: 0.5rem;
8123
+ border-top-right-radius: 0.5rem;
8124
+ background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
8125
+ }
8126
+
8127
+ ${HeaderWrapperMixin};
8128
+
8129
+ ${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
8106
8130
  `;
8107
8131
 
8108
8132
  const FeatureCardIconHeader = ({ isRow }) => {
@@ -8124,15 +8148,15 @@ const FeatureCardIconHeader = ({ isRow }) => {
8124
8148
  }) })] }) }) }));
8125
8149
  };
8126
8150
 
8127
- const ImageContainerButton = styled(FlatButton) `
8128
- min-height: 1.5rem;
8129
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
8130
- background-color: ${({ theme: { palette } }) => palette.primary};
8131
- text-transform: none;
8132
-
8133
- :hover {
8134
- background-color: ${({ theme: { palette } }) => palette.primaryDeep};
8135
- }
8151
+ const ImageContainerButton = styled(FlatButton) `
8152
+ min-height: 1.5rem;
8153
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
8154
+ background-color: ${({ theme: { palette } }) => palette.primary};
8155
+ text-transform: none;
8156
+
8157
+ :hover {
8158
+ background-color: ${({ theme: { palette } }) => palette.primaryDeep};
8159
+ }
8136
8160
  `;
8137
8161
 
8138
8162
  const ElementButton = memo(({ type, elementConfig }) => {
@@ -8144,157 +8168,157 @@ const ElementButton = memo(({ type, elementConfig }) => {
8144
8168
  return (jsx(ImageContainerButton, { onClick: () => window.open(attribute?.value), children: elementConfig.value || "" }));
8145
8169
  });
8146
8170
 
8147
- const AttributeGalleryContainer = styled.div `
8148
- && {
8149
- width: calc(100% + 3rem);
8150
- }
8151
-
8152
- min-height: 12.625rem;
8153
- background-color: ${({ theme: { palette } }) => palette.element};
8154
-
8155
- img {
8156
- width: 100%;
8157
- }
8171
+ const AttributeGalleryContainer = styled.div `
8172
+ && {
8173
+ width: calc(100% + 3rem);
8174
+ }
8175
+
8176
+ min-height: 12.625rem;
8177
+ background-color: ${({ theme: { palette } }) => palette.element};
8178
+
8179
+ img {
8180
+ width: 100%;
8181
+ }
8158
8182
  `;
8159
- const LinearProgressContainer = styled(Flex) `
8160
- align-items: center;
8161
- justify-content: center;
8162
- min-height: inherit;
8163
-
8164
- ${LinearProgress} {
8165
- max-width: 4rem;
8166
- }
8183
+ const LinearProgressContainer = styled(Flex) `
8184
+ align-items: center;
8185
+ justify-content: center;
8186
+ min-height: inherit;
8187
+
8188
+ ${LinearProgress} {
8189
+ max-width: 4rem;
8190
+ }
8167
8191
  `;
8168
- const NoLiveSnapshotContainer = styled(Flex) `
8169
- flex-direction: column;
8170
- align-items: center;
8171
-
8172
- span[kind="alert"] {
8173
- width: 2rem;
8174
- height: 2rem;
8175
-
8176
- &:after {
8177
- font-size: 2rem;
8178
- color: ${({ theme: { palette } }) => palette.elementDeep};
8179
- }
8180
- }
8181
-
8182
- ${Description} {
8183
- font-size: 0.75rem;
8184
- color: ${({ theme: { palette } }) => palette.textDisabled};
8185
- }
8192
+ const NoLiveSnapshotContainer = styled(Flex) `
8193
+ flex-direction: column;
8194
+ align-items: center;
8195
+
8196
+ span[kind="alert"] {
8197
+ width: 2rem;
8198
+ height: 2rem;
8199
+
8200
+ &:after {
8201
+ font-size: 2rem;
8202
+ color: ${({ theme: { palette } }) => palette.elementDeep};
8203
+ }
8204
+ }
8205
+
8206
+ ${Description} {
8207
+ font-size: 0.75rem;
8208
+ color: ${({ theme: { palette } }) => palette.textDisabled};
8209
+ }
8186
8210
  `;
8187
- const SmallPreviewControl = styled(IconButton) `
8188
- cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
8189
- z-index: 3;
8190
- position: absolute;
8191
- top: 50%;
8192
- width: 2.5rem;
8193
- height: 2.5rem;
8194
- margin-top: -1.25rem;
8195
- background-color: rgba(61, 61, 61, 0.8);
8196
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
8197
-
8198
- span:after {
8199
- color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
8200
- transition: color ${transition.hover};
8201
- }
8211
+ const SmallPreviewControl = styled(IconButton) `
8212
+ cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
8213
+ z-index: 3;
8214
+ position: absolute;
8215
+ top: 50%;
8216
+ width: 2.5rem;
8217
+ height: 2.5rem;
8218
+ margin-top: -1.25rem;
8219
+ background-color: rgba(61, 61, 61, 0.8);
8220
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
8221
+
8222
+ span:after {
8223
+ color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
8224
+ transition: color ${transition.hover};
8225
+ }
8202
8226
  `;
8203
- const SmallPreviewCounter = styled(Flex) `
8204
- z-index: 3;
8205
- position: absolute;
8206
- bottom: 0.625rem;
8207
- left: 0;
8208
- width: 100%;
8209
- height: 1rem;
8210
- justify-content: center;
8211
-
8212
- > div {
8213
- background-color: rgba(61, 61, 61, 0.8);
8214
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8215
- padding: 0 0.5rem;
8216
- font-size: 0.625rem;
8217
- line-height: 1rem;
8218
- color: #fff;
8219
- }
8227
+ const SmallPreviewCounter = styled(Flex) `
8228
+ z-index: 3;
8229
+ position: absolute;
8230
+ bottom: 0.625rem;
8231
+ left: 0;
8232
+ width: 100%;
8233
+ height: 1rem;
8234
+ justify-content: center;
8235
+
8236
+ > div {
8237
+ background-color: rgba(61, 61, 61, 0.8);
8238
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8239
+ padding: 0 0.5rem;
8240
+ font-size: 0.625rem;
8241
+ line-height: 1rem;
8242
+ color: #fff;
8243
+ }
8220
8244
  `;
8221
8245
  const SmallPreviewLeft = styled(SmallPreviewControl).attrs(() => ({
8222
8246
  kind: "prev",
8223
- })) `
8224
- left: 1.5rem;
8247
+ })) `
8248
+ left: 1.5rem;
8225
8249
  `;
8226
8250
  const SmallPreviewRight = styled(SmallPreviewControl).attrs(() => ({
8227
8251
  kind: "next",
8228
- })) `
8229
- right: 1.5rem;
8230
- `;
8231
- const imgSlideShowMixin = css `
8232
- &:nth-child(${({ prevIndex }) => prevIndex}) {
8233
- z-index: 2;
8234
- position: absolute;
8235
- top: 0;
8236
- left: 0;
8237
- right: 0;
8238
- bottom: 0;
8239
- opacity: 0;
8240
-
8241
- animation-duration: 0.25s;
8242
- animation-name: fadeOut;
8243
- animation-timing-function: linear;
8244
-
8245
- @keyframes fadeOut {
8246
- from {
8247
- opacity: 1;
8248
- }
8249
-
8250
- to {
8251
- opacity: 0;
8252
- }
8253
- }
8254
- }
8252
+ })) `
8253
+ right: 1.5rem;
8254
+ `;
8255
+ const imgSlideShowMixin = css `
8256
+ &:nth-child(${({ prevIndex }) => prevIndex}) {
8257
+ z-index: 2;
8258
+ position: absolute;
8259
+ top: 0;
8260
+ left: 0;
8261
+ right: 0;
8262
+ bottom: 0;
8263
+ opacity: 0;
8264
+
8265
+ animation-duration: 0.25s;
8266
+ animation-name: fadeOut;
8267
+ animation-timing-function: linear;
8268
+
8269
+ @keyframes fadeOut {
8270
+ from {
8271
+ opacity: 1;
8272
+ }
8273
+
8274
+ to {
8275
+ opacity: 0;
8276
+ }
8277
+ }
8278
+ }
8255
8279
  `;
8256
- const SmallPreviewContainer$1 = styled.div `
8257
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
8258
- position: relative;
8259
- width: 100%;
8260
- height: 100%;
8261
- min-height: inherit;
8262
- line-height: 0;
8263
-
8264
- ${LinearProgress} {
8265
- z-index: 3;
8266
- position: absolute;
8267
- }
8268
-
8269
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8270
- opacity: 0;
8271
- transition: opacity ${transition.hover};
8272
- }
8273
-
8274
- &:hover {
8275
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8276
- opacity: 1;
8277
- }
8278
- }
8279
-
8280
- img {
8281
- z-index: 0;
8282
- cursor: pointer;
8283
- position: absolute;
8284
- top: 0;
8285
- left: 0;
8286
- width: 100%;
8287
- height: 100%;
8288
- min-height: inherit;
8289
- object-position: center;
8290
- object-fit: cover;
8291
-
8292
- &:nth-child(${({ currentIndex }) => currentIndex}) {
8293
- z-index: 1;
8294
- }
8295
-
8296
- ${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
8297
- }
8280
+ const SmallPreviewContainer$1 = styled.div `
8281
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
8282
+ position: relative;
8283
+ width: 100%;
8284
+ height: 100%;
8285
+ min-height: inherit;
8286
+ line-height: 0;
8287
+
8288
+ ${LinearProgress} {
8289
+ z-index: 3;
8290
+ position: absolute;
8291
+ }
8292
+
8293
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8294
+ opacity: 0;
8295
+ transition: opacity ${transition.hover};
8296
+ }
8297
+
8298
+ &:hover {
8299
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8300
+ opacity: 1;
8301
+ }
8302
+ }
8303
+
8304
+ img {
8305
+ z-index: 0;
8306
+ cursor: pointer;
8307
+ position: absolute;
8308
+ top: 0;
8309
+ left: 0;
8310
+ width: 100%;
8311
+ height: 100%;
8312
+ min-height: inherit;
8313
+ object-position: center;
8314
+ object-fit: cover;
8315
+
8316
+ &:nth-child(${({ currentIndex }) => currentIndex}) {
8317
+ z-index: 1;
8318
+ }
8319
+
8320
+ ${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
8321
+ }
8298
8322
  `;
8299
8323
  const SmallPreviewImages = styled.div ``;
8300
8324
 
@@ -8521,21 +8545,21 @@ const ElementControl = ({ elementConfig }) => {
8521
8545
  defaultValue, placeholder: placeholder, disabled: isDisabled, onChange: handleChange }));
8522
8546
  };
8523
8547
 
8524
- const StyledIconFontSizeMixin = css `
8525
- height: ${({ fontSize }) => `${fontSize}px`};
8526
-
8527
- &&:after {
8528
- font-size: ${({ fontSize }) => `${fontSize}px`};
8529
- }
8548
+ const StyledIconFontSizeMixin = css `
8549
+ height: ${({ fontSize }) => `${fontSize}px`};
8550
+
8551
+ &&:after {
8552
+ font-size: ${({ fontSize }) => `${fontSize}px`};
8553
+ }
8530
8554
  `;
8531
- const StyledIconFontColorMixin = css `
8532
- &&:after {
8533
- color: ${({ fontColor }) => fontColor};
8534
- }
8555
+ const StyledIconFontColorMixin = css `
8556
+ &&:after {
8557
+ color: ${({ fontColor }) => fontColor};
8558
+ }
8535
8559
  `;
8536
- const StyledIcon = styled(Icon) `
8537
- ${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
8538
- ${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
8560
+ const StyledIcon = styled(Icon) `
8561
+ ${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
8562
+ ${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
8539
8563
  `;
8540
8564
 
8541
8565
  const ElementIcon = memo(({ type, elementConfig }) => {
@@ -8604,55 +8628,55 @@ const ElementLegend = memo(({ type, element, elementConfig }) => {
8604
8628
 
8605
8629
  const ExternalLink = styled(IconButton).attrs(() => ({
8606
8630
  kind: "external_link",
8607
- })) `
8608
- ${Icon} {
8609
- color: ${({ theme: { palette } }) => palette.primary};
8610
- }
8611
-
8612
- &:hover ${Icon} {
8613
- color: ${({ theme: { palette } }) => palette.primaryDeep};
8614
- }
8631
+ })) `
8632
+ ${Icon} {
8633
+ color: ${({ theme: { palette } }) => palette.primary};
8634
+ }
8635
+
8636
+ &:hover ${Icon} {
8637
+ color: ${({ theme: { palette } }) => palette.primaryDeep};
8638
+ }
8615
8639
  `;
8616
- const Link = styled.a `
8617
- text-decoration: none;
8618
- font-size: 0.75rem;
8619
- color: ${({ theme: { palette } }) => palette.primary};
8640
+ const Link = styled.a `
8641
+ text-decoration: none;
8642
+ font-size: 0.75rem;
8643
+ color: ${({ theme: { palette } }) => palette.primary};
8620
8644
  `;
8621
- const LocalLinkBlank = styled(Blank) `
8622
- min-width: 13.5rem;
8623
- padding: 0.5rem 0.75rem 0;
8624
-
8625
- ${IconButtonButton} {
8626
- font-size: 0.75rem;
8627
- }
8645
+ const LocalLinkBlank = styled(Blank) `
8646
+ min-width: 13.5rem;
8647
+ padding: 0.5rem 0.75rem 0;
8648
+
8649
+ ${IconButtonButton} {
8650
+ font-size: 0.75rem;
8651
+ }
8628
8652
  `;
8629
8653
  const LocalLinkButton = styled(IconButton).attrs(() => ({
8630
8654
  kind: "link",
8631
- })) `
8632
- width: 1rem;
8633
- height: 1rem;
8634
- background-color: ${({ theme: { palette } }) => palette.primary};
8635
- padding: 0;
8636
- border-radius: 50%;
8637
-
8638
- :hover {
8639
- background-color: ${({ theme: { palette } }) => palette.primary};
8640
- }
8641
-
8642
- span[kind] {
8643
- display: flex;
8644
- justify-content: center;
8645
- align-items: center;
8646
-
8647
- :after {
8648
- position: relative;
8649
- font-size: 0.6rem;
8650
- color: white;
8651
- }
8652
- }
8655
+ })) `
8656
+ width: 1rem;
8657
+ height: 1rem;
8658
+ background-color: ${({ theme: { palette } }) => palette.primary};
8659
+ padding: 0;
8660
+ border-radius: 50%;
8661
+
8662
+ :hover {
8663
+ background-color: ${({ theme: { palette } }) => palette.primary};
8664
+ }
8665
+
8666
+ span[kind] {
8667
+ display: flex;
8668
+ justify-content: center;
8669
+ align-items: center;
8670
+
8671
+ :after {
8672
+ position: relative;
8673
+ font-size: 0.6rem;
8674
+ color: white;
8675
+ }
8676
+ }
8653
8677
  `;
8654
- const LocalLinkCopy = styled(Flex) `
8655
- justify-content: center;
8678
+ const LocalLinkCopy = styled(Flex) `
8679
+ justify-content: center;
8656
8680
  `;
8657
8681
 
8658
8682
  const LocalLink = memo(({ link, style }) => {
@@ -8681,104 +8705,104 @@ const ElementLink = memo(({ type, elementConfig }) => {
8681
8705
  : jsx(LocalLink, { style: style, link: link });
8682
8706
  });
8683
8707
 
8684
- const MarkdownWrapper = styled.div `
8685
- padding: 0;
8686
- background: transparent;
8687
- border-radius: 0.5rem;
8688
- font-family: 'Nunito Sans', sans-serif;
8689
- color: ${({ theme: { palette } }) => palette.textPrimary};
8690
-
8691
- /* Paragraphs */
8692
- p {
8693
- font-size: 0.875rem;
8694
- line-height: 1rem;
8695
- letter-spacing: 0.0052rem;
8696
- margin: 0 0 1rem 0;
8697
- font-weight: 400;
8698
-
8699
- &:last-child {
8700
- margin-bottom: 0;
8701
- }
8702
- }
8703
-
8704
- /* Headings */
8705
- h1, h2, h3, h4, h5, h6 {
8706
- margin: 0 0 0.75rem 0;
8707
- font-weight: 300;
8708
- }
8709
-
8710
- h1 {
8711
- font-size: 1.5rem;
8712
- line-height: 1.75rem;
8713
- }
8714
-
8715
- h2 {
8716
- font-size: 1.25rem;
8717
- line-height: 1.5rem;
8718
- }
8719
-
8720
- h3 {
8721
- font-size: 1rem;
8722
- line-height: 1.25rem;
8723
- }
8724
-
8725
- /* Images */
8726
- img {
8727
- max-width: 100%;
8728
- height: auto;
8729
- border-radius: 0.5rem;
8730
- object-fit: cover;
8731
- margin: 0.75rem 0;
8732
- }
8733
-
8734
- /* Links */
8735
- a {
8736
- color: ${({ theme: { palette } }) => palette.primary};
8737
- text-decoration: none;
8738
-
8739
- &:hover {
8740
- text-decoration: underline;
8741
- }
8742
- }
8743
-
8744
- /* Lists */
8745
- ul, ol {
8746
- margin: 0 0 1rem 0;
8747
- padding-left: 1.25rem;
8748
-
8749
- li {
8750
- font-size: 0.875rem;
8751
- line-height: 1rem;
8752
- margin-bottom: 0.5rem;
8753
- }
8754
- }
8755
-
8756
- /* Code */
8757
- code {
8758
- background: ${({ theme: { palette } }) => palette.element};
8759
- padding: 0.125rem 0.375rem;
8760
- border-radius: 0.25rem;
8761
- font-family: monospace;
8762
- font-size: 0.8125rem;
8763
- }
8764
-
8765
- pre {
8766
- background: ${({ theme: { palette } }) => palette.element};
8767
- padding: 0.75rem;
8768
- border-radius: 0.25rem;
8769
- overflow-x: auto;
8770
- margin: 0.75rem 0;
8771
-
8772
- code {
8773
- background: transparent;
8774
- padding: 0;
8775
- }
8776
- }
8777
-
8778
- /* Hide horizontal rules */
8779
- hr {
8780
- display: none;
8781
- }
8708
+ const MarkdownWrapper = styled.div `
8709
+ padding: 0;
8710
+ background: transparent;
8711
+ border-radius: 0.5rem;
8712
+ font-family: 'Nunito Sans', sans-serif;
8713
+ color: ${({ theme: { palette } }) => palette.textPrimary};
8714
+
8715
+ /* Paragraphs */
8716
+ p {
8717
+ font-size: 0.875rem;
8718
+ line-height: 1rem;
8719
+ letter-spacing: 0.0052rem;
8720
+ margin: 0 0 1rem 0;
8721
+ font-weight: 400;
8722
+
8723
+ &:last-child {
8724
+ margin-bottom: 0;
8725
+ }
8726
+ }
8727
+
8728
+ /* Headings */
8729
+ h1, h2, h3, h4, h5, h6 {
8730
+ margin: 0 0 0.75rem 0;
8731
+ font-weight: 300;
8732
+ }
8733
+
8734
+ h1 {
8735
+ font-size: 1.5rem;
8736
+ line-height: 1.75rem;
8737
+ }
8738
+
8739
+ h2 {
8740
+ font-size: 1.25rem;
8741
+ line-height: 1.5rem;
8742
+ }
8743
+
8744
+ h3 {
8745
+ font-size: 1rem;
8746
+ line-height: 1.25rem;
8747
+ }
8748
+
8749
+ /* Images */
8750
+ img {
8751
+ max-width: 100%;
8752
+ height: auto;
8753
+ border-radius: 0.5rem;
8754
+ object-fit: cover;
8755
+ margin: 0.75rem 0;
8756
+ }
8757
+
8758
+ /* Links */
8759
+ a {
8760
+ color: ${({ theme: { palette } }) => palette.primary};
8761
+ text-decoration: none;
8762
+
8763
+ &:hover {
8764
+ text-decoration: underline;
8765
+ }
8766
+ }
8767
+
8768
+ /* Lists */
8769
+ ul, ol {
8770
+ margin: 0 0 1rem 0;
8771
+ padding-left: 1.25rem;
8772
+
8773
+ li {
8774
+ font-size: 0.875rem;
8775
+ line-height: 1rem;
8776
+ margin-bottom: 0.5rem;
8777
+ }
8778
+ }
8779
+
8780
+ /* Code */
8781
+ code {
8782
+ background: ${({ theme: { palette } }) => palette.element};
8783
+ padding: 0.125rem 0.375rem;
8784
+ border-radius: 0.25rem;
8785
+ font-family: monospace;
8786
+ font-size: 0.8125rem;
8787
+ }
8788
+
8789
+ pre {
8790
+ background: ${({ theme: { palette } }) => palette.element};
8791
+ padding: 0.75rem;
8792
+ border-radius: 0.25rem;
8793
+ overflow-x: auto;
8794
+ margin: 0.75rem 0;
8795
+
8796
+ code {
8797
+ background: transparent;
8798
+ padding: 0;
8799
+ }
8800
+ }
8801
+
8802
+ /* Hide horizontal rules */
8803
+ hr {
8804
+ display: none;
8805
+ }
8782
8806
  `;
8783
8807
 
8784
8808
  const sanitizeSchema = {
@@ -8820,9 +8844,9 @@ const ElementMarkdown = memo(({ elementConfig, type }) => {
8820
8844
  return (jsxs(MarkdownWrapper, { children: [jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], rehypePlugins: [rehypeRaw, rehypeSanitize], children: markdownString }), jsx(LegendToggler, { toggled: true, onClick: () => setExpanded(false), children: t("hide", { ns: "dashboard", defaultValue: "Свернуть" }) })] }));
8821
8845
  });
8822
8846
 
8823
- const SmallPreviewContainer = styled.div `
8824
- width: 100%;
8825
- height: 100%;
8847
+ const SmallPreviewContainer = styled.div `
8848
+ width: 100%;
8849
+ height: 100%;
8826
8850
  `;
8827
8851
 
8828
8852
  const ElementSlideshow = ({ elementConfig, type, renderElement }) => {
@@ -8858,18 +8882,18 @@ const ElementSvg = memo(({ type, elementConfig }) => {
8858
8882
  return (jsx(SvgImage, { url: getSvgUrl({ elementConfig, layerInfo, attributes }), width: width, height: height, fontColor: fontColor }));
8859
8883
  });
8860
8884
 
8861
- const TooltipIcon = styled(Icon) `
8862
- &&& {
8863
- :after {
8864
- font-size: 0.75rem;
8865
- color: ${({ theme: { palette } }) => palette.iconDisabled};
8866
- transition: color ${transition.hover};
8867
- }
8868
-
8869
- :hover:after {
8870
- color: ${({ theme: { palette } }) => palette.icon};
8871
- }
8872
- }
8885
+ const TooltipIcon = styled(Icon) `
8886
+ &&& {
8887
+ :after {
8888
+ font-size: 0.75rem;
8889
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
8890
+ transition: color ${transition.hover};
8891
+ }
8892
+
8893
+ :hover:after {
8894
+ color: ${({ theme: { palette } }) => palette.icon};
8895
+ }
8896
+ }
8873
8897
  `;
8874
8898
 
8875
8899
  const ElementTooltip = memo(({ type, elementConfig }) => {
@@ -8881,76 +8905,76 @@ const ElementTooltip = memo(({ type, elementConfig }) => {
8881
8905
  return text ? (jsx(Tooltip$1, { placement: "top", arrow: true, content: text, children: ref => jsx(TooltipIcon, { kind: icon || "question", ref: ref }) })) : null;
8882
8906
  });
8883
8907
 
8884
- const SlideshowHeaderWrapper = styled.div `
8885
- padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
8886
-
8887
- ${Header} {
8888
- align-items: flex-start;
8889
- width: calc(100% + 2rem);
8890
- height: ${({ big }) => (big ? "15.5rem" : "auto")};
8891
- padding: 1.5rem;
8892
- margin: -1rem -1rem 0 -1rem;
8893
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8894
-
8895
- ${SmallPreviewCounter} {
8896
- bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
8897
- }
8898
-
8899
- :before,
8900
- :after {
8901
- content: "";
8902
- z-index: 2;
8903
- position: absolute;
8904
- top: 0;
8905
- left: 0;
8906
- width: 100%;
8907
- }
8908
-
8909
- :before {
8910
- height: 100%;
8911
- background: rgba(32, 46, 53, 0.25);
8912
- }
8913
-
8914
- :after {
8915
- height: 4.5rem;
8916
- background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
8917
- }
8918
-
8919
- :hover {
8920
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8921
- opacity: 1;
8922
- }
8923
- }
8924
- }
8908
+ const SlideshowHeaderWrapper = styled.div `
8909
+ padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
8910
+
8911
+ ${Header} {
8912
+ align-items: flex-start;
8913
+ width: calc(100% + 2rem);
8914
+ height: ${({ big }) => (big ? "15.5rem" : "auto")};
8915
+ padding: 1.5rem;
8916
+ margin: -1rem -1rem 0 -1rem;
8917
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8918
+
8919
+ ${SmallPreviewCounter} {
8920
+ bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
8921
+ }
8922
+
8923
+ :before,
8924
+ :after {
8925
+ content: "";
8926
+ z-index: 2;
8927
+ position: absolute;
8928
+ top: 0;
8929
+ left: 0;
8930
+ width: 100%;
8931
+ }
8932
+
8933
+ :before {
8934
+ height: 100%;
8935
+ background: rgba(32, 46, 53, 0.25);
8936
+ }
8937
+
8938
+ :after {
8939
+ height: 4.5rem;
8940
+ background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
8941
+ }
8942
+
8943
+ :hover {
8944
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8945
+ opacity: 1;
8946
+ }
8947
+ }
8948
+ }
8925
8949
  `;
8926
- const ImageContainerBg = styled.div `
8927
- position: absolute;
8928
- top: 0;
8929
- bottom: 0;
8930
- left: 0;
8931
- right: 0;
8932
-
8933
- img {
8934
- width: 100%;
8935
- height: 100%;
8936
- object-position: center;
8937
- object-fit: cover;
8938
- }
8950
+ const ImageContainerBg = styled.div `
8951
+ position: absolute;
8952
+ top: 0;
8953
+ bottom: 0;
8954
+ left: 0;
8955
+ right: 0;
8956
+
8957
+ img {
8958
+ width: 100%;
8959
+ height: 100%;
8960
+ object-position: center;
8961
+ object-fit: cover;
8962
+ }
8939
8963
  `;
8940
- const HeaderSlideshow = styled.div `
8941
- position: absolute;
8942
- top: 0;
8943
- bottom: ${({ height }) => (height ? `${height}px` : 0)};
8944
- left: 0;
8945
- right: 0;
8946
-
8947
- img {
8948
- width: 100%;
8949
- height: 100%;
8950
- min-height: inherit;
8951
- object-position: center;
8952
- object-fit: cover;
8953
- }
8964
+ const HeaderSlideshow = styled.div `
8965
+ position: absolute;
8966
+ top: 0;
8967
+ bottom: ${({ height }) => (height ? `${height}px` : 0)};
8968
+ left: 0;
8969
+ right: 0;
8970
+
8971
+ img {
8972
+ width: 100%;
8973
+ height: 100%;
8974
+ min-height: inherit;
8975
+ object-position: center;
8976
+ object-fit: cover;
8977
+ }
8954
8978
  `;
8955
8979
 
8956
8980
  const FeatureCardSlideshowHeader = ({ isRow }) => {
@@ -9089,40 +9113,40 @@ const getDefaultConfig = ({ title, defaultTitle, items, baseMapName, position, r
9089
9113
  return dashboardConfiguration;
9090
9114
  };
9091
9115
 
9092
- const UploaderContainer = styled(Container) `
9093
- ${UploaderItemArea} {
9094
- overflow: visible;
9095
- padding-top: 1rem;
9096
- padding-bottom: 1rem;
9097
- }
9098
-
9099
- ${UploaderTitleWrapper} {
9100
- top: 0;
9101
- padding-top: 0;
9102
- border: 0;
9103
- }
9116
+ const UploaderContainer = styled(Container) `
9117
+ ${UploaderItemArea} {
9118
+ overflow: visible;
9119
+ padding-top: 1rem;
9120
+ padding-bottom: 1rem;
9121
+ }
9122
+
9123
+ ${UploaderTitleWrapper} {
9124
+ top: 0;
9125
+ padding-top: 0;
9126
+ border: 0;
9127
+ }
9104
9128
  `;
9105
9129
 
9106
- const UploaderTitle = styled(Flex) `
9107
- flex-direction: column;
9108
- align-items: center;
9109
- width: 11rem;
9110
- margin: 0 auto;
9111
- text-align: center;
9112
- font-size: 0.625rem;
9113
- color: ${({ theme: { palette } }) => palette.textSecondary};
9114
-
9115
- span[kind] {
9116
- width: 1.5rem;
9117
- height: 1.5rem;
9118
- margin-bottom: 0.75rem;
9119
-
9120
- :after {
9121
- font-size: 1.5rem;
9122
- color: ${({ theme: { palette } }) => palette.textSecondary};
9123
- opacity: 0.12;
9124
- }
9125
- }
9130
+ const UploaderTitle = styled(Flex) `
9131
+ flex-direction: column;
9132
+ align-items: center;
9133
+ width: 11rem;
9134
+ margin: 0 auto;
9135
+ text-align: center;
9136
+ font-size: 0.625rem;
9137
+ color: ${({ theme: { palette } }) => palette.textSecondary};
9138
+
9139
+ span[kind] {
9140
+ width: 1.5rem;
9141
+ height: 1.5rem;
9142
+ margin-bottom: 0.75rem;
9143
+
9144
+ :after {
9145
+ font-size: 1.5rem;
9146
+ color: ${({ theme: { palette } }) => palette.textSecondary};
9147
+ opacity: 0.12;
9148
+ }
9149
+ }
9126
9150
  `;
9127
9151
 
9128
9152
  const DEFAULT_FILE_EXTENSIONS = ".txt,.csv,.py";
@@ -9169,20 +9193,20 @@ const ElementUploader = memo(({ elementConfig, type }) => {
9169
9193
  return (jsx(UploaderContainer, { id: id, style: style, children: jsx("div", { children: jsx(Uploader, { currentRef: refInput, title: renderTitle, accept: fileExtensions, width: "100%", fileItems: files, isMultiple: multiSelect, onUpload: onUpload, onDelete: onDelete }) }) }));
9170
9194
  });
9171
9195
 
9172
- const ModalIcon = styled(Icon) `
9173
- &&& {
9174
- cursor: pointer;
9175
-
9176
- :after {
9177
- font-size: 0.75rem;
9178
- color: ${({ theme: { palette } }) => palette.iconDisabled};
9179
- transition: color ${transition.hover};
9180
- }
9181
-
9182
- :hover:after {
9183
- color: ${({ theme: { palette } }) => palette.icon};
9184
- }
9185
- }
9196
+ const ModalIcon = styled(Icon) `
9197
+ &&& {
9198
+ cursor: pointer;
9199
+
9200
+ :after {
9201
+ font-size: 0.75rem;
9202
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
9203
+ transition: color ${transition.hover};
9204
+ }
9205
+
9206
+ :hover:after {
9207
+ color: ${({ theme: { palette } }) => palette.icon};
9208
+ }
9209
+ }
9186
9210
  `;
9187
9211
 
9188
9212
  const isEmptyElementValue = (value) => value === "" || value === null || value === undefined;
@@ -9923,64 +9947,64 @@ const getJustifyContent = (align) => {
9923
9947
  return "flex-start";
9924
9948
  }
9925
9949
  };
9926
- const ChipsContainer = styled(Flex) `
9927
- flex-wrap: wrap;
9928
- gap: 0.25rem;
9929
- background: transparent;
9930
- justify-content: ${({ $align }) => getJustifyContent($align)};
9950
+ const ChipsContainer = styled(Flex) `
9951
+ flex-wrap: wrap;
9952
+ gap: 0.25rem;
9953
+ background: transparent;
9954
+ justify-content: ${({ $align }) => getJustifyContent($align)};
9931
9955
  `;
9932
9956
 
9933
- const FilterChip = styled.div `
9934
- display: inline-flex;
9935
- align-items: center;
9936
- gap: 0.25rem;
9937
- padding: 0.3125rem 0.5rem;
9938
- height: 1.5rem;
9939
- border-radius: 0.25rem;
9957
+ const FilterChip = styled.div `
9958
+ display: inline-flex;
9959
+ align-items: center;
9960
+ gap: 0.25rem;
9961
+ padding: 0.3125rem 0.5rem;
9962
+ height: 1.5rem;
9963
+ border-radius: 0.25rem;
9940
9964
  background-color: ${({ $isActive, $bgColor, theme }) => $bgColor
9941
9965
  ? $bgColor
9942
9966
  : $isActive
9943
9967
  ? theme.palette?.primary
9944
- : theme.palette?.elementLight};
9968
+ : theme.palette?.elementLight};
9945
9969
  color: ${({ $isActive, $textColor, theme }) => $textColor
9946
9970
  ? $textColor
9947
9971
  : $isActive
9948
9972
  ? theme.palette?.textContrast
9949
- : theme.palette?.textSecondary};
9950
- cursor: pointer;
9951
- font-size: 0.75rem;
9952
- line-height: 0.875rem;
9953
- white-space: nowrap;
9954
- flex-shrink: 0;
9955
- transition: all 0.2s ease-in-out;
9956
- margin: 0 0.25rem 0 0;
9957
- box-sizing: border-box;
9958
-
9959
- &:hover {
9973
+ : theme.palette?.textSecondary};
9974
+ cursor: pointer;
9975
+ font-size: 0.75rem;
9976
+ line-height: 0.875rem;
9977
+ white-space: nowrap;
9978
+ flex-shrink: 0;
9979
+ transition: all 0.2s ease-in-out;
9980
+ margin: 0 0.25rem 0 0;
9981
+ box-sizing: border-box;
9982
+
9983
+ &:hover {
9960
9984
  background-color: ${({ $isActive, $bgColor, theme }) => $isActive
9961
9985
  ? $bgColor || 'inherit'
9962
- : $bgColor || theme.palette?.elementDark};
9963
- }
9986
+ : $bgColor || theme.palette?.elementDark};
9987
+ }
9964
9988
  `;
9965
- const ChipIconWrapper = styled.span `
9966
- display: inline-flex;
9967
- align-items: center;
9968
- justify-content: center;
9969
- width: 0.875rem;
9970
- height: 0.875rem;
9971
- flex-shrink: 0;
9972
-
9973
- svg, img {
9974
- width: 100%;
9975
- height: 100%;
9976
- display: block;
9977
- }
9989
+ const ChipIconWrapper = styled.span `
9990
+ display: inline-flex;
9991
+ align-items: center;
9992
+ justify-content: center;
9993
+ width: 0.875rem;
9994
+ height: 0.875rem;
9995
+ flex-shrink: 0;
9996
+
9997
+ svg, img {
9998
+ width: 100%;
9999
+ height: 100%;
10000
+ display: block;
10001
+ }
9978
10002
  `;
9979
- const ChipText = styled.span `
9980
- overflow: hidden;
9981
- text-overflow: ellipsis;
9982
- white-space: nowrap;
9983
- ${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
10003
+ const ChipText = styled.span `
10004
+ overflow: hidden;
10005
+ text-overflow: ellipsis;
10006
+ white-space: nowrap;
10007
+ ${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
9984
10008
  `;
9985
10009
 
9986
10010
  const CustomChip = ({ text, icon, color, primary, secondary, error, disabled, isActive, maxTextWidth, fontColor: customFontColor, backgroundColor: customBackgroundColor, ...props }) => {
@@ -10425,6 +10449,24 @@ const roundTotalSum = (value) => {
10425
10449
  return value;
10426
10450
  };
10427
10451
 
10452
+ const updateDataSource = (dashboardConfiguration, name, pageIndex, data) => {
10453
+ const newConfig = JSON.parse(JSON.stringify(dashboardConfiguration));
10454
+ if (newConfig.dataSources?.length) {
10455
+ const dataSource = newConfig.dataSources.find(item => item.name === name);
10456
+ if (dataSource) {
10457
+ Object.assign(dataSource, data);
10458
+ }
10459
+ }
10460
+ const pages = getPagesFromConfig(newConfig);
10461
+ if (pages?.[pageIndex - 1]?.dataSources?.length) {
10462
+ const dataSource = pages[pageIndex - 1].dataSources.find(item => item.name === name);
10463
+ if (dataSource) {
10464
+ Object.assign(dataSource, data);
10465
+ }
10466
+ }
10467
+ return newConfig;
10468
+ };
10469
+
10428
10470
  const sliceShownOtherItems = (data, options = {}, showMore) => {
10429
10471
  const { shownItems, otherItems } = options || {};
10430
10472
  const limit = shownItems && otherItems ? Math.min(shownItems, otherItems) : shownItems || otherItems;
@@ -11389,8 +11431,8 @@ const Dashboard = memo(({ type = WidgetType.Dashboard, noBorders }) => {
11389
11431
  return (jsx(PagesContainer, { type: type, noBorders: noBorders }));
11390
11432
  });
11391
11433
 
11392
- const CardCheckbox = styled(Checkbox) `
11393
- padding-left: 0.5rem;
11434
+ const CardCheckbox = styled(Checkbox) `
11435
+ padding-left: 0.5rem;
11394
11436
  `;
11395
11437
 
11396
11438
  const DashboardCheckbox = ({ title, checked, onChange, }) => {
@@ -11464,15 +11506,15 @@ const FeatureCardTitle = ({ title, description }) => {
11464
11506
  return (jsxs(HeaderTitleContainer, { children: [jsx(FeatureTitleContainer, { children: jsx(FlexSpan, { children: resultTitle }) }), jsx(LayerDescription, { title: resultDescription, children: resultDescription })] }));
11465
11507
  };
11466
11508
 
11467
- const HiddenFilters = styled(Flex) `
11468
- flex-wrap: wrap;
11469
- margin-top: -1.25rem;
11470
-
11471
- ${DashboardChip$1} {
11472
- height: 1.5rem;
11473
- margin: 0 0.25rem 0.25rem 0;
11474
- padding: 0 0 0 0.5rem;
11475
- }
11509
+ const HiddenFilters = styled(Flex) `
11510
+ flex-wrap: wrap;
11511
+ margin-top: -1.25rem;
11512
+
11513
+ ${DashboardChip$1} {
11514
+ height: 1.5rem;
11515
+ margin: 0 0.25rem 0.25rem 0;
11516
+ padding: 0 0 0 0.5rem;
11517
+ }
11476
11518
  `;
11477
11519
 
11478
11520
  function spliceValue(filterValue, splicingValue) {
@@ -11658,24 +11700,24 @@ const LogTerminal = ({ log, terminalOptions, className, styles }) => {
11658
11700
  return jsx(TerminalWrapper, { ref: terminalRef, className: className, style: styles });
11659
11701
  };
11660
11702
 
11661
- const PageNavigator = styled(Flex) `
11662
- margin-right: -0.5rem;
11663
- align-items: center;
11664
-
11665
- button {
11666
- width: auto;
11667
- height: 2rem;
11668
- padding: 0 0.5rem;
11669
-
11670
- span[kind]:after {
11671
- color: ${({ theme: { palette } }) => palette.textDisabled};
11672
- transition: color ${transition.hover};
11673
- }
11674
-
11675
- :hover span[kind]:after {
11676
- color: ${({ theme: { palette } }) => palette.textSecondary};
11677
- }
11678
- }
11703
+ const PageNavigator = styled(Flex) `
11704
+ margin-right: -0.5rem;
11705
+ align-items: center;
11706
+
11707
+ button {
11708
+ width: auto;
11709
+ height: 2rem;
11710
+ padding: 0 0.5rem;
11711
+
11712
+ span[kind]:after {
11713
+ color: ${({ theme: { palette } }) => palette.textDisabled};
11714
+ transition: color ${transition.hover};
11715
+ }
11716
+
11717
+ :hover span[kind]:after {
11718
+ color: ${({ theme: { palette } }) => palette.textSecondary};
11719
+ }
11720
+ }
11679
11721
  `;
11680
11722
 
11681
11723
  const Pagination = memo(({ type = WidgetType.Dashboard }) => {
@@ -11684,34 +11726,34 @@ const Pagination = memo(({ type = WidgetType.Dashboard }) => {
11684
11726
  return (jsxs(PageNavigator, { children: [jsx(IconButton, { kind: "prev", onClick: () => prevPage(pages.length) }), jsx(IconButton, { kind: "next", onClick: () => nextPage(pages.length) })] }));
11685
11727
  });
11686
11728
 
11687
- const StyledSvgWidthMixin = css `
11688
- &&& {
11689
- svg {
11690
- width: ${({ $width }) => $width}px;
11691
- }
11692
- }
11729
+ const StyledSvgWidthMixin = css `
11730
+ &&& {
11731
+ svg {
11732
+ width: ${({ $width }) => $width}px;
11733
+ }
11734
+ }
11693
11735
  `;
11694
- const StyledSvgHeightMixin = css `
11695
- &&& {
11696
- svg {
11697
- height: ${({ $height }) => $height}px;
11698
- }
11699
- }
11736
+ const StyledSvgHeightMixin = css `
11737
+ &&& {
11738
+ svg {
11739
+ height: ${({ $height }) => $height}px;
11740
+ }
11741
+ }
11700
11742
  `;
11701
- const StyledSvgColorMixin = css `
11702
- svg {
11703
- path,
11704
- line,
11705
- circle {
11706
- fill: ${({ $fontColor }) => $fontColor} !important;
11707
- }
11708
- }
11743
+ const StyledSvgColorMixin = css `
11744
+ svg {
11745
+ path,
11746
+ line,
11747
+ circle {
11748
+ fill: ${({ $fontColor }) => $fontColor} !important;
11749
+ }
11750
+ }
11709
11751
  `;
11710
- const StyledSvg = styled(Flex) `
11711
- align-items: center;
11712
- ${({ $width }) => !!$width && StyledSvgWidthMixin};
11713
- ${({ $height }) => !!$height && StyledSvgHeightMixin};
11714
- ${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
11752
+ const StyledSvg = styled(Flex) `
11753
+ align-items: center;
11754
+ ${({ $width }) => !!$width && StyledSvgWidthMixin};
11755
+ ${({ $height }) => !!$height && StyledSvgHeightMixin};
11756
+ ${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
11715
11757
  `;
11716
11758
 
11717
11759
  const SvgImage = memo(({ url, width, height, fontColor }) => {
@@ -11963,28 +12005,28 @@ const Layer = ({ layer, layerType, visible, beforeId, tileUrl, getLayerTempStyle
11963
12005
  return (jsx(VectorLayer, { layer: layer, tileUrl: tileUrl, visible: visible, beforeId: beforeId, getLayerTempStyle: getLayerTempStyle, filterVersion: filterVersion }));
11964
12006
  };
11965
12007
 
11966
- const MapWrapper = styled.div `
11967
- position: relative;
11968
- width: 100%;
11969
- height: 100%;
11970
- box-sizing: border-box;
11971
- z-index: ${({ $zIndex }) => $zIndex ?? 1};
11972
-
11973
- .mapbox-gl-draw_trash {
11974
- display: none;
11975
- }
11976
-
11977
- .mapboxgl-ctrl-logo {
11978
- display: none;
11979
- }
11980
-
11981
- .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
11982
- display: none;
11983
- }
11984
-
11985
- .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
11986
- width: 350px;
11987
- }
12008
+ const MapWrapper = styled.div `
12009
+ position: relative;
12010
+ width: 100%;
12011
+ height: 100%;
12012
+ box-sizing: border-box;
12013
+ z-index: ${({ $zIndex }) => $zIndex ?? 1};
12014
+
12015
+ .mapbox-gl-draw_trash {
12016
+ display: none;
12017
+ }
12018
+
12019
+ .mapboxgl-ctrl-logo {
12020
+ display: none;
12021
+ }
12022
+
12023
+ .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
12024
+ display: none;
12025
+ }
12026
+
12027
+ .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
12028
+ width: 350px;
12029
+ }
11988
12030
  `;
11989
12031
 
11990
12032
  const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...rest }) => {
@@ -11996,5 +12038,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
11996
12038
  }, children: children }), upperSiblings] }));
11997
12039
  };
11998
12040
 
11999
- export { AddFeatureButton, AddFeatureContainer, AlertIconContainer, 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, 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, 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, PageNavigator, PageTitle, PageTitleContainer, 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, getTemplateNameFromAttribute, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isCompositeLayerConfiguration, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, numberOptions, parseClientStyle, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, useAppHeight, useAutoCompleteControl, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useExportPdf, useFetchImageWithAuth, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerParams, useMapContext, useMapDraw, useMapImages, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
12041
+ export { AddFeatureButton, AddFeatureContainer, AlertIconContainer, 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, 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, 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, PageNavigator, PageTitle, PageTitleContainer, 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, getTemplateNameFromAttribute, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isCompositeLayerConfiguration, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, numberOptions, parseClientStyle, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, updateDataSource, useAppHeight, useAutoCompleteControl, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useExportPdf, useFetchImageWithAuth, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerParams, useMapContext, useMapDraw, useMapImages, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
12000
12042
  //# sourceMappingURL=react.esm.js.map