@evergis/react 4.0.33 → 4.0.34

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
@@ -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) {
@@ -3434,6 +3434,7 @@ const DEFAULT_CHART_WIDTH = 154;
3434
3434
  const MAX_CHART_WIDTH = 300;
3435
3435
  const DEFAULT_CHART_ANGLE = 4;
3436
3436
  const DEFAULT_CHART_HEIGHT = 90;
3437
+ const STACK_BAR_TOTAL_HEIGHT = 20;
3437
3438
  const FILTER_PREFIX = "%";
3438
3439
  const PROVIDER_PREFIX = "$";
3439
3440
  var ProviderPrefix;
@@ -3462,42 +3463,42 @@ const BASE_CONTAINER_STYLE = {
3462
3463
  marginBottom: "1rem",
3463
3464
  };
3464
3465
 
3465
- const StackBarContainer = styled(Flex) `
3466
- flex-wrap: nowrap;
3467
- width: 100%;
3466
+ const StackBarContainer = styled(Flex) `
3467
+ flex-wrap: nowrap;
3468
+ width: 100%;
3468
3469
  `;
3469
- const StackBarHeader = styled(Flex) `
3470
- justify-content: space-between;
3471
- margin-bottom: 0.375rem;
3472
- font-size: 0.75rem;
3470
+ const StackBarHeader = styled(Flex) `
3471
+ justify-content: space-between;
3472
+ margin-bottom: 0.375rem;
3473
+ font-size: 0.75rem;
3473
3474
  `;
3474
- const StackBarSection = styled.div `
3475
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
3476
- width: ${({ $width }) => $width}%;
3477
- height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
3478
- margin: 0 0.5px;
3479
- background-color: ${({ $color }) => $color};
3480
- opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
3481
- transition: opacity ${transition.release}, background-color ${transition.release};
3482
-
3483
- :first-child {
3484
- border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3485
- border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3486
- }
3487
-
3488
- :last-child {
3489
- border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3490
- border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3491
- }
3475
+ const StackBarSection = styled.div `
3476
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
3477
+ width: ${({ $width }) => $width}%;
3478
+ height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
3479
+ margin: 0 0.5px;
3480
+ background-color: ${({ $color }) => $color};
3481
+ opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
3482
+ transition: opacity ${transition.release}, background-color ${transition.release};
3483
+
3484
+ :first-child {
3485
+ border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3486
+ border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3487
+ }
3488
+
3489
+ :last-child {
3490
+ border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3491
+ border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3492
+ }
3492
3493
  `;
3493
- const StackBarAlias = styled.div `
3494
- color: ${({ theme: { palette } }) => palette.textSecondary};
3494
+ const StackBarAlias = styled.div `
3495
+ color: ${({ theme: { palette } }) => palette.textSecondary};
3495
3496
  `;
3496
3497
  const StackBarTotal = styled(Flex) ``;
3497
3498
  const StackBarValue = styled.div ``;
3498
- const StackBarUnits = styled.div `
3499
- margin-left: 0.25rem;
3500
- color: ${({ theme: { palette } }) => palette.textSecondary};
3499
+ const StackBarUnits = styled.div `
3500
+ margin-left: 0.25rem;
3501
+ color: ${({ theme: { palette } }) => palette.textSecondary};
3501
3502
  `;
3502
3503
 
3503
3504
  const transparentizeColor = (originalColor, percent) => {
@@ -4254,8 +4255,8 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4254
4255
  const customize = useCallback(({ svg }) => {
4255
4256
  svg.style("overflow", "visible");
4256
4257
  svg
4257
- .selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
4258
- .${lineChartClassNames.lineChartYScaleGlobal} line,
4258
+ .selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
4259
+ .${lineChartClassNames.lineChartYScaleGlobal} line,
4259
4260
  .domain`)
4260
4261
  .each((_, index, nodes) => {
4261
4262
  nodes[index].remove();
@@ -4326,11 +4327,11 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4326
4327
  .attr("fill", `url(#${gradientId})`)
4327
4328
  .attr("stroke-width", "0")
4328
4329
  .attr("fill-opacity", FILL_OPACITY);
4329
- defs.push(`
4330
- <linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
4331
- <stop offset="0" stop-color="${color}" stop-opacity="1" />
4332
- <stop offset="1" stop-color="${color}" stop-opacity="0" />
4333
- </linearGradient>
4330
+ defs.push(`
4331
+ <linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
4332
+ <stop offset="0" stop-color="${color}" stop-opacity="1" />
4333
+ <stop offset="1" stop-color="${color}" stop-opacity="0" />
4334
+ </linearGradient>
4334
4335
  `);
4335
4336
  ref.current = {
4336
4337
  path: newPath,
@@ -4712,104 +4713,104 @@ const formatDataSourceCondition = ({ condition, configFilters, filters, attribut
4712
4713
  : conditionSection.join(splitter);
4713
4714
  };
4714
4715
 
4715
- const DashboardChipsContainer = styled(Flex) `
4716
- flex-wrap: wrap;
4716
+ const DashboardChipsContainer = styled(Flex) `
4717
+ flex-wrap: wrap;
4717
4718
  `;
4718
- const DefaultChipColorMixin = css `
4719
- && {
4720
- color: ${({ theme: { palette } }) => palette.textPrimary};
4721
- }
4722
-
4723
- && > * {
4724
- color: ${({ theme: { palette } }) => palette.textPrimary};
4725
- }
4726
-
4727
- && span[kind]:after {
4728
- color: ${({ theme: { palette } }) => palette.icon};
4729
- }
4719
+ const DefaultChipColorMixin = css `
4720
+ && {
4721
+ color: ${({ theme: { palette } }) => palette.textPrimary};
4722
+ }
4723
+
4724
+ && > * {
4725
+ color: ${({ theme: { palette } }) => palette.textPrimary};
4726
+ }
4727
+
4728
+ && span[kind]:after {
4729
+ color: ${({ theme: { palette } }) => palette.icon};
4730
+ }
4730
4731
  `;
4731
- const CustomChipColorMixin = css `
4732
- && {
4733
- color: ${({ $fontColor }) => $fontColor};
4734
- }
4735
-
4736
- && > * {
4737
- color: ${({ $fontColor }) => $fontColor};
4738
- }
4739
-
4740
- && span[kind]:after {
4741
- color: ${({ $fontColor }) => $fontColor};
4742
- }
4732
+ const CustomChipColorMixin = css `
4733
+ && {
4734
+ color: ${({ $fontColor }) => $fontColor};
4735
+ }
4736
+
4737
+ && > * {
4738
+ color: ${({ $fontColor }) => $fontColor};
4739
+ }
4740
+
4741
+ && span[kind]:after {
4742
+ color: ${({ $fontColor }) => $fontColor};
4743
+ }
4744
+ `;
4745
+ const DashboardChip$1 = styled(Chip) `
4746
+ margin: 0 0.25rem 0.25rem 0;
4747
+ background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
4748
+ border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
4749
+ white-space: nowrap;
4750
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4751
+ color: ${({ theme: { palette } }) => palette.iconContrast};
4752
+
4753
+ > * {
4754
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4755
+ }
4756
+
4757
+ span[kind] {
4758
+ height: 0.875rem;
4759
+
4760
+ :after {
4761
+ font-size: 0.875rem;
4762
+ }
4763
+ }
4764
+
4765
+ button {
4766
+ width: auto;
4767
+ padding: 0 0.5rem;
4768
+ }
4769
+
4770
+ ${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
4771
+ ${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
4743
4772
  `;
4744
- const DashboardChip$1 = styled(Chip) `
4745
- margin: 0 0.25rem 0.25rem 0;
4746
- background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
4747
- border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
4748
- white-space: nowrap;
4749
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4750
- color: ${({ theme: { palette } }) => palette.iconContrast};
4751
-
4752
- > * {
4753
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4754
- }
4755
-
4756
- span[kind] {
4757
- height: 0.875rem;
4758
-
4759
- :after {
4760
- font-size: 0.875rem;
4761
- }
4762
- }
4763
-
4764
- button {
4765
- width: auto;
4766
- padding: 0 0.5rem;
4767
- }
4768
-
4769
- ${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
4770
- ${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
4771
- `;
4772
-
4773
- const LayerGroupContainer = styled(Flex) `
4774
- display: flex;
4775
- justify-content: center;
4776
- position: relative;
4777
- flex-direction: column;
4778
- padding: 0 0.25rem 0 1rem;
4779
- box-sizing: border-box;
4780
- transition: opacity ${transition.hover}, background-color ${transition.hover};
4781
- font-family: "NunitoSans", sans-serif;
4782
- `;
4783
- const LayerGroupMain = styled(Flex) `
4784
- flex-direction: row;
4785
- flex-wrap: nowrap;
4786
- align-items: center;
4787
- justify-content: space-between;
4788
- width: 100%;
4789
-
4790
- ${Icon} {
4791
- width: 2rem;
4792
- min-width: 2rem;
4793
- height: 2rem;
4794
- display: inline-flex;
4795
- align-items: center;
4796
- justify-content: center;
4797
- margin-right: 0.75rem;
4798
- }
4799
-
4800
- ${Description} {
4801
- display: flex;
4802
- align-items: center;
4803
- flex-grow: 1;
4804
- width: 100%;
4805
- margin-right: 0.25rem;
4806
- color: ${({ theme }) => theme.palette.textPrimary};
4807
- }
4808
4773
 
4809
- button {
4810
- width: 2.25rem;
4811
- justify-content: flex-start;
4812
- }
4774
+ const LayerGroupContainer = styled(Flex) `
4775
+ display: flex;
4776
+ justify-content: center;
4777
+ position: relative;
4778
+ flex-direction: column;
4779
+ padding: 0 0.25rem 0 1rem;
4780
+ box-sizing: border-box;
4781
+ transition: opacity ${transition.hover}, background-color ${transition.hover};
4782
+ font-family: "NunitoSans", sans-serif;
4783
+ `;
4784
+ const LayerGroupMain = styled(Flex) `
4785
+ flex-direction: row;
4786
+ flex-wrap: nowrap;
4787
+ align-items: center;
4788
+ justify-content: space-between;
4789
+ width: 100%;
4790
+
4791
+ ${Icon} {
4792
+ width: 2rem;
4793
+ min-width: 2rem;
4794
+ height: 2rem;
4795
+ display: inline-flex;
4796
+ align-items: center;
4797
+ justify-content: center;
4798
+ margin-right: 0.75rem;
4799
+ }
4800
+
4801
+ ${Description} {
4802
+ display: flex;
4803
+ align-items: center;
4804
+ flex-grow: 1;
4805
+ width: 100%;
4806
+ margin-right: 0.25rem;
4807
+ color: ${({ theme }) => theme.palette.textPrimary};
4808
+ }
4809
+
4810
+ button {
4811
+ width: 2.25rem;
4812
+ justify-content: flex-start;
4813
+ }
4813
4814
  `;
4814
4815
 
4815
4816
  const customModes = MapboxDraw.modes;
@@ -5639,330 +5640,330 @@ const LayerTree = ({ layers, onlyMainTools }) => {
5639
5640
  return (jsx(DraggableTree, { nodes: nodes, disableDrag: onlyMainTools, options: { pastePlaceholderHeight: "0.025rem" }, onUpdate: onUpdate }));
5640
5641
  };
5641
5642
 
5642
- const LayersListWrapper = styled(Flex) `
5643
- flex-direction: column;
5644
- height: 100%;
5645
- width: 100%;
5646
- box-sizing: border-box;
5643
+ const LayersListWrapper = styled(Flex) `
5644
+ flex-direction: column;
5645
+ height: 100%;
5646
+ width: 100%;
5647
+ box-sizing: border-box;
5647
5648
  `;
5648
- const LayerListContainer = styled(Flex) `
5649
- flex-grow: 1;
5650
- height: 100%;
5651
- box-sizing: border-box;
5652
- padding-top: 0.25rem;
5649
+ const LayerListContainer = styled(Flex) `
5650
+ flex-grow: 1;
5651
+ height: 100%;
5652
+ box-sizing: border-box;
5653
+ padding-top: 0.25rem;
5653
5654
  `;
5654
5655
 
5655
- const ElementValueWrapper = styled.div `
5656
- transition: background-color ${transition.toggle};
5657
-
5656
+ const ElementValueWrapper = styled.div `
5657
+ transition: background-color ${transition.toggle};
5658
+
5658
5659
  ${({ noMargin }) => !!noMargin &&
5659
- css `
5660
- &&&& {
5661
- margin-bottom: 0;
5662
- }
5663
- `};
5664
- `;
5665
- const Container = styled(Flex) `
5666
- flex-direction: column;
5667
- width: 100%;
5668
-
5660
+ css `
5661
+ &&&& {
5662
+ margin-bottom: 0;
5663
+ }
5664
+ `};
5665
+ `;
5666
+ const Container = styled(Flex) `
5667
+ flex-direction: column;
5668
+ width: 100%;
5669
+
5669
5670
  ${({ isColumn }) => isColumn
5670
- ? css `
5671
- &&& > * {
5672
- justify-content: flex-start;
5673
- }
5674
- > * {
5675
- width: 100%;
5676
-
5677
- :not(:last-child) {
5678
- margin-bottom: 0.5rem;
5679
- }
5680
- }
5671
+ ? css `
5672
+ &&& > * {
5673
+ justify-content: flex-start;
5674
+ }
5675
+ > * {
5676
+ width: 100%;
5677
+
5678
+ :not(:last-child) {
5679
+ margin-bottom: 0.5rem;
5680
+ }
5681
+ }
5681
5682
  `
5682
- : css `
5683
- flex-direction: row;
5684
- justify-content: space-between;
5685
- align-items: center;
5686
- `}
5687
-
5683
+ : css `
5684
+ flex-direction: row;
5685
+ justify-content: space-between;
5686
+ align-items: center;
5687
+ `}
5688
+
5688
5689
  ${({ isTitle }) => isTitle &&
5689
- css `
5690
- &&&& {
5691
- margin-bottom: 0.75rem;
5692
- }
5693
- `}
5694
-
5690
+ css `
5691
+ &&&& {
5692
+ margin-bottom: 0.75rem;
5693
+ }
5694
+ `}
5695
+
5695
5696
  ${({ noBorders }) => noBorders &&
5696
- css `
5697
- ${ContainerWrapper} {
5698
- box-shadow: none;
5699
- padding: 0;
5700
- }
5701
- `}
5702
- `;
5703
- const ContainerWrapper = styled(Flex) `
5704
- position: relative;
5705
- box-sizing: border-box;
5706
- width: 100%;
5707
- background: ${({ theme: { palette } }) => palette.backgroundAlpha};
5708
- box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
5709
- margin-bottom: 2rem;
5710
- padding: 1.5rem;
5711
- border-radius: 0.5rem;
5712
- backdrop-filter: blur(20px);
5713
- color: ${({ theme: { palette } }) => palette.textPrimary};
5714
- z-index: ${({ $zIndex }) => $zIndex ?? 1};
5715
- transition: background-color ${transition.toggle};
5716
-
5697
+ css `
5698
+ ${ContainerWrapper} {
5699
+ box-shadow: none;
5700
+ padding: 0;
5701
+ }
5702
+ `}
5703
+ `;
5704
+ const ContainerWrapper = styled(Flex) `
5705
+ position: relative;
5706
+ box-sizing: border-box;
5707
+ width: 100%;
5708
+ background: ${({ theme: { palette } }) => palette.backgroundAlpha};
5709
+ box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
5710
+ margin-bottom: 2rem;
5711
+ padding: 1.5rem;
5712
+ border-radius: 0.5rem;
5713
+ backdrop-filter: blur(20px);
5714
+ color: ${({ theme: { palette } }) => palette.textPrimary};
5715
+ z-index: ${({ $zIndex }) => $zIndex ?? 1};
5716
+ transition: background-color ${transition.toggle};
5717
+
5717
5718
  ${({ $noMargin }) => $noMargin &&
5718
- css `
5719
- &&&& {
5720
- margin-bottom: 0;
5721
- }
5722
- `}
5723
- `;
5724
- const DashboardChip = styled(Chip) `
5725
- margin: 0 0.25rem 0.25rem 0;
5726
- background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
5727
- border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
5728
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5729
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5730
-
5731
- > * {
5732
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5733
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5734
- }
5735
-
5736
- span[kind]:after {
5737
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.icon : $fontColor || "#fff"};
5738
- }
5739
- `;
5740
- const DashboardPlaceholderWrap = styled(Flex) `
5741
- flex-grow: 1;
5742
- flex-direction: column;
5743
- justify-content: center;
5744
- align-items: center;
5745
- width: 100%;
5746
- margin-bottom: 2rem;
5719
+ css `
5720
+ &&&& {
5721
+ margin-bottom: 0;
5722
+ }
5723
+ `}
5724
+ `;
5725
+ const DashboardChip = styled(Chip) `
5726
+ margin: 0 0.25rem 0.25rem 0;
5727
+ background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
5728
+ border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
5729
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5730
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5731
+
5732
+ > * {
5733
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5734
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5735
+ }
5736
+
5737
+ span[kind]:after {
5738
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.icon : $fontColor || "#fff"};
5739
+ }
5747
5740
  `;
5748
- const DashboardPlaceholder = styled(Flex) `
5749
- flex-direction: column;
5750
- justify-content: center;
5751
- align-items: center;
5752
- margin-top: 2rem;
5753
-
5741
+ const DashboardPlaceholderWrap = styled(Flex) `
5742
+ flex-grow: 1;
5743
+ flex-direction: column;
5744
+ justify-content: center;
5745
+ align-items: center;
5746
+ width: 100%;
5747
+ margin-bottom: 2rem;
5748
+ `;
5749
+ const DashboardPlaceholder = styled(Flex) `
5750
+ flex-direction: column;
5751
+ justify-content: center;
5752
+ align-items: center;
5753
+ margin-top: 2rem;
5754
+
5754
5755
  ${({ isLoading }) => isLoading &&
5755
- css `
5756
- width: 6.25rem;
5757
- `}
5758
-
5759
- &&& > * {
5760
- margin-bottom: 0;
5761
- }
5762
-
5763
- > div {
5764
- width: 100%;
5765
- margin-top: 1rem;
5766
- font-size: 0.75rem;
5767
- text-align: center;
5768
- color: ${({ theme: { palette } }) => palette.textDisabled};
5769
- }
5770
-
5771
- span[kind] {
5772
- width: 2.25rem;
5773
- height: 2.25rem;
5774
- opacity: 0.28;
5775
-
5776
- :after {
5777
- font-size: 32px;
5778
- }
5779
- }
5756
+ css `
5757
+ width: 6.25rem;
5758
+ `}
5759
+
5760
+ &&& > * {
5761
+ margin-bottom: 0;
5762
+ }
5763
+
5764
+ > div {
5765
+ width: 100%;
5766
+ margin-top: 1rem;
5767
+ font-size: 0.75rem;
5768
+ text-align: center;
5769
+ color: ${({ theme: { palette } }) => palette.textDisabled};
5770
+ }
5771
+
5772
+ span[kind] {
5773
+ width: 2.25rem;
5774
+ height: 2.25rem;
5775
+ opacity: 0.28;
5776
+
5777
+ :after {
5778
+ font-size: 32px;
5779
+ }
5780
+ }
5780
5781
  `;
5781
- const DashboardWrapper = styled(Flex) `
5782
- flex-direction: column;
5783
- flex-wrap: nowrap;
5784
- flex-grow: 1;
5785
- width: calc(100% - 3rem);
5786
- height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
5787
-
5782
+ const DashboardWrapper = styled(Flex) `
5783
+ flex-direction: column;
5784
+ flex-wrap: nowrap;
5785
+ flex-grow: 1;
5786
+ width: calc(100% - 3rem);
5787
+ height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
5788
+
5788
5789
  ${({ hasImage, isPresentationMode }) => hasImage &&
5789
5790
  !isPresentationMode &&
5790
- css `
5791
- margin-top: -0.35rem;
5792
- `}
5793
- `;
5794
- const DashboardContent = styled(Flex) `
5795
- flex-grow: 1;
5796
- width: 100%;
5797
- padding: 1.5rem 1.5rem 2rem;
5798
- overflow-y: auto;
5799
- scrollbar-gutter: stable;
5800
- `;
5801
- const PresentationWrapperCss = css `
5802
- margin-bottom: 0.75rem;
5803
- padding: 1.5rem;
5804
- background-color: ${({ theme: { palette } }) => palette.panelBackground};
5805
- backdrop-filter: blur(10px);
5806
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5807
- box-shadow: ${shadows.raised};
5808
- `;
5809
- const PresentationWrapper = styled.div `
5810
- ${PresentationWrapperCss};
5811
- position: relative;
5812
- z-index: 1;
5813
- `;
5814
- const PresentationPanelWrapper = styled(PresentationWrapper) `
5815
- margin-top: 0.75rem;
5816
- transition: background-color ${transition.toggle};
5817
- `;
5818
- const PresentationHeader = styled.div `
5819
- margin: -1.5rem -1.5rem 0 -1.5rem;
5820
- padding: 1.5rem;
5821
- // background: url(images.presentationHeader) 0 0 no-repeat;
5822
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5823
- transition: background-color ${transition.toggle};
5824
-
5791
+ css `
5792
+ margin-top: -0.35rem;
5793
+ `}
5794
+ `;
5795
+ const DashboardContent = styled(Flex) `
5796
+ flex-grow: 1;
5797
+ width: 100%;
5798
+ padding: 1.5rem 1.5rem 2rem;
5799
+ overflow-y: auto;
5800
+ scrollbar-gutter: stable;
5801
+ `;
5802
+ const PresentationWrapperCss = css `
5803
+ margin-bottom: 0.75rem;
5804
+ padding: 1.5rem;
5805
+ background-color: ${({ theme: { palette } }) => palette.panelBackground};
5806
+ backdrop-filter: blur(10px);
5807
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5808
+ box-shadow: ${shadows.raised};
5809
+ `;
5810
+ const PresentationWrapper = styled.div `
5811
+ ${PresentationWrapperCss};
5812
+ position: relative;
5813
+ z-index: 1;
5814
+ `;
5815
+ const PresentationPanelWrapper = styled(PresentationWrapper) `
5816
+ margin-top: 0.75rem;
5817
+ transition: background-color ${transition.toggle};
5818
+ `;
5819
+ const PresentationHeader = styled.div `
5820
+ margin: -1.5rem -1.5rem 0 -1.5rem;
5821
+ padding: 1.5rem;
5822
+ // background: url(images.presentationHeader) 0 0 no-repeat;
5823
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5824
+ transition: background-color ${transition.toggle};
5825
+
5825
5826
  ${({ image }) => !!image &&
5826
- css `
5827
- padding-top: 7rem;
5828
- `};
5829
- `;
5830
- const PresentationHeaderTools = styled(Flex) `
5831
- justify-content: space-between;
5832
- align-items: center;
5833
- margin-bottom: -0.5rem;
5834
- margin-right: -0.5rem;
5835
-
5836
- span[kind="sun"],
5837
- span[kind="moon"] {
5838
- :after {
5839
- font-size: 0.85rem;
5840
- color: ${({ theme: { palette } }) => palette.iconDisabled};
5841
- }
5842
-
5843
- :hover:after {
5844
- color: ${({ theme: { palette } }) => palette.icon};
5845
- }
5846
- }
5827
+ css `
5828
+ padding-top: 7rem;
5829
+ `};
5830
+ `;
5831
+ const PresentationHeaderTools = styled(Flex) `
5832
+ justify-content: space-between;
5833
+ align-items: center;
5834
+ margin-bottom: -0.5rem;
5835
+ margin-right: -0.5rem;
5836
+
5837
+ span[kind="sun"],
5838
+ span[kind="moon"] {
5839
+ :after {
5840
+ font-size: 0.85rem;
5841
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
5842
+ }
5843
+
5844
+ :hover:after {
5845
+ color: ${({ theme: { palette } }) => palette.icon};
5846
+ }
5847
+ }
5847
5848
  `;
5848
- const LayerGroupList = styled(Flex) `
5849
- flex-direction: column;
5850
- height: 100%;
5851
- flex-wrap: nowrap;
5852
- overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
5853
- overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
5854
- padding: 0 0.125rem 0 0.75rem;
5855
- scrollbar-gutter: stable;
5856
-
5857
- > * {
5858
- flex-grow: 1;
5859
- }
5849
+ const LayerGroupList = styled(Flex) `
5850
+ flex-direction: column;
5851
+ height: 100%;
5852
+ flex-wrap: nowrap;
5853
+ overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
5854
+ overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
5855
+ padding: 0 0.125rem 0 0.75rem;
5856
+ scrollbar-gutter: stable;
5857
+
5858
+ > * {
5859
+ flex-grow: 1;
5860
+ }
5860
5861
  `;
5861
5862
  const PresentationHeaderButtons = styled(Flex) ``;
5862
- const PresentationPanelContainer = styled.div `
5863
- position: absolute;
5864
- top: 0;
5865
- left: calc(${({ left }) => left || 0}px + 0.75rem);
5866
- bottom: 0;
5867
- z-index: 3;
5868
- display: flex;
5869
- flex-direction: column;
5870
- width: ${LEFT_PANEL_HEADER_HEIGHT}px;
5871
- padding-right: 0.5rem;
5872
- scrollbar-gutter: stable;
5873
- overflow-y: hidden;
5874
-
5875
- :hover {
5876
- overflow-y: auto;
5877
- }
5878
-
5863
+ const PresentationPanelContainer = styled.div `
5864
+ position: absolute;
5865
+ top: 0;
5866
+ left: calc(${({ left }) => left || 0}px + 0.75rem);
5867
+ bottom: 0;
5868
+ z-index: 3;
5869
+ display: flex;
5870
+ flex-direction: column;
5871
+ width: ${LEFT_PANEL_HEADER_HEIGHT}px;
5872
+ padding-right: 0.5rem;
5873
+ scrollbar-gutter: stable;
5874
+ overflow-y: hidden;
5875
+
5876
+ :hover {
5877
+ overflow-y: auto;
5878
+ }
5879
+
5879
5880
  ${({ showLayers }) => !showLayers &&
5880
- css `
5881
- > :first-child {
5882
- padding-bottom: 0;
5883
- }
5884
- `};
5885
-
5886
- ${PresentationHeader} > * {
5887
- position: relative;
5888
- z-index: 2;
5889
- }
5890
-
5891
- /* PaginationWrapper {
5892
- ${PresentationWrapperCss};
5893
- width: calc(100% - 2rem);
5894
- min-height: 8.625rem;
5895
- padding-top: 0.5rem;
5896
- padding-bottom: 0.5rem;
5897
- margin-bottom: 0.75rem;
5898
- }*/
5899
-
5900
- ${DashboardWrapper} {
5901
- width: 100%;
5902
- margin-top: 0;
5903
-
5904
- ${DashboardContent} {
5905
- padding: 0;
5906
- overflow-y: unset;
5907
-
5908
- > * > ${ContainerWrapper} > * > ${ContainerWrapper} {
5909
- ${PresentationWrapperCss};
5910
- width: calc(100% - 3rem);
5911
- }
5912
- }
5913
- }
5914
-
5915
- ${DashboardPlaceholder} {
5916
- ${PresentationWrapperCss};
5917
- width: 18.5rem;
5918
- height: 10.75rem;
5919
- }
5920
-
5921
- ${LayerListContainer} {
5922
- height: auto;
5923
- margin: 0 -1.125rem -1.5rem;
5924
- padding: 0;
5925
-
5926
- ${LayerGroupList} {
5927
- padding: 0;
5928
- }
5929
- }
5881
+ css `
5882
+ > :first-child {
5883
+ padding-bottom: 0;
5884
+ }
5885
+ `};
5886
+
5887
+ ${PresentationHeader} > * {
5888
+ position: relative;
5889
+ z-index: 2;
5890
+ }
5891
+
5892
+ /* PaginationWrapper {
5893
+ ${PresentationWrapperCss};
5894
+ width: calc(100% - 2rem);
5895
+ min-height: 8.625rem;
5896
+ padding-top: 0.5rem;
5897
+ padding-bottom: 0.5rem;
5898
+ margin-bottom: 0.75rem;
5899
+ }*/
5900
+
5901
+ ${DashboardWrapper} {
5902
+ width: 100%;
5903
+ margin-top: 0;
5904
+
5905
+ ${DashboardContent} {
5906
+ padding: 0;
5907
+ overflow-y: unset;
5908
+
5909
+ > * > ${ContainerWrapper} > * > ${ContainerWrapper} {
5910
+ ${PresentationWrapperCss};
5911
+ width: calc(100% - 3rem);
5912
+ }
5913
+ }
5914
+ }
5915
+
5916
+ ${DashboardPlaceholder} {
5917
+ ${PresentationWrapperCss};
5918
+ width: 18.5rem;
5919
+ height: 10.75rem;
5920
+ }
5921
+
5922
+ ${LayerListContainer} {
5923
+ height: auto;
5924
+ margin: 0 -1.125rem -1.5rem;
5925
+ padding: 0;
5926
+
5927
+ ${LayerGroupList} {
5928
+ padding: 0;
5929
+ }
5930
+ }
5930
5931
  `;
5931
- const DataSourceErrorContainer = styled(Flex) `
5932
- align-items: center;
5933
- justify-content: center;
5934
- flex-wrap: nowrap;
5935
- flex-grow: 1;
5936
- padding: 1rem;
5937
- border: 1px ${({ theme: { palette } }) => palette.element} solid;
5938
- border-radius: 10px;
5939
- font-size: 0.875rem;
5940
- color: ${({ theme: { palette } }) => palette.textDisabled};
5941
-
5942
- span[kind] {
5943
- margin-right: 1rem;
5944
-
5945
- :after {
5946
- color: ${({ theme: { palette } }) => palette.iconDisabled};
5947
- }
5948
- }
5932
+ const DataSourceErrorContainer = styled(Flex) `
5933
+ align-items: center;
5934
+ justify-content: center;
5935
+ flex-wrap: nowrap;
5936
+ flex-grow: 1;
5937
+ padding: 1rem;
5938
+ border: 1px ${({ theme: { palette } }) => palette.element} solid;
5939
+ border-radius: 10px;
5940
+ font-size: 0.875rem;
5941
+ color: ${({ theme: { palette } }) => palette.textDisabled};
5942
+
5943
+ span[kind] {
5944
+ margin-right: 1rem;
5945
+
5946
+ :after {
5947
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
5948
+ }
5949
+ }
5949
5950
  `;
5950
- const AttributeLabel = styled(Description) `
5951
- margin-top: 0 !important;
5952
- margin-bottom: ${({ forCheckbox }) => forCheckbox ? "0.75rem" : "0.25rem"} !important;
5953
- padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
5954
- `;
5955
- const FeatureControls = styled(Flex) `
5956
- align-items: center;
5957
- gap: 1rem;
5958
- flex-wrap: nowrap;
5959
- position: relative;
5960
- flex-shrink: 0;
5961
-
5962
- button {
5963
- padding: 0;
5964
- width: auto;
5965
- }
5951
+ const AttributeLabel = styled(Description) `
5952
+ margin-top: 0 !important;
5953
+ margin-bottom: ${({ forCheckbox }) => forCheckbox ? "0.75rem" : "0.25rem"} !important;
5954
+ padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
5955
+ `;
5956
+ const FeatureControls = styled(Flex) `
5957
+ align-items: center;
5958
+ gap: 1rem;
5959
+ flex-wrap: nowrap;
5960
+ position: relative;
5961
+ flex-shrink: 0;
5962
+
5963
+ button {
5964
+ padding: 0;
5965
+ width: auto;
5966
+ }
5966
5967
  `;
5967
5968
 
5968
5969
  const getAttributeByName = (name, attributes) => {
@@ -6045,148 +6046,148 @@ const ContainersGroupContainer = memo(({ elementConfig, type, renderElement }) =
6045
6046
  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 }) }))] }));
6046
6047
  });
6047
6048
 
6048
- const ChartLegendContainer = styled(Flex) `
6049
- flex-direction: column;
6050
- flex-wrap: wrap;
6051
- justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
6052
- `;
6053
- const ChartLegendItem = styled(Flex) `
6054
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6055
- align-items: center;
6056
- flex-wrap: nowrap;
6057
- width: auto;
6058
- margin-right: 0.375rem;
6059
- margin-bottom: 0.25rem;
6060
- line-height: 0.75rem;
6061
- opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6062
- `;
6063
- const ChartLegendColor = styled.div `
6064
- width: 0.5rem;
6065
- height: 0.5rem;
6066
- margin-right: 0.375rem;
6067
- background-color: ${({ color }) => color};
6068
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
6069
- `;
6070
- const ChartLegendName = styled.div `
6071
- flex: 1;
6072
- font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
6073
- color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
6074
- `;
6075
-
6076
- const ContainerAlias = styled(Flex) `
6077
- align-items: center;
6078
- flex-wrap: nowrap;
6079
- font-size: 0.75rem;
6080
- color: ${({ theme: { palette } }) => palette.textSecondary};
6081
-
6082
- &&& {
6083
- margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
6084
- }
6085
-
6086
- span[kind] {
6087
- margin-right: 0.5rem;
6049
+ const ChartLegendContainer = styled(Flex) `
6050
+ flex-direction: column;
6051
+ flex-wrap: wrap;
6052
+ justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
6053
+ `;
6054
+ const ChartLegendItem = styled(Flex) `
6055
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6056
+ align-items: center;
6057
+ flex-wrap: nowrap;
6058
+ width: auto;
6059
+ margin-right: 0.375rem;
6060
+ margin-bottom: 0.25rem;
6061
+ line-height: 0.75rem;
6062
+ opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6063
+ `;
6064
+ const ChartLegendColor = styled.div `
6065
+ width: 0.5rem;
6066
+ height: 0.5rem;
6067
+ margin-right: 0.375rem;
6068
+ background-color: ${({ color }) => color};
6069
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
6070
+ `;
6071
+ const ChartLegendName = styled.div `
6072
+ flex: 1;
6073
+ font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
6074
+ color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
6075
+ `;
6088
6076
 
6089
- :after {
6090
- color: ${({ theme: { palette } }) => palette.primary};
6091
- }
6092
- }
6077
+ const ContainerAlias = styled(Flex) `
6078
+ align-items: center;
6079
+ flex-wrap: nowrap;
6080
+ font-size: 0.75rem;
6081
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6082
+
6083
+ &&& {
6084
+ margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
6085
+ }
6086
+
6087
+ span[kind] {
6088
+ margin-right: 0.5rem;
6089
+
6090
+ :after {
6091
+ color: ${({ theme: { palette } }) => palette.primary};
6092
+ }
6093
+ }
6093
6094
  `;
6094
- const ContainerAliasIcon = styled.div `
6095
- margin-right: 0.5rem;
6095
+ const ContainerAliasIcon = styled.div `
6096
+ margin-right: 0.5rem;
6096
6097
  `;
6097
- const ContainerChart = styled(Flex) `
6098
- justify-content: flex-start;
6099
-
6100
- > * {
6101
- display: flex;
6102
- justify-content: center;
6103
- width: 100%;
6104
- }
6098
+ const ContainerChart = styled(Flex) `
6099
+ justify-content: flex-start;
6100
+
6101
+ > * {
6102
+ display: flex;
6103
+ justify-content: center;
6104
+ width: 100%;
6105
+ }
6105
6106
  `;
6106
6107
  const ContainerLegend = styled(Flex) ``;
6107
- const ContainerUnits = styled.div `
6108
- margin-left: 0.5rem;
6109
- white-space: nowrap;
6110
- font-size: 0.75rem;
6111
- `;
6112
- const ContainerValue = styled(Flex) `
6113
- justify-content: flex-end;
6114
- align-items: center;
6115
- flex-wrap: nowrap;
6116
- width: 100%;
6117
- font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
6118
- color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
6119
-
6120
- > * {
6121
- width: ${({ column }) => (column ? "100%" : "auto")};
6122
- }
6123
-
6124
- ${ContainerChart}, ${ContainerLegend} {
6125
- width: ${({ column }) => (column ? "100%" : "50%")};
6126
- }
6127
-
6128
- ${ContainerLegend} {
6129
- margin-left: ${({ column }) => (column ? 0 : "1rem")};
6130
- }
6131
-
6132
- ${ChartLegendContainer} {
6133
- flex-direction: ${({ column }) => (column ? "row" : "column")};
6134
- margin-top: ${({ column }) => (column ? "1rem" : 0)};
6135
- }
6108
+ const ContainerUnits = styled.div `
6109
+ margin-left: 0.5rem;
6110
+ white-space: nowrap;
6111
+ font-size: 0.75rem;
6112
+ `;
6113
+ const ContainerValue = styled(Flex) `
6114
+ justify-content: flex-end;
6115
+ align-items: center;
6116
+ flex-wrap: nowrap;
6117
+ width: 100%;
6118
+ font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
6119
+ color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
6120
+
6121
+ > * {
6122
+ width: ${({ column }) => (column ? "100%" : "auto")};
6123
+ }
6124
+
6125
+ ${ContainerChart}, ${ContainerLegend} {
6126
+ width: ${({ column }) => (column ? "100%" : "50%")};
6127
+ }
6128
+
6129
+ ${ContainerLegend} {
6130
+ margin-left: ${({ column }) => (column ? 0 : "1rem")};
6131
+ }
6132
+
6133
+ ${ChartLegendContainer} {
6134
+ flex-direction: ${({ column }) => (column ? "row" : "column")};
6135
+ margin-top: ${({ column }) => (column ? "1rem" : 0)};
6136
+ }
6136
6137
  `;
6137
- const ColorIconMixin = css `
6138
- :after {
6139
- color: ${({ $fontColor }) => $fontColor} !important;
6140
- }
6138
+ const ColorIconMixin = css `
6139
+ :after {
6140
+ color: ${({ $fontColor }) => $fontColor} !important;
6141
+ }
6141
6142
  `;
6142
- const SizeIconMixin = css `
6143
- :after {
6144
- font-size: ${({ $fontSize }) => $fontSize}px !important;
6145
- }
6143
+ const SizeIconMixin = css `
6144
+ :after {
6145
+ font-size: ${({ $fontSize }) => $fontSize}px !important;
6146
+ }
6146
6147
  `;
6147
- const ContainerIcon = styled(Icon) `
6148
- width: auto;
6149
- height: auto;
6150
- margin-bottom: 0.5rem;
6151
- ${({ $fontColor }) => !!$fontColor && ColorIconMixin};
6152
- ${({ $fontSize }) => !!$fontSize && SizeIconMixin};
6153
- `;
6154
- const SvgContainerColorMixin$1 = css `
6155
- path,
6156
- line,
6157
- circle {
6158
- fill: ${({ $fontColor }) => $fontColor};
6159
- }
6148
+ const ContainerIcon = styled(Icon) `
6149
+ width: auto;
6150
+ height: auto;
6151
+ margin-bottom: 0.5rem;
6152
+ ${({ $fontColor }) => !!$fontColor && ColorIconMixin};
6153
+ ${({ $fontSize }) => !!$fontSize && SizeIconMixin};
6154
+ `;
6155
+ const SvgContainerColorMixin$1 = css `
6156
+ path,
6157
+ line,
6158
+ circle {
6159
+ fill: ${({ $fontColor }) => $fontColor};
6160
+ }
6160
6161
  `;
6161
- const SvgContainer$1 = styled.div `
6162
- &&& {
6163
- min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6164
- max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6165
-
6166
- ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
6167
-
6168
- > * {
6169
- min-width: inherit;
6170
- }
6171
- }
6162
+ const SvgContainer$1 = styled.div `
6163
+ &&& {
6164
+ min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6165
+ max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6166
+
6167
+ ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
6168
+
6169
+ > * {
6170
+ min-width: inherit;
6171
+ }
6172
+ }
6172
6173
  `;
6173
- const TwoColumnContainerWrapper = styled(Flex) `
6174
- width: 100%;
6175
- flex-direction: row;
6176
- flex-wrap: nowrap;
6177
- align-items: center;
6178
-
6179
- > * {
6180
- flex: 1;
6181
- }
6182
-
6183
- > ${ContainerValue} {
6184
- justify-content: flex-end;
6185
-
6186
- > * {
6187
- text-align: right;
6188
- }
6189
- }
6174
+ const TwoColumnContainerWrapper = styled(Flex) `
6175
+ width: 100%;
6176
+ flex-direction: row;
6177
+ flex-wrap: nowrap;
6178
+ align-items: center;
6179
+
6180
+ > * {
6181
+ flex: 1;
6182
+ }
6183
+
6184
+ > ${ContainerValue} {
6185
+ justify-content: flex-end;
6186
+
6187
+ > * {
6188
+ text-align: right;
6189
+ }
6190
+ }
6190
6191
  `;
6191
6192
 
6192
6193
  const useRenderContainerItem = (type, renderElement) => {
@@ -6285,10 +6286,10 @@ const TwoColumnContainer = memo(({ elementConfig, type, renderElement }) => {
6285
6286
  return attributesToRender ? (jsx(Fragment$1, { children: attributesToRender.map(renderContainer) })) : (renderContainer());
6286
6287
  });
6287
6288
 
6288
- const InnerContainerWrapper = styled.div `
6289
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6290
- width: ${({ column }) => (column ? "100%" : "auto")};
6291
- opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6289
+ const InnerContainerWrapper = styled.div `
6290
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6291
+ width: ${({ column }) => (column ? "100%" : "auto")};
6292
+ opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6292
6293
  `;
6293
6294
 
6294
6295
  const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValue, type, index, innerComponent }) => {
@@ -6359,107 +6360,107 @@ const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValu
6359
6360
  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 }) }));
6360
6361
  });
6361
6362
 
6362
- const DataSourceProgressContainerWrapper = styled.div `
6363
- width: 100%;
6363
+ const DataSourceProgressContainerWrapper = styled.div `
6364
+ width: 100%;
6364
6365
  `;
6365
- const ContainerToggler = styled(LegendToggler) `
6366
- width: auto;
6367
- margin-left: -1rem;
6366
+ const ContainerToggler = styled(LegendToggler) `
6367
+ width: auto;
6368
+ margin-left: -1rem;
6368
6369
  `;
6369
6370
 
6370
- const ProgressContainerWrapper = styled(Flex) `
6371
- align-items: center;
6372
- width: 100%;
6373
- margin-bottom: 1rem;
6374
- `;
6375
- const ProgressIcon = styled.div `
6376
- margin-right: 0.5rem;
6377
- `;
6378
- const ProgressContent = styled(Flex) `
6379
- flex: 1;
6380
- flex-direction: column;
6381
- `;
6382
- const ProgressAlias = styled(Flex) `
6383
- flex: 1;
6384
- justify-content: space-between;
6385
- margin-bottom: 0.25rem;
6386
- font-size: 0.75rem;
6387
- color: ${({ theme: { palette } }) => palette.textSecondary};
6371
+ const ProgressContainerWrapper = styled(Flex) `
6372
+ align-items: center;
6373
+ width: 100%;
6374
+ margin-bottom: 1rem;
6388
6375
  `;
6389
- const ProgressValue = styled(Flex) `
6390
- align-items: center;
6391
- width: auto;
6392
- font-size: 1rem;
6393
- color: ${({ theme: { palette } }) => palette.textPrimary};
6376
+ const ProgressIcon = styled.div `
6377
+ margin-right: 0.5rem;
6394
6378
  `;
6395
- const ProgressInnerValue = styled(ProgressValue) `
6396
- justify-content: flex-end;
6397
- width: 4rem;
6398
- margin-left: 0.5rem;
6399
- `;
6400
- const ProgressUnits = styled(Flex) `
6401
- margin-left: 0.25rem;
6402
- font-size: 0.75rem;
6403
- color: ${({ theme: { palette } }) => palette.textSecondary};
6404
- `;
6405
- const ProgressBarWrapper = styled.div `
6406
- flex-grow: 1;
6407
- height: 0.5rem;
6408
- background-color: ${({ theme: { palette } }) => palette.element};
6409
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6379
+ const ProgressContent = styled(Flex) `
6380
+ flex: 1;
6381
+ flex-direction: column;
6410
6382
  `;
6411
- const ProgressBarContainer = styled(Flex) `
6412
- position: relative;
6413
- align-items: center;
6414
- width: 100%;
6415
-
6383
+ const ProgressAlias = styled(Flex) `
6384
+ flex: 1;
6385
+ justify-content: space-between;
6386
+ margin-bottom: 0.25rem;
6387
+ font-size: 0.75rem;
6388
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6389
+ `;
6390
+ const ProgressValue = styled(Flex) `
6391
+ align-items: center;
6392
+ width: auto;
6393
+ font-size: 1rem;
6394
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6395
+ `;
6396
+ const ProgressInnerValue = styled(ProgressValue) `
6397
+ justify-content: flex-end;
6398
+ width: 4rem;
6399
+ margin-left: 0.5rem;
6400
+ `;
6401
+ const ProgressUnits = styled(Flex) `
6402
+ margin-left: 0.25rem;
6403
+ font-size: 0.75rem;
6404
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6405
+ `;
6406
+ const ProgressBarWrapper = styled.div `
6407
+ flex-grow: 1;
6408
+ height: 0.5rem;
6409
+ background-color: ${({ theme: { palette } }) => palette.element};
6410
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6411
+ `;
6412
+ const ProgressBarContainer = styled(Flex) `
6413
+ position: relative;
6414
+ align-items: center;
6415
+ width: 100%;
6416
+
6416
6417
  ${({ innerValue }) => innerValue &&
6417
- css `
6418
- ${ProgressBarWrapper} {
6419
- height: 1.125rem;
6420
- }
6421
-
6422
- ${ProgressInnerValue} {
6423
- z-index: 1;
6424
- position: absolute;
6425
- right: 0.25rem;
6426
- }
6427
- `}
6428
- `;
6429
- const ProgressBar = styled.div `
6430
- width: ${({ $width }) => $width};
6431
- height: inherit;
6432
- background-color: ${({ $color }) => $color || "#a7d759"};
6433
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6434
- `;
6435
- const ProgressTooltipAlias = styled.div `
6436
- margin-bottom: 0.25rem;
6437
- text-align: left;
6438
- color: ${({ theme: { palette } }) => palette.primary};
6418
+ css `
6419
+ ${ProgressBarWrapper} {
6420
+ height: 1.125rem;
6421
+ }
6422
+
6423
+ ${ProgressInnerValue} {
6424
+ z-index: 1;
6425
+ position: absolute;
6426
+ right: 0.25rem;
6427
+ }
6428
+ `}
6429
+ `;
6430
+ const ProgressBar = styled.div `
6431
+ width: ${({ $width }) => $width};
6432
+ height: inherit;
6433
+ background-color: ${({ $color }) => $color || "#a7d759"};
6434
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6435
+ `;
6436
+ const ProgressTooltipAlias = styled.div `
6437
+ margin-bottom: 0.25rem;
6438
+ text-align: left;
6439
+ color: ${({ theme: { palette } }) => palette.primary};
6439
6440
  `;
6440
6441
  const ProgressTooltipValue = styled.div ``;
6441
- const ProgressTooltipValueContainer = styled(Flex) `
6442
- align-items: center;
6443
-
6444
- > * {
6445
- opacity: 0.65;
6446
- }
6447
-
6448
- ${ProgressTooltipValue} {
6449
- opacity: 1;
6450
- }
6442
+ const ProgressTooltipValueContainer = styled(Flex) `
6443
+ align-items: center;
6444
+
6445
+ > * {
6446
+ opacity: 0.65;
6447
+ }
6448
+
6449
+ ${ProgressTooltipValue} {
6450
+ opacity: 1;
6451
+ }
6451
6452
  `;
6452
- const ProgressTooltipValueOf = styled.div `
6453
- margin: 0 0.25rem;
6453
+ const ProgressTooltipValueOf = styled.div `
6454
+ margin: 0 0.25rem;
6454
6455
  `;
6455
- const ProgressTotalTitle = styled.div `
6456
- font-size: 0.75rem;
6457
- font-weight: bold;
6456
+ const ProgressTotalTitle = styled.div `
6457
+ font-size: 0.75rem;
6458
+ font-weight: bold;
6458
6459
  `;
6459
- const ProgressTotal = styled(Flex) `
6460
- align-items: center;
6461
- justify-content: space-between;
6462
- margin-top: 1rem;
6460
+ const ProgressTotal = styled(Flex) `
6461
+ align-items: center;
6462
+ justify-content: space-between;
6463
+ margin-top: 1rem;
6463
6464
  `;
6464
6465
 
6465
6466
  const DataSourceProgressContainer = memo(({ config, elementConfig, type, innerComponent, renderElement }) => {
@@ -6565,166 +6566,166 @@ const DEFAULT_BAR_CHART_MARGINS = {
6565
6566
  right: 0,
6566
6567
  };
6567
6568
 
6568
- const FiltersContainerWrapper = styled(Flex) `
6569
- flex-direction: column;
6570
- padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
6571
- background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
6572
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6573
-
6574
- ${DropdownField}, input {
6575
- background-color: ${({ theme: { palette } }) => palette.background};
6576
- }
6577
-
6578
- > div:not(:last-child) {
6579
- margin-bottom: 0.5rem;
6580
- }
6581
-
6582
- > label {
6583
- align-items: flex-start;
6584
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
6585
-
6586
- &.active {
6587
- color: ${({ $fontColor }) => $fontColor};
6588
-
6589
- svg rect {
6590
- fill: ${({ $fontColor }) => $fontColor} !important;
6591
- }
6592
- }
6593
-
6594
- &:not(:last-child) {
6595
- margin-bottom: 0.75rem;
6596
- }
6597
-
6598
- &:last-child {
6599
- margin-bottom: 0;
6600
- }
6601
- }
6569
+ const FiltersContainerWrapper = styled(Flex) `
6570
+ flex-direction: column;
6571
+ padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
6572
+ background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
6573
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6574
+
6575
+ ${DropdownField}, input {
6576
+ background-color: ${({ theme: { palette } }) => palette.background};
6577
+ }
6578
+
6579
+ > div:not(:last-child) {
6580
+ margin-bottom: 0.5rem;
6581
+ }
6582
+
6583
+ > label {
6584
+ align-items: flex-start;
6585
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
6586
+
6587
+ &.active {
6588
+ color: ${({ $fontColor }) => $fontColor};
6589
+
6590
+ svg rect {
6591
+ fill: ${({ $fontColor }) => $fontColor} !important;
6592
+ }
6593
+ }
6594
+
6595
+ &:not(:last-child) {
6596
+ margin-bottom: 0.75rem;
6597
+ }
6598
+
6599
+ &:last-child {
6600
+ margin-bottom: 0;
6601
+ }
6602
+ }
6602
6603
  `;
6603
- const StyledIconButton = styled(IconButton) `
6604
- width: 0.75rem;
6605
- height: 0.75rem;
6606
-
6607
- span[kind] {
6608
- height: 0.75rem;
6609
-
6610
- :after {
6611
- font-size: 0.75rem;
6612
- }
6613
- }
6604
+ const StyledIconButton = styled(IconButton) `
6605
+ width: 0.75rem;
6606
+ height: 0.75rem;
6607
+
6608
+ span[kind] {
6609
+ height: 0.75rem;
6610
+
6611
+ :after {
6612
+ font-size: 0.75rem;
6613
+ }
6614
+ }
6614
6615
  `;
6615
- const TextFilterContainer = styled.div `
6616
- width: 15.85rem;
6617
-
6618
- ${MultiSelectContainer} {
6619
- color: ${({ theme: { palette } }) => palette.textPrimary};
6620
-
6621
- ${IconButtonButton} {
6622
- span[kind]:after {
6623
- color: ${({ theme: { palette } }) => palette.textPrimary};
6624
- }
6625
- }
6626
- }
6616
+ const TextFilterContainer = styled.div `
6617
+ width: 15.85rem;
6618
+
6619
+ ${MultiSelectContainer} {
6620
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6621
+
6622
+ ${IconButtonButton} {
6623
+ span[kind]:after {
6624
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6625
+ }
6626
+ }
6627
+ }
6627
6628
  `;
6628
- const BarChartContainer = styled.div `
6629
- width: 100%;
6630
- overflow-x: hidden;
6631
-
6629
+ const BarChartContainer = styled.div `
6630
+ width: 100%;
6631
+ overflow-x: hidden;
6632
+
6632
6633
  ${({ barHeight, marginBottom }) => !!barHeight &&
6633
- css `
6634
- .barChartBarGlobal rect {
6635
- height: ${barHeight}px;
6636
- y: calc(100% - ${barHeight + marginBottom}px);
6637
- }
6638
- `}
6639
- `;
6640
- const AnyChartWrapper = styled.div `
6641
- width: 100%;
6642
- height: ${({ height }) => height}px;
6643
- `;
6644
- const BarChartWrapper = styled(AnyChartWrapper) `
6645
- width: 100%;
6646
- margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
6647
-
6648
- :hover {
6649
- ${BarChartContainer} {
6650
- overflow-x: auto;
6651
- }
6652
- }
6634
+ css `
6635
+ .barChartBarGlobal rect {
6636
+ height: ${barHeight}px;
6637
+ y: calc(100% - ${barHeight + marginBottom}px);
6638
+ }
6639
+ `}
6640
+ `;
6641
+ const AnyChartWrapper = styled.div `
6642
+ width: 100%;
6643
+ height: ${({ height }) => height}px;
6644
+ `;
6645
+ const BarChartWrapper = styled(AnyChartWrapper) `
6646
+ width: 100%;
6647
+ margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
6648
+
6649
+ :hover {
6650
+ ${BarChartContainer} {
6651
+ overflow-x: auto;
6652
+ }
6653
+ }
6653
6654
  `;
6654
- const BarChartFilterHeader = styled(Flex) `
6655
- justify-content: space-between;
6656
- align-items: center;
6657
- height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
6658
- padding: 0.25rem 0;
6655
+ const BarChartFilterHeader = styled(Flex) `
6656
+ justify-content: space-between;
6657
+ align-items: center;
6658
+ height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
6659
+ padding: 0.25rem 0;
6659
6660
  `;
6660
- const BarChartFilterArrows = styled(Flex) `
6661
- margin-left: -0.5rem;
6662
-
6663
- span[kind] {
6664
- display: flex;
6665
- align-items: center;
6666
-
6667
- :after {
6668
- font-size: 0.75rem;
6669
- }
6670
- }
6661
+ const BarChartFilterArrows = styled(Flex) `
6662
+ margin-left: -0.5rem;
6663
+
6664
+ span[kind] {
6665
+ display: flex;
6666
+ align-items: center;
6667
+
6668
+ :after {
6669
+ font-size: 0.75rem;
6670
+ }
6671
+ }
6671
6672
  `;
6672
- const BarChartFilterSelected = styled.div `
6673
- font-size: 0.75rem;
6674
- font-weight: bold;
6675
- color: ${({ theme: { palette } }) => palette.textPrimary};
6673
+ const BarChartFilterSelected = styled.div `
6674
+ font-size: 0.75rem;
6675
+ font-weight: bold;
6676
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6676
6677
  `;
6677
- styled.div `
6678
- color: ${({ theme: { palette } }) => palette.textSecondary};
6678
+ styled.div `
6679
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6679
6680
  `;
6680
- const BarChart = styled(BarChart$1) `
6681
- .${barChartClassNames.barChartXAxis} {
6682
- .domain,
6683
- line {
6684
- display: none;
6685
- }
6686
-
6687
- .tick {
6688
- text {
6689
- text-anchor: start;
6690
- font-size: 12px;
6691
- color: rgba(48, 69, 79, 0.46);
6692
- }
6693
-
6694
- :last-of-type {
6695
- text {
6696
- text-anchor: end;
6697
- }
6698
- }
6699
- }
6700
- }
6701
-
6702
- .marker {
6703
- font-size: 12px;
6704
- }
6681
+ const BarChart = styled(BarChart$1) `
6682
+ .${barChartClassNames.barChartXAxis} {
6683
+ .domain,
6684
+ line {
6685
+ display: none;
6686
+ }
6687
+
6688
+ .tick {
6689
+ text {
6690
+ text-anchor: start;
6691
+ font-size: 12px;
6692
+ color: rgba(48, 69, 79, 0.46);
6693
+ }
6694
+
6695
+ :last-of-type {
6696
+ text {
6697
+ text-anchor: end;
6698
+ }
6699
+ }
6700
+ }
6701
+ }
6702
+
6703
+ .marker {
6704
+ font-size: 12px;
6705
+ }
6705
6706
  `;
6706
- const TooltipContainer = styled.div `
6707
- position: relative;
6708
- font-size: 0.75rem;
6709
- color: #ffffff;
6710
- margin-bottom: 0.5rem;
6711
- padding: 0.375rem;
6712
- background-color: rgba(0, 0, 0, 1);
6713
- border-radius: 0.25rem;
6714
- box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
6715
-
6716
- :before {
6717
- content: "";
6718
- position: absolute;
6719
- bottom: 0;
6720
- left: 50%;
6721
- transform: translate(-50%, 100%);
6722
- width: 0;
6723
- height: 0;
6724
- border-style: solid;
6725
- border-width: 0.25rem 0.1875rem 0 0.1875rem;
6726
- border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
6727
- }
6707
+ const TooltipContainer = styled.div `
6708
+ position: relative;
6709
+ font-size: 0.75rem;
6710
+ color: #ffffff;
6711
+ margin-bottom: 0.5rem;
6712
+ padding: 0.375rem;
6713
+ background-color: rgba(0, 0, 0, 1);
6714
+ border-radius: 0.25rem;
6715
+ box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
6716
+
6717
+ :before {
6718
+ content: "";
6719
+ position: absolute;
6720
+ bottom: 0;
6721
+ left: 50%;
6722
+ transform: translate(-50%, 100%);
6723
+ width: 0;
6724
+ height: 0;
6725
+ border-style: solid;
6726
+ border-width: 0.25rem 0.1875rem 0 0.1875rem;
6727
+ border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
6728
+ }
6728
6729
  `;
6729
6730
 
6730
6731
  const FiltersContainer = memo(({ elementConfig, config, type, renderElement }) => {
@@ -6801,64 +6802,64 @@ const PagesContainer = memo(({ type = WidgetType.Dashboard, noBorders }) => {
6801
6802
  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 }) }));
6802
6803
  });
6803
6804
 
6804
- const ImageContainerBg$1 = styled.div `
6805
- position: absolute;
6806
- top: 0;
6807
- bottom: 0;
6808
- left: 0;
6809
- right: 0;
6810
-
6811
- img {
6812
- width: 100%;
6813
- height: 100%;
6814
- object-position: center;
6815
- object-fit: cover;
6816
- }
6805
+ const ImageContainerBg$1 = styled.div `
6806
+ position: absolute;
6807
+ top: 0;
6808
+ bottom: 0;
6809
+ left: 0;
6810
+ right: 0;
6811
+
6812
+ img {
6813
+ width: 100%;
6814
+ height: 100%;
6815
+ object-position: center;
6816
+ object-fit: cover;
6817
+ }
6817
6818
  `;
6818
- const ImageContainerTitle = styled.div `
6819
- width: 100%;
6820
- overflow-wrap: break-word;
6821
- font-size: 1rem;
6822
- font-weight: 500;
6823
- `;
6824
- const ImageContainerText = styled.div `
6825
- width: 100%;
6826
- overflow-wrap: break-word;
6827
- margin-top: 0.5rem;
6828
- font-size: 0.75rem;
6829
- `;
6830
- const ImageContainerButton$1 = styled(FlatButton) `
6831
- min-height: 1.5rem;
6832
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
6833
- background-color: ${({ theme: { palette } }) => palette.primary};
6834
- text-transform: none;
6835
-
6836
- :hover {
6837
- background-color: ${({ theme: { palette } }) => palette.primaryDeep};
6838
- }
6819
+ const ImageContainerTitle = styled.div `
6820
+ width: 100%;
6821
+ overflow-wrap: break-word;
6822
+ font-size: 1rem;
6823
+ font-weight: 500;
6824
+ `;
6825
+ const ImageContainerText = styled.div `
6826
+ width: 100%;
6827
+ overflow-wrap: break-word;
6828
+ margin-top: 0.5rem;
6829
+ font-size: 0.75rem;
6830
+ `;
6831
+ const ImageContainerButton$1 = styled(FlatButton) `
6832
+ min-height: 1.5rem;
6833
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
6834
+ background-color: ${({ theme: { palette } }) => palette.primary};
6835
+ text-transform: none;
6836
+
6837
+ :hover {
6838
+ background-color: ${({ theme: { palette } }) => palette.primaryDeep};
6839
+ }
6839
6840
  `;
6840
- const ImageContainerWrapper = styled(Flex) `
6841
- flex-direction: column;
6842
- justify-content: flex-end;
6843
- position: relative;
6844
- padding: 1rem;
6845
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6846
- overflow: hidden;
6847
-
6848
- ${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
6849
- z-index: 1;
6850
- color: ${({ theme: { palette } }) => palette.textContrast};
6851
- }
6852
-
6853
- :after {
6854
- content: "";
6855
- position: absolute;
6856
- top: 0;
6857
- bottom: 0;
6858
- left: 0;
6859
- right: 0;
6860
- background-color: rgba(0, 0, 0, 0.4);
6861
- }
6841
+ const ImageContainerWrapper = styled(Flex) `
6842
+ flex-direction: column;
6843
+ justify-content: flex-end;
6844
+ position: relative;
6845
+ padding: 1rem;
6846
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6847
+ overflow: hidden;
6848
+
6849
+ ${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
6850
+ z-index: 1;
6851
+ color: ${({ theme: { palette } }) => palette.textContrast};
6852
+ }
6853
+
6854
+ :after {
6855
+ content: "";
6856
+ position: absolute;
6857
+ top: 0;
6858
+ bottom: 0;
6859
+ left: 0;
6860
+ right: 0;
6861
+ background-color: rgba(0, 0, 0, 0.4);
6862
+ }
6862
6863
  `;
6863
6864
 
6864
6865
  const ImageContainer = memo(({ elementConfig, renderElement }) => {
@@ -6866,52 +6867,52 @@ const ImageContainer = memo(({ elementConfig, renderElement }) => {
6866
6867
  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" }) })] }));
6867
6868
  });
6868
6869
 
6869
- const IconContainerWrapper = styled(Flex) `
6870
- flex-direction: column;
6871
- justify-content: center;
6872
- position: relative;
6873
- padding: 0.5rem 1rem 1rem;
6874
- background-color: ${({ theme: { palette } }) => palette.element};
6875
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6876
- overflow: hidden;
6877
- `;
6878
- const IconContainerHeaderWrapper = styled(Flex) `
6879
- justify-content: space-between;
6880
- align-items: center;
6881
- flex-wrap: nowrap;
6882
- width: 100%;
6883
- margin-bottom: 0.25rem;
6884
- `;
6885
- const IconContainerHeader = styled(Flex) `
6886
- align-items: center;
6887
- flex-wrap: nowrap;
6888
- width: 100%;
6889
- margin-right: 0.5rem;
6890
- font-size: 0.875rem;
6891
-
6892
- ${Icon} {
6893
- margin-right: 0.5rem;
6894
-
6895
- :after {
6896
- font-size: 1.15rem;
6897
- color: ${({ theme: { palette } }) => palette.textSecondary};
6898
- }
6899
- }
6870
+ const IconContainerWrapper = styled(Flex) `
6871
+ flex-direction: column;
6872
+ justify-content: center;
6873
+ position: relative;
6874
+ padding: 0.5rem 1rem 1rem;
6875
+ background-color: ${({ theme: { palette } }) => palette.element};
6876
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6877
+ overflow: hidden;
6900
6878
  `;
6901
- const IconContainerTitle = styled(Flex) `
6902
- > * {
6903
- width: 13rem;
6904
- white-space: nowrap;
6905
- overflow: hidden;
6906
- font-weight: bold;
6907
- text-overflow: ellipsis;
6908
- }
6879
+ const IconContainerHeaderWrapper = styled(Flex) `
6880
+ justify-content: space-between;
6881
+ align-items: center;
6882
+ flex-wrap: nowrap;
6883
+ width: 100%;
6884
+ margin-bottom: 0.25rem;
6885
+ `;
6886
+ const IconContainerHeader = styled(Flex) `
6887
+ align-items: center;
6888
+ flex-wrap: nowrap;
6889
+ width: 100%;
6890
+ margin-right: 0.5rem;
6891
+ font-size: 0.875rem;
6892
+
6893
+ ${Icon} {
6894
+ margin-right: 0.5rem;
6895
+
6896
+ :after {
6897
+ font-size: 1.15rem;
6898
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6899
+ }
6900
+ }
6909
6901
  `;
6910
- const IconContainerText = styled.div `
6911
- width: 100%;
6912
- overflow-wrap: break-word;
6913
- font-size: 0.75rem;
6914
- color: ${({ theme: { palette } }) => palette.textSecondary};
6902
+ const IconContainerTitle = styled(Flex) `
6903
+ > * {
6904
+ width: 13rem;
6905
+ white-space: nowrap;
6906
+ overflow: hidden;
6907
+ font-weight: bold;
6908
+ text-overflow: ellipsis;
6909
+ }
6910
+ `;
6911
+ const IconContainerText = styled.div `
6912
+ width: 100%;
6913
+ overflow-wrap: break-word;
6914
+ font-size: 0.75rem;
6915
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6915
6916
  `;
6916
6917
 
6917
6918
  const IconContainer = memo(({ elementConfig, renderElement }) => {
@@ -6934,107 +6935,107 @@ const DataSourceContainer = memo(({ config, elementConfig, type, innerComponent,
6934
6935
  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, {}))] }));
6935
6936
  });
6936
6937
 
6937
- const SvgContainerColorMixin = css `
6938
- path,
6939
- line,
6940
- circle {
6941
- fill: ${({ $fontColor }) => $fontColor};
6942
- }
6938
+ const SvgContainerColorMixin = css `
6939
+ path,
6940
+ line,
6941
+ circle {
6942
+ fill: ${({ $fontColor }) => $fontColor};
6943
+ }
6943
6944
  `;
6944
- const SvgContainer = styled.div `
6945
- &&& {
6946
- min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6947
- max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6948
-
6949
- ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
6950
-
6951
- > * {
6952
- min-width: inherit;
6953
- }
6954
- }
6945
+ const SvgContainer = styled.div `
6946
+ &&& {
6947
+ min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6948
+ max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6949
+
6950
+ ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
6951
+
6952
+ > * {
6953
+ min-width: inherit;
6954
+ }
6955
+ }
6955
6956
  `;
6956
6957
 
6957
- const ContainerIconTitle = styled(Flex) `
6958
- align-items: center;
6959
- flex-wrap: nowrap;
6960
- flex-shrink: 1;
6961
- flex-grow: 0;
6962
- color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
6963
-
6964
- > div {
6965
- flex-shrink: 1;
6966
- flex-grow: 0;
6967
- width: auto;
6968
- }
6969
-
6970
- ${SvgContainer} {
6971
- flex-shrink: 0;
6972
- flex-grow: 0;
6973
- margin-right: 0.5rem;
6974
- }
6975
-
6976
- svg,
6977
- img,
6978
- span[kind] {
6979
- margin-right: 0.5rem;
6980
- }
6981
-
6958
+ const ContainerIconTitle = styled(Flex) `
6959
+ align-items: center;
6960
+ flex-wrap: nowrap;
6961
+ flex-shrink: 1;
6962
+ flex-grow: 0;
6963
+ color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
6964
+
6965
+ > div {
6966
+ flex-shrink: 1;
6967
+ flex-grow: 0;
6968
+ width: auto;
6969
+ }
6970
+
6971
+ ${SvgContainer} {
6972
+ flex-shrink: 0;
6973
+ flex-grow: 0;
6974
+ margin-right: 0.5rem;
6975
+ }
6976
+
6977
+ svg,
6978
+ img,
6979
+ span[kind] {
6980
+ margin-right: 0.5rem;
6981
+ }
6982
+
6982
6983
  ${({ fontColor }) => !!fontColor &&
6983
- css `
6984
- span[kind] {
6985
- color: ${fontColor};
6986
- }
6987
-
6988
- ${SvgContainer} {
6989
- path,
6990
- circle {
6991
- fill: ${fontColor};
6992
- }
6993
- }
6994
- `};
6995
-
6996
- ${LegendToggler} {
6997
- margin-left: 0.25rem;
6998
- }
6999
-
7000
- span[kind="download"] {
7001
- opacity: 0;
7002
- transition: opacity ${transition.hover};
7003
- }
7004
-
7005
- :hover {
7006
- span[kind="download"] {
7007
- opacity: 1;
7008
- }
7009
- }
6984
+ css `
6985
+ span[kind] {
6986
+ color: ${fontColor};
6987
+ }
6988
+
6989
+ ${SvgContainer} {
6990
+ path,
6991
+ circle {
6992
+ fill: ${fontColor};
6993
+ }
6994
+ }
6995
+ `};
6996
+
6997
+ ${LegendToggler} {
6998
+ margin-left: 0.25rem;
6999
+ }
7000
+
7001
+ span[kind="download"] {
7002
+ opacity: 0;
7003
+ transition: opacity ${transition.hover};
7004
+ }
7005
+
7006
+ :hover {
7007
+ span[kind="download"] {
7008
+ opacity: 1;
7009
+ }
7010
+ }
7010
7011
  `;
7011
- const ContainerTitle = styled(Flex) `
7012
- align-items: center;
7013
- justify-content: space-between;
7014
- width: 100%;
7015
-
7016
- > * {
7017
- font-size: 1.125rem;
7018
- font-weight: 500;
7019
- }
7020
-
7021
- ${LegendToggler} {
7022
- padding-right: 0;
7023
- }
7024
-
7012
+ const ContainerTitle = styled(Flex) `
7013
+ align-items: center;
7014
+ justify-content: space-between;
7015
+ width: 100%;
7016
+
7017
+ > * {
7018
+ font-size: 1.125rem;
7019
+ font-weight: 500;
7020
+ }
7021
+
7022
+ ${LegendToggler} {
7023
+ padding-right: 0;
7024
+ }
7025
+
7025
7026
  ${({ simple }) => simple &&
7026
- css `
7027
- justify-content: flex-start;
7028
-
7029
- ${ContainerIconTitle} {
7030
- font-size: 0.75rem;
7031
- }
7032
-
7033
- ${LegendToggler} {
7034
- margin-left: 0;
7035
- padding-left: 0.25rem;
7036
- }
7037
- `}
7027
+ css `
7028
+ justify-content: flex-start;
7029
+
7030
+ ${ContainerIconTitle} {
7031
+ font-size: 0.75rem;
7032
+ }
7033
+
7034
+ ${LegendToggler} {
7035
+ margin-left: 0;
7036
+ padding-left: 0.25rem;
7037
+ }
7038
+ `}
7038
7039
  `;
7039
7040
 
7040
7041
  const TitleContainer = memo(({ containerId, templateName, layerNames, fontColor, expandable, expanded, isVisible, elementConfig, renderElement, type, }) => {
@@ -7108,82 +7109,82 @@ const CameraContainer = memo(({ elementConfig, type, renderElement }) => {
7108
7109
  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 }) })] }))] }));
7109
7110
  });
7110
7111
 
7111
- const TabAnchor = styled.div `
7112
- position: absolute;
7113
- top: -1.5rem;
7114
- right: 0;
7112
+ const TabAnchor = styled.div `
7113
+ position: absolute;
7114
+ top: -1.5rem;
7115
+ right: 0;
7115
7116
  `;
7116
- const TabValue = styled(Flex) `
7117
- flex-wrap: nowrap;
7117
+ const TabValue = styled(Flex) `
7118
+ flex-wrap: nowrap;
7118
7119
  `;
7119
- const noBgMixin = css `
7120
- background-color: transparent;
7121
- border-radius: 0;
7122
- border-bottom: 0.125rem solid
7123
- ${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
7124
-
7125
- ${TabValue},
7126
- span[kind] {
7127
- color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7128
- }
7129
-
7130
- &&& svg {
7131
- path,
7132
- line,
7133
- circle {
7134
- fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7135
- }
7136
- }
7137
-
7138
- :not(:last-child) {
7139
- margin-right: 0;
7140
- }
7120
+ const noBgMixin = css `
7121
+ background-color: transparent;
7122
+ border-radius: 0;
7123
+ border-bottom: 0.125rem solid
7124
+ ${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
7125
+
7126
+ ${TabValue},
7127
+ span[kind] {
7128
+ color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7129
+ }
7130
+
7131
+ &&& svg {
7132
+ path,
7133
+ line,
7134
+ circle {
7135
+ fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7136
+ }
7137
+ }
7138
+
7139
+ :not(:last-child) {
7140
+ margin-right: 0;
7141
+ }
7141
7142
  `;
7142
- const TabContainer = styled.a `
7143
- display: flex;
7144
- flex-direction: ${({ column }) => (column ? "column" : "row")};
7145
- align-items: center;
7146
- justify-content: center;
7147
- flex-wrap: nowrap;
7148
- padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
7149
- background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
7150
- border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
7151
- text-decoration: none;
7152
-
7153
- :not(:last-child) {
7154
- margin-right: 0.5rem;
7155
- }
7156
-
7157
- ${TabValue} {
7158
- margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
7159
- margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
7160
- font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
7161
- white-space: nowrap;
7162
- }
7163
-
7164
- ${TabValue},
7165
- span[kind] {
7166
- color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
7167
- }
7168
-
7169
- ${SvgContainer$1} {
7170
- height: 1rem;
7171
- }
7172
-
7173
- svg,
7174
- img {
7175
- max-width: 1rem;
7176
- max-height: 1rem;
7177
- }
7178
-
7179
- ${({ noBg }) => noBg && noBgMixin};
7143
+ const TabContainer = styled.a `
7144
+ display: flex;
7145
+ flex-direction: ${({ column }) => (column ? "column" : "row")};
7146
+ align-items: center;
7147
+ justify-content: center;
7148
+ flex-wrap: nowrap;
7149
+ padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
7150
+ background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
7151
+ border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
7152
+ text-decoration: none;
7153
+
7154
+ :not(:last-child) {
7155
+ margin-right: 0.5rem;
7156
+ }
7157
+
7158
+ ${TabValue} {
7159
+ margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
7160
+ margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
7161
+ font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
7162
+ white-space: nowrap;
7163
+ }
7164
+
7165
+ ${TabValue},
7166
+ span[kind] {
7167
+ color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
7168
+ }
7169
+
7170
+ ${SvgContainer$1} {
7171
+ height: 1rem;
7172
+ }
7173
+
7174
+ svg,
7175
+ img {
7176
+ max-width: 1rem;
7177
+ max-height: 1rem;
7178
+ }
7179
+
7180
+ ${({ noBg }) => noBg && noBgMixin};
7180
7181
  `;
7181
- const SwiperContainer = styled.div `
7182
- width: 100%;
7183
-
7184
- .swiper-wrapper {
7185
- display: flex;
7186
- }
7182
+ const SwiperContainer = styled.div `
7183
+ width: 100%;
7184
+
7185
+ .swiper-wrapper {
7186
+ display: flex;
7187
+ }
7187
7188
  `;
7188
7189
 
7189
7190
  const TabsContainer = memo(({ elementConfig, type }) => {
@@ -7211,97 +7212,97 @@ const TabsContainer = memo(({ elementConfig, type }) => {
7211
7212
  });
7212
7213
 
7213
7214
  const ContainerIconValue = styled(Flex) ``;
7214
- const RoundedBackgroundContainerWrapper = styled(Flex) `
7215
- position: relative;
7216
- flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
7217
- width: 9rem;
7218
- padding: 0.75rem 0.75rem 0.5rem;
7219
- background-color: ${({ theme: { palette } }) => palette.element};
7220
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
7221
- flex-wrap: nowrap;
7222
-
7223
- && {
7224
- margin-bottom: 0.5rem;
7225
- }
7226
-
7215
+ const RoundedBackgroundContainerWrapper = styled(Flex) `
7216
+ position: relative;
7217
+ flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
7218
+ width: 9rem;
7219
+ padding: 0.75rem 0.75rem 0.5rem;
7220
+ background-color: ${({ theme: { palette } }) => palette.element};
7221
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
7222
+ flex-wrap: nowrap;
7223
+
7224
+ && {
7225
+ margin-bottom: 0.5rem;
7226
+ }
7227
+
7227
7228
  ${({ $center }) => $center &&
7228
- css `
7229
- align-items: center;
7230
-
7231
- > * {
7232
- display: flex;
7233
- justify-content: center;
7234
- text-align: center;
7235
- width: 100%;
7236
- }
7237
- `};
7238
-
7229
+ css `
7230
+ align-items: center;
7231
+
7232
+ > * {
7233
+ display: flex;
7234
+ justify-content: center;
7235
+ text-align: center;
7236
+ width: 100%;
7237
+ }
7238
+ `};
7239
+
7239
7240
  ${({ $color }) => $color &&
7240
- css `
7241
- background-color: ${transparentizeColor($color, 6)};
7242
-
7243
- * {
7244
- color: ${$color};
7245
- fill: ${$color};
7246
- }
7247
- `};
7248
-
7249
- ${ContainerIcon}, ${SvgContainer$1} {
7250
- margin-bottom: 0.25rem;
7251
- }
7252
-
7241
+ css `
7242
+ background-color: ${transparentizeColor($color, 6)};
7243
+
7244
+ * {
7245
+ color: ${$color};
7246
+ fill: ${$color};
7247
+ }
7248
+ `};
7249
+
7250
+ ${ContainerIcon}, ${SvgContainer$1} {
7251
+ margin-bottom: 0.25rem;
7252
+ }
7253
+
7253
7254
  ${({ $bigIcon }) => $bigIcon &&
7254
- css `
7255
- ${ContainerIcon}, ${SvgContainer$1} {
7256
- position: absolute;
7257
- top: 0.75rem;
7258
- right: 0.75rem;
7259
- width: 3rem;
7260
- opacity: 0.12;
7261
-
7262
- :after {
7263
- font-size: 3rem;
7264
- }
7265
- }
7266
- `};
7267
-
7268
- ${ContainerIconValue} {
7269
- align-items: center;
7270
- flex-direction: column;
7271
-
7255
+ css `
7256
+ ${ContainerIcon}, ${SvgContainer$1} {
7257
+ position: absolute;
7258
+ top: 0.75rem;
7259
+ right: 0.75rem;
7260
+ width: 3rem;
7261
+ opacity: 0.12;
7262
+
7263
+ :after {
7264
+ font-size: 3rem;
7265
+ }
7266
+ }
7267
+ `};
7268
+
7269
+ ${ContainerIconValue} {
7270
+ align-items: center;
7271
+ flex-direction: column;
7272
+
7272
7273
  ${({ $big }) => $big &&
7273
- css `
7274
- flex-direction: row;
7275
- margin-bottom: 0.5rem;
7276
-
7277
- > * {
7278
- text-align: left;
7279
- }
7280
-
7281
- span[kind] {
7282
- margin-right: 0.5rem;
7283
- }
7284
-
7285
- ${ContainerValue} {
7286
- width: auto;
7287
- }
7288
- `};
7289
- }
7290
-
7291
- ${ContainerValue} {
7292
- flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
7293
- justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
7294
- align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
7295
- line-height: 1;
7296
- }
7297
-
7298
- ${ContainerUnits} {
7299
- margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
7300
- }
7301
-
7302
- ${ContainerAlias} {
7303
- margin-top: 0.25rem;
7304
- }
7274
+ css `
7275
+ flex-direction: row;
7276
+ margin-bottom: 0.5rem;
7277
+
7278
+ > * {
7279
+ text-align: left;
7280
+ }
7281
+
7282
+ span[kind] {
7283
+ margin-right: 0.5rem;
7284
+ }
7285
+
7286
+ ${ContainerValue} {
7287
+ width: auto;
7288
+ }
7289
+ `};
7290
+ }
7291
+
7292
+ ${ContainerValue} {
7293
+ flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
7294
+ justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
7295
+ align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
7296
+ line-height: 1;
7297
+ }
7298
+
7299
+ ${ContainerUnits} {
7300
+ margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
7301
+ }
7302
+
7303
+ ${ContainerAlias} {
7304
+ margin-top: 0.25rem;
7305
+ }
7305
7306
  `;
7306
7307
 
7307
7308
  const ALIAS_DEFAULT_MAX_LENGTH = 28;
@@ -7348,20 +7349,20 @@ const AddFeatureContainer = memo(({ elementConfig }) => {
7348
7349
  .map(({ options }, index) => (jsx(AddFeatureButton, { icon: options?.icon, title: options?.title, layerName: options?.layerName, geometryType: options?.geometryType }, index))) }));
7349
7350
  });
7350
7351
 
7351
- const LayersContainerWrapper = styled(Container) `
7352
- ${DraggableTreeContainer} {
7353
- width: calc(100% + 3rem);
7354
- margin: -0.75rem -1.5rem 0;
7355
- }
7356
-
7357
- ${LayerListContainer} {
7358
- height: auto;
7359
- }
7360
-
7361
- ${LayerGroupList} {
7362
- margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
7363
- padding: 0;
7364
- }
7352
+ const LayersContainerWrapper = styled(Container) `
7353
+ ${DraggableTreeContainer} {
7354
+ width: calc(100% + 3rem);
7355
+ margin: -0.75rem -1.5rem 0;
7356
+ }
7357
+
7358
+ ${LayerListContainer} {
7359
+ height: auto;
7360
+ }
7361
+
7362
+ ${LayerGroupList} {
7363
+ margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
7364
+ padding: 0;
7365
+ }
7365
7366
  `;
7366
7367
 
7367
7368
  const LayersContainer = memo(({ type, elementConfig, renderElement }) => {
@@ -7396,9 +7397,9 @@ const UploadContainer = memo(({ type, elementConfig, renderElement }) => {
7396
7397
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && renderElement({ id: "uploader", wrap: false })] }));
7397
7398
  });
7398
7399
 
7399
- const StatusBadge = styled(Chip) `
7400
- background-color: ${({ bgColor }) => bgColor};
7401
- color: ${({ theme }) => theme.palette.iconContrast};
7400
+ const StatusBadge = styled(Chip) `
7401
+ background-color: ${({ bgColor }) => bgColor};
7402
+ color: ${({ theme }) => theme.palette.iconContrast};
7402
7403
  `;
7403
7404
 
7404
7405
  const STATUS_TRANSLATION_KEYS = {
@@ -7450,22 +7451,22 @@ var EditGeometryType;
7450
7451
  EditGeometryType["Raster"] = "raster";
7451
7452
  })(EditGeometryType || (EditGeometryType = {}));
7452
7453
 
7453
- const StyledButton = styled(FlatButton) `
7454
- display: flex;
7455
- align-items: center;
7456
-
7457
- ${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
7458
- transition: background-color ${transition.toggle};
7459
- background-color: ${statusColors[status]};
7460
-
7461
- :hover {
7462
- background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
7463
- }
7464
-
7465
- :active {
7466
- background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
7467
- }
7468
- `}
7454
+ const StyledButton = styled(FlatButton) `
7455
+ display: flex;
7456
+ align-items: center;
7457
+
7458
+ ${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
7459
+ transition: background-color ${transition.toggle};
7460
+ background-color: ${statusColors[status]};
7461
+
7462
+ :hover {
7463
+ background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
7464
+ }
7465
+
7466
+ :active {
7467
+ background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
7468
+ }
7469
+ `}
7469
7470
  `;
7470
7471
 
7471
7472
  const StatusWaitingButton = ({ title, icon = "play", status, statusColors, isWaiting, isDisabled, onClick }) => {
@@ -7674,23 +7675,23 @@ const EditDropdownContainer = ({ type, elementConfig, renderElement, }) => {
7674
7675
  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) }) })] }));
7675
7676
  };
7676
7677
 
7677
- const CheckboxWrapper = styled(ContainerValue) `
7678
- flex-wrap: wrap;
7679
-
7680
- && > label {
7681
- cursor: pointer;
7682
- margin-bottom: 0.25rem;
7683
- }
7678
+ const CheckboxWrapper = styled(ContainerValue) `
7679
+ flex-wrap: wrap;
7680
+
7681
+ && > label {
7682
+ cursor: pointer;
7683
+ margin-bottom: 0.25rem;
7684
+ }
7684
7685
  `;
7685
- const ChipsWrapper = styled(ContainerValue) `
7686
- flex-wrap: wrap;
7687
-
7688
- && > span {
7689
- cursor: pointer;
7690
- margin: 0 0.25rem 0.25rem 0;
7691
- padding: 0.25rem 0.5rem;
7692
- border-radius: 0.25rem;
7693
- }
7686
+ const ChipsWrapper = styled(ContainerValue) `
7687
+ flex-wrap: wrap;
7688
+
7689
+ && > span {
7690
+ cursor: pointer;
7691
+ margin: 0 0.25rem 0.25rem 0;
7692
+ padding: 0.25rem 0.5rem;
7693
+ border-radius: 0.25rem;
7694
+ }
7694
7695
  `;
7695
7696
 
7696
7697
  const EditChipsContainer = ({ type, elementConfig, renderElement, }) => {
@@ -7715,9 +7716,9 @@ const EditDateContainer = ({ type, elementConfig, renderElement, }) => {
7715
7716
  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 }) })] }));
7716
7717
  };
7717
7718
 
7718
- const ContainerDivider = styled(Divider) `
7719
- width: 100%;
7720
- border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
7719
+ const ContainerDivider = styled(Divider) `
7720
+ width: 100%;
7721
+ border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
7721
7722
  `;
7722
7723
 
7723
7724
  const DividerContainer = memo(({ elementConfig, config }) => {
@@ -7767,154 +7768,154 @@ const getContainerComponent = (innerTemplateName) => innerTemplateName
7767
7768
  var img$3 = "data:image/png;base64,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";
7768
7769
 
7769
7770
  const getMaskColor = (isDark) => isDark ? "0, 0, 0" : "255, 255, 255";
7770
- const DefaultHeaderContainer = styled(Flex) `
7771
- flex-direction: column;
7772
- position: relative;
7773
- flex-shrink: 0;
7774
- min-height: 8.175rem;
7775
- margin-bottom: -0.75rem;
7776
- padding: 1.5rem 1.5rem 0;
7777
- border-top-left-radius: 0.5rem;
7778
- border-top-right-radius: 0.5rem;
7779
- overflow: hidden;
7780
-
7781
- > * {
7782
- z-index: 1;
7783
- }
7784
-
7785
- &::before {
7786
- content: "";
7787
- position: absolute;
7788
- top: 0;
7789
- left: 0;
7790
- width: 100%;
7791
- height: 100%;
7792
-
7771
+ const DefaultHeaderContainer = styled(Flex) `
7772
+ flex-direction: column;
7773
+ position: relative;
7774
+ flex-shrink: 0;
7775
+ min-height: 8.175rem;
7776
+ margin-bottom: -0.75rem;
7777
+ padding: 1.5rem 1.5rem 0;
7778
+ border-top-left-radius: 0.5rem;
7779
+ border-top-right-radius: 0.5rem;
7780
+ overflow: hidden;
7781
+
7782
+ > * {
7783
+ z-index: 1;
7784
+ }
7785
+
7786
+ &::before {
7787
+ content: "";
7788
+ position: absolute;
7789
+ top: 0;
7790
+ left: 0;
7791
+ width: 100%;
7792
+ height: 100%;
7793
+
7793
7794
  ${({ image, isDark }) => image
7794
- ? css `
7795
- background: url(${image}) 0 0 no-repeat;
7796
- background-size: cover;
7795
+ ? css `
7796
+ background: url(${image}) 0 0 no-repeat;
7797
+ background-size: cover;
7797
7798
  `
7798
- : css `
7799
- background: url(${img$3}) 50% 0 no-repeat;
7800
- opacity: ${isDark ? 1 : 0.5};
7801
- `}
7802
- }
7803
-
7799
+ : css `
7800
+ background: url(${img$3}) 50% 0 no-repeat;
7801
+ opacity: ${isDark ? 1 : 0.5};
7802
+ `}
7803
+ }
7804
+
7804
7805
  ${({ image, isDark }) => image &&
7805
- css `
7806
- &::before {
7807
- -webkit-mask-image: linear-gradient(
7808
- to bottom,
7809
- rgba(${getMaskColor(isDark)}, 1),
7810
- rgba(${getMaskColor(isDark)}, 0)
7811
- );
7812
- mask-image: linear-gradient(
7813
- to bottom,
7814
- rgba(${getMaskColor(isDark)}, 1),
7815
- rgba(${getMaskColor(isDark)}, 0)
7816
- );
7817
- }
7818
- `}
7819
- ${LinearProgress} {
7820
- position: absolute;
7821
- top: 0;
7822
- left: 0;
7823
- }
7806
+ css `
7807
+ &::before {
7808
+ -webkit-mask-image: linear-gradient(
7809
+ to bottom,
7810
+ rgba(${getMaskColor(isDark)}, 1),
7811
+ rgba(${getMaskColor(isDark)}, 0)
7812
+ );
7813
+ mask-image: linear-gradient(
7814
+ to bottom,
7815
+ rgba(${getMaskColor(isDark)}, 1),
7816
+ rgba(${getMaskColor(isDark)}, 0)
7817
+ );
7818
+ }
7819
+ `}
7820
+ ${LinearProgress} {
7821
+ position: absolute;
7822
+ top: 0;
7823
+ left: 0;
7824
+ }
7824
7825
  `;
7825
- const TopContainer = styled(Flex) `
7826
- z-index: 1;
7827
- position: relative;
7828
- justify-content: space-between;
7829
- flex-wrap: nowrap;
7830
- width: 100%;
7831
- align-items: flex-start;
7832
- `;
7833
- const TopContainerButtons = styled(Flex) `
7834
- align-items: center;
7835
- width: auto;
7836
- margin-right: -0.5rem;
7837
-
7838
- button {
7839
- width: auto;
7840
- height: 1rem;
7841
- padding: 0 0.5rem;
7842
- }
7826
+ const TopContainer = styled(Flex) `
7827
+ z-index: 1;
7828
+ position: relative;
7829
+ justify-content: space-between;
7830
+ flex-wrap: nowrap;
7831
+ width: 100%;
7832
+ align-items: flex-start;
7833
+ `;
7834
+ const TopContainerButtons = styled(Flex) `
7835
+ align-items: center;
7836
+ width: auto;
7837
+ margin-right: -0.5rem;
7838
+
7839
+ button {
7840
+ width: auto;
7841
+ height: 1rem;
7842
+ padding: 0 0.5rem;
7843
+ }
7843
7844
  `;
7844
- const LogoContainer = styled(Flex) `
7845
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
7846
- max-width: calc(100% - 1.4rem);
7847
- max-height: 1.875rem;
7848
- flex-grow: 1;
7849
- font-size: 0;
7850
-
7851
- & > span::after {
7852
- font-size: 2rem;
7853
- }
7854
-
7855
- img {
7856
- max-height: 1.875rem;
7857
- }
7845
+ const LogoContainer = styled(Flex) `
7846
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
7847
+ max-width: calc(100% - 1.4rem);
7848
+ max-height: 1.875rem;
7849
+ flex-grow: 1;
7850
+ font-size: 0;
7851
+
7852
+ & > span::after {
7853
+ font-size: 2rem;
7854
+ }
7855
+
7856
+ img {
7857
+ max-height: 1.875rem;
7858
+ }
7858
7859
  `;
7859
- const PageTitle = styled(H2) `
7860
- cursor: pointer;
7861
- text-align: left;
7862
- flex: 1 1 auto;
7863
- min-width: 0;
7864
- margin: 0;
7865
- font-size: 1.25rem;
7866
- font-weight: 600;
7867
- pointer-events: initial;
7868
- font-family: "Nunito Sans", serif;
7869
-
7870
- > * {
7871
- white-space: nowrap;
7872
- overflow: hidden;
7873
- text-overflow: ellipsis;
7874
- }
7860
+ const PageTitle = styled(H2) `
7861
+ cursor: pointer;
7862
+ text-align: left;
7863
+ flex: 1 1 auto;
7864
+ min-width: 0;
7865
+ margin: 0;
7866
+ font-size: 1.25rem;
7867
+ font-weight: 600;
7868
+ pointer-events: initial;
7869
+ font-family: "Nunito Sans", serif;
7870
+
7871
+ > * {
7872
+ white-space: nowrap;
7873
+ overflow: hidden;
7874
+ text-overflow: ellipsis;
7875
+ }
7875
7876
  `;
7876
- const PageTitleContainer = styled(Flex) `
7877
- flex-grow: 1;
7878
- align-items: center;
7879
-
7880
- ${PageTitle} {
7881
- max-width: 15.75rem;
7882
- }
7883
-
7884
- &&& button {
7885
- width: 0;
7886
- overflow: hidden;
7887
-
7888
- span[kind] {
7889
- display: flex;
7890
- align-items: center;
7891
- justify-content: center;
7892
- width: 0.75rem;
7893
-
7894
- :after {
7895
- font-size: 0.75rem;
7896
- color: ${({ theme: { palette } }) => palette.textDisabled};
7897
- transition: color ${transition.hover};
7898
- }
7899
- }
7900
-
7901
- &:hover,
7902
- &:active {
7903
- span[kind]:after {
7904
- color: ${({ theme: { palette } }) => palette.textPrimary};
7905
- }
7906
- }
7907
- }
7908
-
7909
- :hover {
7910
- ${PageTitle} {
7911
- max-width: 14.25rem;
7912
- }
7913
-
7914
- &&& button {
7915
- width: 1.5rem;
7916
- }
7917
- }
7877
+ const PageTitleContainer = styled(Flex) `
7878
+ flex-grow: 1;
7879
+ align-items: center;
7880
+
7881
+ ${PageTitle} {
7882
+ max-width: 15.75rem;
7883
+ }
7884
+
7885
+ &&& button {
7886
+ width: 0;
7887
+ overflow: hidden;
7888
+
7889
+ span[kind] {
7890
+ display: flex;
7891
+ align-items: center;
7892
+ justify-content: center;
7893
+ width: 0.75rem;
7894
+
7895
+ :after {
7896
+ font-size: 0.75rem;
7897
+ color: ${({ theme: { palette } }) => palette.textDisabled};
7898
+ transition: color ${transition.hover};
7899
+ }
7900
+ }
7901
+
7902
+ &:hover,
7903
+ &:active {
7904
+ span[kind]:after {
7905
+ color: ${({ theme: { palette } }) => palette.textPrimary};
7906
+ }
7907
+ }
7908
+ }
7909
+
7910
+ :hover {
7911
+ ${PageTitle} {
7912
+ max-width: 14.25rem;
7913
+ }
7914
+
7915
+ &&& button {
7916
+ width: 1.5rem;
7917
+ }
7918
+ }
7918
7919
  `;
7919
7920
 
7920
7921
  const DashboardDefaultHeader = memo(() => {
@@ -7923,83 +7924,83 @@ const DashboardDefaultHeader = memo(() => {
7923
7924
  return (jsxs(DefaultHeaderContainer, { image: image, isDark: themeName === ThemeName.Dark, children: [!pageId && jsx(LinearProgress, {}), jsxs(Flex, { column: true, gap: "1rem", children: [jsx(FlexSpan, { children: jsxs(TopContainer, { children: [jsx(LogoContainer, { onClick: onClickLogo, 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, {}) })] }) }) }) })] })] }));
7924
7925
  });
7925
7926
 
7926
- const HeaderFrontView = styled(Flex) `
7927
- z-index: 10;
7928
- position: relative;
7929
- justify-content: space-between;
7930
- align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
7931
- width: 100%;
7932
- font: ${({ theme: { fonts } }) => fonts.subtitle};
7933
- `;
7934
- const HeaderContainer = styled(FlexSpan) `
7935
- display: flex;
7936
- flex-grow: 1;
7937
- flex-wrap: nowrap;
7938
- width: calc(100% - 48px);
7939
- `;
7940
- const FeatureTitleContainer = styled.div `
7941
- display: -webkit-box;
7942
- max-width: 100%;
7943
- width: 100%;
7944
- margin: 0.5rem 0;
7945
- -webkit-line-clamp: 2;
7946
- -webkit-box-orient: vertical;
7947
- overflow: hidden;
7948
- text-overflow: ellipsis;
7949
- color: ${({ theme: { palette } }) => palette.textPrimary};
7950
-
7951
- & > ${FlexSpan} {
7952
- cursor: ${({ clickable }) => clickable && "pointer"};
7953
-
7954
- &:hover {
7955
- color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
7956
- }
7957
- }
7927
+ const HeaderFrontView = styled(Flex) `
7928
+ z-index: 10;
7929
+ position: relative;
7930
+ justify-content: space-between;
7931
+ align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
7932
+ width: 100%;
7933
+ font: ${({ theme: { fonts } }) => fonts.subtitle};
7934
+ `;
7935
+ const HeaderContainer = styled(FlexSpan) `
7936
+ display: flex;
7937
+ flex-grow: 1;
7938
+ flex-wrap: nowrap;
7939
+ width: calc(100% - 48px);
7940
+ `;
7941
+ const FeatureTitleContainer = styled.div `
7942
+ display: -webkit-box;
7943
+ max-width: 100%;
7944
+ width: 100%;
7945
+ margin: 0.5rem 0;
7946
+ -webkit-line-clamp: 2;
7947
+ -webkit-box-orient: vertical;
7948
+ overflow: hidden;
7949
+ text-overflow: ellipsis;
7950
+ color: ${({ theme: { palette } }) => palette.textPrimary};
7951
+
7952
+ & > ${FlexSpan} {
7953
+ cursor: ${({ clickable }) => clickable && "pointer"};
7954
+
7955
+ &:hover {
7956
+ color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
7957
+ }
7958
+ }
7958
7959
  `;
7959
- const LayerDescription = styled(Description) `
7960
- width: calc(100% - 4rem);
7961
- display: -webkit-box;
7962
- -webkit-line-clamp: 2;
7963
- -webkit-box-orient: vertical;
7964
- overflow: hidden;
7965
- text-overflow: ellipsis;
7960
+ const LayerDescription = styled(Description) `
7961
+ width: calc(100% - 4rem);
7962
+ display: -webkit-box;
7963
+ -webkit-line-clamp: 2;
7964
+ -webkit-box-orient: vertical;
7965
+ overflow: hidden;
7966
+ text-overflow: ellipsis;
7966
7967
  `;
7967
- const HeaderTitleContainer = styled(Flex) `
7968
- flex-direction: column;
7969
- width: 100%;
7968
+ const HeaderTitleContainer = styled(Flex) `
7969
+ flex-direction: column;
7970
+ width: 100%;
7970
7971
  `;
7971
- const RowHeaderMixin = css `
7972
- &&& {
7973
- min-height: auto;
7974
-
7975
- ${FeatureTitleContainer}, ${LayerDescription} {
7976
- text-align: left;
7977
- }
7978
- }
7979
-
7980
- ${HeaderContainer} {
7981
- flex-direction: row;
7982
- }
7983
-
7984
- ${FeatureTitleContainer} {
7985
- max-width: calc(100% - 3.8rem);
7986
- }
7972
+ const RowHeaderMixin = css `
7973
+ &&& {
7974
+ min-height: auto;
7975
+
7976
+ ${FeatureTitleContainer}, ${LayerDescription} {
7977
+ text-align: left;
7978
+ }
7979
+ }
7980
+
7981
+ ${HeaderContainer} {
7982
+ flex-direction: row;
7983
+ }
7984
+
7985
+ ${FeatureTitleContainer} {
7986
+ max-width: calc(100% - 3.8rem);
7987
+ }
7987
7988
  `;
7988
- const Header = styled(Flex) `
7989
- z-index: 1;
7990
- position: relative;
7991
- top: 0;
7992
- flex-shrink: 0;
7993
- overflow: hidden;
7994
- width: 100%;
7995
- padding: 0.5rem;
7996
-
7997
- ${({ $isRow }) => $isRow && RowHeaderMixin};
7989
+ const Header = styled(Flex) `
7990
+ z-index: 1;
7991
+ position: relative;
7992
+ top: 0;
7993
+ flex-shrink: 0;
7994
+ overflow: hidden;
7995
+ width: 100%;
7996
+ padding: 0.5rem;
7997
+
7998
+ ${({ $isRow }) => $isRow && RowHeaderMixin};
7998
7999
  `;
7999
- const DefaultHeaderWrapper = styled.div `
8000
- ${Header} {
8001
- padding: 0 1.5rem 1.5rem 0;
8002
- }
8000
+ const DefaultHeaderWrapper = styled.div `
8001
+ ${Header} {
8002
+ padding: 0 1.5rem 1.5rem 0;
8003
+ }
8003
8004
  `;
8004
8005
 
8005
8006
  const HeaderTitle = ({ noFeature }) => {
@@ -8027,24 +8028,24 @@ const HeaderTitle = ({ noFeature }) => {
8027
8028
  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 })] }));
8028
8029
  };
8029
8030
 
8030
- const LayerIconContainer = styled.div `
8031
- display: flex;
8032
- align-items: center;
8033
- justify-content: center;
8034
- min-width: 2rem;
8035
- margin-right: 0.5rem;
8031
+ const LayerIconContainer = styled.div `
8032
+ display: flex;
8033
+ align-items: center;
8034
+ justify-content: center;
8035
+ min-width: 2rem;
8036
+ margin-right: 0.5rem;
8036
8037
  `;
8037
- const AlertIconContainer = styled(Flex) `
8038
- align-items: center;
8039
- justify-content: center;
8040
- width: 2rem;
8041
- height: 2rem;
8042
-
8043
- ${Icon} {
8044
- :after {
8045
- color: ${({ theme: { palette } }) => palette.error};
8046
- }
8047
- }
8038
+ const AlertIconContainer = styled(Flex) `
8039
+ align-items: center;
8040
+ justify-content: center;
8041
+ width: 2rem;
8042
+ height: 2rem;
8043
+
8044
+ ${Icon} {
8045
+ :after {
8046
+ color: ${({ theme: { palette } }) => palette.error};
8047
+ }
8048
+ }
8048
8049
  `;
8049
8050
 
8050
8051
  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";
@@ -8081,54 +8082,54 @@ const FeatureCardDefaultHeader = ({ noFeature }) => {
8081
8082
  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, {})] }) }) }));
8082
8083
  };
8083
8084
 
8084
- const HeaderFontColorMixin$1 = css `
8085
- ${HeaderTitleContainer}, ${LayerDescription} {
8086
- color: ${({ $fontColor }) => $fontColor};
8087
- }
8085
+ const HeaderFontColorMixin$1 = css `
8086
+ ${HeaderTitleContainer}, ${LayerDescription} {
8087
+ color: ${({ $fontColor }) => $fontColor};
8088
+ }
8088
8089
  `;
8089
- const HeaderWrapperMixin$1 = css `
8090
- ${Header} {
8091
- min-height: 5.25rem;
8092
- }
8093
-
8094
- ${HeaderContainer} {
8095
- max-width: 100%;
8096
- width: 100%;
8097
- }
8098
-
8099
- ${FeatureControls} {
8100
- max-width: calc(100% - 2rem);
8101
- width: calc(100% - 2rem);
8102
- margin-top: -0.5rem;
8103
- padding-top: 1rem;
8104
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8105
- }
8106
-
8107
- ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
8090
+ const HeaderWrapperMixin$1 = css `
8091
+ ${Header} {
8092
+ min-height: 5.25rem;
8093
+ }
8094
+
8095
+ ${HeaderContainer} {
8096
+ max-width: 100%;
8097
+ width: 100%;
8098
+ }
8099
+
8100
+ ${FeatureControls} {
8101
+ max-width: calc(100% - 2rem);
8102
+ width: calc(100% - 2rem);
8103
+ margin-top: -0.5rem;
8104
+ padding-top: 1rem;
8105
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8106
+ }
8107
+
8108
+ ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
8108
8109
  `;
8109
- const GradientHeaderWrapper = styled.div `
8110
- ${Header} {
8111
- background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
8112
- }
8113
-
8114
- ${HeaderContainer} {
8115
- align-items: center;
8116
- }
8117
-
8118
- ${HeaderTitleContainer} {
8119
- margin-left: 0;
8120
- text-align: center;
8121
- }
8122
-
8123
- ${FeatureTitleContainer} {
8124
- text-align: center;
8125
- }
8126
-
8127
- ${LayerDescription} {
8128
- text-align: center;
8129
- }
8130
-
8131
- ${HeaderWrapperMixin$1};
8110
+ const GradientHeaderWrapper = styled.div `
8111
+ ${Header} {
8112
+ background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
8113
+ }
8114
+
8115
+ ${HeaderContainer} {
8116
+ align-items: center;
8117
+ }
8118
+
8119
+ ${HeaderTitleContainer} {
8120
+ margin-left: 0;
8121
+ text-align: center;
8122
+ }
8123
+
8124
+ ${FeatureTitleContainer} {
8125
+ text-align: center;
8126
+ }
8127
+
8128
+ ${LayerDescription} {
8129
+ text-align: center;
8130
+ }
8131
+
8132
+ ${HeaderWrapperMixin$1};
8132
8133
  `;
8133
8134
 
8134
8135
  const FeatureCardGradientHeader = ({ isRow }) => {
@@ -8147,80 +8148,80 @@ const FeatureCardGradientHeader = ({ isRow }) => {
8147
8148
  }) })] }), jsx(FeatureCardButtons, {})] }) }) }) }));
8148
8149
  };
8149
8150
 
8150
- const HeaderFontColorMixin = css `
8151
- ${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
8152
- color: ${({ $fontColor }) => $fontColor};
8153
- }
8154
- `;
8155
- const HeaderWrapperMixin = css `
8156
- ${Header} {
8157
- min-height: 5.25rem;
8158
- }
8159
-
8160
- ${HeaderContainer} {
8161
- max-width: 100%;
8162
- width: 100%;
8163
- }
8164
-
8165
- ${FeatureControls} {
8166
- max-width: calc(100% - 2rem);
8167
- width: calc(100% - 2rem);
8168
- margin-top: -0.5rem;
8169
- padding-top: 1rem;
8170
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8171
- }
8172
-
8173
- ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
8151
+ const HeaderFontColorMixin = css `
8152
+ ${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
8153
+ color: ${({ $fontColor }) => $fontColor};
8154
+ }
8174
8155
  `;
8175
- const HeaderIcon = styled(Flex) `
8176
- position: absolute;
8177
- top: 0;
8178
- right: 0;
8179
- justify-content: flex-end;
8180
- align-items: center;
8181
- min-width: 7.5rem;
8182
- height: 100%;
8183
-
8184
- span[kind]:after {
8185
- font-size: 7.5rem;
8186
- }
8187
-
8188
- span[kind]:after,
8189
- path,
8190
- line,
8191
- circle {
8192
- fill: rgba(255, 255, 255, 0.36);
8193
- }
8194
-
8195
- && > * {
8196
- display: flex;
8197
- align-items: center;
8198
- height: 100%;
8199
- }
8156
+ const HeaderWrapperMixin = css `
8157
+ ${Header} {
8158
+ min-height: 5.25rem;
8159
+ }
8160
+
8161
+ ${HeaderContainer} {
8162
+ max-width: 100%;
8163
+ width: 100%;
8164
+ }
8165
+
8166
+ ${FeatureControls} {
8167
+ max-width: calc(100% - 2rem);
8168
+ width: calc(100% - 2rem);
8169
+ margin-top: -0.5rem;
8170
+ padding-top: 1rem;
8171
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8172
+ }
8173
+
8174
+ ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
8175
+ `;
8176
+ const HeaderIcon = styled(Flex) `
8177
+ position: absolute;
8178
+ top: 0;
8179
+ right: 0;
8180
+ justify-content: flex-end;
8181
+ align-items: center;
8182
+ min-width: 7.5rem;
8183
+ height: 100%;
8184
+
8185
+ span[kind]:after {
8186
+ font-size: 7.5rem;
8187
+ }
8188
+
8189
+ span[kind]:after,
8190
+ path,
8191
+ line,
8192
+ circle {
8193
+ fill: rgba(255, 255, 255, 0.36);
8194
+ }
8195
+
8196
+ && > * {
8197
+ display: flex;
8198
+ align-items: center;
8199
+ height: 100%;
8200
+ }
8200
8201
  `;
8201
- const BigIconHeaderMixin = css `
8202
- ${HeaderIcon} {
8203
- min-width: 14rem;
8204
- right: -3rem;
8205
-
8206
- span[kind]:after {
8207
- font-size: 14rem;
8208
- }
8209
- }
8202
+ const BigIconHeaderMixin = css `
8203
+ ${HeaderIcon} {
8204
+ min-width: 14rem;
8205
+ right: -3rem;
8206
+
8207
+ span[kind]:after {
8208
+ font-size: 14rem;
8209
+ }
8210
+ }
8210
8211
  `;
8211
- const IconHeaderWrapper = styled.div `
8212
- ${Header} {
8213
- width: calc(100% + 0.5rem);
8214
- margin: -1rem -1rem 0.5rem -1rem;
8215
- padding: 1.5rem;
8216
- border-top-left-radius: 0.5rem;
8217
- border-top-right-radius: 0.5rem;
8218
- background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
8219
- }
8220
-
8221
- ${HeaderWrapperMixin};
8222
-
8223
- ${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
8212
+ const IconHeaderWrapper = styled.div `
8213
+ ${Header} {
8214
+ width: calc(100% + 0.5rem);
8215
+ margin: -1rem -1rem 0.5rem -1rem;
8216
+ padding: 1.5rem;
8217
+ border-top-left-radius: 0.5rem;
8218
+ border-top-right-radius: 0.5rem;
8219
+ background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
8220
+ }
8221
+
8222
+ ${HeaderWrapperMixin};
8223
+
8224
+ ${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
8224
8225
  `;
8225
8226
 
8226
8227
  const FeatureCardIconHeader = ({ isRow }) => {
@@ -8242,15 +8243,15 @@ const FeatureCardIconHeader = ({ isRow }) => {
8242
8243
  }) })] }) }) }));
8243
8244
  };
8244
8245
 
8245
- const ImageContainerButton = styled(FlatButton) `
8246
- min-height: 1.5rem;
8247
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
8248
- background-color: ${({ theme: { palette } }) => palette.primary};
8249
- text-transform: none;
8250
-
8251
- :hover {
8252
- background-color: ${({ theme: { palette } }) => palette.primaryDeep};
8253
- }
8246
+ const ImageContainerButton = styled(FlatButton) `
8247
+ min-height: 1.5rem;
8248
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
8249
+ background-color: ${({ theme: { palette } }) => palette.primary};
8250
+ text-transform: none;
8251
+
8252
+ :hover {
8253
+ background-color: ${({ theme: { palette } }) => palette.primaryDeep};
8254
+ }
8254
8255
  `;
8255
8256
 
8256
8257
  const ElementButton = memo(({ type, elementConfig }) => {
@@ -8262,157 +8263,157 @@ const ElementButton = memo(({ type, elementConfig }) => {
8262
8263
  return (jsx(ImageContainerButton, { onClick: () => window.open(attribute?.value), children: elementConfig.value || "" }));
8263
8264
  });
8264
8265
 
8265
- const AttributeGalleryContainer = styled.div `
8266
- && {
8267
- width: calc(100% + 3rem);
8268
- }
8269
-
8270
- min-height: 12.625rem;
8271
- background-color: ${({ theme: { palette } }) => palette.element};
8272
-
8273
- img {
8274
- width: 100%;
8275
- }
8266
+ const AttributeGalleryContainer = styled.div `
8267
+ && {
8268
+ width: calc(100% + 3rem);
8269
+ }
8270
+
8271
+ min-height: 12.625rem;
8272
+ background-color: ${({ theme: { palette } }) => palette.element};
8273
+
8274
+ img {
8275
+ width: 100%;
8276
+ }
8276
8277
  `;
8277
- const LinearProgressContainer = styled(Flex) `
8278
- align-items: center;
8279
- justify-content: center;
8280
- min-height: inherit;
8281
-
8282
- ${LinearProgress} {
8283
- max-width: 4rem;
8284
- }
8278
+ const LinearProgressContainer = styled(Flex) `
8279
+ align-items: center;
8280
+ justify-content: center;
8281
+ min-height: inherit;
8282
+
8283
+ ${LinearProgress} {
8284
+ max-width: 4rem;
8285
+ }
8285
8286
  `;
8286
- const NoLiveSnapshotContainer = styled(Flex) `
8287
- flex-direction: column;
8288
- align-items: center;
8289
-
8290
- span[kind="alert"] {
8291
- width: 2rem;
8292
- height: 2rem;
8293
-
8294
- &:after {
8295
- font-size: 2rem;
8296
- color: ${({ theme: { palette } }) => palette.elementDeep};
8297
- }
8298
- }
8299
-
8300
- ${Description} {
8301
- font-size: 0.75rem;
8302
- color: ${({ theme: { palette } }) => palette.textDisabled};
8303
- }
8287
+ const NoLiveSnapshotContainer = styled(Flex) `
8288
+ flex-direction: column;
8289
+ align-items: center;
8290
+
8291
+ span[kind="alert"] {
8292
+ width: 2rem;
8293
+ height: 2rem;
8294
+
8295
+ &:after {
8296
+ font-size: 2rem;
8297
+ color: ${({ theme: { palette } }) => palette.elementDeep};
8298
+ }
8299
+ }
8300
+
8301
+ ${Description} {
8302
+ font-size: 0.75rem;
8303
+ color: ${({ theme: { palette } }) => palette.textDisabled};
8304
+ }
8304
8305
  `;
8305
- const SmallPreviewControl = styled(IconButton) `
8306
- cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
8307
- z-index: 3;
8308
- position: absolute;
8309
- top: 50%;
8310
- width: 2.5rem;
8311
- height: 2.5rem;
8312
- margin-top: -1.25rem;
8313
- background-color: rgba(61, 61, 61, 0.8);
8314
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
8315
-
8316
- span:after {
8317
- color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
8318
- transition: color ${transition.hover};
8319
- }
8306
+ const SmallPreviewControl = styled(IconButton) `
8307
+ cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
8308
+ z-index: 3;
8309
+ position: absolute;
8310
+ top: 50%;
8311
+ width: 2.5rem;
8312
+ height: 2.5rem;
8313
+ margin-top: -1.25rem;
8314
+ background-color: rgba(61, 61, 61, 0.8);
8315
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
8316
+
8317
+ span:after {
8318
+ color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
8319
+ transition: color ${transition.hover};
8320
+ }
8320
8321
  `;
8321
- const SmallPreviewCounter = styled(Flex) `
8322
- z-index: 3;
8323
- position: absolute;
8324
- bottom: 0.625rem;
8325
- left: 0;
8326
- width: 100%;
8327
- height: 1rem;
8328
- justify-content: center;
8329
-
8330
- > div {
8331
- background-color: rgba(61, 61, 61, 0.8);
8332
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8333
- padding: 0 0.5rem;
8334
- font-size: 0.625rem;
8335
- line-height: 1rem;
8336
- color: #fff;
8337
- }
8322
+ const SmallPreviewCounter = styled(Flex) `
8323
+ z-index: 3;
8324
+ position: absolute;
8325
+ bottom: 0.625rem;
8326
+ left: 0;
8327
+ width: 100%;
8328
+ height: 1rem;
8329
+ justify-content: center;
8330
+
8331
+ > div {
8332
+ background-color: rgba(61, 61, 61, 0.8);
8333
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8334
+ padding: 0 0.5rem;
8335
+ font-size: 0.625rem;
8336
+ line-height: 1rem;
8337
+ color: #fff;
8338
+ }
8338
8339
  `;
8339
8340
  const SmallPreviewLeft = styled(SmallPreviewControl).attrs(() => ({
8340
8341
  kind: "prev",
8341
- })) `
8342
- left: 1.5rem;
8342
+ })) `
8343
+ left: 1.5rem;
8343
8344
  `;
8344
8345
  const SmallPreviewRight = styled(SmallPreviewControl).attrs(() => ({
8345
8346
  kind: "next",
8346
- })) `
8347
- right: 1.5rem;
8348
- `;
8349
- const imgSlideShowMixin = css `
8350
- &:nth-child(${({ prevIndex }) => prevIndex}) {
8351
- z-index: 2;
8352
- position: absolute;
8353
- top: 0;
8354
- left: 0;
8355
- right: 0;
8356
- bottom: 0;
8357
- opacity: 0;
8358
-
8359
- animation-duration: 0.25s;
8360
- animation-name: fadeOut;
8361
- animation-timing-function: linear;
8362
-
8363
- @keyframes fadeOut {
8364
- from {
8365
- opacity: 1;
8366
- }
8367
-
8368
- to {
8369
- opacity: 0;
8370
- }
8371
- }
8372
- }
8347
+ })) `
8348
+ right: 1.5rem;
8349
+ `;
8350
+ const imgSlideShowMixin = css `
8351
+ &:nth-child(${({ prevIndex }) => prevIndex}) {
8352
+ z-index: 2;
8353
+ position: absolute;
8354
+ top: 0;
8355
+ left: 0;
8356
+ right: 0;
8357
+ bottom: 0;
8358
+ opacity: 0;
8359
+
8360
+ animation-duration: 0.25s;
8361
+ animation-name: fadeOut;
8362
+ animation-timing-function: linear;
8363
+
8364
+ @keyframes fadeOut {
8365
+ from {
8366
+ opacity: 1;
8367
+ }
8368
+
8369
+ to {
8370
+ opacity: 0;
8371
+ }
8372
+ }
8373
+ }
8373
8374
  `;
8374
- const SmallPreviewContainer$1 = styled.div `
8375
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
8376
- position: relative;
8377
- width: 100%;
8378
- height: 100%;
8379
- min-height: inherit;
8380
- line-height: 0;
8381
-
8382
- ${LinearProgress} {
8383
- z-index: 3;
8384
- position: absolute;
8385
- }
8386
-
8387
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8388
- opacity: 0;
8389
- transition: opacity ${transition.hover};
8390
- }
8391
-
8392
- &:hover {
8393
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8394
- opacity: 1;
8395
- }
8396
- }
8397
-
8398
- img {
8399
- z-index: 0;
8400
- cursor: pointer;
8401
- position: absolute;
8402
- top: 0;
8403
- left: 0;
8404
- width: 100%;
8405
- height: 100%;
8406
- min-height: inherit;
8407
- object-position: center;
8408
- object-fit: cover;
8409
-
8410
- &:nth-child(${({ currentIndex }) => currentIndex}) {
8411
- z-index: 1;
8412
- }
8413
-
8414
- ${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
8415
- }
8375
+ const SmallPreviewContainer$1 = styled.div `
8376
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
8377
+ position: relative;
8378
+ width: 100%;
8379
+ height: 100%;
8380
+ min-height: inherit;
8381
+ line-height: 0;
8382
+
8383
+ ${LinearProgress} {
8384
+ z-index: 3;
8385
+ position: absolute;
8386
+ }
8387
+
8388
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8389
+ opacity: 0;
8390
+ transition: opacity ${transition.hover};
8391
+ }
8392
+
8393
+ &:hover {
8394
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8395
+ opacity: 1;
8396
+ }
8397
+ }
8398
+
8399
+ img {
8400
+ z-index: 0;
8401
+ cursor: pointer;
8402
+ position: absolute;
8403
+ top: 0;
8404
+ left: 0;
8405
+ width: 100%;
8406
+ height: 100%;
8407
+ min-height: inherit;
8408
+ object-position: center;
8409
+ object-fit: cover;
8410
+
8411
+ &:nth-child(${({ currentIndex }) => currentIndex}) {
8412
+ z-index: 1;
8413
+ }
8414
+
8415
+ ${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
8416
+ }
8416
8417
  `;
8417
8418
  const SmallPreviewImages = styled.div ``;
8418
8419
 
@@ -8653,21 +8654,21 @@ const ElementControl = ({ elementConfig }) => {
8653
8654
  return (jsx(Dropdown, { zIndex: 1000, width: `${width ?? DEFAULT_DROPDOWN_WIDTH}px`, label: label, options: items, value: currentValue, placeholder: placeholder, disabled: isDisabled, onChange: handleChange }));
8654
8655
  };
8655
8656
 
8656
- const StyledIconFontSizeMixin = css `
8657
- height: ${({ fontSize }) => `${fontSize}px`};
8658
-
8659
- &&:after {
8660
- font-size: ${({ fontSize }) => `${fontSize}px`};
8661
- }
8657
+ const StyledIconFontSizeMixin = css `
8658
+ height: ${({ fontSize }) => `${fontSize}px`};
8659
+
8660
+ &&:after {
8661
+ font-size: ${({ fontSize }) => `${fontSize}px`};
8662
+ }
8662
8663
  `;
8663
- const StyledIconFontColorMixin = css `
8664
- &&:after {
8665
- color: ${({ fontColor }) => fontColor};
8666
- }
8664
+ const StyledIconFontColorMixin = css `
8665
+ &&:after {
8666
+ color: ${({ fontColor }) => fontColor};
8667
+ }
8667
8668
  `;
8668
- const StyledIcon = styled(Icon) `
8669
- ${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
8670
- ${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
8669
+ const StyledIcon = styled(Icon) `
8670
+ ${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
8671
+ ${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
8671
8672
  `;
8672
8673
 
8673
8674
  const ElementIcon = memo(({ type, elementConfig }) => {
@@ -8748,55 +8749,55 @@ const ElementLegend = memo(({ type, element, elementConfig }) => {
8748
8749
 
8749
8750
  const ExternalLink = styled(IconButton).attrs(() => ({
8750
8751
  kind: "external_link",
8751
- })) `
8752
- ${Icon} {
8753
- color: ${({ theme: { palette } }) => palette.primary};
8754
- }
8755
-
8756
- &:hover ${Icon} {
8757
- color: ${({ theme: { palette } }) => palette.primaryDeep};
8758
- }
8752
+ })) `
8753
+ ${Icon} {
8754
+ color: ${({ theme: { palette } }) => palette.primary};
8755
+ }
8756
+
8757
+ &:hover ${Icon} {
8758
+ color: ${({ theme: { palette } }) => palette.primaryDeep};
8759
+ }
8759
8760
  `;
8760
- const Link = styled.a `
8761
- text-decoration: none;
8762
- font-size: 0.75rem;
8763
- color: ${({ theme: { palette } }) => palette.primary};
8761
+ const Link = styled.a `
8762
+ text-decoration: none;
8763
+ font-size: 0.75rem;
8764
+ color: ${({ theme: { palette } }) => palette.primary};
8764
8765
  `;
8765
- const LocalLinkBlank = styled(Blank) `
8766
- min-width: 13.5rem;
8767
- padding: 0.5rem 0.75rem 0;
8768
-
8769
- ${IconButtonButton} {
8770
- font-size: 0.75rem;
8771
- }
8766
+ const LocalLinkBlank = styled(Blank) `
8767
+ min-width: 13.5rem;
8768
+ padding: 0.5rem 0.75rem 0;
8769
+
8770
+ ${IconButtonButton} {
8771
+ font-size: 0.75rem;
8772
+ }
8772
8773
  `;
8773
8774
  const LocalLinkButton = styled(IconButton).attrs(() => ({
8774
8775
  kind: "link",
8775
- })) `
8776
- width: 1rem;
8777
- height: 1rem;
8778
- background-color: ${({ theme: { palette } }) => palette.primary};
8779
- padding: 0;
8780
- border-radius: 50%;
8781
-
8782
- :hover {
8783
- background-color: ${({ theme: { palette } }) => palette.primary};
8784
- }
8785
-
8786
- span[kind] {
8787
- display: flex;
8788
- justify-content: center;
8789
- align-items: center;
8790
-
8791
- :after {
8792
- position: relative;
8793
- font-size: 0.6rem;
8794
- color: white;
8795
- }
8796
- }
8776
+ })) `
8777
+ width: 1rem;
8778
+ height: 1rem;
8779
+ background-color: ${({ theme: { palette } }) => palette.primary};
8780
+ padding: 0;
8781
+ border-radius: 50%;
8782
+
8783
+ :hover {
8784
+ background-color: ${({ theme: { palette } }) => palette.primary};
8785
+ }
8786
+
8787
+ span[kind] {
8788
+ display: flex;
8789
+ justify-content: center;
8790
+ align-items: center;
8791
+
8792
+ :after {
8793
+ position: relative;
8794
+ font-size: 0.6rem;
8795
+ color: white;
8796
+ }
8797
+ }
8797
8798
  `;
8798
- const LocalLinkCopy = styled(Flex) `
8799
- justify-content: center;
8799
+ const LocalLinkCopy = styled(Flex) `
8800
+ justify-content: center;
8800
8801
  `;
8801
8802
 
8802
8803
  const LocalLink = memo(({ link, style }) => {
@@ -8825,104 +8826,104 @@ const ElementLink = memo(({ type, elementConfig }) => {
8825
8826
  : jsx(LocalLink, { style: style, link: link });
8826
8827
  });
8827
8828
 
8828
- const MarkdownWrapper = styled.div `
8829
- padding: 0;
8830
- background: transparent;
8831
- border-radius: 0.5rem;
8832
- font-family: 'Nunito Sans', sans-serif;
8833
- color: ${({ theme: { palette } }) => palette.textPrimary};
8834
-
8835
- /* Paragraphs */
8836
- p {
8837
- font-size: 0.875rem;
8838
- line-height: 1rem;
8839
- letter-spacing: 0.0052rem;
8840
- margin: 0 0 1rem 0;
8841
- font-weight: 400;
8842
-
8843
- &:last-child {
8844
- margin-bottom: 0;
8845
- }
8846
- }
8847
-
8848
- /* Headings */
8849
- h1, h2, h3, h4, h5, h6 {
8850
- margin: 0 0 0.75rem 0;
8851
- font-weight: 300;
8852
- }
8853
-
8854
- h1 {
8855
- font-size: 1.5rem;
8856
- line-height: 1.75rem;
8857
- }
8858
-
8859
- h2 {
8860
- font-size: 1.25rem;
8861
- line-height: 1.5rem;
8862
- }
8863
-
8864
- h3 {
8865
- font-size: 1rem;
8866
- line-height: 1.25rem;
8867
- }
8868
-
8869
- /* Images */
8870
- img {
8871
- max-width: 100%;
8872
- height: auto;
8873
- border-radius: 0.5rem;
8874
- object-fit: cover;
8875
- margin: 0.75rem 0;
8876
- }
8877
-
8878
- /* Links */
8879
- a {
8880
- color: ${({ theme: { palette } }) => palette.primary};
8881
- text-decoration: none;
8882
-
8883
- &:hover {
8884
- text-decoration: underline;
8885
- }
8886
- }
8887
-
8888
- /* Lists */
8889
- ul, ol {
8890
- margin: 0 0 1rem 0;
8891
- padding-left: 1.25rem;
8892
-
8893
- li {
8894
- font-size: 0.875rem;
8895
- line-height: 1rem;
8896
- margin-bottom: 0.5rem;
8897
- }
8898
- }
8899
-
8900
- /* Code */
8901
- code {
8902
- background: ${({ theme: { palette } }) => palette.element};
8903
- padding: 0.125rem 0.375rem;
8904
- border-radius: 0.25rem;
8905
- font-family: monospace;
8906
- font-size: 0.8125rem;
8907
- }
8908
-
8909
- pre {
8910
- background: ${({ theme: { palette } }) => palette.element};
8911
- padding: 0.75rem;
8912
- border-radius: 0.25rem;
8913
- overflow-x: auto;
8914
- margin: 0.75rem 0;
8915
-
8916
- code {
8917
- background: transparent;
8918
- padding: 0;
8919
- }
8920
- }
8921
-
8922
- /* Hide horizontal rules */
8923
- hr {
8924
- display: none;
8925
- }
8829
+ const MarkdownWrapper = styled.div `
8830
+ padding: 0;
8831
+ background: transparent;
8832
+ border-radius: 0.5rem;
8833
+ font-family: 'Nunito Sans', sans-serif;
8834
+ color: ${({ theme: { palette } }) => palette.textPrimary};
8835
+
8836
+ /* Paragraphs */
8837
+ p {
8838
+ font-size: 0.875rem;
8839
+ line-height: 1rem;
8840
+ letter-spacing: 0.0052rem;
8841
+ margin: 0 0 1rem 0;
8842
+ font-weight: 400;
8843
+
8844
+ &:last-child {
8845
+ margin-bottom: 0;
8846
+ }
8847
+ }
8848
+
8849
+ /* Headings */
8850
+ h1, h2, h3, h4, h5, h6 {
8851
+ margin: 0 0 0.75rem 0;
8852
+ font-weight: 300;
8853
+ }
8854
+
8855
+ h1 {
8856
+ font-size: 1.5rem;
8857
+ line-height: 1.75rem;
8858
+ }
8859
+
8860
+ h2 {
8861
+ font-size: 1.25rem;
8862
+ line-height: 1.5rem;
8863
+ }
8864
+
8865
+ h3 {
8866
+ font-size: 1rem;
8867
+ line-height: 1.25rem;
8868
+ }
8869
+
8870
+ /* Images */
8871
+ img {
8872
+ max-width: 100%;
8873
+ height: auto;
8874
+ border-radius: 0.5rem;
8875
+ object-fit: cover;
8876
+ margin: 0.75rem 0;
8877
+ }
8878
+
8879
+ /* Links */
8880
+ a {
8881
+ color: ${({ theme: { palette } }) => palette.primary};
8882
+ text-decoration: none;
8883
+
8884
+ &:hover {
8885
+ text-decoration: underline;
8886
+ }
8887
+ }
8888
+
8889
+ /* Lists */
8890
+ ul, ol {
8891
+ margin: 0 0 1rem 0;
8892
+ padding-left: 1.25rem;
8893
+
8894
+ li {
8895
+ font-size: 0.875rem;
8896
+ line-height: 1rem;
8897
+ margin-bottom: 0.5rem;
8898
+ }
8899
+ }
8900
+
8901
+ /* Code */
8902
+ code {
8903
+ background: ${({ theme: { palette } }) => palette.element};
8904
+ padding: 0.125rem 0.375rem;
8905
+ border-radius: 0.25rem;
8906
+ font-family: monospace;
8907
+ font-size: 0.8125rem;
8908
+ }
8909
+
8910
+ pre {
8911
+ background: ${({ theme: { palette } }) => palette.element};
8912
+ padding: 0.75rem;
8913
+ border-radius: 0.25rem;
8914
+ overflow-x: auto;
8915
+ margin: 0.75rem 0;
8916
+
8917
+ code {
8918
+ background: transparent;
8919
+ padding: 0;
8920
+ }
8921
+ }
8922
+
8923
+ /* Hide horizontal rules */
8924
+ hr {
8925
+ display: none;
8926
+ }
8926
8927
  `;
8927
8928
 
8928
8929
  const sanitizeSchema = {
@@ -8965,9 +8966,9 @@ const ElementMarkdown = memo(({ elementConfig, type }) => {
8965
8966
  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: "Свернуть" }) })] }));
8966
8967
  });
8967
8968
 
8968
- const SmallPreviewContainer = styled.div `
8969
- width: 100%;
8970
- height: 100%;
8969
+ const SmallPreviewContainer = styled.div `
8970
+ width: 100%;
8971
+ height: 100%;
8971
8972
  `;
8972
8973
 
8973
8974
  const ElementSlideshow = ({ elementConfig, type, renderElement }) => {
@@ -9005,18 +9006,18 @@ const ElementSvg = memo(({ type, elementConfig, ...rest }) => {
9005
9006
  return (jsx(SvgImage, { url: getSvgUrl({ elementConfig, layerInfo, attributes }), width: width, height: height, fontColor: fontColor }));
9006
9007
  });
9007
9008
 
9008
- const TooltipIcon = styled(Icon) `
9009
- &&& {
9010
- :after {
9011
- font-size: 0.75rem;
9012
- color: ${({ theme: { palette } }) => palette.iconDisabled};
9013
- transition: color ${transition.hover};
9014
- }
9015
-
9016
- :hover:after {
9017
- color: ${({ theme: { palette } }) => palette.icon};
9018
- }
9019
- }
9009
+ const TooltipIcon = styled(Icon) `
9010
+ &&& {
9011
+ :after {
9012
+ font-size: 0.75rem;
9013
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
9014
+ transition: color ${transition.hover};
9015
+ }
9016
+
9017
+ :hover:after {
9018
+ color: ${({ theme: { palette } }) => palette.icon};
9019
+ }
9020
+ }
9020
9021
  `;
9021
9022
 
9022
9023
  const ElementTooltip = memo(({ type, elementConfig }) => {
@@ -9028,76 +9029,76 @@ const ElementTooltip = memo(({ type, elementConfig }) => {
9028
9029
  return text ? (jsx(Tooltip$1, { placement: "top", arrow: true, content: text, children: ref => jsx(TooltipIcon, { kind: icon || "question", ref: ref }) })) : null;
9029
9030
  });
9030
9031
 
9031
- const SlideshowHeaderWrapper = styled.div `
9032
- padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
9033
-
9034
- ${Header} {
9035
- align-items: flex-start;
9036
- width: calc(100% + 2rem);
9037
- height: ${({ big }) => (big ? "15.5rem" : "auto")};
9038
- padding: 1.5rem;
9039
- margin: -1rem -1rem 0 -1rem;
9040
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
9041
-
9042
- ${SmallPreviewCounter} {
9043
- bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
9044
- }
9045
-
9046
- :before,
9047
- :after {
9048
- content: "";
9049
- z-index: 2;
9050
- position: absolute;
9051
- top: 0;
9052
- left: 0;
9053
- width: 100%;
9054
- }
9055
-
9056
- :before {
9057
- height: 100%;
9058
- background: rgba(32, 46, 53, 0.25);
9059
- }
9060
-
9061
- :after {
9062
- height: 4.5rem;
9063
- background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
9064
- }
9065
-
9066
- :hover {
9067
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
9068
- opacity: 1;
9069
- }
9070
- }
9071
- }
9032
+ const SlideshowHeaderWrapper = styled.div `
9033
+ padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
9034
+
9035
+ ${Header} {
9036
+ align-items: flex-start;
9037
+ width: calc(100% + 2rem);
9038
+ height: ${({ big }) => (big ? "15.5rem" : "auto")};
9039
+ padding: 1.5rem;
9040
+ margin: -1rem -1rem 0 -1rem;
9041
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
9042
+
9043
+ ${SmallPreviewCounter} {
9044
+ bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
9045
+ }
9046
+
9047
+ :before,
9048
+ :after {
9049
+ content: "";
9050
+ z-index: 2;
9051
+ position: absolute;
9052
+ top: 0;
9053
+ left: 0;
9054
+ width: 100%;
9055
+ }
9056
+
9057
+ :before {
9058
+ height: 100%;
9059
+ background: rgba(32, 46, 53, 0.25);
9060
+ }
9061
+
9062
+ :after {
9063
+ height: 4.5rem;
9064
+ background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
9065
+ }
9066
+
9067
+ :hover {
9068
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
9069
+ opacity: 1;
9070
+ }
9071
+ }
9072
+ }
9072
9073
  `;
9073
- const ImageContainerBg = styled.div `
9074
- position: absolute;
9075
- top: 0;
9076
- bottom: 0;
9077
- left: 0;
9078
- right: 0;
9079
-
9080
- img {
9081
- width: 100%;
9082
- height: 100%;
9083
- object-position: center;
9084
- object-fit: cover;
9085
- }
9074
+ const ImageContainerBg = styled.div `
9075
+ position: absolute;
9076
+ top: 0;
9077
+ bottom: 0;
9078
+ left: 0;
9079
+ right: 0;
9080
+
9081
+ img {
9082
+ width: 100%;
9083
+ height: 100%;
9084
+ object-position: center;
9085
+ object-fit: cover;
9086
+ }
9086
9087
  `;
9087
- const HeaderSlideshow = styled.div `
9088
- position: absolute;
9089
- top: 0;
9090
- bottom: ${({ height }) => (height ? `${height}px` : 0)};
9091
- left: 0;
9092
- right: 0;
9093
-
9094
- img {
9095
- width: 100%;
9096
- height: 100%;
9097
- min-height: inherit;
9098
- object-position: center;
9099
- object-fit: cover;
9100
- }
9088
+ const HeaderSlideshow = styled.div `
9089
+ position: absolute;
9090
+ top: 0;
9091
+ bottom: ${({ height }) => (height ? `${height}px` : 0)};
9092
+ left: 0;
9093
+ right: 0;
9094
+
9095
+ img {
9096
+ width: 100%;
9097
+ height: 100%;
9098
+ min-height: inherit;
9099
+ object-position: center;
9100
+ object-fit: cover;
9101
+ }
9101
9102
  `;
9102
9103
 
9103
9104
  const FeatureCardSlideshowHeader = ({ isRow }) => {
@@ -9241,40 +9242,40 @@ const getDefaultConfig = ({ title, defaultTitle, items, baseMapName, position, r
9241
9242
  return dashboardConfiguration;
9242
9243
  };
9243
9244
 
9244
- const UploaderContainer = styled(Container) `
9245
- ${UploaderItemArea} {
9246
- overflow: visible;
9247
- padding-top: 1rem;
9248
- padding-bottom: 1rem;
9249
- }
9250
-
9251
- ${UploaderTitleWrapper} {
9252
- top: 0;
9253
- padding-top: 0;
9254
- border: 0;
9255
- }
9245
+ const UploaderContainer = styled(Container) `
9246
+ ${UploaderItemArea} {
9247
+ overflow: visible;
9248
+ padding-top: 1rem;
9249
+ padding-bottom: 1rem;
9250
+ }
9251
+
9252
+ ${UploaderTitleWrapper} {
9253
+ top: 0;
9254
+ padding-top: 0;
9255
+ border: 0;
9256
+ }
9256
9257
  `;
9257
9258
 
9258
- const UploaderTitle = styled(Flex) `
9259
- flex-direction: column;
9260
- align-items: center;
9261
- width: 11rem;
9262
- margin: 0 auto;
9263
- text-align: center;
9264
- font-size: 0.625rem;
9265
- color: ${({ theme: { palette } }) => palette.textSecondary};
9266
-
9267
- span[kind] {
9268
- width: 1.5rem;
9269
- height: 1.5rem;
9270
- margin-bottom: 0.75rem;
9271
-
9272
- :after {
9273
- font-size: 1.5rem;
9274
- color: ${({ theme: { palette } }) => palette.textSecondary};
9275
- opacity: 0.12;
9276
- }
9277
- }
9259
+ const UploaderTitle = styled(Flex) `
9260
+ flex-direction: column;
9261
+ align-items: center;
9262
+ width: 11rem;
9263
+ margin: 0 auto;
9264
+ text-align: center;
9265
+ font-size: 0.625rem;
9266
+ color: ${({ theme: { palette } }) => palette.textSecondary};
9267
+
9268
+ span[kind] {
9269
+ width: 1.5rem;
9270
+ height: 1.5rem;
9271
+ margin-bottom: 0.75rem;
9272
+
9273
+ :after {
9274
+ font-size: 1.5rem;
9275
+ color: ${({ theme: { palette } }) => palette.textSecondary};
9276
+ opacity: 0.12;
9277
+ }
9278
+ }
9278
9279
  `;
9279
9280
 
9280
9281
  const DEFAULT_FILE_EXTENSIONS = ".txt,.csv,.py";
@@ -9322,16 +9323,16 @@ const ElementUploader = memo(({ elementConfig, type }) => {
9322
9323
  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 }) }) }));
9323
9324
  });
9324
9325
 
9325
- const ModalIcon = styled(IconButton) `
9326
- :after {
9327
- font-size: 0.75rem;
9328
- color: ${({ theme: { palette } }) => palette.iconDisabled};
9329
- transition: color ${transition.hover};
9330
- }
9331
-
9332
- :hover:after {
9333
- color: ${({ theme: { palette } }) => palette.icon};
9334
- }
9326
+ const ModalIcon = styled(IconButton) `
9327
+ :after {
9328
+ font-size: 0.75rem;
9329
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
9330
+ transition: color ${transition.hover};
9331
+ }
9332
+
9333
+ :hover:after {
9334
+ color: ${({ theme: { palette } }) => palette.icon};
9335
+ }
9335
9336
  `;
9336
9337
 
9337
9338
  const isEmptyElementValue = (value) => value === "" || value === null || value === undefined;
@@ -10087,64 +10088,64 @@ const getJustifyContent = (align) => {
10087
10088
  return "flex-start";
10088
10089
  }
10089
10090
  };
10090
- const ChipsContainer = styled(Flex) `
10091
- flex-wrap: wrap;
10092
- gap: 0.25rem;
10093
- background: transparent;
10094
- justify-content: ${({ $align }) => getJustifyContent($align)};
10091
+ const ChipsContainer = styled(Flex) `
10092
+ flex-wrap: wrap;
10093
+ gap: 0.25rem;
10094
+ background: transparent;
10095
+ justify-content: ${({ $align }) => getJustifyContent($align)};
10095
10096
  `;
10096
10097
 
10097
- const FilterChip = styled.div `
10098
- display: inline-flex;
10099
- align-items: center;
10100
- gap: 0.25rem;
10101
- padding: 0.3125rem 0.5rem;
10102
- height: 1.5rem;
10103
- border-radius: 0.25rem;
10098
+ const FilterChip = styled.div `
10099
+ display: inline-flex;
10100
+ align-items: center;
10101
+ gap: 0.25rem;
10102
+ padding: 0.3125rem 0.5rem;
10103
+ height: 1.5rem;
10104
+ border-radius: 0.25rem;
10104
10105
  background-color: ${({ $isActive, $bgColor, theme }) => $bgColor
10105
10106
  ? $bgColor
10106
10107
  : $isActive
10107
10108
  ? theme.palette?.primary
10108
- : theme.palette?.elementLight};
10109
+ : theme.palette?.elementLight};
10109
10110
  color: ${({ $isActive, $textColor, theme }) => $textColor
10110
10111
  ? $textColor
10111
10112
  : $isActive
10112
10113
  ? theme.palette?.textContrast
10113
- : theme.palette?.textSecondary};
10114
- cursor: pointer;
10115
- font-size: 0.75rem;
10116
- line-height: 0.875rem;
10117
- white-space: nowrap;
10118
- flex-shrink: 0;
10119
- transition: all 0.2s ease-in-out;
10120
- margin: 0 0.25rem 0 0;
10121
- box-sizing: border-box;
10122
-
10123
- &:hover {
10114
+ : theme.palette?.textSecondary};
10115
+ cursor: pointer;
10116
+ font-size: 0.75rem;
10117
+ line-height: 0.875rem;
10118
+ white-space: nowrap;
10119
+ flex-shrink: 0;
10120
+ transition: all 0.2s ease-in-out;
10121
+ margin: 0 0.25rem 0 0;
10122
+ box-sizing: border-box;
10123
+
10124
+ &:hover {
10124
10125
  background-color: ${({ $isActive, $bgColor, theme }) => $isActive
10125
10126
  ? $bgColor || 'inherit'
10126
- : $bgColor || theme.palette?.elementDark};
10127
- }
10127
+ : $bgColor || theme.palette?.elementDark};
10128
+ }
10128
10129
  `;
10129
- const ChipIconWrapper = styled.span `
10130
- display: inline-flex;
10131
- align-items: center;
10132
- justify-content: center;
10133
- width: 0.875rem;
10134
- height: 0.875rem;
10135
- flex-shrink: 0;
10136
-
10137
- svg, img {
10138
- width: 100%;
10139
- height: 100%;
10140
- display: block;
10141
- }
10130
+ const ChipIconWrapper = styled.span `
10131
+ display: inline-flex;
10132
+ align-items: center;
10133
+ justify-content: center;
10134
+ width: 0.875rem;
10135
+ height: 0.875rem;
10136
+ flex-shrink: 0;
10137
+
10138
+ svg, img {
10139
+ width: 100%;
10140
+ height: 100%;
10141
+ display: block;
10142
+ }
10142
10143
  `;
10143
- const ChipText = styled.span `
10144
- overflow: hidden;
10145
- text-overflow: ellipsis;
10146
- white-space: nowrap;
10147
- ${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
10144
+ const ChipText = styled.span `
10145
+ overflow: hidden;
10146
+ text-overflow: ellipsis;
10147
+ white-space: nowrap;
10148
+ ${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
10148
10149
  `;
10149
10150
 
10150
10151
  const CustomChip = ({ text, icon, color, primary, secondary, error, disabled, isActive, maxTextWidth, fontColor: customFontColor, backgroundColor: customBackgroundColor, ...props }) => {
@@ -11394,16 +11395,22 @@ const StackBar = ({ data, filterName, type, alias, options, renderElement, rende
11394
11395
  const { t } = useGlobalContext();
11395
11396
  const { hasAnyFilter, isFiltered, onFilter } = useWidgetFilters(type, filterName, data?.[0]?.items);
11396
11397
  const { items, layerInfo, attributeName } = data?.[0] || {};
11397
- const attribute = layerInfo?.configuration?.attributesConfiguration?.attributes[attributeName];
11398
+ const attribute = layerInfo?.configuration?.attributesConfiguration?.attributes[attributeName]
11399
+ ?? layerInfo?.configuration
11400
+ ?.attributesConfiguration
11401
+ ?.attributes
11402
+ ?.find(({ attributeName: name }) => name === attributeName);
11398
11403
  const units = attribute?.stringFormat?.unitsLabel;
11399
11404
  const total = useMemo(() => items?.reduce((result, { value }) => result + Number(value), 0) || 0, [items]);
11400
11405
  const getWidth = useCallback(value => ((Number(value) / total) * 100).toFixed(2), [total]);
11401
11406
  const renderGroupTooltip = useMemo(() => (jsx(ThemeProvider, { children: jsx(ChartTooltipTable, { cellPadding: 0, cellSpacing: 0, children: items?.map(({ name, value, color }, index) => (jsxs("tr", { children: [jsx("td", { children: jsxs(ChartTooltip, { alignItems: "center", children: [jsx(ChartTooltipColor, { "$color": color }), jsx(ChartTooltipName, { children: name })] }) }), jsx("td", { children: value })] }, index))) }) })), [items]);
11402
11407
  const renderItem = useCallback(({ name, value, color }, ref) => (jsx(StackBarSection, { ref: ref, "$width": getWidth(value), "$height": height, "$color": color, cornerRadius: cornerRadius, hasAnyFilter: hasAnyFilter, isFiltered: isFiltered(name), onClick: filterName ? () => onFilter(name) : undefined })), [cornerRadius, filterName, getWidth, hasAnyFilter, height, isFiltered, onFilter]);
11403
11408
  const renderItems = useMemo(() => (jsx(Fragment$1, { children: items?.map((item, index) => (jsx(Fragment, { children: groupTooltip ? (renderItem(item)) : (jsx(ThemeProvider, { children: jsx(Tooltip$1, { placement: "top", arrow: true, content: renderTooltip([item]), children: ref => renderItem(item, ref) }) })) }, index))) })), [groupTooltip, items, renderItem, renderTooltip]);
11404
- if (!total || !attribute)
11409
+ if (!total)
11405
11410
  return null;
11406
- return (jsxs(Fragment$1, { children: [(alias || showTotal) && (jsxs(StackBarHeader, { children: [jsx(StackBarAlias, { children: renderElement({ id: "alias" }) }), showTotal && (jsxs(StackBarTotal, { children: [jsx(StackBarValue, { children: formatAttributeValue({ t, type: attribute.type, value: total, stringFormat: attribute.stringFormat, noUnits: true }) }), !!units && jsx(StackBarUnits, { children: units })] }))] })), groupTooltip ? (jsx(Tooltip$1, { placement: "top", arrow: true, content: renderGroupTooltip, children: ref => jsx(StackBarContainer, { ref: ref, children: renderItems }) })) : (jsx(StackBarContainer, { children: renderItems }))] }));
11411
+ return (jsxs(Fragment$1, { children: [(alias || showTotal) && (jsxs(StackBarHeader, { children: [jsx(StackBarAlias, { children: renderElement({ id: "alias" }) }), showTotal && (jsxs(StackBarTotal, { children: [jsx(StackBarValue, { children: attribute
11412
+ ? formatAttributeValue({ t, type: attribute.type, value: total, stringFormat: attribute.stringFormat, noUnits: true })
11413
+ : total }), !!units && jsx(StackBarUnits, { children: units })] }))] })), groupTooltip ? (jsx(Tooltip$1, { placement: "top", arrow: true, content: renderGroupTooltip, children: ref => jsx(StackBarContainer, { ref: ref, children: renderItems }) })) : (jsx(StackBarContainer, { children: renderItems }))] }));
11407
11414
  };
11408
11415
 
11409
11416
  const Chart = memo(({ config, element, elementConfig, type, renderElement }) => {
@@ -11546,7 +11553,8 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
11546
11553
  }, customYAxis: yAxis => yAxis.ticks(4), renderTooltip: renderLineChartTooltip, customize: customize, dotSnapping: dotSnapping, dynamicTooltipEnable: true, stackedTooltip: true, tooltipClassName: "dashboardLineChartTooltip", drawGridX: !isHidedY, margin: margin })] }));
11547
11554
  }
11548
11555
  if (isStackBar) {
11549
- return (jsx(AnyChartWrapper, { height: height, children: jsx(StackBar, { data: data, filterName: filterName, type: type, alias: elementConfig?.children?.find(child => child.id === "alias"), options: options, renderTooltip: renderPieChartTooltip, renderElement: renderElement }) }));
11556
+ const stackBarHeight = showTotal ? height + STACK_BAR_TOTAL_HEIGHT : height;
11557
+ return (jsx(AnyChartWrapper, { height: stackBarHeight, children: jsx(StackBar, { data: data, filterName: filterName, type: type, alias: elementConfig?.children?.find(child => child.id === "alias"), options: options, renderTooltip: renderPieChartTooltip, renderElement: renderElement }) }));
11550
11558
  }
11551
11559
  if (isPieChart) {
11552
11560
  return (jsx(AnyChartWrapper, { height: height, children: jsx(PieChart, { data: (data[0]?.items
@@ -11564,6 +11572,7 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
11564
11572
  }, [
11565
11573
  customXAxisBottom,
11566
11574
  customYAxisLeft,
11575
+ dotSnapping,
11567
11576
  element,
11568
11577
  isLineChart,
11569
11578
  isStackBar,
@@ -11576,7 +11585,6 @@ const Chart = memo(({ config, element, elementConfig, type, renderElement }) =>
11576
11585
  width,
11577
11586
  barWidth,
11578
11587
  showLabels,
11579
- showMarkers,
11580
11588
  padding,
11581
11589
  formatTooltipValue,
11582
11590
  formatTooltipName,
@@ -11648,8 +11656,8 @@ const Dashboard = memo(({ type = WidgetType.Dashboard, noBorders }) => {
11648
11656
  return (jsx(PagesContainer, { type: type, noBorders: noBorders }));
11649
11657
  });
11650
11658
 
11651
- const CardCheckbox = styled(Checkbox) `
11652
- padding-left: 0.5rem;
11659
+ const CardCheckbox = styled(Checkbox) `
11660
+ padding-left: 0.5rem;
11653
11661
  `;
11654
11662
 
11655
11663
  const DashboardCheckbox = ({ title, checked, onChange, }) => {
@@ -11724,15 +11732,15 @@ const FeatureCardTitle = ({ title, description }) => {
11724
11732
  return (jsxs(HeaderTitleContainer, { children: [jsx(FeatureTitleContainer, { children: jsx(FlexSpan, { children: resultTitle }) }), jsx(LayerDescription, { title: resultDescription, children: resultDescription })] }));
11725
11733
  };
11726
11734
 
11727
- const HiddenFilters = styled(Flex) `
11728
- flex-wrap: wrap;
11729
- margin-top: -1.25rem;
11730
-
11731
- ${DashboardChip$1} {
11732
- height: 1.5rem;
11733
- margin: 0 0.25rem 0.25rem 0;
11734
- padding: 0 0 0 0.5rem;
11735
- }
11735
+ const HiddenFilters = styled(Flex) `
11736
+ flex-wrap: wrap;
11737
+ margin-top: -1.25rem;
11738
+
11739
+ ${DashboardChip$1} {
11740
+ height: 1.5rem;
11741
+ margin: 0 0.25rem 0.25rem 0;
11742
+ padding: 0 0 0 0.5rem;
11743
+ }
11736
11744
  `;
11737
11745
 
11738
11746
  function spliceValue(filterValue, splicingValue) {
@@ -11931,24 +11939,24 @@ const LogTerminal = ({ log, terminalOptions, className, styles }) => {
11931
11939
  return jsx(TerminalWrapper, { ref: terminalRef, className: className, style: styles });
11932
11940
  };
11933
11941
 
11934
- const PageNavigator = styled(Flex) `
11935
- margin-right: -0.5rem;
11936
- align-items: center;
11937
-
11938
- button {
11939
- width: auto;
11940
- height: 2rem;
11941
- padding: 0 0.5rem;
11942
-
11943
- span[kind]:after {
11944
- color: ${({ theme: { palette } }) => palette.textDisabled};
11945
- transition: color ${transition.hover};
11946
- }
11947
-
11948
- :hover span[kind]:after {
11949
- color: ${({ theme: { palette } }) => palette.textSecondary};
11950
- }
11951
- }
11942
+ const PageNavigator = styled(Flex) `
11943
+ margin-right: -0.5rem;
11944
+ align-items: center;
11945
+
11946
+ button {
11947
+ width: auto;
11948
+ height: 2rem;
11949
+ padding: 0 0.5rem;
11950
+
11951
+ span[kind]:after {
11952
+ color: ${({ theme: { palette } }) => palette.textDisabled};
11953
+ transition: color ${transition.hover};
11954
+ }
11955
+
11956
+ :hover span[kind]:after {
11957
+ color: ${({ theme: { palette } }) => palette.textSecondary};
11958
+ }
11959
+ }
11952
11960
  `;
11953
11961
 
11954
11962
  const Pagination = memo(({ type = WidgetType.Dashboard }) => {
@@ -11957,34 +11965,34 @@ const Pagination = memo(({ type = WidgetType.Dashboard }) => {
11957
11965
  return (jsxs(PageNavigator, { children: [jsx(IconButton, { kind: "prev", onClick: () => prevPage(pages.length) }), jsx(IconButton, { kind: "next", onClick: () => nextPage(pages.length) })] }));
11958
11966
  });
11959
11967
 
11960
- const StyledSvgWidthMixin = css `
11961
- &&& {
11962
- svg {
11963
- width: ${({ $width }) => $width}px;
11964
- }
11965
- }
11968
+ const StyledSvgWidthMixin = css `
11969
+ &&& {
11970
+ svg {
11971
+ width: ${({ $width }) => $width}px;
11972
+ }
11973
+ }
11966
11974
  `;
11967
- const StyledSvgHeightMixin = css `
11968
- &&& {
11969
- svg {
11970
- height: ${({ $height }) => $height}px;
11971
- }
11972
- }
11975
+ const StyledSvgHeightMixin = css `
11976
+ &&& {
11977
+ svg {
11978
+ height: ${({ $height }) => $height}px;
11979
+ }
11980
+ }
11973
11981
  `;
11974
- const StyledSvgColorMixin = css `
11975
- svg {
11976
- path,
11977
- line,
11978
- circle {
11979
- fill: ${({ $fontColor }) => $fontColor} !important;
11980
- }
11981
- }
11982
+ const StyledSvgColorMixin = css `
11983
+ svg {
11984
+ path,
11985
+ line,
11986
+ circle {
11987
+ fill: ${({ $fontColor }) => $fontColor} !important;
11988
+ }
11989
+ }
11982
11990
  `;
11983
- const StyledSvg = styled(Flex) `
11984
- align-items: center;
11985
- ${({ $width }) => !!$width && StyledSvgWidthMixin};
11986
- ${({ $height }) => !!$height && StyledSvgHeightMixin};
11987
- ${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
11991
+ const StyledSvg = styled(Flex) `
11992
+ align-items: center;
11993
+ ${({ $width }) => !!$width && StyledSvgWidthMixin};
11994
+ ${({ $height }) => !!$height && StyledSvgHeightMixin};
11995
+ ${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
11988
11996
  `;
11989
11997
 
11990
11998
  const SvgImage = memo(({ url, width, height, fontColor }) => {
@@ -12288,28 +12296,28 @@ const Layer = ({ layer, layerType, visible, beforeId, tileUrl, getLayerTempStyle
12288
12296
  return (jsx(VectorLayer, { layer: layer, tileUrl: tileUrl, visible: visible, beforeId: beforeId, getLayerTempStyle: getLayerTempStyle, filterVersion: filterVersion }));
12289
12297
  };
12290
12298
 
12291
- const MapWrapper = styled.div `
12292
- position: relative;
12293
- width: 100%;
12294
- height: 100%;
12295
- box-sizing: border-box;
12296
- z-index: ${({ $zIndex }) => $zIndex ?? 1};
12297
-
12298
- .mapbox-gl-draw_trash {
12299
- display: none;
12300
- }
12301
-
12302
- .mapboxgl-ctrl-logo {
12303
- display: none;
12304
- }
12305
-
12306
- .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
12307
- display: none;
12308
- }
12309
-
12310
- .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
12311
- width: 350px;
12312
- }
12299
+ const MapWrapper = styled.div `
12300
+ position: relative;
12301
+ width: 100%;
12302
+ height: 100%;
12303
+ box-sizing: border-box;
12304
+ z-index: ${({ $zIndex }) => $zIndex ?? 1};
12305
+
12306
+ .mapbox-gl-draw_trash {
12307
+ display: none;
12308
+ }
12309
+
12310
+ .mapboxgl-ctrl-logo {
12311
+ display: none;
12312
+ }
12313
+
12314
+ .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
12315
+ display: none;
12316
+ }
12317
+
12318
+ .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
12319
+ width: 350px;
12320
+ }
12313
12321
  `;
12314
12322
 
12315
12323
  const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...rest }) => {
@@ -12321,5 +12329,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
12321
12329
  }, children: children }), upperSiblings] }));
12322
12330
  };
12323
12331
 
12324
- 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, PROVIDER_PREFIX, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, ProviderPrefix, 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, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, createConfigLayer, createConfigPage, createNewPageId, createTreeNode, dateOptions, debounce, decimalOpacityToHex, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, getActualExtrusionHeight, getAttributeByName, getAttributeValue, getAttributesConfiguration, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, 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, metersPerPixel, 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, usePythonSandbox, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
12332
+ 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, PROVIDER_PREFIX, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, ProviderPrefix, RoundedBackgroundContainer, SERVER_NOTIFICATION_EVENT, STACK_BAR_TOTAL_HEIGHT, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, createConfigLayer, createConfigPage, createNewPageId, createTreeNode, dateOptions, debounce, decimalOpacityToHex, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, getActualExtrusionHeight, getAttributeByName, getAttributeValue, getAttributesConfiguration, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, 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, metersPerPixel, 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, usePythonSandbox, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
12325
12333
  //# sourceMappingURL=react.esm.js.map