@evergis/react 3.1.91 → 3.1.93
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/LICENSE +21 -21
- package/README.md +5 -5
- package/dist/index.js +2214 -2205
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +2215 -2206
- package/dist/react.esm.js.map +1 -1
- package/package.json +6 -4
package/dist/react.esm.js
CHANGED
|
@@ -3,7 +3,7 @@ import { IconButton, Flex, transition, Chip, Icon, Description, FlexSpan, IconTo
|
|
|
3
3
|
import { createContext, memo, useRef, useState, useEffect, useCallback, useContext, useMemo, Fragment } from 'react';
|
|
4
4
|
import styled, { createGlobalStyle, css, useTheme } from 'styled-components';
|
|
5
5
|
import { lineChartClassNames, BarChart as BarChart$1, barChartClassNames, LineChart, PieChart } from '@evergis/charts';
|
|
6
|
-
import { AttributeType, GeometryType, RemoteTaskStatus } from '@evergis/api';
|
|
6
|
+
import { AttributeType, generateId, GeometryType, RemoteTaskStatus } from '@evergis/api';
|
|
7
7
|
import Gradient from 'javascript-color-gradient';
|
|
8
8
|
import { Color as Color$1 } from '@evergis/color';
|
|
9
9
|
import { isValid, format, parseJSON, parseISO, toDate, sub } from 'date-fns';
|
|
@@ -21,6 +21,8 @@ import '@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw.css';
|
|
|
21
21
|
import 'mapbox-gl/dist/mapbox-gl.css';
|
|
22
22
|
import { Swiper, SwiperSlide } from 'swiper/react';
|
|
23
23
|
import ReactMarkdown from 'react-markdown';
|
|
24
|
+
import rehypeRaw from 'rehype-raw';
|
|
25
|
+
import rehypeSanitize, { defaultSchema } from 'rehype-sanitize';
|
|
24
26
|
import remarkGfm from 'remark-gfm';
|
|
25
27
|
import { Terminal } from '@xterm/xterm';
|
|
26
28
|
import { FitAddon } from '@xterm/addon-fit';
|
|
@@ -32,180 +34,180 @@ const AddFeatureButton = ({ title, icon = "feature_add" /* , layerName, geometry
|
|
|
32
34
|
return (jsx(IconButton, { kind: icon, primary: true, onClick: handleAddFeature, children: title }));
|
|
33
35
|
};
|
|
34
36
|
|
|
35
|
-
const ChartTooltipTable = styled.table `
|
|
36
|
-
td {
|
|
37
|
-
padding: 0;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
tr:not(:last-child) td {
|
|
41
|
-
padding-bottom: 0.375rem;
|
|
42
|
-
}
|
|
37
|
+
const ChartTooltipTable = styled.table `
|
|
38
|
+
td {
|
|
39
|
+
padding: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
tr:not(:last-child) td {
|
|
43
|
+
padding-bottom: 0.375rem;
|
|
44
|
+
}
|
|
43
45
|
`;
|
|
44
|
-
const ChartTooltip = styled(Flex) `
|
|
45
|
-
flex-wrap: nowrap;
|
|
46
|
-
background: rgb(48, 69, 79);
|
|
47
|
-
border-radius: 0.25rem;
|
|
48
|
-
color: white;
|
|
49
|
-
|
|
50
|
-
:not(:last-child) {
|
|
51
|
-
margin-bottom: 0.25rem;
|
|
52
|
-
}
|
|
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
|
+
}
|
|
53
55
|
`;
|
|
54
|
-
const ChartTooltipLabel = styled.div `
|
|
55
|
-
margin-right: 0.25rem;
|
|
56
|
-
`;
|
|
57
|
-
const ChartTooltipColor = styled.div `
|
|
58
|
-
width: 0.625rem;
|
|
59
|
-
height: 0.625rem;
|
|
60
|
-
background-color: ${({ $color }) => $color};
|
|
61
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
|
|
62
|
-
margin-right: 0.25rem;
|
|
63
|
-
`;
|
|
64
|
-
const ChartLegendColor$1 = styled.div `
|
|
65
|
-
width: 0.5rem;
|
|
66
|
-
height: 0.5rem;
|
|
67
|
-
background-color: ${({ $color }) => $color};
|
|
68
|
-
border-radius: 0.125rem;
|
|
69
|
-
`;
|
|
70
|
-
const ChartLegendValue = styled.div `
|
|
71
|
-
opacity: 0.65;
|
|
72
|
-
`;
|
|
73
|
-
const ChartTooltipRow = styled(Flex) `
|
|
74
|
-
display: flex;
|
|
75
|
-
flex-direction: row;
|
|
76
|
-
flex-wrap: nowrap;
|
|
77
|
-
align-items: center;
|
|
78
|
-
margin-top: 0.5rem;
|
|
79
|
-
line-height: 0;
|
|
80
|
-
|
|
81
|
-
${ChartLegendColor$1} {
|
|
82
|
-
margin-right: 0.25rem;
|
|
83
|
-
}
|
|
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
|
+
}
|
|
84
86
|
`;
|
|
85
|
-
const ChartTooltipName = styled.div `
|
|
86
|
-
margin-right: 1rem;
|
|
87
|
-
opacity: 0.65;
|
|
88
|
-
`;
|
|
89
|
-
const PieChartCenter = styled.div `
|
|
90
|
-
position: absolute;
|
|
91
|
-
top: 50%;
|
|
92
|
-
left: 50%;
|
|
93
|
-
transform: translate(-50%, -50%);
|
|
94
|
-
text-align: center;
|
|
95
|
-
font-weight: bold;
|
|
96
|
-
font-size: 1.5rem;
|
|
97
|
-
`;
|
|
98
|
-
const ChartWrapperContainer = styled.div `
|
|
99
|
-
position: relative;
|
|
100
|
-
width: 100%;
|
|
101
|
-
`;
|
|
102
|
-
const Tooltip = styled.div `
|
|
103
|
-
position: relative;
|
|
104
|
-
border-radius: 0.25rem;
|
|
105
|
-
background-color: rgba(28, 33, 48);
|
|
106
|
-
padding: 0.5rem;
|
|
107
|
-
box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.15);
|
|
108
|
-
font-size: 0.75rem;
|
|
109
|
-
transform: ${({ transform }) => transform};
|
|
110
|
-
color: white;
|
|
111
|
-
|
|
112
|
-
:before {
|
|
113
|
-
position: absolute;
|
|
114
|
-
display: block;
|
|
115
|
-
content: "";
|
|
116
|
-
width: 0;
|
|
117
|
-
height: 0;
|
|
118
|
-
}
|
|
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
|
+
}
|
|
119
121
|
`;
|
|
120
|
-
const LineChartStyles = createGlobalStyle `
|
|
121
|
-
.dashboardLineChartTooltip.${lineChartClassNames.lineChartMouseLabel} {
|
|
122
|
-
.${lineChartClassNames.lineChartLabelFlex} {
|
|
123
|
-
justify-content: center;
|
|
124
|
-
align-items: flex-end;
|
|
125
|
-
|
|
126
|
-
${Tooltip} {
|
|
127
|
-
margin: 0 0 12px 0;
|
|
128
|
-
|
|
129
|
-
:before {
|
|
130
|
-
top: auto;
|
|
131
|
-
bottom: 0;
|
|
132
|
-
left: 50%;
|
|
133
|
-
transform: translate(-50%, 100%);
|
|
134
|
-
border-left: 4px solid transparent;
|
|
135
|
-
border-right: 4px solid transparent;
|
|
136
|
-
border-top: 4px solid rgba(28, 33, 48, 0.9);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.${lineChartClassNames.lineChartYScaleGlobal}, .${lineChartClassNames.lineChartXScaleGlobal} {
|
|
143
|
-
.domain {
|
|
144
|
-
visibility: hidden;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.tick {
|
|
148
|
-
text {
|
|
149
|
-
fill: ${({ theme: { palette } }) => palette.textDisabled};
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
line {
|
|
153
|
-
visibility: hidden;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.${lineChartClassNames.lineChartXScaleGlobal} {
|
|
159
|
-
.tick {
|
|
160
|
-
:first-of-type {
|
|
161
|
-
text {
|
|
162
|
-
text-anchor: start;
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
:last-of-type {
|
|
167
|
-
text {
|
|
168
|
-
text-anchor: end;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.${lineChartClassNames.lineChartLine} {
|
|
175
|
-
stroke-width: 2px;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.${lineChartClassNames.lineChartLabel} {
|
|
179
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.${lineChartClassNames.lineChartMouseCircle} {
|
|
183
|
-
stroke: #ffffff;
|
|
184
|
-
stroke-width: 2px;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.${lineChartClassNames.lineChartGridLineX} {
|
|
188
|
-
stroke: ${({ theme: { palette } }) => palette.element};
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
text {
|
|
192
|
-
fill: ${({ theme: { palette } }) => palette.textDisabled};
|
|
193
|
-
}
|
|
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
|
+
}
|
|
194
196
|
`;
|
|
195
|
-
const StyledBarChart = styled(BarChart$1) `
|
|
196
|
-
.domain {
|
|
197
|
-
display: none;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.tick {
|
|
201
|
-
text {
|
|
202
|
-
fill: ${({ theme: { palette } }) => palette.textDisabled};
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
line {
|
|
206
|
-
visibility: hidden;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
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
|
+
}
|
|
209
211
|
`;
|
|
210
212
|
|
|
211
213
|
function range(start, stop, step) {
|
|
@@ -3439,42 +3441,42 @@ const DEFAULT_ID_ATTRIBUTE_NAME = "gid";
|
|
|
3439
3441
|
const DEFAULT_DROPDOWN_WIDTH = 312;
|
|
3440
3442
|
const DEFAULT_FILTER_PADDING = 12;
|
|
3441
3443
|
|
|
3442
|
-
const StackBarContainer = styled(Flex) `
|
|
3443
|
-
flex-wrap: nowrap;
|
|
3444
|
-
width: 100%;
|
|
3445
|
-
`;
|
|
3446
|
-
const StackBarHeader = styled(Flex) `
|
|
3447
|
-
justify-content: space-between;
|
|
3448
|
-
margin-bottom: 0.375rem;
|
|
3449
|
-
font-size: 0.75rem;
|
|
3450
|
-
`;
|
|
3451
|
-
const StackBarSection = styled.div `
|
|
3452
|
-
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
3453
|
-
width: ${({ $width }) => $width}%;
|
|
3454
|
-
height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
|
|
3455
|
-
margin: 0 0.5px;
|
|
3456
|
-
background-color: ${({ $color }) => $color};
|
|
3457
|
-
opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
|
|
3458
|
-
transition: opacity ${transition.release};
|
|
3459
|
-
|
|
3460
|
-
:first-child {
|
|
3461
|
-
border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3462
|
-
border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3463
|
-
}
|
|
3464
|
-
|
|
3465
|
-
:last-child {
|
|
3466
|
-
border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3467
|
-
border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3468
|
-
}
|
|
3444
|
+
const StackBarContainer = styled(Flex) `
|
|
3445
|
+
flex-wrap: nowrap;
|
|
3446
|
+
width: 100%;
|
|
3447
|
+
`;
|
|
3448
|
+
const StackBarHeader = styled(Flex) `
|
|
3449
|
+
justify-content: space-between;
|
|
3450
|
+
margin-bottom: 0.375rem;
|
|
3451
|
+
font-size: 0.75rem;
|
|
3452
|
+
`;
|
|
3453
|
+
const StackBarSection = styled.div `
|
|
3454
|
+
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
3455
|
+
width: ${({ $width }) => $width}%;
|
|
3456
|
+
height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
|
|
3457
|
+
margin: 0 0.5px;
|
|
3458
|
+
background-color: ${({ $color }) => $color};
|
|
3459
|
+
opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
|
|
3460
|
+
transition: opacity ${transition.release};
|
|
3461
|
+
|
|
3462
|
+
:first-child {
|
|
3463
|
+
border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3464
|
+
border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3467
|
+
:last-child {
|
|
3468
|
+
border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3469
|
+
border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
|
|
3470
|
+
}
|
|
3469
3471
|
`;
|
|
3470
|
-
const StackBarAlias = styled.div `
|
|
3471
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
3472
|
+
const StackBarAlias = styled.div `
|
|
3473
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
3472
3474
|
`;
|
|
3473
3475
|
const StackBarTotal = styled(Flex) ``;
|
|
3474
3476
|
const StackBarValue = styled.div ``;
|
|
3475
|
-
const StackBarUnits = styled.div `
|
|
3476
|
-
margin-left: 0.25rem;
|
|
3477
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
3477
|
+
const StackBarUnits = styled.div `
|
|
3478
|
+
margin-left: 0.25rem;
|
|
3479
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
3478
3480
|
`;
|
|
3479
3481
|
|
|
3480
3482
|
const transparentizeColor = (originalColor, percent) => {
|
|
@@ -3938,7 +3940,7 @@ const useServerNotifications = (url, initialized) => {
|
|
|
3938
3940
|
return;
|
|
3939
3941
|
}
|
|
3940
3942
|
hubConnection.current = new HubConnectionBuilder()
|
|
3941
|
-
.withUrl(url
|
|
3943
|
+
.withUrl(`${url}?clientId=${generateId()}`, {
|
|
3942
3944
|
withCredentials: true,
|
|
3943
3945
|
})
|
|
3944
3946
|
.configureLogging(LogLevel.Information)
|
|
@@ -4119,8 +4121,8 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
|
|
|
4119
4121
|
const customize = useCallback(({ svg }) => {
|
|
4120
4122
|
svg.style("overflow", "visible");
|
|
4121
4123
|
svg
|
|
4122
|
-
.selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
|
|
4123
|
-
.${lineChartClassNames.lineChartYScaleGlobal} line,
|
|
4124
|
+
.selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
|
|
4125
|
+
.${lineChartClassNames.lineChartYScaleGlobal} line,
|
|
4124
4126
|
.domain`)
|
|
4125
4127
|
.each((_, index, nodes) => {
|
|
4126
4128
|
nodes[index].remove();
|
|
@@ -4177,11 +4179,11 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
|
|
|
4177
4179
|
.attr("fill", `url(#${gradientId})`)
|
|
4178
4180
|
.attr("stroke-width", "0")
|
|
4179
4181
|
.attr("fill-opacity", FILL_OPACITY);
|
|
4180
|
-
defs.push(`
|
|
4181
|
-
<linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
|
|
4182
|
-
<stop offset="0" stop-color="${color}" stop-opacity="1" />
|
|
4183
|
-
<stop offset="1" stop-color="${color}" stop-opacity="0" />
|
|
4184
|
-
</linearGradient>
|
|
4182
|
+
defs.push(`
|
|
4183
|
+
<linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
|
|
4184
|
+
<stop offset="0" stop-color="${color}" stop-opacity="1" />
|
|
4185
|
+
<stop offset="1" stop-color="${color}" stop-opacity="0" />
|
|
4186
|
+
</linearGradient>
|
|
4185
4187
|
`);
|
|
4186
4188
|
ref.current = {
|
|
4187
4189
|
path: newPath,
|
|
@@ -4536,104 +4538,104 @@ const formatDataSourceCondition = ({ condition, configFilters, filters, attribut
|
|
|
4536
4538
|
: conditionSection.join(splitter);
|
|
4537
4539
|
};
|
|
4538
4540
|
|
|
4539
|
-
const DashboardChipsContainer = styled(Flex) `
|
|
4540
|
-
flex-wrap: wrap;
|
|
4541
|
-
`;
|
|
4542
|
-
const DefaultChipColorMixin = css `
|
|
4543
|
-
&& {
|
|
4544
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
4545
|
-
}
|
|
4546
|
-
|
|
4547
|
-
&& > * {
|
|
4548
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
4549
|
-
}
|
|
4550
|
-
|
|
4551
|
-
&& span[kind]:after {
|
|
4552
|
-
color: ${({ theme: { palette } }) => palette.icon};
|
|
4553
|
-
}
|
|
4541
|
+
const DashboardChipsContainer = styled(Flex) `
|
|
4542
|
+
flex-wrap: wrap;
|
|
4554
4543
|
`;
|
|
4555
|
-
const
|
|
4556
|
-
&& {
|
|
4557
|
-
color: ${({
|
|
4558
|
-
}
|
|
4559
|
-
|
|
4560
|
-
&& > * {
|
|
4561
|
-
color: ${({
|
|
4562
|
-
}
|
|
4563
|
-
|
|
4564
|
-
&& span[kind]:after {
|
|
4565
|
-
color: ${({
|
|
4566
|
-
}
|
|
4544
|
+
const DefaultChipColorMixin = css `
|
|
4545
|
+
&& {
|
|
4546
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
&& > * {
|
|
4550
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
4551
|
+
}
|
|
4552
|
+
|
|
4553
|
+
&& span[kind]:after {
|
|
4554
|
+
color: ${({ theme: { palette } }) => palette.icon};
|
|
4555
|
+
}
|
|
4567
4556
|
`;
|
|
4568
|
-
const
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
span[kind] {
|
|
4581
|
-
height: 0.875rem;
|
|
4582
|
-
|
|
4583
|
-
:after {
|
|
4584
|
-
font-size: 0.875rem;
|
|
4585
|
-
}
|
|
4586
|
-
}
|
|
4587
|
-
|
|
4588
|
-
button {
|
|
4589
|
-
width: auto;
|
|
4590
|
-
padding: 0 0.5rem;
|
|
4591
|
-
}
|
|
4592
|
-
|
|
4593
|
-
${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
|
|
4594
|
-
${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
|
|
4557
|
+
const CustomChipColorMixin = css `
|
|
4558
|
+
&& {
|
|
4559
|
+
color: ${({ $fontColor }) => $fontColor};
|
|
4560
|
+
}
|
|
4561
|
+
|
|
4562
|
+
&& > * {
|
|
4563
|
+
color: ${({ $fontColor }) => $fontColor};
|
|
4564
|
+
}
|
|
4565
|
+
|
|
4566
|
+
&& span[kind]:after {
|
|
4567
|
+
color: ${({ $fontColor }) => $fontColor};
|
|
4568
|
+
}
|
|
4595
4569
|
`;
|
|
4570
|
+
const DashboardChip$1 = styled(Chip) `
|
|
4571
|
+
margin: 0 0.25rem 0.25rem 0;
|
|
4572
|
+
background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
|
|
4573
|
+
border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
|
|
4574
|
+
white-space: nowrap;
|
|
4575
|
+
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
4576
|
+
color: ${({ theme: { palette } }) => palette.iconContrast};
|
|
4596
4577
|
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
${
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4578
|
+
> * {
|
|
4579
|
+
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
4580
|
+
}
|
|
4581
|
+
|
|
4582
|
+
span[kind] {
|
|
4583
|
+
height: 0.875rem;
|
|
4584
|
+
|
|
4585
|
+
:after {
|
|
4586
|
+
font-size: 0.875rem;
|
|
4587
|
+
}
|
|
4588
|
+
}
|
|
4589
|
+
|
|
4590
|
+
button {
|
|
4591
|
+
width: auto;
|
|
4592
|
+
padding: 0 0.5rem;
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4595
|
+
${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
|
|
4596
|
+
${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
|
|
4597
|
+
`;
|
|
4598
|
+
|
|
4599
|
+
const LayerGroupContainer = styled(Flex) `
|
|
4600
|
+
display: flex;
|
|
4601
|
+
justify-content: center;
|
|
4602
|
+
position: relative;
|
|
4603
|
+
flex-direction: column;
|
|
4604
|
+
padding: 0 0.25rem 0 1rem;
|
|
4605
|
+
box-sizing: border-box;
|
|
4606
|
+
transition: opacity ${transition.hover}, background-color ${transition.hover};
|
|
4607
|
+
font-family: "NunitoSans", sans-serif;
|
|
4608
|
+
`;
|
|
4609
|
+
const LayerGroupMain = styled(Flex) `
|
|
4610
|
+
flex-direction: row;
|
|
4611
|
+
flex-wrap: nowrap;
|
|
4612
|
+
align-items: center;
|
|
4613
|
+
justify-content: space-between;
|
|
4614
|
+
width: 100%;
|
|
4615
|
+
|
|
4616
|
+
${Icon} {
|
|
4617
|
+
width: 2rem;
|
|
4618
|
+
min-width: 2rem;
|
|
4619
|
+
height: 2rem;
|
|
4620
|
+
display: inline-flex;
|
|
4621
|
+
align-items: center;
|
|
4622
|
+
justify-content: center;
|
|
4623
|
+
margin-right: 0.75rem;
|
|
4624
|
+
}
|
|
4625
|
+
|
|
4626
|
+
${Description} {
|
|
4627
|
+
display: flex;
|
|
4628
|
+
align-items: center;
|
|
4629
|
+
flex-grow: 1;
|
|
4630
|
+
width: 100%;
|
|
4631
|
+
margin-right: 0.25rem;
|
|
4632
|
+
color: ${({ theme }) => theme.palette.textPrimary};
|
|
4633
|
+
}
|
|
4634
|
+
|
|
4635
|
+
button {
|
|
4636
|
+
width: 2.25rem;
|
|
4637
|
+
justify-content: flex-start;
|
|
4638
|
+
}
|
|
4637
4639
|
`;
|
|
4638
4640
|
|
|
4639
4641
|
const customModes = MapboxDraw.modes;
|
|
@@ -5140,326 +5142,326 @@ const LayerTree = ({ layers, onlyMainTools }) => {
|
|
|
5140
5142
|
return (jsx(DraggableTree, { nodes: nodes, disableDrag: onlyMainTools, options: { pastePlaceholderHeight: "0.0625rem" }, onUpdate: onUpdate }));
|
|
5141
5143
|
};
|
|
5142
5144
|
|
|
5143
|
-
const LayersListWrapper = styled(Flex) `
|
|
5144
|
-
flex-direction: column;
|
|
5145
|
-
height: 100%;
|
|
5146
|
-
width: 100%;
|
|
5147
|
-
box-sizing: border-box;
|
|
5145
|
+
const LayersListWrapper = styled(Flex) `
|
|
5146
|
+
flex-direction: column;
|
|
5147
|
+
height: 100%;
|
|
5148
|
+
width: 100%;
|
|
5149
|
+
box-sizing: border-box;
|
|
5148
5150
|
`;
|
|
5149
|
-
const LayerListContainer = styled(Flex) `
|
|
5150
|
-
flex-grow: 1;
|
|
5151
|
-
height: 100%;
|
|
5152
|
-
box-sizing: border-box;
|
|
5151
|
+
const LayerListContainer = styled(Flex) `
|
|
5152
|
+
flex-grow: 1;
|
|
5153
|
+
height: 100%;
|
|
5154
|
+
box-sizing: border-box;
|
|
5153
5155
|
`;
|
|
5154
5156
|
|
|
5155
|
-
const ElementValueWrapper = styled.div `
|
|
5156
|
-
transition: background-color ${transition.toggle};
|
|
5157
|
-
|
|
5158
|
-
${({ noMargin }) => css `
|
|
5159
|
-
&&&& {
|
|
5160
|
-
margin-bottom: 0;
|
|
5161
|
-
}
|
|
5162
|
-
`};
|
|
5157
|
+
const ElementValueWrapper = styled.div `
|
|
5158
|
+
transition: background-color ${transition.toggle};
|
|
5159
|
+
|
|
5160
|
+
${({ noMargin }) => css `
|
|
5161
|
+
&&&& {
|
|
5162
|
+
margin-bottom: 0;
|
|
5163
|
+
}
|
|
5164
|
+
`};
|
|
5163
5165
|
`;
|
|
5164
|
-
const Container = styled(Flex) `
|
|
5165
|
-
flex-direction: column;
|
|
5166
|
-
width: 100%;
|
|
5167
|
-
|
|
5166
|
+
const Container = styled(Flex) `
|
|
5167
|
+
flex-direction: column;
|
|
5168
|
+
width: 100%;
|
|
5169
|
+
|
|
5168
5170
|
${({ isColumn }) => isColumn
|
|
5169
|
-
? css `
|
|
5170
|
-
&&& > * {
|
|
5171
|
-
justify-content: flex-start;
|
|
5172
|
-
}
|
|
5173
|
-
> * {
|
|
5174
|
-
width: 100%;
|
|
5175
|
-
|
|
5176
|
-
:not(:last-child) {
|
|
5177
|
-
margin-bottom: 1.5rem;
|
|
5178
|
-
}
|
|
5179
|
-
}
|
|
5171
|
+
? css `
|
|
5172
|
+
&&& > * {
|
|
5173
|
+
justify-content: flex-start;
|
|
5174
|
+
}
|
|
5175
|
+
> * {
|
|
5176
|
+
width: 100%;
|
|
5177
|
+
|
|
5178
|
+
:not(:last-child) {
|
|
5179
|
+
margin-bottom: 1.5rem;
|
|
5180
|
+
}
|
|
5181
|
+
}
|
|
5180
5182
|
`
|
|
5181
|
-
: css `
|
|
5182
|
-
flex-direction: row;
|
|
5183
|
-
justify-content: space-between;
|
|
5184
|
-
align-items: center;
|
|
5185
|
-
`}
|
|
5186
|
-
|
|
5183
|
+
: css `
|
|
5184
|
+
flex-direction: row;
|
|
5185
|
+
justify-content: space-between;
|
|
5186
|
+
align-items: center;
|
|
5187
|
+
`}
|
|
5188
|
+
|
|
5187
5189
|
${({ isTitle }) => isTitle &&
|
|
5188
|
-
css `
|
|
5189
|
-
&&&& {
|
|
5190
|
-
margin-bottom: 0.75rem;
|
|
5191
|
-
}
|
|
5192
|
-
`}
|
|
5193
|
-
|
|
5194
|
-
${({ noBorders }) => noBorders && css `
|
|
5195
|
-
${ContainerWrapper} {
|
|
5196
|
-
box-shadow: none;
|
|
5197
|
-
padding: 0;
|
|
5198
|
-
}
|
|
5199
|
-
`}
|
|
5200
|
-
`;
|
|
5201
|
-
const ContainerWrapper = styled(Flex) `
|
|
5202
|
-
position: relative;
|
|
5203
|
-
box-sizing: border-box;
|
|
5204
|
-
width: 100%;
|
|
5205
|
-
background: ${({ theme: { palette } }) => palette.backgroundAlpha};
|
|
5206
|
-
box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
|
|
5207
|
-
margin-bottom: 2rem;
|
|
5208
|
-
padding: 1.5rem;
|
|
5209
|
-
border-radius: 0.5rem;
|
|
5210
|
-
backdrop-filter: blur(20px);
|
|
5211
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
5212
|
-
z-index: ${({ $zIndex }) => $zIndex ?? 1};
|
|
5213
|
-
transition: background-color ${transition.toggle};
|
|
5214
|
-
|
|
5215
|
-
${({ $noMargin }) => $noMargin && css `
|
|
5216
|
-
&&&& {
|
|
5217
|
-
margin-bottom: 0;
|
|
5218
|
-
}
|
|
5219
|
-
`}
|
|
5220
|
-
`;
|
|
5221
|
-
const DashboardChip = styled(Chip) `
|
|
5222
|
-
margin: 0 0.25rem 0.25rem 0;
|
|
5223
|
-
background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
|
|
5224
|
-
border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
|
|
5225
|
-
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
5226
|
-
color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
|
|
5227
|
-
|
|
5228
|
-
> * {
|
|
5229
|
-
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
5230
|
-
color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
|
|
5231
|
-
}
|
|
5232
|
-
|
|
5233
|
-
span[kind]:after {
|
|
5234
|
-
color: ${({ $isDefault, $fontColor, theme: { palette } }) => ($isDefault ? palette.icon : $fontColor || "#fff")};
|
|
5235
|
-
}
|
|
5190
|
+
css `
|
|
5191
|
+
&&&& {
|
|
5192
|
+
margin-bottom: 0.75rem;
|
|
5193
|
+
}
|
|
5194
|
+
`}
|
|
5195
|
+
|
|
5196
|
+
${({ noBorders }) => noBorders && css `
|
|
5197
|
+
${ContainerWrapper} {
|
|
5198
|
+
box-shadow: none;
|
|
5199
|
+
padding: 0;
|
|
5200
|
+
}
|
|
5201
|
+
`}
|
|
5202
|
+
`;
|
|
5203
|
+
const ContainerWrapper = styled(Flex) `
|
|
5204
|
+
position: relative;
|
|
5205
|
+
box-sizing: border-box;
|
|
5206
|
+
width: 100%;
|
|
5207
|
+
background: ${({ theme: { palette } }) => palette.backgroundAlpha};
|
|
5208
|
+
box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
|
|
5209
|
+
margin-bottom: 2rem;
|
|
5210
|
+
padding: 1.5rem;
|
|
5211
|
+
border-radius: 0.5rem;
|
|
5212
|
+
backdrop-filter: blur(20px);
|
|
5213
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
5214
|
+
z-index: ${({ $zIndex }) => $zIndex ?? 1};
|
|
5215
|
+
transition: background-color ${transition.toggle};
|
|
5216
|
+
|
|
5217
|
+
${({ $noMargin }) => $noMargin && css `
|
|
5218
|
+
&&&& {
|
|
5219
|
+
margin-bottom: 0;
|
|
5220
|
+
}
|
|
5221
|
+
`}
|
|
5222
|
+
`;
|
|
5223
|
+
const DashboardChip = styled(Chip) `
|
|
5224
|
+
margin: 0 0.25rem 0.25rem 0;
|
|
5225
|
+
background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
|
|
5226
|
+
border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
|
|
5227
|
+
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
5228
|
+
color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
|
|
5229
|
+
|
|
5230
|
+
> * {
|
|
5231
|
+
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
5232
|
+
color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
|
|
5233
|
+
}
|
|
5234
|
+
|
|
5235
|
+
span[kind]:after {
|
|
5236
|
+
color: ${({ $isDefault, $fontColor, theme: { palette } }) => ($isDefault ? palette.icon : $fontColor || "#fff")};
|
|
5237
|
+
}
|
|
5236
5238
|
`;
|
|
5237
|
-
const DashboardPlaceholderWrap = styled(Flex) `
|
|
5238
|
-
flex-grow: 1;
|
|
5239
|
-
flex-direction: column;
|
|
5240
|
-
justify-content: center;
|
|
5241
|
-
align-items: center;
|
|
5242
|
-
width: 100%;
|
|
5243
|
-
margin-bottom: 2rem;
|
|
5244
|
-
`;
|
|
5245
|
-
const DashboardPlaceholder = styled(Flex) `
|
|
5246
|
-
flex-direction: column;
|
|
5247
|
-
justify-content: center;
|
|
5248
|
-
align-items: center;
|
|
5249
|
-
margin-top: 2rem;
|
|
5250
|
-
|
|
5239
|
+
const DashboardPlaceholderWrap = styled(Flex) `
|
|
5240
|
+
flex-grow: 1;
|
|
5241
|
+
flex-direction: column;
|
|
5242
|
+
justify-content: center;
|
|
5243
|
+
align-items: center;
|
|
5244
|
+
width: 100%;
|
|
5245
|
+
margin-bottom: 2rem;
|
|
5246
|
+
`;
|
|
5247
|
+
const DashboardPlaceholder = styled(Flex) `
|
|
5248
|
+
flex-direction: column;
|
|
5249
|
+
justify-content: center;
|
|
5250
|
+
align-items: center;
|
|
5251
|
+
margin-top: 2rem;
|
|
5252
|
+
|
|
5251
5253
|
${({ isLoading }) => isLoading &&
|
|
5252
|
-
css `
|
|
5253
|
-
width: 6.25rem;
|
|
5254
|
-
`}
|
|
5255
|
-
|
|
5256
|
-
&&& > * {
|
|
5257
|
-
margin-bottom: 0;
|
|
5258
|
-
}
|
|
5259
|
-
|
|
5260
|
-
> div {
|
|
5261
|
-
width: 100%;
|
|
5262
|
-
margin-top: 1rem;
|
|
5263
|
-
font-size: 0.75rem;
|
|
5264
|
-
text-align: center;
|
|
5265
|
-
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
5266
|
-
}
|
|
5267
|
-
|
|
5268
|
-
span[kind] {
|
|
5269
|
-
width: 2.25rem;
|
|
5270
|
-
height: 2.25rem;
|
|
5271
|
-
opacity: 0.28;
|
|
5272
|
-
|
|
5273
|
-
:after {
|
|
5274
|
-
font-size: 32px;
|
|
5275
|
-
}
|
|
5276
|
-
}
|
|
5254
|
+
css `
|
|
5255
|
+
width: 6.25rem;
|
|
5256
|
+
`}
|
|
5257
|
+
|
|
5258
|
+
&&& > * {
|
|
5259
|
+
margin-bottom: 0;
|
|
5260
|
+
}
|
|
5261
|
+
|
|
5262
|
+
> div {
|
|
5263
|
+
width: 100%;
|
|
5264
|
+
margin-top: 1rem;
|
|
5265
|
+
font-size: 0.75rem;
|
|
5266
|
+
text-align: center;
|
|
5267
|
+
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
5268
|
+
}
|
|
5269
|
+
|
|
5270
|
+
span[kind] {
|
|
5271
|
+
width: 2.25rem;
|
|
5272
|
+
height: 2.25rem;
|
|
5273
|
+
opacity: 0.28;
|
|
5274
|
+
|
|
5275
|
+
:after {
|
|
5276
|
+
font-size: 32px;
|
|
5277
|
+
}
|
|
5278
|
+
}
|
|
5277
5279
|
`;
|
|
5278
|
-
const DashboardWrapper = styled(Flex) `
|
|
5279
|
-
flex-direction: column;
|
|
5280
|
-
flex-wrap: nowrap;
|
|
5281
|
-
flex-grow: 1;
|
|
5282
|
-
width: calc(100% - 3rem);
|
|
5283
|
-
height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
|
|
5284
|
-
|
|
5280
|
+
const DashboardWrapper = styled(Flex) `
|
|
5281
|
+
flex-direction: column;
|
|
5282
|
+
flex-wrap: nowrap;
|
|
5283
|
+
flex-grow: 1;
|
|
5284
|
+
width: calc(100% - 3rem);
|
|
5285
|
+
height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
|
|
5286
|
+
|
|
5285
5287
|
${({ hasImage, isPresentationMode }) => hasImage &&
|
|
5286
5288
|
!isPresentationMode &&
|
|
5287
|
-
css `
|
|
5288
|
-
margin-top: -0.35rem;
|
|
5289
|
-
`}
|
|
5290
|
-
`;
|
|
5291
|
-
const DashboardContent = styled(Flex) `
|
|
5292
|
-
flex-grow: 1;
|
|
5293
|
-
width: 100%;
|
|
5294
|
-
padding: 1.5rem 1.5rem 2rem;
|
|
5295
|
-
overflow-y: auto;
|
|
5296
|
-
scrollbar-gutter: stable;
|
|
5297
|
-
`;
|
|
5298
|
-
const PresentationWrapperCss = css `
|
|
5299
|
-
margin-bottom: 0.75rem;
|
|
5300
|
-
padding: 1.5rem;
|
|
5301
|
-
background-color: ${({ theme: { palette } }) => palette.panelBackground};
|
|
5302
|
-
backdrop-filter: blur(10px);
|
|
5303
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
5304
|
-
box-shadow: ${shadows.raised};
|
|
5305
|
-
`;
|
|
5306
|
-
const PresentationWrapper = styled.div `
|
|
5307
|
-
${PresentationWrapperCss};
|
|
5308
|
-
position: relative;
|
|
5309
|
-
z-index: 1;
|
|
5310
|
-
`;
|
|
5311
|
-
const PresentationPanelWrapper = styled(PresentationWrapper) `
|
|
5312
|
-
margin-top: 0.75rem;
|
|
5313
|
-
transition: background-color ${transition.toggle};
|
|
5314
|
-
`;
|
|
5315
|
-
const PresentationHeader = styled.div `
|
|
5316
|
-
margin: -1.5rem -1.5rem 0 -1.5rem;
|
|
5317
|
-
padding: 1.5rem;
|
|
5318
|
-
// background: url(images.presentationHeader) 0 0 no-repeat;
|
|
5319
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
5320
|
-
transition: background-color ${transition.toggle};
|
|
5321
|
-
|
|
5289
|
+
css `
|
|
5290
|
+
margin-top: -0.35rem;
|
|
5291
|
+
`}
|
|
5292
|
+
`;
|
|
5293
|
+
const DashboardContent = styled(Flex) `
|
|
5294
|
+
flex-grow: 1;
|
|
5295
|
+
width: 100%;
|
|
5296
|
+
padding: 1.5rem 1.5rem 2rem;
|
|
5297
|
+
overflow-y: auto;
|
|
5298
|
+
scrollbar-gutter: stable;
|
|
5299
|
+
`;
|
|
5300
|
+
const PresentationWrapperCss = css `
|
|
5301
|
+
margin-bottom: 0.75rem;
|
|
5302
|
+
padding: 1.5rem;
|
|
5303
|
+
background-color: ${({ theme: { palette } }) => palette.panelBackground};
|
|
5304
|
+
backdrop-filter: blur(10px);
|
|
5305
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
5306
|
+
box-shadow: ${shadows.raised};
|
|
5307
|
+
`;
|
|
5308
|
+
const PresentationWrapper = styled.div `
|
|
5309
|
+
${PresentationWrapperCss};
|
|
5310
|
+
position: relative;
|
|
5311
|
+
z-index: 1;
|
|
5312
|
+
`;
|
|
5313
|
+
const PresentationPanelWrapper = styled(PresentationWrapper) `
|
|
5314
|
+
margin-top: 0.75rem;
|
|
5315
|
+
transition: background-color ${transition.toggle};
|
|
5316
|
+
`;
|
|
5317
|
+
const PresentationHeader = styled.div `
|
|
5318
|
+
margin: -1.5rem -1.5rem 0 -1.5rem;
|
|
5319
|
+
padding: 1.5rem;
|
|
5320
|
+
// background: url(images.presentationHeader) 0 0 no-repeat;
|
|
5321
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
5322
|
+
transition: background-color ${transition.toggle};
|
|
5323
|
+
|
|
5322
5324
|
${({ image }) => !!image &&
|
|
5323
|
-
css `
|
|
5324
|
-
padding-top: 7rem;
|
|
5325
|
-
`};
|
|
5326
|
-
`;
|
|
5327
|
-
const PresentationHeaderTools = styled(Flex) `
|
|
5328
|
-
justify-content: space-between;
|
|
5329
|
-
align-items: center;
|
|
5330
|
-
margin-bottom: -0.5rem;
|
|
5331
|
-
margin-right: -0.5rem;
|
|
5332
|
-
|
|
5333
|
-
span[kind="sun"],
|
|
5334
|
-
span[kind="moon"] {
|
|
5335
|
-
:after {
|
|
5336
|
-
font-size: 0.85rem;
|
|
5337
|
-
color: ${({ theme: { palette } }) => palette.iconDisabled};
|
|
5338
|
-
}
|
|
5339
|
-
|
|
5340
|
-
:hover:after {
|
|
5341
|
-
color: ${({ theme: { palette } }) => palette.icon};
|
|
5342
|
-
}
|
|
5343
|
-
}
|
|
5325
|
+
css `
|
|
5326
|
+
padding-top: 7rem;
|
|
5327
|
+
`};
|
|
5344
5328
|
`;
|
|
5345
|
-
const
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5329
|
+
const PresentationHeaderTools = styled(Flex) `
|
|
5330
|
+
justify-content: space-between;
|
|
5331
|
+
align-items: center;
|
|
5332
|
+
margin-bottom: -0.5rem;
|
|
5333
|
+
margin-right: -0.5rem;
|
|
5334
|
+
|
|
5335
|
+
span[kind="sun"],
|
|
5336
|
+
span[kind="moon"] {
|
|
5337
|
+
:after {
|
|
5338
|
+
font-size: 0.85rem;
|
|
5339
|
+
color: ${({ theme: { palette } }) => palette.iconDisabled};
|
|
5340
|
+
}
|
|
5341
|
+
|
|
5342
|
+
:hover:after {
|
|
5343
|
+
color: ${({ theme: { palette } }) => palette.icon};
|
|
5344
|
+
}
|
|
5345
|
+
}
|
|
5346
|
+
`;
|
|
5347
|
+
const LayerGroupList = styled(Flex) `
|
|
5348
|
+
flex-direction: column;
|
|
5349
|
+
height: 100%;
|
|
5350
|
+
flex-wrap: nowrap;
|
|
5351
|
+
overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
|
|
5352
|
+
overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
|
|
5353
|
+
padding: 0 0.125rem 0 0.75rem;
|
|
5354
|
+
scrollbar-gutter: stable;
|
|
5355
|
+
|
|
5356
|
+
> * {
|
|
5357
|
+
flex-grow: 1;
|
|
5358
|
+
}
|
|
5357
5359
|
`;
|
|
5358
5360
|
const PresentationHeaderButtons = styled(Flex) ``;
|
|
5359
|
-
const PresentationPanelContainer = styled.div `
|
|
5360
|
-
position: absolute;
|
|
5361
|
-
top: 0;
|
|
5362
|
-
left: calc(${({ left }) => left || 0}px + 0.75rem);
|
|
5363
|
-
bottom: 0;
|
|
5364
|
-
z-index: 3;
|
|
5365
|
-
display: flex;
|
|
5366
|
-
flex-direction: column;
|
|
5367
|
-
width: ${LEFT_PANEL_HEADER_HEIGHT}px;
|
|
5368
|
-
padding-right: 0.5rem;
|
|
5369
|
-
scrollbar-gutter: stable;
|
|
5370
|
-
overflow-y: hidden;
|
|
5371
|
-
|
|
5372
|
-
:hover {
|
|
5373
|
-
overflow-y: auto;
|
|
5374
|
-
}
|
|
5375
|
-
|
|
5361
|
+
const PresentationPanelContainer = styled.div `
|
|
5362
|
+
position: absolute;
|
|
5363
|
+
top: 0;
|
|
5364
|
+
left: calc(${({ left }) => left || 0}px + 0.75rem);
|
|
5365
|
+
bottom: 0;
|
|
5366
|
+
z-index: 3;
|
|
5367
|
+
display: flex;
|
|
5368
|
+
flex-direction: column;
|
|
5369
|
+
width: ${LEFT_PANEL_HEADER_HEIGHT}px;
|
|
5370
|
+
padding-right: 0.5rem;
|
|
5371
|
+
scrollbar-gutter: stable;
|
|
5372
|
+
overflow-y: hidden;
|
|
5373
|
+
|
|
5374
|
+
:hover {
|
|
5375
|
+
overflow-y: auto;
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5376
5378
|
${({ showLayers }) => !showLayers &&
|
|
5377
|
-
css `
|
|
5378
|
-
> :first-child {
|
|
5379
|
-
padding-bottom: 0;
|
|
5380
|
-
}
|
|
5381
|
-
`};
|
|
5382
|
-
|
|
5383
|
-
${PresentationHeader} > * {
|
|
5384
|
-
position: relative;
|
|
5385
|
-
z-index: 2;
|
|
5386
|
-
}
|
|
5387
|
-
|
|
5388
|
-
/* PaginationWrapper {
|
|
5389
|
-
${PresentationWrapperCss};
|
|
5390
|
-
width: calc(100% - 2rem);
|
|
5391
|
-
min-height: 8.625rem;
|
|
5392
|
-
padding-top: 0.5rem;
|
|
5393
|
-
padding-bottom: 0.5rem;
|
|
5394
|
-
margin-bottom: 0.75rem;
|
|
5395
|
-
}*/
|
|
5396
|
-
|
|
5397
|
-
${DashboardWrapper} {
|
|
5398
|
-
width: 100%;
|
|
5399
|
-
margin-top: 0;
|
|
5400
|
-
|
|
5401
|
-
${DashboardContent} {
|
|
5402
|
-
padding: 0;
|
|
5403
|
-
overflow-y: unset;
|
|
5404
|
-
|
|
5405
|
-
> * > ${ContainerWrapper} > * > ${ContainerWrapper} {
|
|
5406
|
-
${PresentationWrapperCss};
|
|
5407
|
-
width: calc(100% - 3rem);
|
|
5408
|
-
}
|
|
5409
|
-
}
|
|
5410
|
-
}
|
|
5411
|
-
|
|
5412
|
-
${DashboardPlaceholder} {
|
|
5413
|
-
${PresentationWrapperCss};
|
|
5414
|
-
width: 18.5rem;
|
|
5415
|
-
height: 10.75rem;
|
|
5416
|
-
}
|
|
5417
|
-
|
|
5418
|
-
${LayerListContainer} {
|
|
5419
|
-
height: auto;
|
|
5420
|
-
margin: 0 -1.125rem -1.5rem;
|
|
5421
|
-
padding: 0;
|
|
5422
|
-
|
|
5423
|
-
${LayerGroupList} {
|
|
5424
|
-
padding: 0;
|
|
5425
|
-
}
|
|
5426
|
-
}
|
|
5379
|
+
css `
|
|
5380
|
+
> :first-child {
|
|
5381
|
+
padding-bottom: 0;
|
|
5382
|
+
}
|
|
5383
|
+
`};
|
|
5384
|
+
|
|
5385
|
+
${PresentationHeader} > * {
|
|
5386
|
+
position: relative;
|
|
5387
|
+
z-index: 2;
|
|
5388
|
+
}
|
|
5389
|
+
|
|
5390
|
+
/* PaginationWrapper {
|
|
5391
|
+
${PresentationWrapperCss};
|
|
5392
|
+
width: calc(100% - 2rem);
|
|
5393
|
+
min-height: 8.625rem;
|
|
5394
|
+
padding-top: 0.5rem;
|
|
5395
|
+
padding-bottom: 0.5rem;
|
|
5396
|
+
margin-bottom: 0.75rem;
|
|
5397
|
+
}*/
|
|
5398
|
+
|
|
5399
|
+
${DashboardWrapper} {
|
|
5400
|
+
width: 100%;
|
|
5401
|
+
margin-top: 0;
|
|
5402
|
+
|
|
5403
|
+
${DashboardContent} {
|
|
5404
|
+
padding: 0;
|
|
5405
|
+
overflow-y: unset;
|
|
5406
|
+
|
|
5407
|
+
> * > ${ContainerWrapper} > * > ${ContainerWrapper} {
|
|
5408
|
+
${PresentationWrapperCss};
|
|
5409
|
+
width: calc(100% - 3rem);
|
|
5410
|
+
}
|
|
5411
|
+
}
|
|
5412
|
+
}
|
|
5413
|
+
|
|
5414
|
+
${DashboardPlaceholder} {
|
|
5415
|
+
${PresentationWrapperCss};
|
|
5416
|
+
width: 18.5rem;
|
|
5417
|
+
height: 10.75rem;
|
|
5418
|
+
}
|
|
5419
|
+
|
|
5420
|
+
${LayerListContainer} {
|
|
5421
|
+
height: auto;
|
|
5422
|
+
margin: 0 -1.125rem -1.5rem;
|
|
5423
|
+
padding: 0;
|
|
5424
|
+
|
|
5425
|
+
${LayerGroupList} {
|
|
5426
|
+
padding: 0;
|
|
5427
|
+
}
|
|
5428
|
+
}
|
|
5427
5429
|
`;
|
|
5428
|
-
const DataSourceErrorContainer = styled(Flex) `
|
|
5429
|
-
align-items: center;
|
|
5430
|
-
justify-content: center;
|
|
5431
|
-
flex-wrap: nowrap;
|
|
5432
|
-
flex-grow: 1;
|
|
5433
|
-
padding: 1rem;
|
|
5434
|
-
border: 1px ${({ theme: { palette } }) => palette.element} solid;
|
|
5435
|
-
border-radius: 10px;
|
|
5436
|
-
font-size: 0.875rem;
|
|
5437
|
-
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
5438
|
-
|
|
5439
|
-
span[kind] {
|
|
5440
|
-
margin-right: 1rem;
|
|
5441
|
-
|
|
5442
|
-
:after {
|
|
5443
|
-
color: ${({ theme: { palette } }) => palette.iconDisabled};
|
|
5444
|
-
}
|
|
5445
|
-
}
|
|
5430
|
+
const DataSourceErrorContainer = styled(Flex) `
|
|
5431
|
+
align-items: center;
|
|
5432
|
+
justify-content: center;
|
|
5433
|
+
flex-wrap: nowrap;
|
|
5434
|
+
flex-grow: 1;
|
|
5435
|
+
padding: 1rem;
|
|
5436
|
+
border: 1px ${({ theme: { palette } }) => palette.element} solid;
|
|
5437
|
+
border-radius: 10px;
|
|
5438
|
+
font-size: 0.875rem;
|
|
5439
|
+
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
5440
|
+
|
|
5441
|
+
span[kind] {
|
|
5442
|
+
margin-right: 1rem;
|
|
5443
|
+
|
|
5444
|
+
:after {
|
|
5445
|
+
color: ${({ theme: { palette } }) => palette.iconDisabled};
|
|
5446
|
+
}
|
|
5447
|
+
}
|
|
5446
5448
|
`;
|
|
5447
|
-
const AttributeLabel = styled(Description) `
|
|
5448
|
-
margin-top: 0 !important;
|
|
5449
|
-
margin-bottom: ${({ forCheckbox }) => (forCheckbox ? "0.75rem" : "0.25rem")} !important;
|
|
5450
|
-
padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
|
|
5451
|
-
`;
|
|
5452
|
-
const FeatureControls = styled(Flex) `
|
|
5453
|
-
align-items: center;
|
|
5454
|
-
gap: 1rem;
|
|
5455
|
-
flex-wrap: nowrap;
|
|
5456
|
-
position: relative;
|
|
5457
|
-
flex-shrink: 0;
|
|
5458
|
-
|
|
5459
|
-
button {
|
|
5460
|
-
padding: 0;
|
|
5461
|
-
width: auto;
|
|
5462
|
-
}
|
|
5449
|
+
const AttributeLabel = styled(Description) `
|
|
5450
|
+
margin-top: 0 !important;
|
|
5451
|
+
margin-bottom: ${({ forCheckbox }) => (forCheckbox ? "0.75rem" : "0.25rem")} !important;
|
|
5452
|
+
padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
|
|
5453
|
+
`;
|
|
5454
|
+
const FeatureControls = styled(Flex) `
|
|
5455
|
+
align-items: center;
|
|
5456
|
+
gap: 1rem;
|
|
5457
|
+
flex-wrap: nowrap;
|
|
5458
|
+
position: relative;
|
|
5459
|
+
flex-shrink: 0;
|
|
5460
|
+
|
|
5461
|
+
button {
|
|
5462
|
+
padding: 0;
|
|
5463
|
+
width: auto;
|
|
5464
|
+
}
|
|
5463
5465
|
`;
|
|
5464
5466
|
|
|
5465
5467
|
const getAttributeByName = (attributeName, attributes) => {
|
|
@@ -5540,148 +5542,148 @@ const ContainersGroupContainer = memo(({ elementConfig, type, renderElement }) =
|
|
|
5540
5542
|
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 }) }))] }));
|
|
5541
5543
|
});
|
|
5542
5544
|
|
|
5543
|
-
const ChartLegendContainer = styled(Flex) `
|
|
5544
|
-
flex-direction: column;
|
|
5545
|
-
flex-wrap: wrap;
|
|
5546
|
-
justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
|
|
5547
|
-
`;
|
|
5548
|
-
const ChartLegendItem = styled(Flex) `
|
|
5549
|
-
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
5550
|
-
align-items: center;
|
|
5551
|
-
flex-wrap: nowrap;
|
|
5552
|
-
width: auto;
|
|
5553
|
-
margin-right: 0.375rem;
|
|
5554
|
-
margin-bottom: 0.25rem;
|
|
5555
|
-
line-height: 0.75rem;
|
|
5556
|
-
opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
|
|
5557
|
-
`;
|
|
5558
|
-
const ChartLegendColor = styled.div `
|
|
5559
|
-
width: 0.5rem;
|
|
5560
|
-
height: 0.5rem;
|
|
5561
|
-
margin-right: 0.375rem;
|
|
5562
|
-
background-color: ${({ color }) => color};
|
|
5563
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
|
|
5564
|
-
`;
|
|
5565
|
-
const ChartLegendName = styled.div `
|
|
5566
|
-
flex: 1;
|
|
5567
|
-
font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
|
|
5568
|
-
color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
|
|
5569
|
-
`;
|
|
5545
|
+
const ChartLegendContainer = styled(Flex) `
|
|
5546
|
+
flex-direction: column;
|
|
5547
|
+
flex-wrap: wrap;
|
|
5548
|
+
justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
|
|
5549
|
+
`;
|
|
5550
|
+
const ChartLegendItem = styled(Flex) `
|
|
5551
|
+
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
5552
|
+
align-items: center;
|
|
5553
|
+
flex-wrap: nowrap;
|
|
5554
|
+
width: auto;
|
|
5555
|
+
margin-right: 0.375rem;
|
|
5556
|
+
margin-bottom: 0.25rem;
|
|
5557
|
+
line-height: 0.75rem;
|
|
5558
|
+
opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
|
|
5559
|
+
`;
|
|
5560
|
+
const ChartLegendColor = styled.div `
|
|
5561
|
+
width: 0.5rem;
|
|
5562
|
+
height: 0.5rem;
|
|
5563
|
+
margin-right: 0.375rem;
|
|
5564
|
+
background-color: ${({ color }) => color};
|
|
5565
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
|
|
5566
|
+
`;
|
|
5567
|
+
const ChartLegendName = styled.div `
|
|
5568
|
+
flex: 1;
|
|
5569
|
+
font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
|
|
5570
|
+
color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
|
|
5571
|
+
`;
|
|
5572
|
+
|
|
5573
|
+
const ContainerAlias = styled(Flex) `
|
|
5574
|
+
align-items: center;
|
|
5575
|
+
flex-wrap: nowrap;
|
|
5576
|
+
font-size: 0.75rem;
|
|
5577
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
5578
|
+
|
|
5579
|
+
&&& {
|
|
5580
|
+
margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
|
|
5581
|
+
}
|
|
5582
|
+
|
|
5583
|
+
span[kind] {
|
|
5584
|
+
margin-right: 0.5rem;
|
|
5570
5585
|
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
5576
|
-
|
|
5577
|
-
&&& {
|
|
5578
|
-
margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
|
|
5579
|
-
}
|
|
5580
|
-
|
|
5581
|
-
span[kind] {
|
|
5582
|
-
margin-right: 0.5rem;
|
|
5583
|
-
|
|
5584
|
-
:after {
|
|
5585
|
-
color: ${({ theme: { palette } }) => palette.primary};
|
|
5586
|
-
}
|
|
5587
|
-
}
|
|
5586
|
+
:after {
|
|
5587
|
+
color: ${({ theme: { palette } }) => palette.primary};
|
|
5588
|
+
}
|
|
5589
|
+
}
|
|
5588
5590
|
`;
|
|
5589
|
-
const ContainerAliasIcon = styled.div `
|
|
5590
|
-
margin-right: 0.5rem;
|
|
5591
|
+
const ContainerAliasIcon = styled.div `
|
|
5592
|
+
margin-right: 0.5rem;
|
|
5591
5593
|
`;
|
|
5592
|
-
const ContainerChart = styled(Flex) `
|
|
5593
|
-
justify-content: flex-start;
|
|
5594
|
-
|
|
5595
|
-
> * {
|
|
5596
|
-
display: flex;
|
|
5597
|
-
justify-content: center;
|
|
5598
|
-
width: 100%;
|
|
5599
|
-
}
|
|
5594
|
+
const ContainerChart = styled(Flex) `
|
|
5595
|
+
justify-content: flex-start;
|
|
5596
|
+
|
|
5597
|
+
> * {
|
|
5598
|
+
display: flex;
|
|
5599
|
+
justify-content: center;
|
|
5600
|
+
width: 100%;
|
|
5601
|
+
}
|
|
5600
5602
|
`;
|
|
5601
5603
|
const ContainerLegend = styled(Flex) ``;
|
|
5602
|
-
const ContainerUnits = styled.div `
|
|
5603
|
-
margin-left: 0.5rem;
|
|
5604
|
-
white-space: nowrap;
|
|
5605
|
-
font-size: 0.75rem;
|
|
5606
|
-
`;
|
|
5607
|
-
const ContainerValue = styled(Flex) `
|
|
5608
|
-
justify-content: flex-end;
|
|
5609
|
-
align-items: center;
|
|
5610
|
-
flex-wrap: nowrap;
|
|
5611
|
-
width: 100%;
|
|
5612
|
-
font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
|
|
5613
|
-
color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
|
|
5614
|
-
|
|
5615
|
-
> * {
|
|
5616
|
-
width: ${({ column }) => (column ? "100%" : "auto")};
|
|
5617
|
-
}
|
|
5618
|
-
|
|
5619
|
-
${ContainerChart}, ${ContainerLegend} {
|
|
5620
|
-
width: ${({ column }) => (column ? "100%" : "50%")};
|
|
5621
|
-
}
|
|
5622
|
-
|
|
5623
|
-
${ContainerLegend} {
|
|
5624
|
-
margin-left: ${({ column }) => (column ? 0 : "1rem")};
|
|
5625
|
-
}
|
|
5626
|
-
|
|
5627
|
-
${ChartLegendContainer} {
|
|
5628
|
-
flex-direction: ${({ column }) => (column ? "row" : "column")};
|
|
5629
|
-
margin-top: ${({ column }) => (column ? "1rem" : 0)};
|
|
5630
|
-
}
|
|
5604
|
+
const ContainerUnits = styled.div `
|
|
5605
|
+
margin-left: 0.5rem;
|
|
5606
|
+
white-space: nowrap;
|
|
5607
|
+
font-size: 0.75rem;
|
|
5608
|
+
`;
|
|
5609
|
+
const ContainerValue = styled(Flex) `
|
|
5610
|
+
justify-content: flex-end;
|
|
5611
|
+
align-items: center;
|
|
5612
|
+
flex-wrap: nowrap;
|
|
5613
|
+
width: 100%;
|
|
5614
|
+
font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
|
|
5615
|
+
color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
|
|
5616
|
+
|
|
5617
|
+
> * {
|
|
5618
|
+
width: ${({ column }) => (column ? "100%" : "auto")};
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5621
|
+
${ContainerChart}, ${ContainerLegend} {
|
|
5622
|
+
width: ${({ column }) => (column ? "100%" : "50%")};
|
|
5623
|
+
}
|
|
5624
|
+
|
|
5625
|
+
${ContainerLegend} {
|
|
5626
|
+
margin-left: ${({ column }) => (column ? 0 : "1rem")};
|
|
5627
|
+
}
|
|
5628
|
+
|
|
5629
|
+
${ChartLegendContainer} {
|
|
5630
|
+
flex-direction: ${({ column }) => (column ? "row" : "column")};
|
|
5631
|
+
margin-top: ${({ column }) => (column ? "1rem" : 0)};
|
|
5632
|
+
}
|
|
5631
5633
|
`;
|
|
5632
|
-
const ColorIconMixin = css `
|
|
5633
|
-
:after {
|
|
5634
|
-
color: ${({ $fontColor }) => $fontColor} !important;
|
|
5635
|
-
}
|
|
5634
|
+
const ColorIconMixin = css `
|
|
5635
|
+
:after {
|
|
5636
|
+
color: ${({ $fontColor }) => $fontColor} !important;
|
|
5637
|
+
}
|
|
5636
5638
|
`;
|
|
5637
|
-
const SizeIconMixin = css `
|
|
5638
|
-
:after {
|
|
5639
|
-
font-size: ${({ $fontSize }) => $fontSize}px !important;
|
|
5640
|
-
}
|
|
5639
|
+
const SizeIconMixin = css `
|
|
5640
|
+
:after {
|
|
5641
|
+
font-size: ${({ $fontSize }) => $fontSize}px !important;
|
|
5642
|
+
}
|
|
5641
5643
|
`;
|
|
5642
|
-
const ContainerIcon = styled(Icon) `
|
|
5643
|
-
width: auto;
|
|
5644
|
-
height: auto;
|
|
5645
|
-
margin-bottom: 0.5rem;
|
|
5646
|
-
${({ $fontColor }) => !!$fontColor && ColorIconMixin};
|
|
5647
|
-
${({ $fontSize }) => !!$fontSize && SizeIconMixin};
|
|
5648
|
-
`;
|
|
5649
|
-
const SvgContainerColorMixin$1 = css `
|
|
5650
|
-
path,
|
|
5651
|
-
line,
|
|
5652
|
-
circle {
|
|
5653
|
-
fill: ${({ $fontColor }) => $fontColor};
|
|
5654
|
-
}
|
|
5644
|
+
const ContainerIcon = styled(Icon) `
|
|
5645
|
+
width: auto;
|
|
5646
|
+
height: auto;
|
|
5647
|
+
margin-bottom: 0.5rem;
|
|
5648
|
+
${({ $fontColor }) => !!$fontColor && ColorIconMixin};
|
|
5649
|
+
${({ $fontSize }) => !!$fontSize && SizeIconMixin};
|
|
5650
|
+
`;
|
|
5651
|
+
const SvgContainerColorMixin$1 = css `
|
|
5652
|
+
path,
|
|
5653
|
+
line,
|
|
5654
|
+
circle {
|
|
5655
|
+
fill: ${({ $fontColor }) => $fontColor};
|
|
5656
|
+
}
|
|
5655
5657
|
`;
|
|
5656
|
-
const SvgContainer$1 = styled.div `
|
|
5657
|
-
&&& {
|
|
5658
|
-
min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
5659
|
-
max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
5660
|
-
|
|
5661
|
-
${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
|
|
5662
|
-
|
|
5663
|
-
> * {
|
|
5664
|
-
min-width: inherit;
|
|
5665
|
-
}
|
|
5666
|
-
}
|
|
5658
|
+
const SvgContainer$1 = styled.div `
|
|
5659
|
+
&&& {
|
|
5660
|
+
min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
5661
|
+
max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
5662
|
+
|
|
5663
|
+
${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
|
|
5664
|
+
|
|
5665
|
+
> * {
|
|
5666
|
+
min-width: inherit;
|
|
5667
|
+
}
|
|
5668
|
+
}
|
|
5667
5669
|
`;
|
|
5668
|
-
const TwoColumnContainerWrapper = styled(Flex) `
|
|
5669
|
-
width: 100%;
|
|
5670
|
-
flex-direction: row;
|
|
5671
|
-
flex-wrap: nowrap;
|
|
5672
|
-
align-items: center;
|
|
5673
|
-
|
|
5674
|
-
> * {
|
|
5675
|
-
flex: 1;
|
|
5676
|
-
}
|
|
5677
|
-
|
|
5678
|
-
> ${ContainerValue} {
|
|
5679
|
-
justify-content: flex-end;
|
|
5680
|
-
|
|
5681
|
-
> * {
|
|
5682
|
-
text-align: right;
|
|
5683
|
-
}
|
|
5684
|
-
}
|
|
5670
|
+
const TwoColumnContainerWrapper = styled(Flex) `
|
|
5671
|
+
width: 100%;
|
|
5672
|
+
flex-direction: row;
|
|
5673
|
+
flex-wrap: nowrap;
|
|
5674
|
+
align-items: center;
|
|
5675
|
+
|
|
5676
|
+
> * {
|
|
5677
|
+
flex: 1;
|
|
5678
|
+
}
|
|
5679
|
+
|
|
5680
|
+
> ${ContainerValue} {
|
|
5681
|
+
justify-content: flex-end;
|
|
5682
|
+
|
|
5683
|
+
> * {
|
|
5684
|
+
text-align: right;
|
|
5685
|
+
}
|
|
5686
|
+
}
|
|
5685
5687
|
`;
|
|
5686
5688
|
|
|
5687
5689
|
const OneColumnContainer = memo(({ elementConfig, renderElement }) => {
|
|
@@ -5742,10 +5744,10 @@ const TwoColumnContainer = memo(({ config, elementConfig, type, renderElement })
|
|
|
5742
5744
|
return renderAttributes?.length ? (jsx(Fragment$1, { children: renderAttributes.map(attribute => renderContainer(attribute)) })) : (renderContainer());
|
|
5743
5745
|
});
|
|
5744
5746
|
|
|
5745
|
-
const InnerContainerWrapper = styled.div `
|
|
5746
|
-
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
5747
|
-
width: ${({ column }) => (column ? "100%" : "auto")};
|
|
5748
|
-
opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
|
|
5747
|
+
const InnerContainerWrapper = styled.div `
|
|
5748
|
+
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
5749
|
+
width: ${({ column }) => (column ? "100%" : "auto")};
|
|
5750
|
+
opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
|
|
5749
5751
|
`;
|
|
5750
5752
|
|
|
5751
5753
|
const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValue, type, index, innerComponent }) => {
|
|
@@ -5816,107 +5818,107 @@ const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValu
|
|
|
5816
5818
|
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 }) }));
|
|
5817
5819
|
});
|
|
5818
5820
|
|
|
5819
|
-
const DataSourceProgressContainerWrapper = styled.div `
|
|
5820
|
-
width: 100%;
|
|
5821
|
+
const DataSourceProgressContainerWrapper = styled.div `
|
|
5822
|
+
width: 100%;
|
|
5821
5823
|
`;
|
|
5822
|
-
const ContainerToggler = styled(LegendToggler) `
|
|
5823
|
-
width: auto;
|
|
5824
|
-
margin-left: -1rem;
|
|
5824
|
+
const ContainerToggler = styled(LegendToggler) `
|
|
5825
|
+
width: auto;
|
|
5826
|
+
margin-left: -1rem;
|
|
5825
5827
|
`;
|
|
5826
5828
|
|
|
5827
|
-
const ProgressContainerWrapper = styled(Flex) `
|
|
5828
|
-
align-items: center;
|
|
5829
|
-
width: 100%;
|
|
5830
|
-
margin-bottom: 1rem;
|
|
5829
|
+
const ProgressContainerWrapper = styled(Flex) `
|
|
5830
|
+
align-items: center;
|
|
5831
|
+
width: 100%;
|
|
5832
|
+
margin-bottom: 1rem;
|
|
5831
5833
|
`;
|
|
5832
|
-
const ProgressIcon = styled.div `
|
|
5833
|
-
margin-right: 0.5rem;
|
|
5834
|
+
const ProgressIcon = styled.div `
|
|
5835
|
+
margin-right: 0.5rem;
|
|
5834
5836
|
`;
|
|
5835
|
-
const ProgressContent = styled(Flex) `
|
|
5836
|
-
flex: 1;
|
|
5837
|
-
flex-direction: column;
|
|
5837
|
+
const ProgressContent = styled(Flex) `
|
|
5838
|
+
flex: 1;
|
|
5839
|
+
flex-direction: column;
|
|
5838
5840
|
`;
|
|
5839
|
-
const ProgressAlias = styled(Flex) `
|
|
5840
|
-
flex: 1;
|
|
5841
|
-
justify-content: space-between;
|
|
5842
|
-
margin-bottom: 0.25rem;
|
|
5843
|
-
font-size: 0.75rem;
|
|
5844
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
5845
|
-
`;
|
|
5846
|
-
const ProgressValue = styled(Flex) `
|
|
5847
|
-
align-items: center;
|
|
5848
|
-
width: auto;
|
|
5849
|
-
font-size: 1rem;
|
|
5850
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
5851
|
-
`;
|
|
5852
|
-
const ProgressInnerValue = styled(ProgressValue) `
|
|
5853
|
-
justify-content: flex-end;
|
|
5854
|
-
width: 4rem;
|
|
5855
|
-
margin-left: 0.5rem;
|
|
5856
|
-
`;
|
|
5857
|
-
const ProgressUnits = styled(Flex) `
|
|
5858
|
-
margin-left: 0.25rem;
|
|
5859
|
-
font-size: 0.75rem;
|
|
5860
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
5861
|
-
`;
|
|
5862
|
-
const ProgressBarWrapper = styled.div `
|
|
5863
|
-
flex-grow: 1;
|
|
5864
|
-
height: 0.5rem;
|
|
5865
|
-
background-color: ${({ theme: { palette } }) => palette.element};
|
|
5866
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
|
|
5867
|
-
`;
|
|
5868
|
-
const ProgressBarContainer = styled(Flex) `
|
|
5869
|
-
position: relative;
|
|
5870
|
-
align-items: center;
|
|
5871
|
-
width: 100%;
|
|
5872
|
-
|
|
5841
|
+
const ProgressAlias = styled(Flex) `
|
|
5842
|
+
flex: 1;
|
|
5843
|
+
justify-content: space-between;
|
|
5844
|
+
margin-bottom: 0.25rem;
|
|
5845
|
+
font-size: 0.75rem;
|
|
5846
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
5847
|
+
`;
|
|
5848
|
+
const ProgressValue = styled(Flex) `
|
|
5849
|
+
align-items: center;
|
|
5850
|
+
width: auto;
|
|
5851
|
+
font-size: 1rem;
|
|
5852
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
5853
|
+
`;
|
|
5854
|
+
const ProgressInnerValue = styled(ProgressValue) `
|
|
5855
|
+
justify-content: flex-end;
|
|
5856
|
+
width: 4rem;
|
|
5857
|
+
margin-left: 0.5rem;
|
|
5858
|
+
`;
|
|
5859
|
+
const ProgressUnits = styled(Flex) `
|
|
5860
|
+
margin-left: 0.25rem;
|
|
5861
|
+
font-size: 0.75rem;
|
|
5862
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
5863
|
+
`;
|
|
5864
|
+
const ProgressBarWrapper = styled.div `
|
|
5865
|
+
flex-grow: 1;
|
|
5866
|
+
height: 0.5rem;
|
|
5867
|
+
background-color: ${({ theme: { palette } }) => palette.element};
|
|
5868
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
|
|
5869
|
+
`;
|
|
5870
|
+
const ProgressBarContainer = styled(Flex) `
|
|
5871
|
+
position: relative;
|
|
5872
|
+
align-items: center;
|
|
5873
|
+
width: 100%;
|
|
5874
|
+
|
|
5873
5875
|
${({ innerValue }) => innerValue &&
|
|
5874
|
-
css `
|
|
5875
|
-
${ProgressBarWrapper} {
|
|
5876
|
-
height: 1.125rem;
|
|
5877
|
-
}
|
|
5878
|
-
|
|
5879
|
-
${ProgressInnerValue} {
|
|
5880
|
-
z-index: 1;
|
|
5881
|
-
position: absolute;
|
|
5882
|
-
right: 0.25rem;
|
|
5883
|
-
}
|
|
5884
|
-
`}
|
|
5885
|
-
`;
|
|
5886
|
-
const ProgressBar = styled.div `
|
|
5887
|
-
width: ${({ $width }) => $width};
|
|
5888
|
-
height: inherit;
|
|
5889
|
-
background-color: ${({ $color }) => $color || "#a7d759"};
|
|
5890
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
|
|
5891
|
-
`;
|
|
5892
|
-
const ProgressTooltipAlias = styled.div `
|
|
5893
|
-
margin-bottom: 0.25rem;
|
|
5894
|
-
text-align: left;
|
|
5895
|
-
color: ${({ theme: { palette } }) => palette.primary};
|
|
5876
|
+
css `
|
|
5877
|
+
${ProgressBarWrapper} {
|
|
5878
|
+
height: 1.125rem;
|
|
5879
|
+
}
|
|
5880
|
+
|
|
5881
|
+
${ProgressInnerValue} {
|
|
5882
|
+
z-index: 1;
|
|
5883
|
+
position: absolute;
|
|
5884
|
+
right: 0.25rem;
|
|
5885
|
+
}
|
|
5886
|
+
`}
|
|
5887
|
+
`;
|
|
5888
|
+
const ProgressBar = styled.div `
|
|
5889
|
+
width: ${({ $width }) => $width};
|
|
5890
|
+
height: inherit;
|
|
5891
|
+
background-color: ${({ $color }) => $color || "#a7d759"};
|
|
5892
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
|
|
5893
|
+
`;
|
|
5894
|
+
const ProgressTooltipAlias = styled.div `
|
|
5895
|
+
margin-bottom: 0.25rem;
|
|
5896
|
+
text-align: left;
|
|
5897
|
+
color: ${({ theme: { palette } }) => palette.primary};
|
|
5896
5898
|
`;
|
|
5897
5899
|
const ProgressTooltipValue = styled.div ``;
|
|
5898
|
-
const ProgressTooltipValueContainer = styled(Flex) `
|
|
5899
|
-
align-items: center;
|
|
5900
|
-
|
|
5901
|
-
> * {
|
|
5902
|
-
opacity: 0.65;
|
|
5903
|
-
}
|
|
5904
|
-
|
|
5905
|
-
${ProgressTooltipValue} {
|
|
5906
|
-
opacity: 1;
|
|
5907
|
-
}
|
|
5900
|
+
const ProgressTooltipValueContainer = styled(Flex) `
|
|
5901
|
+
align-items: center;
|
|
5902
|
+
|
|
5903
|
+
> * {
|
|
5904
|
+
opacity: 0.65;
|
|
5905
|
+
}
|
|
5906
|
+
|
|
5907
|
+
${ProgressTooltipValue} {
|
|
5908
|
+
opacity: 1;
|
|
5909
|
+
}
|
|
5908
5910
|
`;
|
|
5909
|
-
const ProgressTooltipValueOf = styled.div `
|
|
5910
|
-
margin: 0 0.25rem;
|
|
5911
|
+
const ProgressTooltipValueOf = styled.div `
|
|
5912
|
+
margin: 0 0.25rem;
|
|
5911
5913
|
`;
|
|
5912
|
-
const ProgressTotalTitle = styled.div `
|
|
5913
|
-
font-size: 0.75rem;
|
|
5914
|
-
font-weight: bold;
|
|
5914
|
+
const ProgressTotalTitle = styled.div `
|
|
5915
|
+
font-size: 0.75rem;
|
|
5916
|
+
font-weight: bold;
|
|
5915
5917
|
`;
|
|
5916
|
-
const ProgressTotal = styled(Flex) `
|
|
5917
|
-
align-items: center;
|
|
5918
|
-
justify-content: space-between;
|
|
5919
|
-
margin-top: 1rem;
|
|
5918
|
+
const ProgressTotal = styled(Flex) `
|
|
5919
|
+
align-items: center;
|
|
5920
|
+
justify-content: space-between;
|
|
5921
|
+
margin-top: 1rem;
|
|
5920
5922
|
`;
|
|
5921
5923
|
|
|
5922
5924
|
const DataSourceProgressContainer = memo(({ config, elementConfig, type, innerComponent, renderElement }) => {
|
|
@@ -6013,166 +6015,166 @@ const DEFAULT_BAR_CHART_MARGINS = {
|
|
|
6013
6015
|
right: 0,
|
|
6014
6016
|
};
|
|
6015
6017
|
|
|
6016
|
-
const FiltersContainerWrapper = styled(Flex) `
|
|
6017
|
-
flex-direction: column;
|
|
6018
|
-
padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
|
|
6019
|
-
background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
|
|
6020
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6021
|
-
|
|
6022
|
-
${DropdownField}, input {
|
|
6023
|
-
background-color: ${({ theme: { palette } }) => palette.background};
|
|
6024
|
-
}
|
|
6025
|
-
|
|
6026
|
-
> div:not(:last-child) {
|
|
6027
|
-
margin-bottom: 0.5rem;
|
|
6028
|
-
}
|
|
6029
|
-
|
|
6030
|
-
> label {
|
|
6031
|
-
align-items: flex-start;
|
|
6032
|
-
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
6033
|
-
|
|
6034
|
-
&.active {
|
|
6035
|
-
color: ${({ $fontColor }) => $fontColor};
|
|
6036
|
-
|
|
6037
|
-
svg rect {
|
|
6038
|
-
fill: ${({ $fontColor }) => $fontColor} !important;
|
|
6039
|
-
}
|
|
6040
|
-
}
|
|
6041
|
-
|
|
6042
|
-
&:not(:last-child) {
|
|
6043
|
-
margin-bottom: 0.75rem;
|
|
6044
|
-
}
|
|
6045
|
-
|
|
6046
|
-
&:last-child {
|
|
6047
|
-
margin-bottom: 0;
|
|
6048
|
-
}
|
|
6049
|
-
}
|
|
6018
|
+
const FiltersContainerWrapper = styled(Flex) `
|
|
6019
|
+
flex-direction: column;
|
|
6020
|
+
padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
|
|
6021
|
+
background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
|
|
6022
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6023
|
+
|
|
6024
|
+
${DropdownField}, input {
|
|
6025
|
+
background-color: ${({ theme: { palette } }) => palette.background};
|
|
6026
|
+
}
|
|
6027
|
+
|
|
6028
|
+
> div:not(:last-child) {
|
|
6029
|
+
margin-bottom: 0.5rem;
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
> label {
|
|
6033
|
+
align-items: flex-start;
|
|
6034
|
+
font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
|
|
6035
|
+
|
|
6036
|
+
&.active {
|
|
6037
|
+
color: ${({ $fontColor }) => $fontColor};
|
|
6038
|
+
|
|
6039
|
+
svg rect {
|
|
6040
|
+
fill: ${({ $fontColor }) => $fontColor} !important;
|
|
6041
|
+
}
|
|
6042
|
+
}
|
|
6043
|
+
|
|
6044
|
+
&:not(:last-child) {
|
|
6045
|
+
margin-bottom: 0.75rem;
|
|
6046
|
+
}
|
|
6047
|
+
|
|
6048
|
+
&:last-child {
|
|
6049
|
+
margin-bottom: 0;
|
|
6050
|
+
}
|
|
6051
|
+
}
|
|
6050
6052
|
`;
|
|
6051
|
-
const StyledIconButton = styled(IconButton) `
|
|
6052
|
-
width: 0.75rem;
|
|
6053
|
-
height: 0.75rem;
|
|
6054
|
-
|
|
6055
|
-
span[kind] {
|
|
6056
|
-
height: 0.75rem;
|
|
6057
|
-
|
|
6058
|
-
:after {
|
|
6059
|
-
font-size: 0.75rem;
|
|
6060
|
-
}
|
|
6061
|
-
}
|
|
6053
|
+
const StyledIconButton = styled(IconButton) `
|
|
6054
|
+
width: 0.75rem;
|
|
6055
|
+
height: 0.75rem;
|
|
6056
|
+
|
|
6057
|
+
span[kind] {
|
|
6058
|
+
height: 0.75rem;
|
|
6059
|
+
|
|
6060
|
+
:after {
|
|
6061
|
+
font-size: 0.75rem;
|
|
6062
|
+
}
|
|
6063
|
+
}
|
|
6062
6064
|
`;
|
|
6063
|
-
const TextFilterContainer = styled.div `
|
|
6064
|
-
width: 15.85rem;
|
|
6065
|
-
|
|
6066
|
-
${MultiSelectContainer} {
|
|
6067
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
6068
|
-
|
|
6069
|
-
${IconButtonButton} {
|
|
6070
|
-
span[kind]:after {
|
|
6071
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
6072
|
-
}
|
|
6073
|
-
}
|
|
6074
|
-
}
|
|
6065
|
+
const TextFilterContainer = styled.div `
|
|
6066
|
+
width: 15.85rem;
|
|
6067
|
+
|
|
6068
|
+
${MultiSelectContainer} {
|
|
6069
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
6070
|
+
|
|
6071
|
+
${IconButtonButton} {
|
|
6072
|
+
span[kind]:after {
|
|
6073
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
6074
|
+
}
|
|
6075
|
+
}
|
|
6076
|
+
}
|
|
6075
6077
|
`;
|
|
6076
|
-
const BarChartContainer = styled.div `
|
|
6077
|
-
width: 100%;
|
|
6078
|
-
overflow-x: hidden;
|
|
6079
|
-
|
|
6078
|
+
const BarChartContainer = styled.div `
|
|
6079
|
+
width: 100%;
|
|
6080
|
+
overflow-x: hidden;
|
|
6081
|
+
|
|
6080
6082
|
${({ barHeight, marginBottom }) => !!barHeight &&
|
|
6081
|
-
css `
|
|
6082
|
-
.barChartBarGlobal rect {
|
|
6083
|
-
height: ${barHeight}px;
|
|
6084
|
-
y: calc(100% - ${barHeight + marginBottom}px);
|
|
6085
|
-
}
|
|
6086
|
-
`}
|
|
6087
|
-
`;
|
|
6088
|
-
const AnyChartWrapper = styled.div `
|
|
6089
|
-
width: 100%;
|
|
6090
|
-
height: ${({ height }) => height}px;
|
|
6091
|
-
`;
|
|
6092
|
-
const BarChartWrapper = styled(AnyChartWrapper) `
|
|
6093
|
-
width: 100%;
|
|
6094
|
-
margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
|
|
6095
|
-
|
|
6096
|
-
:hover {
|
|
6097
|
-
${BarChartContainer} {
|
|
6098
|
-
overflow-x: auto;
|
|
6099
|
-
}
|
|
6100
|
-
}
|
|
6083
|
+
css `
|
|
6084
|
+
.barChartBarGlobal rect {
|
|
6085
|
+
height: ${barHeight}px;
|
|
6086
|
+
y: calc(100% - ${barHeight + marginBottom}px);
|
|
6087
|
+
}
|
|
6088
|
+
`}
|
|
6101
6089
|
`;
|
|
6102
|
-
const
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
|
|
6106
|
-
padding: 0.25rem 0;
|
|
6090
|
+
const AnyChartWrapper = styled.div `
|
|
6091
|
+
width: 100%;
|
|
6092
|
+
height: ${({ height }) => height}px;
|
|
6107
6093
|
`;
|
|
6108
|
-
const
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
}
|
|
6118
|
-
}
|
|
6094
|
+
const BarChartWrapper = styled(AnyChartWrapper) `
|
|
6095
|
+
width: 100%;
|
|
6096
|
+
margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
|
|
6097
|
+
|
|
6098
|
+
:hover {
|
|
6099
|
+
${BarChartContainer} {
|
|
6100
|
+
overflow-x: auto;
|
|
6101
|
+
}
|
|
6102
|
+
}
|
|
6119
6103
|
`;
|
|
6120
|
-
const
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
6104
|
+
const BarChartFilterHeader = styled(Flex) `
|
|
6105
|
+
justify-content: space-between;
|
|
6106
|
+
align-items: center;
|
|
6107
|
+
height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
|
|
6108
|
+
padding: 0.25rem 0;
|
|
6124
6109
|
`;
|
|
6125
|
-
styled
|
|
6126
|
-
|
|
6110
|
+
const BarChartFilterArrows = styled(Flex) `
|
|
6111
|
+
margin-left: -0.5rem;
|
|
6112
|
+
|
|
6113
|
+
span[kind] {
|
|
6114
|
+
display: flex;
|
|
6115
|
+
align-items: center;
|
|
6116
|
+
|
|
6117
|
+
:after {
|
|
6118
|
+
font-size: 0.75rem;
|
|
6119
|
+
}
|
|
6120
|
+
}
|
|
6127
6121
|
`;
|
|
6128
|
-
const
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
display: none;
|
|
6133
|
-
}
|
|
6134
|
-
|
|
6135
|
-
.tick {
|
|
6136
|
-
text {
|
|
6137
|
-
text-anchor: start;
|
|
6138
|
-
font-size: 12px;
|
|
6139
|
-
color: rgba(48, 69, 79, 0.46);
|
|
6140
|
-
}
|
|
6141
|
-
|
|
6142
|
-
:last-of-type {
|
|
6143
|
-
text {
|
|
6144
|
-
text-anchor: end;
|
|
6145
|
-
}
|
|
6146
|
-
}
|
|
6147
|
-
}
|
|
6148
|
-
}
|
|
6149
|
-
|
|
6150
|
-
.marker {
|
|
6151
|
-
font-size: 12px;
|
|
6152
|
-
}
|
|
6122
|
+
const BarChartFilterSelected = styled.div `
|
|
6123
|
+
font-size: 0.75rem;
|
|
6124
|
+
font-weight: bold;
|
|
6125
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
6153
6126
|
`;
|
|
6154
|
-
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6127
|
+
styled.div `
|
|
6128
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
6129
|
+
`;
|
|
6130
|
+
const BarChart = styled(BarChart$1) `
|
|
6131
|
+
.${barChartClassNames.barChartXAxis} {
|
|
6132
|
+
.domain,
|
|
6133
|
+
line {
|
|
6134
|
+
display: none;
|
|
6135
|
+
}
|
|
6136
|
+
|
|
6137
|
+
.tick {
|
|
6138
|
+
text {
|
|
6139
|
+
text-anchor: start;
|
|
6140
|
+
font-size: 12px;
|
|
6141
|
+
color: rgba(48, 69, 79, 0.46);
|
|
6142
|
+
}
|
|
6143
|
+
|
|
6144
|
+
:last-of-type {
|
|
6145
|
+
text {
|
|
6146
|
+
text-anchor: end;
|
|
6147
|
+
}
|
|
6148
|
+
}
|
|
6149
|
+
}
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6152
|
+
.marker {
|
|
6153
|
+
font-size: 12px;
|
|
6154
|
+
}
|
|
6155
|
+
`;
|
|
6156
|
+
const TooltipContainer = styled.div `
|
|
6157
|
+
position: relative;
|
|
6158
|
+
font-size: 0.75rem;
|
|
6159
|
+
color: #ffffff;
|
|
6160
|
+
margin-bottom: 0.5rem;
|
|
6161
|
+
padding: 0.375rem;
|
|
6162
|
+
background-color: rgba(0, 0, 0, 1);
|
|
6163
|
+
border-radius: 0.25rem;
|
|
6164
|
+
box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
|
|
6165
|
+
|
|
6166
|
+
:before {
|
|
6167
|
+
content: "";
|
|
6168
|
+
position: absolute;
|
|
6169
|
+
bottom: 0;
|
|
6170
|
+
left: 50%;
|
|
6171
|
+
transform: translate(-50%, 100%);
|
|
6172
|
+
width: 0;
|
|
6173
|
+
height: 0;
|
|
6174
|
+
border-style: solid;
|
|
6175
|
+
border-width: 0.25rem 0.1875rem 0 0.1875rem;
|
|
6176
|
+
border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
|
|
6177
|
+
}
|
|
6176
6178
|
`;
|
|
6177
6179
|
|
|
6178
6180
|
const FiltersContainer = memo(({ elementConfig, config, type, renderElement }) => {
|
|
@@ -6249,64 +6251,64 @@ const PagesContainer = memo(({ type = WidgetType.Dashboard, noBorders }) => {
|
|
|
6249
6251
|
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 }) }));
|
|
6250
6252
|
});
|
|
6251
6253
|
|
|
6252
|
-
const ImageContainerBg$1 = styled.div `
|
|
6253
|
-
position: absolute;
|
|
6254
|
-
top: 0;
|
|
6255
|
-
bottom: 0;
|
|
6256
|
-
left: 0;
|
|
6257
|
-
right: 0;
|
|
6258
|
-
|
|
6259
|
-
img {
|
|
6260
|
-
width: 100%;
|
|
6261
|
-
height: 100%;
|
|
6262
|
-
object-position: center;
|
|
6263
|
-
object-fit: cover;
|
|
6264
|
-
}
|
|
6254
|
+
const ImageContainerBg$1 = styled.div `
|
|
6255
|
+
position: absolute;
|
|
6256
|
+
top: 0;
|
|
6257
|
+
bottom: 0;
|
|
6258
|
+
left: 0;
|
|
6259
|
+
right: 0;
|
|
6260
|
+
|
|
6261
|
+
img {
|
|
6262
|
+
width: 100%;
|
|
6263
|
+
height: 100%;
|
|
6264
|
+
object-position: center;
|
|
6265
|
+
object-fit: cover;
|
|
6266
|
+
}
|
|
6265
6267
|
`;
|
|
6266
|
-
const ImageContainerTitle = styled.div `
|
|
6267
|
-
width: 100%;
|
|
6268
|
-
overflow-wrap: break-word;
|
|
6269
|
-
font-size: 1rem;
|
|
6270
|
-
font-weight: 500;
|
|
6271
|
-
`;
|
|
6272
|
-
const ImageContainerText = styled.div `
|
|
6273
|
-
width: 100%;
|
|
6274
|
-
overflow-wrap: break-word;
|
|
6275
|
-
margin-top: 0.5rem;
|
|
6276
|
-
font-size: 0.75rem;
|
|
6277
|
-
`;
|
|
6278
|
-
const ImageContainerButton$1 = styled(FlatButton) `
|
|
6279
|
-
min-height: 1.5rem;
|
|
6280
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
6281
|
-
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
6282
|
-
text-transform: none;
|
|
6283
|
-
|
|
6284
|
-
:hover {
|
|
6285
|
-
background-color: ${({ theme: { palette } }) => palette.primaryDeep};
|
|
6286
|
-
}
|
|
6268
|
+
const ImageContainerTitle = styled.div `
|
|
6269
|
+
width: 100%;
|
|
6270
|
+
overflow-wrap: break-word;
|
|
6271
|
+
font-size: 1rem;
|
|
6272
|
+
font-weight: 500;
|
|
6273
|
+
`;
|
|
6274
|
+
const ImageContainerText = styled.div `
|
|
6275
|
+
width: 100%;
|
|
6276
|
+
overflow-wrap: break-word;
|
|
6277
|
+
margin-top: 0.5rem;
|
|
6278
|
+
font-size: 0.75rem;
|
|
6279
|
+
`;
|
|
6280
|
+
const ImageContainerButton$1 = styled(FlatButton) `
|
|
6281
|
+
min-height: 1.5rem;
|
|
6282
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
6283
|
+
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
6284
|
+
text-transform: none;
|
|
6285
|
+
|
|
6286
|
+
:hover {
|
|
6287
|
+
background-color: ${({ theme: { palette } }) => palette.primaryDeep};
|
|
6288
|
+
}
|
|
6287
6289
|
`;
|
|
6288
|
-
const ImageContainerWrapper = styled(Flex) `
|
|
6289
|
-
flex-direction: column;
|
|
6290
|
-
justify-content: flex-end;
|
|
6291
|
-
position: relative;
|
|
6292
|
-
padding: 1rem;
|
|
6293
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6294
|
-
overflow: hidden;
|
|
6295
|
-
|
|
6296
|
-
${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
|
|
6297
|
-
z-index: 1;
|
|
6298
|
-
color: ${({ theme: { palette } }) => palette.textContrast};
|
|
6299
|
-
}
|
|
6300
|
-
|
|
6301
|
-
:after {
|
|
6302
|
-
content: "";
|
|
6303
|
-
position: absolute;
|
|
6304
|
-
top: 0;
|
|
6305
|
-
bottom: 0;
|
|
6306
|
-
left: 0;
|
|
6307
|
-
right: 0;
|
|
6308
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
6309
|
-
}
|
|
6290
|
+
const ImageContainerWrapper = styled(Flex) `
|
|
6291
|
+
flex-direction: column;
|
|
6292
|
+
justify-content: flex-end;
|
|
6293
|
+
position: relative;
|
|
6294
|
+
padding: 1rem;
|
|
6295
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6296
|
+
overflow: hidden;
|
|
6297
|
+
|
|
6298
|
+
${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
|
|
6299
|
+
z-index: 1;
|
|
6300
|
+
color: ${({ theme: { palette } }) => palette.textContrast};
|
|
6301
|
+
}
|
|
6302
|
+
|
|
6303
|
+
:after {
|
|
6304
|
+
content: "";
|
|
6305
|
+
position: absolute;
|
|
6306
|
+
top: 0;
|
|
6307
|
+
bottom: 0;
|
|
6308
|
+
left: 0;
|
|
6309
|
+
right: 0;
|
|
6310
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
6311
|
+
}
|
|
6310
6312
|
`;
|
|
6311
6313
|
|
|
6312
6314
|
const ImageContainer = memo(({ elementConfig, renderElement }) => {
|
|
@@ -6314,52 +6316,52 @@ const ImageContainer = memo(({ elementConfig, renderElement }) => {
|
|
|
6314
6316
|
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" }) })] }));
|
|
6315
6317
|
});
|
|
6316
6318
|
|
|
6317
|
-
const IconContainerWrapper = styled(Flex) `
|
|
6318
|
-
flex-direction: column;
|
|
6319
|
-
justify-content: center;
|
|
6320
|
-
position: relative;
|
|
6321
|
-
padding: 0.5rem 1rem 1rem;
|
|
6322
|
-
background-color: ${({ theme: { palette } }) => palette.element};
|
|
6323
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6324
|
-
overflow: hidden;
|
|
6325
|
-
`;
|
|
6326
|
-
const IconContainerHeaderWrapper = styled(Flex) `
|
|
6327
|
-
justify-content: space-between;
|
|
6328
|
-
align-items: center;
|
|
6329
|
-
flex-wrap: nowrap;
|
|
6330
|
-
width: 100%;
|
|
6331
|
-
margin-bottom: 0.25rem;
|
|
6332
|
-
`;
|
|
6333
|
-
const IconContainerHeader = styled(Flex) `
|
|
6334
|
-
align-items: center;
|
|
6335
|
-
flex-wrap: nowrap;
|
|
6336
|
-
width: 100%;
|
|
6337
|
-
margin-right: 0.5rem;
|
|
6338
|
-
font-size: 0.875rem;
|
|
6339
|
-
|
|
6340
|
-
${Icon} {
|
|
6341
|
-
margin-right: 0.5rem;
|
|
6342
|
-
|
|
6343
|
-
:after {
|
|
6344
|
-
font-size: 1.15rem;
|
|
6345
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
6346
|
-
}
|
|
6347
|
-
}
|
|
6319
|
+
const IconContainerWrapper = styled(Flex) `
|
|
6320
|
+
flex-direction: column;
|
|
6321
|
+
justify-content: center;
|
|
6322
|
+
position: relative;
|
|
6323
|
+
padding: 0.5rem 1rem 1rem;
|
|
6324
|
+
background-color: ${({ theme: { palette } }) => palette.element};
|
|
6325
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
6326
|
+
overflow: hidden;
|
|
6327
|
+
`;
|
|
6328
|
+
const IconContainerHeaderWrapper = styled(Flex) `
|
|
6329
|
+
justify-content: space-between;
|
|
6330
|
+
align-items: center;
|
|
6331
|
+
flex-wrap: nowrap;
|
|
6332
|
+
width: 100%;
|
|
6333
|
+
margin-bottom: 0.25rem;
|
|
6334
|
+
`;
|
|
6335
|
+
const IconContainerHeader = styled(Flex) `
|
|
6336
|
+
align-items: center;
|
|
6337
|
+
flex-wrap: nowrap;
|
|
6338
|
+
width: 100%;
|
|
6339
|
+
margin-right: 0.5rem;
|
|
6340
|
+
font-size: 0.875rem;
|
|
6341
|
+
|
|
6342
|
+
${Icon} {
|
|
6343
|
+
margin-right: 0.5rem;
|
|
6344
|
+
|
|
6345
|
+
:after {
|
|
6346
|
+
font-size: 1.15rem;
|
|
6347
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
6348
|
+
}
|
|
6349
|
+
}
|
|
6348
6350
|
`;
|
|
6349
|
-
const IconContainerTitle = styled(Flex) `
|
|
6350
|
-
> * {
|
|
6351
|
-
width: 13rem;
|
|
6352
|
-
white-space: nowrap;
|
|
6353
|
-
overflow: hidden;
|
|
6354
|
-
font-weight: bold;
|
|
6355
|
-
text-overflow: ellipsis;
|
|
6356
|
-
}
|
|
6351
|
+
const IconContainerTitle = styled(Flex) `
|
|
6352
|
+
> * {
|
|
6353
|
+
width: 13rem;
|
|
6354
|
+
white-space: nowrap;
|
|
6355
|
+
overflow: hidden;
|
|
6356
|
+
font-weight: bold;
|
|
6357
|
+
text-overflow: ellipsis;
|
|
6358
|
+
}
|
|
6357
6359
|
`;
|
|
6358
|
-
const IconContainerText = styled.div `
|
|
6359
|
-
width: 100%;
|
|
6360
|
-
overflow-wrap: break-word;
|
|
6361
|
-
font-size: 0.75rem;
|
|
6362
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
6360
|
+
const IconContainerText = styled.div `
|
|
6361
|
+
width: 100%;
|
|
6362
|
+
overflow-wrap: break-word;
|
|
6363
|
+
font-size: 0.75rem;
|
|
6364
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
6363
6365
|
`;
|
|
6364
6366
|
|
|
6365
6367
|
const IconContainer = memo(({ elementConfig, renderElement }) => {
|
|
@@ -6382,107 +6384,107 @@ const DataSourceContainer = memo(({ config, elementConfig, type, innerComponent,
|
|
|
6382
6384
|
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, {}))] }));
|
|
6383
6385
|
});
|
|
6384
6386
|
|
|
6385
|
-
const SvgContainerColorMixin = css `
|
|
6386
|
-
path,
|
|
6387
|
-
line,
|
|
6388
|
-
circle {
|
|
6389
|
-
fill: ${({ $fontColor }) => $fontColor};
|
|
6390
|
-
}
|
|
6387
|
+
const SvgContainerColorMixin = css `
|
|
6388
|
+
path,
|
|
6389
|
+
line,
|
|
6390
|
+
circle {
|
|
6391
|
+
fill: ${({ $fontColor }) => $fontColor};
|
|
6392
|
+
}
|
|
6391
6393
|
`;
|
|
6392
|
-
const SvgContainer = styled.div `
|
|
6393
|
-
&&& {
|
|
6394
|
-
min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
6395
|
-
max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
6396
|
-
|
|
6397
|
-
${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
|
|
6398
|
-
|
|
6399
|
-
> * {
|
|
6400
|
-
min-width: inherit;
|
|
6401
|
-
}
|
|
6402
|
-
}
|
|
6394
|
+
const SvgContainer = styled.div `
|
|
6395
|
+
&&& {
|
|
6396
|
+
min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
6397
|
+
max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
|
|
6398
|
+
|
|
6399
|
+
${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
|
|
6400
|
+
|
|
6401
|
+
> * {
|
|
6402
|
+
min-width: inherit;
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6403
6405
|
`;
|
|
6404
6406
|
|
|
6405
|
-
const ContainerIconTitle = styled(Flex) `
|
|
6406
|
-
align-items: center;
|
|
6407
|
-
flex-wrap: nowrap;
|
|
6408
|
-
flex-shrink: 1;
|
|
6409
|
-
flex-grow: 0;
|
|
6410
|
-
color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
|
|
6411
|
-
|
|
6412
|
-
> div {
|
|
6413
|
-
flex-shrink: 1;
|
|
6414
|
-
flex-grow: 0;
|
|
6415
|
-
width: auto;
|
|
6416
|
-
}
|
|
6417
|
-
|
|
6418
|
-
${SvgContainer} {
|
|
6419
|
-
flex-shrink: 0;
|
|
6420
|
-
flex-grow: 0;
|
|
6421
|
-
margin-right: 0.5rem;
|
|
6422
|
-
}
|
|
6423
|
-
|
|
6424
|
-
svg,
|
|
6425
|
-
img,
|
|
6426
|
-
span[kind] {
|
|
6427
|
-
margin-right: 0.5rem;
|
|
6428
|
-
}
|
|
6429
|
-
|
|
6407
|
+
const ContainerIconTitle = styled(Flex) `
|
|
6408
|
+
align-items: center;
|
|
6409
|
+
flex-wrap: nowrap;
|
|
6410
|
+
flex-shrink: 1;
|
|
6411
|
+
flex-grow: 0;
|
|
6412
|
+
color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
|
|
6413
|
+
|
|
6414
|
+
> div {
|
|
6415
|
+
flex-shrink: 1;
|
|
6416
|
+
flex-grow: 0;
|
|
6417
|
+
width: auto;
|
|
6418
|
+
}
|
|
6419
|
+
|
|
6420
|
+
${SvgContainer} {
|
|
6421
|
+
flex-shrink: 0;
|
|
6422
|
+
flex-grow: 0;
|
|
6423
|
+
margin-right: 0.5rem;
|
|
6424
|
+
}
|
|
6425
|
+
|
|
6426
|
+
svg,
|
|
6427
|
+
img,
|
|
6428
|
+
span[kind] {
|
|
6429
|
+
margin-right: 0.5rem;
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6430
6432
|
${({ fontColor }) => !!fontColor &&
|
|
6431
|
-
css `
|
|
6432
|
-
span[kind] {
|
|
6433
|
-
color: ${fontColor};
|
|
6434
|
-
}
|
|
6435
|
-
|
|
6436
|
-
${SvgContainer} {
|
|
6437
|
-
path,
|
|
6438
|
-
circle {
|
|
6439
|
-
fill: ${fontColor};
|
|
6440
|
-
}
|
|
6441
|
-
}
|
|
6442
|
-
`};
|
|
6443
|
-
|
|
6444
|
-
${LegendToggler} {
|
|
6445
|
-
margin-left: 0.25rem;
|
|
6446
|
-
}
|
|
6447
|
-
|
|
6448
|
-
span[kind="download"] {
|
|
6449
|
-
opacity: 0;
|
|
6450
|
-
transition: opacity ${transition.hover};
|
|
6451
|
-
}
|
|
6452
|
-
|
|
6453
|
-
:hover {
|
|
6454
|
-
span[kind="download"] {
|
|
6455
|
-
opacity: 1;
|
|
6456
|
-
}
|
|
6457
|
-
}
|
|
6433
|
+
css `
|
|
6434
|
+
span[kind] {
|
|
6435
|
+
color: ${fontColor};
|
|
6436
|
+
}
|
|
6437
|
+
|
|
6438
|
+
${SvgContainer} {
|
|
6439
|
+
path,
|
|
6440
|
+
circle {
|
|
6441
|
+
fill: ${fontColor};
|
|
6442
|
+
}
|
|
6443
|
+
}
|
|
6444
|
+
`};
|
|
6445
|
+
|
|
6446
|
+
${LegendToggler} {
|
|
6447
|
+
margin-left: 0.25rem;
|
|
6448
|
+
}
|
|
6449
|
+
|
|
6450
|
+
span[kind="download"] {
|
|
6451
|
+
opacity: 0;
|
|
6452
|
+
transition: opacity ${transition.hover};
|
|
6453
|
+
}
|
|
6454
|
+
|
|
6455
|
+
:hover {
|
|
6456
|
+
span[kind="download"] {
|
|
6457
|
+
opacity: 1;
|
|
6458
|
+
}
|
|
6459
|
+
}
|
|
6458
6460
|
`;
|
|
6459
|
-
const ContainerTitle = styled(Flex) `
|
|
6460
|
-
align-items: center;
|
|
6461
|
-
justify-content: space-between;
|
|
6462
|
-
width: 100%;
|
|
6463
|
-
|
|
6464
|
-
> * {
|
|
6465
|
-
font-size: 1.125rem;
|
|
6466
|
-
font-weight: 500;
|
|
6467
|
-
}
|
|
6468
|
-
|
|
6469
|
-
${LegendToggler} {
|
|
6470
|
-
padding-right: 0;
|
|
6471
|
-
}
|
|
6472
|
-
|
|
6461
|
+
const ContainerTitle = styled(Flex) `
|
|
6462
|
+
align-items: center;
|
|
6463
|
+
justify-content: space-between;
|
|
6464
|
+
width: 100%;
|
|
6465
|
+
|
|
6466
|
+
> * {
|
|
6467
|
+
font-size: 1.125rem;
|
|
6468
|
+
font-weight: 500;
|
|
6469
|
+
}
|
|
6470
|
+
|
|
6471
|
+
${LegendToggler} {
|
|
6472
|
+
padding-right: 0;
|
|
6473
|
+
}
|
|
6474
|
+
|
|
6473
6475
|
${({ simple }) => simple &&
|
|
6474
|
-
css `
|
|
6475
|
-
justify-content: flex-start;
|
|
6476
|
-
|
|
6477
|
-
${ContainerIconTitle} {
|
|
6478
|
-
font-size: 0.75rem;
|
|
6479
|
-
}
|
|
6480
|
-
|
|
6481
|
-
${LegendToggler} {
|
|
6482
|
-
margin-left: 0;
|
|
6483
|
-
padding-left: 0.25rem;
|
|
6484
|
-
}
|
|
6485
|
-
`}
|
|
6476
|
+
css `
|
|
6477
|
+
justify-content: flex-start;
|
|
6478
|
+
|
|
6479
|
+
${ContainerIconTitle} {
|
|
6480
|
+
font-size: 0.75rem;
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
${LegendToggler} {
|
|
6484
|
+
margin-left: 0;
|
|
6485
|
+
padding-left: 0.25rem;
|
|
6486
|
+
}
|
|
6487
|
+
`}
|
|
6486
6488
|
`;
|
|
6487
6489
|
|
|
6488
6490
|
const TitleContainer = memo(({ containerId, templateName, layerNames, fontColor, expandable, expanded, isVisible, elementConfig, renderElement, type, }) => {
|
|
@@ -6556,82 +6558,82 @@ const CameraContainer = memo(({ elementConfig, type, renderElement }) => {
|
|
|
6556
6558
|
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 }) })] }))] }));
|
|
6557
6559
|
});
|
|
6558
6560
|
|
|
6559
|
-
const TabAnchor = styled.div `
|
|
6560
|
-
position: absolute;
|
|
6561
|
-
top: -1.5rem;
|
|
6562
|
-
right: 0;
|
|
6561
|
+
const TabAnchor = styled.div `
|
|
6562
|
+
position: absolute;
|
|
6563
|
+
top: -1.5rem;
|
|
6564
|
+
right: 0;
|
|
6563
6565
|
`;
|
|
6564
|
-
const TabValue = styled(Flex) `
|
|
6565
|
-
flex-wrap: nowrap;
|
|
6566
|
+
const TabValue = styled(Flex) `
|
|
6567
|
+
flex-wrap: nowrap;
|
|
6566
6568
|
`;
|
|
6567
|
-
const noBgMixin = css `
|
|
6568
|
-
background-color: transparent;
|
|
6569
|
-
border-radius: 0;
|
|
6570
|
-
border-bottom: 0.125rem solid
|
|
6571
|
-
${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
|
|
6572
|
-
|
|
6573
|
-
${TabValue},
|
|
6574
|
-
span[kind] {
|
|
6575
|
-
color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
|
|
6576
|
-
}
|
|
6577
|
-
|
|
6578
|
-
&&& svg {
|
|
6579
|
-
path,
|
|
6580
|
-
line,
|
|
6581
|
-
circle {
|
|
6582
|
-
fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
|
|
6583
|
-
}
|
|
6584
|
-
}
|
|
6585
|
-
|
|
6586
|
-
:not(:last-child) {
|
|
6587
|
-
margin-right: 0;
|
|
6588
|
-
}
|
|
6569
|
+
const noBgMixin = css `
|
|
6570
|
+
background-color: transparent;
|
|
6571
|
+
border-radius: 0;
|
|
6572
|
+
border-bottom: 0.125rem solid
|
|
6573
|
+
${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
|
|
6574
|
+
|
|
6575
|
+
${TabValue},
|
|
6576
|
+
span[kind] {
|
|
6577
|
+
color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
|
|
6578
|
+
}
|
|
6579
|
+
|
|
6580
|
+
&&& svg {
|
|
6581
|
+
path,
|
|
6582
|
+
line,
|
|
6583
|
+
circle {
|
|
6584
|
+
fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
|
|
6585
|
+
}
|
|
6586
|
+
}
|
|
6587
|
+
|
|
6588
|
+
:not(:last-child) {
|
|
6589
|
+
margin-right: 0;
|
|
6590
|
+
}
|
|
6589
6591
|
`;
|
|
6590
|
-
const TabContainer = styled.a `
|
|
6591
|
-
display: flex;
|
|
6592
|
-
flex-direction: ${({ column }) => (column ? "column" : "row")};
|
|
6593
|
-
align-items: center;
|
|
6594
|
-
justify-content: center;
|
|
6595
|
-
flex-wrap: nowrap;
|
|
6596
|
-
padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
|
|
6597
|
-
background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
|
|
6598
|
-
border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
|
|
6599
|
-
text-decoration: none;
|
|
6600
|
-
|
|
6601
|
-
:not(:last-child) {
|
|
6602
|
-
margin-right: 0.5rem;
|
|
6603
|
-
}
|
|
6604
|
-
|
|
6605
|
-
${TabValue} {
|
|
6606
|
-
margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
|
|
6607
|
-
margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
|
|
6608
|
-
font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
|
|
6609
|
-
white-space: nowrap;
|
|
6610
|
-
}
|
|
6611
|
-
|
|
6612
|
-
${TabValue},
|
|
6613
|
-
span[kind] {
|
|
6614
|
-
color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
|
|
6615
|
-
}
|
|
6616
|
-
|
|
6617
|
-
${SvgContainer$1} {
|
|
6618
|
-
height: 1rem;
|
|
6619
|
-
}
|
|
6620
|
-
|
|
6621
|
-
svg,
|
|
6622
|
-
img {
|
|
6623
|
-
max-width: 1rem;
|
|
6624
|
-
max-height: 1rem;
|
|
6625
|
-
}
|
|
6626
|
-
|
|
6627
|
-
${({ noBg }) => noBg && noBgMixin};
|
|
6592
|
+
const TabContainer = styled.a `
|
|
6593
|
+
display: flex;
|
|
6594
|
+
flex-direction: ${({ column }) => (column ? "column" : "row")};
|
|
6595
|
+
align-items: center;
|
|
6596
|
+
justify-content: center;
|
|
6597
|
+
flex-wrap: nowrap;
|
|
6598
|
+
padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
|
|
6599
|
+
background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
|
|
6600
|
+
border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
|
|
6601
|
+
text-decoration: none;
|
|
6602
|
+
|
|
6603
|
+
:not(:last-child) {
|
|
6604
|
+
margin-right: 0.5rem;
|
|
6605
|
+
}
|
|
6606
|
+
|
|
6607
|
+
${TabValue} {
|
|
6608
|
+
margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
|
|
6609
|
+
margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
|
|
6610
|
+
font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
|
|
6611
|
+
white-space: nowrap;
|
|
6612
|
+
}
|
|
6613
|
+
|
|
6614
|
+
${TabValue},
|
|
6615
|
+
span[kind] {
|
|
6616
|
+
color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
${SvgContainer$1} {
|
|
6620
|
+
height: 1rem;
|
|
6621
|
+
}
|
|
6622
|
+
|
|
6623
|
+
svg,
|
|
6624
|
+
img {
|
|
6625
|
+
max-width: 1rem;
|
|
6626
|
+
max-height: 1rem;
|
|
6627
|
+
}
|
|
6628
|
+
|
|
6629
|
+
${({ noBg }) => noBg && noBgMixin};
|
|
6628
6630
|
`;
|
|
6629
|
-
const SwiperContainer = styled.div `
|
|
6630
|
-
width: 100%;
|
|
6631
|
-
|
|
6632
|
-
.swiper-wrapper {
|
|
6633
|
-
display: flex;
|
|
6634
|
-
}
|
|
6631
|
+
const SwiperContainer = styled.div `
|
|
6632
|
+
width: 100%;
|
|
6633
|
+
|
|
6634
|
+
.swiper-wrapper {
|
|
6635
|
+
display: flex;
|
|
6636
|
+
}
|
|
6635
6637
|
`;
|
|
6636
6638
|
|
|
6637
6639
|
const TabsContainer = memo(({ elementConfig, type }) => {
|
|
@@ -6659,96 +6661,96 @@ const TabsContainer = memo(({ elementConfig, type }) => {
|
|
|
6659
6661
|
});
|
|
6660
6662
|
|
|
6661
6663
|
const ContainerIconValue = styled(Flex) ``;
|
|
6662
|
-
const RoundedBackgroundContainerWrapper = styled(Flex) `
|
|
6663
|
-
position: relative;
|
|
6664
|
-
flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
|
|
6665
|
-
width: 9rem;
|
|
6666
|
-
padding: 0.75rem 0.75rem 0.5rem;
|
|
6667
|
-
background-color: ${({ theme: { palette } }) => palette.element};
|
|
6668
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
6669
|
-
flex-wrap: nowrap;
|
|
6670
|
-
|
|
6671
|
-
&& {
|
|
6672
|
-
margin-bottom: 0.5rem;
|
|
6673
|
-
}
|
|
6674
|
-
|
|
6664
|
+
const RoundedBackgroundContainerWrapper = styled(Flex) `
|
|
6665
|
+
position: relative;
|
|
6666
|
+
flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
|
|
6667
|
+
width: 9rem;
|
|
6668
|
+
padding: 0.75rem 0.75rem 0.5rem;
|
|
6669
|
+
background-color: ${({ theme: { palette } }) => palette.element};
|
|
6670
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
6671
|
+
flex-wrap: nowrap;
|
|
6672
|
+
|
|
6673
|
+
&& {
|
|
6674
|
+
margin-bottom: 0.5rem;
|
|
6675
|
+
}
|
|
6676
|
+
|
|
6675
6677
|
${({ $center }) => $center &&
|
|
6676
|
-
css `
|
|
6677
|
-
align-items: center;
|
|
6678
|
-
|
|
6679
|
-
> * {
|
|
6680
|
-
display: flex;
|
|
6681
|
-
justify-content: center;
|
|
6682
|
-
text-align: center;
|
|
6683
|
-
width: 100%;
|
|
6684
|
-
}
|
|
6685
|
-
`};
|
|
6686
|
-
|
|
6678
|
+
css `
|
|
6679
|
+
align-items: center;
|
|
6680
|
+
|
|
6681
|
+
> * {
|
|
6682
|
+
display: flex;
|
|
6683
|
+
justify-content: center;
|
|
6684
|
+
text-align: center;
|
|
6685
|
+
width: 100%;
|
|
6686
|
+
}
|
|
6687
|
+
`};
|
|
6688
|
+
|
|
6687
6689
|
${({ $color }) => $color &&
|
|
6688
|
-
css `
|
|
6689
|
-
background-color: ${transparentizeColor($color, 6)};
|
|
6690
|
-
|
|
6691
|
-
* {
|
|
6692
|
-
color: ${$color};
|
|
6693
|
-
}
|
|
6694
|
-
`};
|
|
6695
|
-
|
|
6696
|
-
${ContainerIcon}, ${SvgContainer$1} {
|
|
6697
|
-
margin-bottom: 0.25rem;
|
|
6698
|
-
}
|
|
6699
|
-
|
|
6690
|
+
css `
|
|
6691
|
+
background-color: ${transparentizeColor($color, 6)};
|
|
6692
|
+
|
|
6693
|
+
* {
|
|
6694
|
+
color: ${$color};
|
|
6695
|
+
}
|
|
6696
|
+
`};
|
|
6697
|
+
|
|
6698
|
+
${ContainerIcon}, ${SvgContainer$1} {
|
|
6699
|
+
margin-bottom: 0.25rem;
|
|
6700
|
+
}
|
|
6701
|
+
|
|
6700
6702
|
${({ $bigIcon }) => $bigIcon &&
|
|
6701
|
-
css `
|
|
6702
|
-
${ContainerIcon}, ${SvgContainer$1} {
|
|
6703
|
-
position: absolute;
|
|
6704
|
-
top: 0.75rem;
|
|
6705
|
-
right: 0.75rem;
|
|
6706
|
-
width: 3rem;
|
|
6707
|
-
opacity: 0.12;
|
|
6708
|
-
|
|
6709
|
-
:after {
|
|
6710
|
-
font-size: 3rem;
|
|
6711
|
-
}
|
|
6712
|
-
}
|
|
6713
|
-
`};
|
|
6714
|
-
|
|
6715
|
-
${ContainerIconValue} {
|
|
6716
|
-
align-items: center;
|
|
6717
|
-
flex-direction: column;
|
|
6718
|
-
|
|
6703
|
+
css `
|
|
6704
|
+
${ContainerIcon}, ${SvgContainer$1} {
|
|
6705
|
+
position: absolute;
|
|
6706
|
+
top: 0.75rem;
|
|
6707
|
+
right: 0.75rem;
|
|
6708
|
+
width: 3rem;
|
|
6709
|
+
opacity: 0.12;
|
|
6710
|
+
|
|
6711
|
+
:after {
|
|
6712
|
+
font-size: 3rem;
|
|
6713
|
+
}
|
|
6714
|
+
}
|
|
6715
|
+
`};
|
|
6716
|
+
|
|
6717
|
+
${ContainerIconValue} {
|
|
6718
|
+
align-items: center;
|
|
6719
|
+
flex-direction: column;
|
|
6720
|
+
|
|
6719
6721
|
${({ $big }) => $big &&
|
|
6720
|
-
css `
|
|
6721
|
-
flex-direction: row;
|
|
6722
|
-
margin-bottom: 0.5rem;
|
|
6723
|
-
|
|
6724
|
-
> * {
|
|
6725
|
-
text-align: left;
|
|
6726
|
-
}
|
|
6727
|
-
|
|
6728
|
-
span[kind] {
|
|
6729
|
-
margin-right: 0.5rem;
|
|
6730
|
-
}
|
|
6731
|
-
|
|
6732
|
-
${ContainerValue} {
|
|
6733
|
-
width: auto;
|
|
6734
|
-
}
|
|
6735
|
-
`};
|
|
6736
|
-
}
|
|
6737
|
-
|
|
6738
|
-
${ContainerValue} {
|
|
6739
|
-
flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
|
|
6740
|
-
justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
|
|
6741
|
-
align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
|
|
6742
|
-
line-height: 1;
|
|
6743
|
-
}
|
|
6744
|
-
|
|
6745
|
-
${ContainerUnits} {
|
|
6746
|
-
margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
|
|
6747
|
-
}
|
|
6748
|
-
|
|
6749
|
-
${ContainerAlias} {
|
|
6750
|
-
margin-top: 0.25rem;
|
|
6751
|
-
}
|
|
6722
|
+
css `
|
|
6723
|
+
flex-direction: row;
|
|
6724
|
+
margin-bottom: 0.5rem;
|
|
6725
|
+
|
|
6726
|
+
> * {
|
|
6727
|
+
text-align: left;
|
|
6728
|
+
}
|
|
6729
|
+
|
|
6730
|
+
span[kind] {
|
|
6731
|
+
margin-right: 0.5rem;
|
|
6732
|
+
}
|
|
6733
|
+
|
|
6734
|
+
${ContainerValue} {
|
|
6735
|
+
width: auto;
|
|
6736
|
+
}
|
|
6737
|
+
`};
|
|
6738
|
+
}
|
|
6739
|
+
|
|
6740
|
+
${ContainerValue} {
|
|
6741
|
+
flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
|
|
6742
|
+
justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
|
|
6743
|
+
align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
|
|
6744
|
+
line-height: 1;
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6747
|
+
${ContainerUnits} {
|
|
6748
|
+
margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
|
|
6749
|
+
}
|
|
6750
|
+
|
|
6751
|
+
${ContainerAlias} {
|
|
6752
|
+
margin-top: 0.25rem;
|
|
6753
|
+
}
|
|
6752
6754
|
`;
|
|
6753
6755
|
|
|
6754
6756
|
const ALIAS_DEFAULT_MAX_LENGTH = 28;
|
|
@@ -6795,20 +6797,20 @@ const AddFeatureContainer = memo(({ elementConfig }) => {
|
|
|
6795
6797
|
.map(({ options }, index) => (jsx(AddFeatureButton, { icon: options?.icon, title: options?.title, layerName: options?.layerName, geometryType: options?.geometryType }, index))) }));
|
|
6796
6798
|
});
|
|
6797
6799
|
|
|
6798
|
-
const LayersContainerWrapper = styled(Container) `
|
|
6799
|
-
${DraggableTreeContainer} {
|
|
6800
|
-
width: calc(100% + 3rem);
|
|
6801
|
-
margin: -0.75rem -1.5rem 0;
|
|
6802
|
-
}
|
|
6803
|
-
|
|
6804
|
-
${LayerListContainer} {
|
|
6805
|
-
height: auto;
|
|
6806
|
-
}
|
|
6807
|
-
|
|
6808
|
-
${LayerGroupList} {
|
|
6809
|
-
margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
|
|
6810
|
-
padding: 0;
|
|
6811
|
-
}
|
|
6800
|
+
const LayersContainerWrapper = styled(Container) `
|
|
6801
|
+
${DraggableTreeContainer} {
|
|
6802
|
+
width: calc(100% + 3rem);
|
|
6803
|
+
margin: -0.75rem -1.5rem 0;
|
|
6804
|
+
}
|
|
6805
|
+
|
|
6806
|
+
${LayerListContainer} {
|
|
6807
|
+
height: auto;
|
|
6808
|
+
}
|
|
6809
|
+
|
|
6810
|
+
${LayerGroupList} {
|
|
6811
|
+
margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
|
|
6812
|
+
padding: 0;
|
|
6813
|
+
}
|
|
6812
6814
|
`;
|
|
6813
6815
|
|
|
6814
6816
|
const LayersContainer = memo(({ type, elementConfig, renderElement }) => {
|
|
@@ -6843,9 +6845,9 @@ const UploadContainer = memo(({ type, elementConfig, renderElement }) => {
|
|
|
6843
6845
|
return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && renderElement({ id: "uploader", wrap: false })] }));
|
|
6844
6846
|
});
|
|
6845
6847
|
|
|
6846
|
-
const StatusBadge = styled(Chip) `
|
|
6847
|
-
background-color: ${({ bgColor }) => bgColor};
|
|
6848
|
-
color: ${({ theme }) => theme.palette.iconContrast};
|
|
6848
|
+
const StatusBadge = styled(Chip) `
|
|
6849
|
+
background-color: ${({ bgColor }) => bgColor};
|
|
6850
|
+
color: ${({ theme }) => theme.palette.iconContrast};
|
|
6849
6851
|
`;
|
|
6850
6852
|
|
|
6851
6853
|
const STATUS_TRANSLATION_KEYS = {
|
|
@@ -6903,22 +6905,22 @@ var EditGeometryType;
|
|
|
6903
6905
|
EditGeometryType["Raster"] = "raster";
|
|
6904
6906
|
})(EditGeometryType || (EditGeometryType = {}));
|
|
6905
6907
|
|
|
6906
|
-
const StyledButton = styled(FlatButton) `
|
|
6907
|
-
display: flex;
|
|
6908
|
-
align-items: center;
|
|
6909
|
-
|
|
6910
|
-
${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
|
|
6911
|
-
transition: background-color ${transition.toggle};
|
|
6912
|
-
background-color: ${statusColors[status]};
|
|
6913
|
-
|
|
6914
|
-
:hover {
|
|
6915
|
-
background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
|
|
6916
|
-
}
|
|
6917
|
-
|
|
6918
|
-
:active {
|
|
6919
|
-
background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
|
|
6920
|
-
}
|
|
6921
|
-
`}
|
|
6908
|
+
const StyledButton = styled(FlatButton) `
|
|
6909
|
+
display: flex;
|
|
6910
|
+
align-items: center;
|
|
6911
|
+
|
|
6912
|
+
${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
|
|
6913
|
+
transition: background-color ${transition.toggle};
|
|
6914
|
+
background-color: ${statusColors[status]};
|
|
6915
|
+
|
|
6916
|
+
:hover {
|
|
6917
|
+
background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
|
|
6918
|
+
}
|
|
6919
|
+
|
|
6920
|
+
:active {
|
|
6921
|
+
background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
|
|
6922
|
+
}
|
|
6923
|
+
`}
|
|
6922
6924
|
`;
|
|
6923
6925
|
|
|
6924
6926
|
const StatusWaitingButton = ({ title, icon = "play", status, statusColors, isWaiting, isDisabled, onClick }) => {
|
|
@@ -6967,9 +6969,9 @@ const EditContainer = ({ type, elementConfig, renderElement }) => {
|
|
|
6967
6969
|
return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), jsxs(Container, { id: id, isColumn: true, style: style, children: [jsx(ContainerAlias, { hasBottomMargin: true, children: renderElement({ id: "alias" }) }), jsx(ContainerValue, { children: renderElement({ id: "value" }) })] })] }));
|
|
6968
6970
|
};
|
|
6969
6971
|
|
|
6970
|
-
const ContainerDivider = styled(Divider) `
|
|
6971
|
-
width: 100%;
|
|
6972
|
-
border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
|
|
6972
|
+
const ContainerDivider = styled(Divider) `
|
|
6973
|
+
width: 100%;
|
|
6974
|
+
border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
|
|
6973
6975
|
`;
|
|
6974
6976
|
|
|
6975
6977
|
const DividerContainer = memo(({ elementConfig, config }) => {
|
|
@@ -7009,99 +7011,99 @@ const getContainerComponent = (innerTemplateName) => innerTemplateName ? contain
|
|
|
7009
7011
|
var img$3 = "data:image/png;base64,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";
|
|
7010
7012
|
|
|
7011
7013
|
const getMaskColor = (isDark) => (isDark ? "0, 0, 0" : "255, 255, 255");
|
|
7012
|
-
const DefaultHeaderContainer = styled(Flex) `
|
|
7013
|
-
flex-direction: column;
|
|
7014
|
-
position: relative;
|
|
7015
|
-
flex-shrink: 0;
|
|
7016
|
-
min-height: 8.375rem;
|
|
7017
|
-
margin-bottom: -1.5rem;
|
|
7018
|
-
padding: 1.5rem 1.5rem 0;
|
|
7019
|
-
border-top-left-radius: 0.5rem;
|
|
7020
|
-
border-top-right-radius: 0.5rem;
|
|
7021
|
-
overflow: hidden;
|
|
7022
|
-
|
|
7023
|
-
> * {
|
|
7024
|
-
z-index: 1;
|
|
7025
|
-
}
|
|
7026
|
-
|
|
7027
|
-
&::before {
|
|
7028
|
-
content: "";
|
|
7029
|
-
position: absolute;
|
|
7030
|
-
top: 0;
|
|
7031
|
-
left: 0;
|
|
7032
|
-
width: 100%;
|
|
7033
|
-
height: 100%;
|
|
7034
|
-
|
|
7014
|
+
const DefaultHeaderContainer = styled(Flex) `
|
|
7015
|
+
flex-direction: column;
|
|
7016
|
+
position: relative;
|
|
7017
|
+
flex-shrink: 0;
|
|
7018
|
+
min-height: 8.375rem;
|
|
7019
|
+
margin-bottom: -1.5rem;
|
|
7020
|
+
padding: 1.5rem 1.5rem 0;
|
|
7021
|
+
border-top-left-radius: 0.5rem;
|
|
7022
|
+
border-top-right-radius: 0.5rem;
|
|
7023
|
+
overflow: hidden;
|
|
7024
|
+
|
|
7025
|
+
> * {
|
|
7026
|
+
z-index: 1;
|
|
7027
|
+
}
|
|
7028
|
+
|
|
7029
|
+
&::before {
|
|
7030
|
+
content: "";
|
|
7031
|
+
position: absolute;
|
|
7032
|
+
top: 0;
|
|
7033
|
+
left: 0;
|
|
7034
|
+
width: 100%;
|
|
7035
|
+
height: 100%;
|
|
7036
|
+
|
|
7035
7037
|
${({ image, isDark }) => image
|
|
7036
|
-
? css `
|
|
7037
|
-
background: url(${image}) 0 0 no-repeat;
|
|
7038
|
-
background-size: cover;
|
|
7038
|
+
? css `
|
|
7039
|
+
background: url(${image}) 0 0 no-repeat;
|
|
7040
|
+
background-size: cover;
|
|
7039
7041
|
`
|
|
7040
|
-
: css `
|
|
7041
|
-
background: url(${img$3}) 50% 0 no-repeat;
|
|
7042
|
-
opacity: ${isDark ? 1 : 0.5};
|
|
7043
|
-
`}
|
|
7044
|
-
}
|
|
7045
|
-
|
|
7042
|
+
: css `
|
|
7043
|
+
background: url(${img$3}) 50% 0 no-repeat;
|
|
7044
|
+
opacity: ${isDark ? 1 : 0.5};
|
|
7045
|
+
`}
|
|
7046
|
+
}
|
|
7047
|
+
|
|
7046
7048
|
${({ image, isDark }) => image &&
|
|
7047
|
-
css `
|
|
7048
|
-
&::before {
|
|
7049
|
-
-webkit-mask-image: linear-gradient(
|
|
7050
|
-
to bottom,
|
|
7051
|
-
rgba(${getMaskColor(isDark)}, 1),
|
|
7052
|
-
rgba(${getMaskColor(isDark)}, 0)
|
|
7053
|
-
);
|
|
7054
|
-
mask-image: linear-gradient(to bottom, rgba(${getMaskColor(isDark)}, 1), rgba(${getMaskColor(isDark)}, 0));
|
|
7055
|
-
}
|
|
7056
|
-
`}
|
|
7057
|
-
${LinearProgress} {
|
|
7058
|
-
position: absolute;
|
|
7059
|
-
top: 0;
|
|
7060
|
-
left: 0;
|
|
7061
|
-
}
|
|
7049
|
+
css `
|
|
7050
|
+
&::before {
|
|
7051
|
+
-webkit-mask-image: linear-gradient(
|
|
7052
|
+
to bottom,
|
|
7053
|
+
rgba(${getMaskColor(isDark)}, 1),
|
|
7054
|
+
rgba(${getMaskColor(isDark)}, 0)
|
|
7055
|
+
);
|
|
7056
|
+
mask-image: linear-gradient(to bottom, rgba(${getMaskColor(isDark)}, 1), rgba(${getMaskColor(isDark)}, 0));
|
|
7057
|
+
}
|
|
7058
|
+
`}
|
|
7059
|
+
${LinearProgress} {
|
|
7060
|
+
position: absolute;
|
|
7061
|
+
top: 0;
|
|
7062
|
+
left: 0;
|
|
7063
|
+
}
|
|
7062
7064
|
`;
|
|
7063
|
-
const TopContainer = styled(Flex) `
|
|
7064
|
-
z-index: 1;
|
|
7065
|
-
position: relative;
|
|
7066
|
-
justify-content: space-between;
|
|
7067
|
-
flex-wrap: nowrap;
|
|
7068
|
-
width: 100%;
|
|
7069
|
-
align-items: flex-start;
|
|
7070
|
-
`;
|
|
7071
|
-
const TopContainerButtons = styled(Flex) `
|
|
7072
|
-
align-items: center;
|
|
7073
|
-
width: auto;
|
|
7074
|
-
margin-right: -0.5rem;
|
|
7075
|
-
|
|
7076
|
-
button {
|
|
7077
|
-
width: auto;
|
|
7078
|
-
height: 1rem;
|
|
7079
|
-
padding: 0 0.5rem;
|
|
7080
|
-
}
|
|
7065
|
+
const TopContainer = styled(Flex) `
|
|
7066
|
+
z-index: 1;
|
|
7067
|
+
position: relative;
|
|
7068
|
+
justify-content: space-between;
|
|
7069
|
+
flex-wrap: nowrap;
|
|
7070
|
+
width: 100%;
|
|
7071
|
+
align-items: flex-start;
|
|
7072
|
+
`;
|
|
7073
|
+
const TopContainerButtons = styled(Flex) `
|
|
7074
|
+
align-items: center;
|
|
7075
|
+
width: auto;
|
|
7076
|
+
margin-right: -0.5rem;
|
|
7077
|
+
|
|
7078
|
+
button {
|
|
7079
|
+
width: auto;
|
|
7080
|
+
height: 1rem;
|
|
7081
|
+
padding: 0 0.5rem;
|
|
7082
|
+
}
|
|
7081
7083
|
`;
|
|
7082
|
-
const LogoContainer = styled(Flex) `
|
|
7083
|
-
max-width: calc(100% - 1.4rem);
|
|
7084
|
-
flex-grow: 1;
|
|
7085
|
-
font-size: 0;
|
|
7086
|
-
|
|
7087
|
-
& > span::after {
|
|
7088
|
-
font-size: 2rem;
|
|
7089
|
-
}
|
|
7090
|
-
|
|
7091
|
-
img {
|
|
7092
|
-
max-height: 1.875rem;
|
|
7093
|
-
}
|
|
7084
|
+
const LogoContainer = styled(Flex) `
|
|
7085
|
+
max-width: calc(100% - 1.4rem);
|
|
7086
|
+
flex-grow: 1;
|
|
7087
|
+
font-size: 0;
|
|
7088
|
+
|
|
7089
|
+
& > span::after {
|
|
7090
|
+
font-size: 2rem;
|
|
7091
|
+
}
|
|
7092
|
+
|
|
7093
|
+
img {
|
|
7094
|
+
max-height: 1.875rem;
|
|
7095
|
+
}
|
|
7094
7096
|
`;
|
|
7095
|
-
const PageTitle = styled(H2) `
|
|
7096
|
-
display: -webkit-box;
|
|
7097
|
-
-webkit-line-clamp: 3;
|
|
7098
|
-
-webkit-box-orient: vertical;
|
|
7099
|
-
overflow: hidden;
|
|
7100
|
-
margin: 0;
|
|
7101
|
-
font-size: 1.25rem;
|
|
7102
|
-
font-weight: 600;
|
|
7103
|
-
pointer-events: initial;
|
|
7104
|
-
font-family: "Nunito Sans", serif;
|
|
7097
|
+
const PageTitle = styled(H2) `
|
|
7098
|
+
display: -webkit-box;
|
|
7099
|
+
-webkit-line-clamp: 3;
|
|
7100
|
+
-webkit-box-orient: vertical;
|
|
7101
|
+
overflow: hidden;
|
|
7102
|
+
margin: 0;
|
|
7103
|
+
font-size: 1.25rem;
|
|
7104
|
+
font-weight: 600;
|
|
7105
|
+
pointer-events: initial;
|
|
7106
|
+
font-family: "Nunito Sans", serif;
|
|
7105
7107
|
`;
|
|
7106
7108
|
|
|
7107
7109
|
const DashboardDefaultHeader = memo(() => {
|
|
@@ -7110,87 +7112,87 @@ const DashboardDefaultHeader = memo(() => {
|
|
|
7110
7112
|
return (jsxs(DefaultHeaderContainer, { image: getResourceUrl(image), isDark: themeName === ThemeName.Dark, children: [!pageId && jsx(LinearProgress, {}), jsxs(Flex, { column: true, gap: "1rem", children: [jsx(FlexSpan, { children: jsxs(TopContainer, { children: [jsx(LogoContainer, { children: icon }), jsxs(TopContainerButtons, { children: [jsx(ProjectCatalogMenu, {}), jsx(ProjectPanelMenu, {})] })] }) }), jsx(FlexSpan, { children: jsx(Flex, { column: true, gap: "0.25rem", children: jsx(FlexSpan, { children: jsxs(Flex, { alignItems: "center", children: [jsx(FlexSpan, { flexGrow: 1, children: jsx(Tooltip$1, { arrow: true, content: tooltip, children: ref => (jsx(PageTitle, { ref: ref, children: jsx(ProjectPagesMenu, {}) })) }) }), jsx(FlexSpan, { children: jsx(Pagination, {}) })] }) }) }) })] })] }));
|
|
7111
7113
|
});
|
|
7112
7114
|
|
|
7113
|
-
const HeaderFrontView = styled(Flex) `
|
|
7114
|
-
z-index: 10;
|
|
7115
|
-
position: relative;
|
|
7116
|
-
justify-content: space-between;
|
|
7117
|
-
align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
|
|
7118
|
-
width: 100%;
|
|
7119
|
-
font: ${({ theme: { fonts } }) => fonts.subtitle};
|
|
7120
|
-
`;
|
|
7121
|
-
const HeaderContainer = styled(FlexSpan) `
|
|
7122
|
-
display: flex;
|
|
7123
|
-
flex-grow: 1;
|
|
7124
|
-
flex-wrap: nowrap;
|
|
7125
|
-
width: calc(100% - 48px);
|
|
7126
|
-
`;
|
|
7127
|
-
const FeatureTitleContainer = styled.div `
|
|
7128
|
-
display: -webkit-box;
|
|
7129
|
-
max-width: 100%;
|
|
7130
|
-
width: 100%;
|
|
7131
|
-
margin: 0.5rem 0;
|
|
7132
|
-
-webkit-line-clamp: 2;
|
|
7133
|
-
-webkit-box-orient: vertical;
|
|
7134
|
-
overflow: hidden;
|
|
7135
|
-
text-overflow: ellipsis;
|
|
7136
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
7137
|
-
|
|
7138
|
-
& > ${FlexSpan} {
|
|
7139
|
-
cursor: ${({ clickable }) => clickable && "pointer"};
|
|
7140
|
-
|
|
7141
|
-
&:hover {
|
|
7142
|
-
color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
|
|
7143
|
-
}
|
|
7144
|
-
}
|
|
7115
|
+
const HeaderFrontView = styled(Flex) `
|
|
7116
|
+
z-index: 10;
|
|
7117
|
+
position: relative;
|
|
7118
|
+
justify-content: space-between;
|
|
7119
|
+
align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
|
|
7120
|
+
width: 100%;
|
|
7121
|
+
font: ${({ theme: { fonts } }) => fonts.subtitle};
|
|
7122
|
+
`;
|
|
7123
|
+
const HeaderContainer = styled(FlexSpan) `
|
|
7124
|
+
display: flex;
|
|
7125
|
+
flex-grow: 1;
|
|
7126
|
+
flex-wrap: nowrap;
|
|
7127
|
+
width: calc(100% - 48px);
|
|
7128
|
+
`;
|
|
7129
|
+
const FeatureTitleContainer = styled.div `
|
|
7130
|
+
display: -webkit-box;
|
|
7131
|
+
max-width: 100%;
|
|
7132
|
+
width: 100%;
|
|
7133
|
+
margin: 0.5rem 0;
|
|
7134
|
+
-webkit-line-clamp: 2;
|
|
7135
|
+
-webkit-box-orient: vertical;
|
|
7136
|
+
overflow: hidden;
|
|
7137
|
+
text-overflow: ellipsis;
|
|
7138
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
7139
|
+
|
|
7140
|
+
& > ${FlexSpan} {
|
|
7141
|
+
cursor: ${({ clickable }) => clickable && "pointer"};
|
|
7142
|
+
|
|
7143
|
+
&:hover {
|
|
7144
|
+
color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
|
|
7145
|
+
}
|
|
7146
|
+
}
|
|
7145
7147
|
`;
|
|
7146
|
-
const LayerDescription = styled(Description) `
|
|
7147
|
-
width: calc(100% - 4rem);
|
|
7148
|
-
display: -webkit-box;
|
|
7149
|
-
-webkit-line-clamp: 2;
|
|
7150
|
-
-webkit-box-orient: vertical;
|
|
7151
|
-
overflow: hidden;
|
|
7152
|
-
text-overflow: ellipsis;
|
|
7148
|
+
const LayerDescription = styled(Description) `
|
|
7149
|
+
width: calc(100% - 4rem);
|
|
7150
|
+
display: -webkit-box;
|
|
7151
|
+
-webkit-line-clamp: 2;
|
|
7152
|
+
-webkit-box-orient: vertical;
|
|
7153
|
+
overflow: hidden;
|
|
7154
|
+
text-overflow: ellipsis;
|
|
7153
7155
|
`;
|
|
7154
|
-
const HeaderTitleContainer = styled(Flex) `
|
|
7155
|
-
flex-direction: column;
|
|
7156
|
-
width: 100%;
|
|
7156
|
+
const HeaderTitleContainer = styled(Flex) `
|
|
7157
|
+
flex-direction: column;
|
|
7158
|
+
width: 100%;
|
|
7157
7159
|
`;
|
|
7158
|
-
const RowHeaderMixin = css `
|
|
7159
|
-
&&& {
|
|
7160
|
-
min-height: auto;
|
|
7161
|
-
|
|
7162
|
-
${FeatureTitleContainer}, ${LayerDescription} {
|
|
7163
|
-
text-align: left;
|
|
7164
|
-
}
|
|
7165
|
-
}
|
|
7166
|
-
|
|
7167
|
-
${HeaderContainer} {
|
|
7168
|
-
flex-direction: row;
|
|
7169
|
-
}
|
|
7170
|
-
|
|
7171
|
-
${FeatureTitleContainer} {
|
|
7172
|
-
max-width: calc(100% - 3.8rem);
|
|
7173
|
-
}
|
|
7160
|
+
const RowHeaderMixin = css `
|
|
7161
|
+
&&& {
|
|
7162
|
+
min-height: auto;
|
|
7163
|
+
|
|
7164
|
+
${FeatureTitleContainer}, ${LayerDescription} {
|
|
7165
|
+
text-align: left;
|
|
7166
|
+
}
|
|
7167
|
+
}
|
|
7168
|
+
|
|
7169
|
+
${HeaderContainer} {
|
|
7170
|
+
flex-direction: row;
|
|
7171
|
+
}
|
|
7172
|
+
|
|
7173
|
+
${FeatureTitleContainer} {
|
|
7174
|
+
max-width: calc(100% - 3.8rem);
|
|
7175
|
+
}
|
|
7174
7176
|
`;
|
|
7175
|
-
const Header = styled(Flex) `
|
|
7176
|
-
z-index: 1;
|
|
7177
|
-
position: relative;
|
|
7178
|
-
top: 0;
|
|
7179
|
-
flex-shrink: 0;
|
|
7180
|
-
overflow: hidden;
|
|
7181
|
-
width: 100%;
|
|
7182
|
-
padding: 0.5rem;
|
|
7183
|
-
|
|
7184
|
-
${HeaderContainer} {
|
|
7185
|
-
flex-direction: column;
|
|
7186
|
-
}
|
|
7187
|
-
|
|
7188
|
-
${({ $isRow }) => $isRow && RowHeaderMixin};
|
|
7177
|
+
const Header = styled(Flex) `
|
|
7178
|
+
z-index: 1;
|
|
7179
|
+
position: relative;
|
|
7180
|
+
top: 0;
|
|
7181
|
+
flex-shrink: 0;
|
|
7182
|
+
overflow: hidden;
|
|
7183
|
+
width: 100%;
|
|
7184
|
+
padding: 0.5rem;
|
|
7185
|
+
|
|
7186
|
+
${HeaderContainer} {
|
|
7187
|
+
flex-direction: column;
|
|
7188
|
+
}
|
|
7189
|
+
|
|
7190
|
+
${({ $isRow }) => $isRow && RowHeaderMixin};
|
|
7189
7191
|
`;
|
|
7190
|
-
const DefaultHeaderWrapper = styled.div `
|
|
7191
|
-
${Header} {
|
|
7192
|
-
padding: 0 1.5rem 1.5rem 0;
|
|
7193
|
-
}
|
|
7192
|
+
const DefaultHeaderWrapper = styled.div `
|
|
7193
|
+
${Header} {
|
|
7194
|
+
padding: 0 1.5rem 1.5rem 0;
|
|
7195
|
+
}
|
|
7194
7196
|
`;
|
|
7195
7197
|
|
|
7196
7198
|
const HeaderTitle = ({ noFeature }) => {
|
|
@@ -7218,22 +7220,22 @@ const HeaderTitle = ({ noFeature }) => {
|
|
|
7218
7220
|
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 })] }));
|
|
7219
7221
|
};
|
|
7220
7222
|
|
|
7221
|
-
const LayerIconContainer = styled.div `
|
|
7222
|
-
display: flex;
|
|
7223
|
-
align-items: center;
|
|
7224
|
-
margin-right: 0.75rem;
|
|
7223
|
+
const LayerIconContainer = styled.div `
|
|
7224
|
+
display: flex;
|
|
7225
|
+
align-items: center;
|
|
7226
|
+
margin-right: 0.75rem;
|
|
7225
7227
|
`;
|
|
7226
|
-
const AlertIconContainer = styled(Flex) `
|
|
7227
|
-
align-items: center;
|
|
7228
|
-
justify-content: center;
|
|
7229
|
-
width: 2rem;
|
|
7230
|
-
height: 2rem;
|
|
7231
|
-
|
|
7232
|
-
${Icon} {
|
|
7233
|
-
:after {
|
|
7234
|
-
color: ${({ theme: { palette } }) => palette.error};
|
|
7235
|
-
}
|
|
7236
|
-
}
|
|
7228
|
+
const AlertIconContainer = styled(Flex) `
|
|
7229
|
+
align-items: center;
|
|
7230
|
+
justify-content: center;
|
|
7231
|
+
width: 2rem;
|
|
7232
|
+
height: 2rem;
|
|
7233
|
+
|
|
7234
|
+
${Icon} {
|
|
7235
|
+
:after {
|
|
7236
|
+
color: ${({ theme: { palette } }) => palette.error};
|
|
7237
|
+
}
|
|
7238
|
+
}
|
|
7237
7239
|
`;
|
|
7238
7240
|
|
|
7239
7241
|
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";
|
|
@@ -7266,54 +7268,54 @@ const FeatureCardDefaultHeader = ({ noFeature }) => {
|
|
|
7266
7268
|
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, {})] }) }) }));
|
|
7267
7269
|
};
|
|
7268
7270
|
|
|
7269
|
-
const HeaderFontColorMixin$1 = css `
|
|
7270
|
-
${HeaderTitleContainer}, ${LayerDescription} {
|
|
7271
|
-
color: ${({ $fontColor }) => $fontColor};
|
|
7272
|
-
}
|
|
7271
|
+
const HeaderFontColorMixin$1 = css `
|
|
7272
|
+
${HeaderTitleContainer}, ${LayerDescription} {
|
|
7273
|
+
color: ${({ $fontColor }) => $fontColor};
|
|
7274
|
+
}
|
|
7273
7275
|
`;
|
|
7274
|
-
const HeaderWrapperMixin$1 = css `
|
|
7275
|
-
${Header} {
|
|
7276
|
-
min-height: 5.25rem;
|
|
7277
|
-
}
|
|
7278
|
-
|
|
7279
|
-
${HeaderContainer} {
|
|
7280
|
-
max-width: 100%;
|
|
7281
|
-
width: 100%;
|
|
7282
|
-
}
|
|
7283
|
-
|
|
7284
|
-
${FeatureControls} {
|
|
7285
|
-
max-width: calc(100% - 2rem);
|
|
7286
|
-
width: calc(100% - 2rem);
|
|
7287
|
-
margin-top: -0.5rem;
|
|
7288
|
-
padding-top: 1rem;
|
|
7289
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
7290
|
-
}
|
|
7291
|
-
|
|
7292
|
-
${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
|
|
7276
|
+
const HeaderWrapperMixin$1 = css `
|
|
7277
|
+
${Header} {
|
|
7278
|
+
min-height: 5.25rem;
|
|
7279
|
+
}
|
|
7280
|
+
|
|
7281
|
+
${HeaderContainer} {
|
|
7282
|
+
max-width: 100%;
|
|
7283
|
+
width: 100%;
|
|
7284
|
+
}
|
|
7285
|
+
|
|
7286
|
+
${FeatureControls} {
|
|
7287
|
+
max-width: calc(100% - 2rem);
|
|
7288
|
+
width: calc(100% - 2rem);
|
|
7289
|
+
margin-top: -0.5rem;
|
|
7290
|
+
padding-top: 1rem;
|
|
7291
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
7292
|
+
}
|
|
7293
|
+
|
|
7294
|
+
${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
|
|
7293
7295
|
`;
|
|
7294
|
-
const GradientHeaderWrapper = styled.div `
|
|
7295
|
-
${Header} {
|
|
7296
|
-
background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
|
|
7297
|
-
}
|
|
7298
|
-
|
|
7299
|
-
${HeaderContainer} {
|
|
7300
|
-
align-items: center;
|
|
7301
|
-
}
|
|
7302
|
-
|
|
7303
|
-
${HeaderTitleContainer} {
|
|
7304
|
-
margin-left: 0;
|
|
7305
|
-
text-align: center;
|
|
7306
|
-
}
|
|
7307
|
-
|
|
7308
|
-
${FeatureTitleContainer} {
|
|
7309
|
-
text-align: center;
|
|
7310
|
-
}
|
|
7311
|
-
|
|
7312
|
-
${LayerDescription} {
|
|
7313
|
-
text-align: center;
|
|
7314
|
-
}
|
|
7315
|
-
|
|
7316
|
-
${HeaderWrapperMixin$1};
|
|
7296
|
+
const GradientHeaderWrapper = styled.div `
|
|
7297
|
+
${Header} {
|
|
7298
|
+
background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
|
|
7299
|
+
}
|
|
7300
|
+
|
|
7301
|
+
${HeaderContainer} {
|
|
7302
|
+
align-items: center;
|
|
7303
|
+
}
|
|
7304
|
+
|
|
7305
|
+
${HeaderTitleContainer} {
|
|
7306
|
+
margin-left: 0;
|
|
7307
|
+
text-align: center;
|
|
7308
|
+
}
|
|
7309
|
+
|
|
7310
|
+
${FeatureTitleContainer} {
|
|
7311
|
+
text-align: center;
|
|
7312
|
+
}
|
|
7313
|
+
|
|
7314
|
+
${LayerDescription} {
|
|
7315
|
+
text-align: center;
|
|
7316
|
+
}
|
|
7317
|
+
|
|
7318
|
+
${HeaderWrapperMixin$1};
|
|
7317
7319
|
`;
|
|
7318
7320
|
|
|
7319
7321
|
const FeatureCardGradientHeader = ({ isRow }) => {
|
|
@@ -7332,80 +7334,80 @@ const FeatureCardGradientHeader = ({ isRow }) => {
|
|
|
7332
7334
|
}) })] }), jsx(FeatureCardButtons, {})] }) }) }) }));
|
|
7333
7335
|
};
|
|
7334
7336
|
|
|
7335
|
-
const HeaderFontColorMixin = css `
|
|
7336
|
-
${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
|
|
7337
|
-
color: ${({ $fontColor }) => $fontColor};
|
|
7338
|
-
}
|
|
7337
|
+
const HeaderFontColorMixin = css `
|
|
7338
|
+
${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
|
|
7339
|
+
color: ${({ $fontColor }) => $fontColor};
|
|
7340
|
+
}
|
|
7339
7341
|
`;
|
|
7340
|
-
const HeaderWrapperMixin = css `
|
|
7341
|
-
${Header} {
|
|
7342
|
-
min-height: 5.25rem;
|
|
7343
|
-
}
|
|
7344
|
-
|
|
7345
|
-
${HeaderContainer} {
|
|
7346
|
-
max-width: 100%;
|
|
7347
|
-
width: 100%;
|
|
7348
|
-
}
|
|
7349
|
-
|
|
7350
|
-
${FeatureControls} {
|
|
7351
|
-
max-width: calc(100% - 2rem);
|
|
7352
|
-
width: calc(100% - 2rem);
|
|
7353
|
-
margin-top: -0.5rem;
|
|
7354
|
-
padding-top: 1rem;
|
|
7355
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
7356
|
-
}
|
|
7357
|
-
|
|
7358
|
-
${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
|
|
7359
|
-
`;
|
|
7360
|
-
const HeaderIcon = styled(Flex) `
|
|
7361
|
-
position: absolute;
|
|
7362
|
-
top: 0;
|
|
7363
|
-
right: 0;
|
|
7364
|
-
justify-content: flex-end;
|
|
7365
|
-
align-items: center;
|
|
7366
|
-
min-width: 7.5rem;
|
|
7367
|
-
height: 100%;
|
|
7368
|
-
|
|
7369
|
-
span[kind]:after {
|
|
7370
|
-
font-size: 7.5rem;
|
|
7371
|
-
}
|
|
7372
|
-
|
|
7373
|
-
span[kind]:after,
|
|
7374
|
-
path,
|
|
7375
|
-
line,
|
|
7376
|
-
circle {
|
|
7377
|
-
fill: rgba(255, 255, 255, 0.36);
|
|
7378
|
-
}
|
|
7379
|
-
|
|
7380
|
-
&& > * {
|
|
7381
|
-
display: flex;
|
|
7382
|
-
align-items: center;
|
|
7383
|
-
height: 100%;
|
|
7384
|
-
}
|
|
7342
|
+
const HeaderWrapperMixin = css `
|
|
7343
|
+
${Header} {
|
|
7344
|
+
min-height: 5.25rem;
|
|
7345
|
+
}
|
|
7346
|
+
|
|
7347
|
+
${HeaderContainer} {
|
|
7348
|
+
max-width: 100%;
|
|
7349
|
+
width: 100%;
|
|
7350
|
+
}
|
|
7351
|
+
|
|
7352
|
+
${FeatureControls} {
|
|
7353
|
+
max-width: calc(100% - 2rem);
|
|
7354
|
+
width: calc(100% - 2rem);
|
|
7355
|
+
margin-top: -0.5rem;
|
|
7356
|
+
padding-top: 1rem;
|
|
7357
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
7358
|
+
}
|
|
7359
|
+
|
|
7360
|
+
${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
|
|
7361
|
+
`;
|
|
7362
|
+
const HeaderIcon = styled(Flex) `
|
|
7363
|
+
position: absolute;
|
|
7364
|
+
top: 0;
|
|
7365
|
+
right: 0;
|
|
7366
|
+
justify-content: flex-end;
|
|
7367
|
+
align-items: center;
|
|
7368
|
+
min-width: 7.5rem;
|
|
7369
|
+
height: 100%;
|
|
7370
|
+
|
|
7371
|
+
span[kind]:after {
|
|
7372
|
+
font-size: 7.5rem;
|
|
7373
|
+
}
|
|
7374
|
+
|
|
7375
|
+
span[kind]:after,
|
|
7376
|
+
path,
|
|
7377
|
+
line,
|
|
7378
|
+
circle {
|
|
7379
|
+
fill: rgba(255, 255, 255, 0.36);
|
|
7380
|
+
}
|
|
7381
|
+
|
|
7382
|
+
&& > * {
|
|
7383
|
+
display: flex;
|
|
7384
|
+
align-items: center;
|
|
7385
|
+
height: 100%;
|
|
7386
|
+
}
|
|
7385
7387
|
`;
|
|
7386
|
-
const BigIconHeaderMixin = css `
|
|
7387
|
-
${HeaderIcon} {
|
|
7388
|
-
min-width: 14rem;
|
|
7389
|
-
right: -3rem;
|
|
7390
|
-
|
|
7391
|
-
span[kind]:after {
|
|
7392
|
-
font-size: 14rem;
|
|
7393
|
-
}
|
|
7394
|
-
}
|
|
7388
|
+
const BigIconHeaderMixin = css `
|
|
7389
|
+
${HeaderIcon} {
|
|
7390
|
+
min-width: 14rem;
|
|
7391
|
+
right: -3rem;
|
|
7392
|
+
|
|
7393
|
+
span[kind]:after {
|
|
7394
|
+
font-size: 14rem;
|
|
7395
|
+
}
|
|
7396
|
+
}
|
|
7395
7397
|
`;
|
|
7396
|
-
const IconHeaderWrapper = styled.div `
|
|
7397
|
-
${Header} {
|
|
7398
|
-
width: calc(100% + 1.5rem);
|
|
7399
|
-
margin: -1.5rem -1.5rem 0 -1.5rem;
|
|
7400
|
-
padding: 1.5rem;
|
|
7401
|
-
border-top-left-radius: 0.5rem;
|
|
7402
|
-
border-top-right-radius: 0.5rem;
|
|
7403
|
-
background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
|
|
7404
|
-
}
|
|
7405
|
-
|
|
7406
|
-
${HeaderWrapperMixin};
|
|
7407
|
-
|
|
7408
|
-
${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
|
|
7398
|
+
const IconHeaderWrapper = styled.div `
|
|
7399
|
+
${Header} {
|
|
7400
|
+
width: calc(100% + 1.5rem);
|
|
7401
|
+
margin: -1.5rem -1.5rem 0 -1.5rem;
|
|
7402
|
+
padding: 1.5rem;
|
|
7403
|
+
border-top-left-radius: 0.5rem;
|
|
7404
|
+
border-top-right-radius: 0.5rem;
|
|
7405
|
+
background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
|
|
7406
|
+
}
|
|
7407
|
+
|
|
7408
|
+
${HeaderWrapperMixin};
|
|
7409
|
+
|
|
7410
|
+
${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
|
|
7409
7411
|
`;
|
|
7410
7412
|
|
|
7411
7413
|
const FeatureCardIconHeader = ({ isRow }) => {
|
|
@@ -7427,15 +7429,15 @@ const FeatureCardIconHeader = ({ isRow }) => {
|
|
|
7427
7429
|
}) })] }) }) }));
|
|
7428
7430
|
};
|
|
7429
7431
|
|
|
7430
|
-
const ImageContainerButton = styled(FlatButton) `
|
|
7431
|
-
min-height: 1.5rem;
|
|
7432
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
7433
|
-
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7434
|
-
text-transform: none;
|
|
7435
|
-
|
|
7436
|
-
:hover {
|
|
7437
|
-
background-color: ${({ theme: { palette } }) => palette.primaryDeep};
|
|
7438
|
-
}
|
|
7432
|
+
const ImageContainerButton = styled(FlatButton) `
|
|
7433
|
+
min-height: 1.5rem;
|
|
7434
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
|
|
7435
|
+
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7436
|
+
text-transform: none;
|
|
7437
|
+
|
|
7438
|
+
:hover {
|
|
7439
|
+
background-color: ${({ theme: { palette } }) => palette.primaryDeep};
|
|
7440
|
+
}
|
|
7439
7441
|
`;
|
|
7440
7442
|
|
|
7441
7443
|
const ElementButton = memo(({ type, elementConfig }) => {
|
|
@@ -7447,157 +7449,157 @@ const ElementButton = memo(({ type, elementConfig }) => {
|
|
|
7447
7449
|
return (jsx(ImageContainerButton, { onClick: () => window.open(attribute?.value), children: elementConfig.value || "" }));
|
|
7448
7450
|
});
|
|
7449
7451
|
|
|
7450
|
-
const AttributeGalleryContainer = styled.div `
|
|
7451
|
-
&& {
|
|
7452
|
-
width: calc(100% + 3rem);
|
|
7453
|
-
}
|
|
7454
|
-
|
|
7455
|
-
min-height: 12.625rem;
|
|
7456
|
-
background-color: ${({ theme: { palette } }) => palette.element};
|
|
7457
|
-
|
|
7458
|
-
img {
|
|
7459
|
-
width: 100%;
|
|
7460
|
-
}
|
|
7452
|
+
const AttributeGalleryContainer = styled.div `
|
|
7453
|
+
&& {
|
|
7454
|
+
width: calc(100% + 3rem);
|
|
7455
|
+
}
|
|
7456
|
+
|
|
7457
|
+
min-height: 12.625rem;
|
|
7458
|
+
background-color: ${({ theme: { palette } }) => palette.element};
|
|
7459
|
+
|
|
7460
|
+
img {
|
|
7461
|
+
width: 100%;
|
|
7462
|
+
}
|
|
7461
7463
|
`;
|
|
7462
|
-
const LinearProgressContainer = styled(Flex) `
|
|
7463
|
-
align-items: center;
|
|
7464
|
-
justify-content: center;
|
|
7465
|
-
min-height: inherit;
|
|
7466
|
-
|
|
7467
|
-
${LinearProgress} {
|
|
7468
|
-
max-width: 4rem;
|
|
7469
|
-
}
|
|
7464
|
+
const LinearProgressContainer = styled(Flex) `
|
|
7465
|
+
align-items: center;
|
|
7466
|
+
justify-content: center;
|
|
7467
|
+
min-height: inherit;
|
|
7468
|
+
|
|
7469
|
+
${LinearProgress} {
|
|
7470
|
+
max-width: 4rem;
|
|
7471
|
+
}
|
|
7470
7472
|
`;
|
|
7471
|
-
const NoLiveSnapshotContainer = styled(Flex) `
|
|
7472
|
-
flex-direction: column;
|
|
7473
|
-
align-items: center;
|
|
7474
|
-
|
|
7475
|
-
span[kind="alert"] {
|
|
7476
|
-
width: 2rem;
|
|
7477
|
-
height: 2rem;
|
|
7478
|
-
|
|
7479
|
-
&:after {
|
|
7480
|
-
font-size: 2rem;
|
|
7481
|
-
color: ${({ theme: { palette } }) => palette.elementDeep};
|
|
7482
|
-
}
|
|
7483
|
-
}
|
|
7484
|
-
|
|
7485
|
-
${Description} {
|
|
7486
|
-
font-size: 0.75rem;
|
|
7487
|
-
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
7488
|
-
}
|
|
7473
|
+
const NoLiveSnapshotContainer = styled(Flex) `
|
|
7474
|
+
flex-direction: column;
|
|
7475
|
+
align-items: center;
|
|
7476
|
+
|
|
7477
|
+
span[kind="alert"] {
|
|
7478
|
+
width: 2rem;
|
|
7479
|
+
height: 2rem;
|
|
7480
|
+
|
|
7481
|
+
&:after {
|
|
7482
|
+
font-size: 2rem;
|
|
7483
|
+
color: ${({ theme: { palette } }) => palette.elementDeep};
|
|
7484
|
+
}
|
|
7485
|
+
}
|
|
7486
|
+
|
|
7487
|
+
${Description} {
|
|
7488
|
+
font-size: 0.75rem;
|
|
7489
|
+
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
7490
|
+
}
|
|
7489
7491
|
`;
|
|
7490
|
-
const SmallPreviewControl = styled(IconButton) `
|
|
7491
|
-
cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
|
|
7492
|
-
z-index: 3;
|
|
7493
|
-
position: absolute;
|
|
7494
|
-
top: 50%;
|
|
7495
|
-
width: 2.5rem;
|
|
7496
|
-
height: 2.5rem;
|
|
7497
|
-
margin-top: -1.25rem;
|
|
7498
|
-
background-color: rgba(61, 61, 61, 0.8);
|
|
7499
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
|
|
7500
|
-
|
|
7501
|
-
span:after {
|
|
7502
|
-
color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
|
|
7503
|
-
transition: color ${transition.hover};
|
|
7504
|
-
}
|
|
7492
|
+
const SmallPreviewControl = styled(IconButton) `
|
|
7493
|
+
cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
|
|
7494
|
+
z-index: 3;
|
|
7495
|
+
position: absolute;
|
|
7496
|
+
top: 50%;
|
|
7497
|
+
width: 2.5rem;
|
|
7498
|
+
height: 2.5rem;
|
|
7499
|
+
margin-top: -1.25rem;
|
|
7500
|
+
background-color: rgba(61, 61, 61, 0.8);
|
|
7501
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
|
|
7502
|
+
|
|
7503
|
+
span:after {
|
|
7504
|
+
color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
|
|
7505
|
+
transition: color ${transition.hover};
|
|
7506
|
+
}
|
|
7505
7507
|
`;
|
|
7506
|
-
const SmallPreviewCounter = styled(Flex) `
|
|
7507
|
-
z-index: 3;
|
|
7508
|
-
position: absolute;
|
|
7509
|
-
bottom: 0.625rem;
|
|
7510
|
-
left: 0;
|
|
7511
|
-
width: 100%;
|
|
7512
|
-
height: 1rem;
|
|
7513
|
-
justify-content: center;
|
|
7514
|
-
|
|
7515
|
-
> div {
|
|
7516
|
-
background-color: rgba(61, 61, 61, 0.8);
|
|
7517
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
7518
|
-
padding: 0 0.5rem;
|
|
7519
|
-
font-size: 0.625rem;
|
|
7520
|
-
line-height: 1rem;
|
|
7521
|
-
color: #fff;
|
|
7522
|
-
}
|
|
7508
|
+
const SmallPreviewCounter = styled(Flex) `
|
|
7509
|
+
z-index: 3;
|
|
7510
|
+
position: absolute;
|
|
7511
|
+
bottom: 0.625rem;
|
|
7512
|
+
left: 0;
|
|
7513
|
+
width: 100%;
|
|
7514
|
+
height: 1rem;
|
|
7515
|
+
justify-content: center;
|
|
7516
|
+
|
|
7517
|
+
> div {
|
|
7518
|
+
background-color: rgba(61, 61, 61, 0.8);
|
|
7519
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
7520
|
+
padding: 0 0.5rem;
|
|
7521
|
+
font-size: 0.625rem;
|
|
7522
|
+
line-height: 1rem;
|
|
7523
|
+
color: #fff;
|
|
7524
|
+
}
|
|
7523
7525
|
`;
|
|
7524
7526
|
const SmallPreviewLeft = styled(SmallPreviewControl).attrs(() => ({
|
|
7525
7527
|
kind: "prev",
|
|
7526
|
-
})) `
|
|
7527
|
-
left: 1.5rem;
|
|
7528
|
+
})) `
|
|
7529
|
+
left: 1.5rem;
|
|
7528
7530
|
`;
|
|
7529
7531
|
const SmallPreviewRight = styled(SmallPreviewControl).attrs(() => ({
|
|
7530
7532
|
kind: "next",
|
|
7531
|
-
})) `
|
|
7532
|
-
right: 1.5rem;
|
|
7533
|
-
`;
|
|
7534
|
-
const imgSlideShowMixin = css `
|
|
7535
|
-
&:nth-child(${({ prevIndex }) => prevIndex}) {
|
|
7536
|
-
z-index: 2;
|
|
7537
|
-
position: absolute;
|
|
7538
|
-
top: 0;
|
|
7539
|
-
left: 0;
|
|
7540
|
-
right: 0;
|
|
7541
|
-
bottom: 0;
|
|
7542
|
-
opacity: 0;
|
|
7543
|
-
|
|
7544
|
-
animation-duration: 0.25s;
|
|
7545
|
-
animation-name: fadeOut;
|
|
7546
|
-
animation-timing-function: linear;
|
|
7547
|
-
|
|
7548
|
-
@keyframes fadeOut {
|
|
7549
|
-
from {
|
|
7550
|
-
opacity: 1;
|
|
7551
|
-
}
|
|
7552
|
-
|
|
7553
|
-
to {
|
|
7554
|
-
opacity: 0;
|
|
7555
|
-
}
|
|
7556
|
-
}
|
|
7557
|
-
}
|
|
7533
|
+
})) `
|
|
7534
|
+
right: 1.5rem;
|
|
7535
|
+
`;
|
|
7536
|
+
const imgSlideShowMixin = css `
|
|
7537
|
+
&:nth-child(${({ prevIndex }) => prevIndex}) {
|
|
7538
|
+
z-index: 2;
|
|
7539
|
+
position: absolute;
|
|
7540
|
+
top: 0;
|
|
7541
|
+
left: 0;
|
|
7542
|
+
right: 0;
|
|
7543
|
+
bottom: 0;
|
|
7544
|
+
opacity: 0;
|
|
7545
|
+
|
|
7546
|
+
animation-duration: 0.25s;
|
|
7547
|
+
animation-name: fadeOut;
|
|
7548
|
+
animation-timing-function: linear;
|
|
7549
|
+
|
|
7550
|
+
@keyframes fadeOut {
|
|
7551
|
+
from {
|
|
7552
|
+
opacity: 1;
|
|
7553
|
+
}
|
|
7554
|
+
|
|
7555
|
+
to {
|
|
7556
|
+
opacity: 0;
|
|
7557
|
+
}
|
|
7558
|
+
}
|
|
7559
|
+
}
|
|
7558
7560
|
`;
|
|
7559
|
-
const SmallPreviewContainer$1 = styled.div `
|
|
7560
|
-
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
7561
|
-
position: relative;
|
|
7562
|
-
width: 100%;
|
|
7563
|
-
height: 100%;
|
|
7564
|
-
min-height: inherit;
|
|
7565
|
-
line-height: 0;
|
|
7566
|
-
|
|
7567
|
-
${LinearProgress} {
|
|
7568
|
-
z-index: 3;
|
|
7569
|
-
position: absolute;
|
|
7570
|
-
}
|
|
7571
|
-
|
|
7572
|
-
${SmallPreviewControl}, ${SmallPreviewCounter} {
|
|
7573
|
-
opacity: 0;
|
|
7574
|
-
transition: opacity ${transition.hover};
|
|
7575
|
-
}
|
|
7576
|
-
|
|
7577
|
-
&:hover {
|
|
7578
|
-
${SmallPreviewControl}, ${SmallPreviewCounter} {
|
|
7579
|
-
opacity: 1;
|
|
7580
|
-
}
|
|
7581
|
-
}
|
|
7582
|
-
|
|
7583
|
-
img {
|
|
7584
|
-
z-index: 0;
|
|
7585
|
-
cursor: pointer;
|
|
7586
|
-
position: absolute;
|
|
7587
|
-
top: 0;
|
|
7588
|
-
left: 0;
|
|
7589
|
-
width: 100%;
|
|
7590
|
-
height: 100%;
|
|
7591
|
-
min-height: inherit;
|
|
7592
|
-
object-position: center;
|
|
7593
|
-
object-fit: cover;
|
|
7594
|
-
|
|
7595
|
-
&:nth-child(${({ currentIndex }) => currentIndex}) {
|
|
7596
|
-
z-index: 1;
|
|
7597
|
-
}
|
|
7598
|
-
|
|
7599
|
-
${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
|
|
7600
|
-
}
|
|
7561
|
+
const SmallPreviewContainer$1 = styled.div `
|
|
7562
|
+
cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
|
|
7563
|
+
position: relative;
|
|
7564
|
+
width: 100%;
|
|
7565
|
+
height: 100%;
|
|
7566
|
+
min-height: inherit;
|
|
7567
|
+
line-height: 0;
|
|
7568
|
+
|
|
7569
|
+
${LinearProgress} {
|
|
7570
|
+
z-index: 3;
|
|
7571
|
+
position: absolute;
|
|
7572
|
+
}
|
|
7573
|
+
|
|
7574
|
+
${SmallPreviewControl}, ${SmallPreviewCounter} {
|
|
7575
|
+
opacity: 0;
|
|
7576
|
+
transition: opacity ${transition.hover};
|
|
7577
|
+
}
|
|
7578
|
+
|
|
7579
|
+
&:hover {
|
|
7580
|
+
${SmallPreviewControl}, ${SmallPreviewCounter} {
|
|
7581
|
+
opacity: 1;
|
|
7582
|
+
}
|
|
7583
|
+
}
|
|
7584
|
+
|
|
7585
|
+
img {
|
|
7586
|
+
z-index: 0;
|
|
7587
|
+
cursor: pointer;
|
|
7588
|
+
position: absolute;
|
|
7589
|
+
top: 0;
|
|
7590
|
+
left: 0;
|
|
7591
|
+
width: 100%;
|
|
7592
|
+
height: 100%;
|
|
7593
|
+
min-height: inherit;
|
|
7594
|
+
object-position: center;
|
|
7595
|
+
object-fit: cover;
|
|
7596
|
+
|
|
7597
|
+
&:nth-child(${({ currentIndex }) => currentIndex}) {
|
|
7598
|
+
z-index: 1;
|
|
7599
|
+
}
|
|
7600
|
+
|
|
7601
|
+
${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
|
|
7602
|
+
}
|
|
7601
7603
|
`;
|
|
7602
7604
|
const SmallPreviewImages = styled.div ``;
|
|
7603
7605
|
|
|
@@ -7804,21 +7806,21 @@ const ElementControl = ({ elementConfig }) => {
|
|
|
7804
7806
|
return (jsx(Dropdown, { zIndex: 1000, width: `${width ?? DEFAULT_DROPDOWN_WIDTH}px`, label: label, options: items, value: controls?.[control?.targetAttributeName] ?? attribute?.value ?? defaultValue, placeholder: placeholder, disabled: isDisabled, onChange: handleChange }));
|
|
7805
7807
|
};
|
|
7806
7808
|
|
|
7807
|
-
const StyledIconFontSizeMixin = css `
|
|
7808
|
-
height: ${({ fontSize }) => `${fontSize}px`};
|
|
7809
|
-
|
|
7810
|
-
&&:after {
|
|
7811
|
-
font-size: ${({ fontSize }) => `${fontSize}px`};
|
|
7812
|
-
}
|
|
7809
|
+
const StyledIconFontSizeMixin = css `
|
|
7810
|
+
height: ${({ fontSize }) => `${fontSize}px`};
|
|
7811
|
+
|
|
7812
|
+
&&:after {
|
|
7813
|
+
font-size: ${({ fontSize }) => `${fontSize}px`};
|
|
7814
|
+
}
|
|
7813
7815
|
`;
|
|
7814
|
-
const StyledIconFontColorMixin = css `
|
|
7815
|
-
&&:after {
|
|
7816
|
-
color: ${({ fontColor }) => fontColor};
|
|
7817
|
-
}
|
|
7816
|
+
const StyledIconFontColorMixin = css `
|
|
7817
|
+
&&:after {
|
|
7818
|
+
color: ${({ fontColor }) => fontColor};
|
|
7819
|
+
}
|
|
7818
7820
|
`;
|
|
7819
|
-
const StyledIcon = styled(Icon) `
|
|
7820
|
-
${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
|
|
7821
|
-
${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
|
|
7821
|
+
const StyledIcon = styled(Icon) `
|
|
7822
|
+
${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
|
|
7823
|
+
${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
|
|
7822
7824
|
`;
|
|
7823
7825
|
|
|
7824
7826
|
const ElementIcon = memo(({ type, elementConfig }) => {
|
|
@@ -7884,55 +7886,55 @@ const ElementLegend = memo(({ type, element, elementConfig }) => {
|
|
|
7884
7886
|
|
|
7885
7887
|
const ExternalLink = styled(IconButton).attrs(() => ({
|
|
7886
7888
|
kind: "external_link",
|
|
7887
|
-
})) `
|
|
7888
|
-
${Icon} {
|
|
7889
|
-
color: ${({ theme: { palette } }) => palette.primary};
|
|
7890
|
-
}
|
|
7891
|
-
|
|
7892
|
-
&:hover ${Icon} {
|
|
7893
|
-
color: ${({ theme: { palette } }) => palette.primaryDeep};
|
|
7894
|
-
}
|
|
7889
|
+
})) `
|
|
7890
|
+
${Icon} {
|
|
7891
|
+
color: ${({ theme: { palette } }) => palette.primary};
|
|
7892
|
+
}
|
|
7893
|
+
|
|
7894
|
+
&:hover ${Icon} {
|
|
7895
|
+
color: ${({ theme: { palette } }) => palette.primaryDeep};
|
|
7896
|
+
}
|
|
7895
7897
|
`;
|
|
7896
|
-
const Link = styled.a `
|
|
7897
|
-
text-decoration: none;
|
|
7898
|
-
font-size: 0.75rem;
|
|
7899
|
-
color: ${({ theme: { palette } }) => palette.primary};
|
|
7898
|
+
const Link = styled.a `
|
|
7899
|
+
text-decoration: none;
|
|
7900
|
+
font-size: 0.75rem;
|
|
7901
|
+
color: ${({ theme: { palette } }) => palette.primary};
|
|
7900
7902
|
`;
|
|
7901
|
-
const LocalLinkBlank = styled(Blank) `
|
|
7902
|
-
min-width: 13.5rem;
|
|
7903
|
-
padding: 0.5rem 0.75rem 0;
|
|
7904
|
-
|
|
7905
|
-
${IconButtonButton} {
|
|
7906
|
-
font-size: 0.75rem;
|
|
7907
|
-
}
|
|
7903
|
+
const LocalLinkBlank = styled(Blank) `
|
|
7904
|
+
min-width: 13.5rem;
|
|
7905
|
+
padding: 0.5rem 0.75rem 0;
|
|
7906
|
+
|
|
7907
|
+
${IconButtonButton} {
|
|
7908
|
+
font-size: 0.75rem;
|
|
7909
|
+
}
|
|
7908
7910
|
`;
|
|
7909
7911
|
const LocalLinkButton = styled(IconButton).attrs(() => ({
|
|
7910
7912
|
kind: "link",
|
|
7911
|
-
})) `
|
|
7912
|
-
width: 1rem;
|
|
7913
|
-
height: 1rem;
|
|
7914
|
-
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7915
|
-
padding: 0;
|
|
7916
|
-
border-radius: 50%;
|
|
7917
|
-
|
|
7918
|
-
:hover {
|
|
7919
|
-
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7920
|
-
}
|
|
7921
|
-
|
|
7922
|
-
span[kind] {
|
|
7923
|
-
display: flex;
|
|
7924
|
-
justify-content: center;
|
|
7925
|
-
align-items: center;
|
|
7926
|
-
|
|
7927
|
-
:after {
|
|
7928
|
-
position: relative;
|
|
7929
|
-
font-size: 0.6rem;
|
|
7930
|
-
color: white;
|
|
7931
|
-
}
|
|
7932
|
-
}
|
|
7913
|
+
})) `
|
|
7914
|
+
width: 1rem;
|
|
7915
|
+
height: 1rem;
|
|
7916
|
+
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7917
|
+
padding: 0;
|
|
7918
|
+
border-radius: 50%;
|
|
7919
|
+
|
|
7920
|
+
:hover {
|
|
7921
|
+
background-color: ${({ theme: { palette } }) => palette.primary};
|
|
7922
|
+
}
|
|
7923
|
+
|
|
7924
|
+
span[kind] {
|
|
7925
|
+
display: flex;
|
|
7926
|
+
justify-content: center;
|
|
7927
|
+
align-items: center;
|
|
7928
|
+
|
|
7929
|
+
:after {
|
|
7930
|
+
position: relative;
|
|
7931
|
+
font-size: 0.6rem;
|
|
7932
|
+
color: white;
|
|
7933
|
+
}
|
|
7934
|
+
}
|
|
7933
7935
|
`;
|
|
7934
|
-
const LocalLinkCopy = styled(Flex) `
|
|
7935
|
-
justify-content: center;
|
|
7936
|
+
const LocalLinkCopy = styled(Flex) `
|
|
7937
|
+
justify-content: center;
|
|
7936
7938
|
`;
|
|
7937
7939
|
|
|
7938
7940
|
const LocalLink = memo(({ link, style }) => {
|
|
@@ -7961,106 +7963,113 @@ const ElementLink = memo(({ type, elementConfig }) => {
|
|
|
7961
7963
|
: jsx(LocalLink, { style: style, link: link });
|
|
7962
7964
|
});
|
|
7963
7965
|
|
|
7964
|
-
const MarkdownWrapper = styled.div `
|
|
7965
|
-
padding: 0;
|
|
7966
|
-
background: transparent;
|
|
7967
|
-
border-radius: 0.5rem;
|
|
7968
|
-
font-family: 'Nunito Sans', sans-serif;
|
|
7969
|
-
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
7970
|
-
|
|
7971
|
-
/* Paragraphs */
|
|
7972
|
-
p {
|
|
7973
|
-
font-size: 0.875rem;
|
|
7974
|
-
line-height: 1rem;
|
|
7975
|
-
letter-spacing: 0.0052rem;
|
|
7976
|
-
margin: 0 0 1rem 0;
|
|
7977
|
-
font-weight: 400;
|
|
7978
|
-
|
|
7979
|
-
&:last-child {
|
|
7980
|
-
margin-bottom: 0;
|
|
7981
|
-
}
|
|
7982
|
-
}
|
|
7983
|
-
|
|
7984
|
-
/* Headings */
|
|
7985
|
-
h1, h2, h3, h4, h5, h6 {
|
|
7986
|
-
margin: 0 0 0.75rem 0;
|
|
7987
|
-
font-weight: 300;
|
|
7988
|
-
}
|
|
7989
|
-
|
|
7990
|
-
h1 {
|
|
7991
|
-
font-size: 1.5rem;
|
|
7992
|
-
line-height: 1.75rem;
|
|
7993
|
-
}
|
|
7994
|
-
|
|
7995
|
-
h2 {
|
|
7996
|
-
font-size: 1.25rem;
|
|
7997
|
-
line-height: 1.5rem;
|
|
7998
|
-
}
|
|
7999
|
-
|
|
8000
|
-
h3 {
|
|
8001
|
-
font-size: 1rem;
|
|
8002
|
-
line-height: 1.25rem;
|
|
8003
|
-
}
|
|
8004
|
-
|
|
8005
|
-
/* Images */
|
|
8006
|
-
img {
|
|
8007
|
-
max-width: 100%;
|
|
8008
|
-
height: auto;
|
|
8009
|
-
border-radius: 0.5rem;
|
|
8010
|
-
object-fit: cover;
|
|
8011
|
-
margin: 0.75rem 0;
|
|
8012
|
-
}
|
|
8013
|
-
|
|
8014
|
-
/* Links */
|
|
8015
|
-
a {
|
|
8016
|
-
color: ${({ theme: { palette } }) => palette.primary};
|
|
8017
|
-
text-decoration: none;
|
|
8018
|
-
|
|
8019
|
-
&:hover {
|
|
8020
|
-
text-decoration: underline;
|
|
8021
|
-
}
|
|
8022
|
-
}
|
|
8023
|
-
|
|
8024
|
-
/* Lists */
|
|
8025
|
-
ul, ol {
|
|
8026
|
-
margin: 0 0 1rem 0;
|
|
8027
|
-
padding-left: 1.25rem;
|
|
8028
|
-
|
|
8029
|
-
li {
|
|
8030
|
-
font-size: 0.875rem;
|
|
8031
|
-
line-height: 1rem;
|
|
8032
|
-
margin-bottom: 0.5rem;
|
|
8033
|
-
}
|
|
8034
|
-
}
|
|
8035
|
-
|
|
8036
|
-
/* Code */
|
|
8037
|
-
code {
|
|
8038
|
-
background: ${({ theme: { palette } }) => palette.element};
|
|
8039
|
-
padding: 0.125rem 0.375rem;
|
|
8040
|
-
border-radius: 0.25rem;
|
|
8041
|
-
font-family: monospace;
|
|
8042
|
-
font-size: 0.8125rem;
|
|
8043
|
-
}
|
|
8044
|
-
|
|
8045
|
-
pre {
|
|
8046
|
-
background: ${({ theme: { palette } }) => palette.element};
|
|
8047
|
-
padding: 0.75rem;
|
|
8048
|
-
border-radius: 0.25rem;
|
|
8049
|
-
overflow-x: auto;
|
|
8050
|
-
margin: 0.75rem 0;
|
|
8051
|
-
|
|
8052
|
-
code {
|
|
8053
|
-
background: transparent;
|
|
8054
|
-
padding: 0;
|
|
8055
|
-
}
|
|
8056
|
-
}
|
|
8057
|
-
|
|
8058
|
-
/* Hide horizontal rules */
|
|
8059
|
-
hr {
|
|
8060
|
-
display: none;
|
|
8061
|
-
}
|
|
7966
|
+
const MarkdownWrapper = styled.div `
|
|
7967
|
+
padding: 0;
|
|
7968
|
+
background: transparent;
|
|
7969
|
+
border-radius: 0.5rem;
|
|
7970
|
+
font-family: 'Nunito Sans', sans-serif;
|
|
7971
|
+
color: ${({ theme: { palette } }) => palette.textPrimary};
|
|
7972
|
+
|
|
7973
|
+
/* Paragraphs */
|
|
7974
|
+
p {
|
|
7975
|
+
font-size: 0.875rem;
|
|
7976
|
+
line-height: 1rem;
|
|
7977
|
+
letter-spacing: 0.0052rem;
|
|
7978
|
+
margin: 0 0 1rem 0;
|
|
7979
|
+
font-weight: 400;
|
|
7980
|
+
|
|
7981
|
+
&:last-child {
|
|
7982
|
+
margin-bottom: 0;
|
|
7983
|
+
}
|
|
7984
|
+
}
|
|
7985
|
+
|
|
7986
|
+
/* Headings */
|
|
7987
|
+
h1, h2, h3, h4, h5, h6 {
|
|
7988
|
+
margin: 0 0 0.75rem 0;
|
|
7989
|
+
font-weight: 300;
|
|
7990
|
+
}
|
|
7991
|
+
|
|
7992
|
+
h1 {
|
|
7993
|
+
font-size: 1.5rem;
|
|
7994
|
+
line-height: 1.75rem;
|
|
7995
|
+
}
|
|
7996
|
+
|
|
7997
|
+
h2 {
|
|
7998
|
+
font-size: 1.25rem;
|
|
7999
|
+
line-height: 1.5rem;
|
|
8000
|
+
}
|
|
8001
|
+
|
|
8002
|
+
h3 {
|
|
8003
|
+
font-size: 1rem;
|
|
8004
|
+
line-height: 1.25rem;
|
|
8005
|
+
}
|
|
8006
|
+
|
|
8007
|
+
/* Images */
|
|
8008
|
+
img {
|
|
8009
|
+
max-width: 100%;
|
|
8010
|
+
height: auto;
|
|
8011
|
+
border-radius: 0.5rem;
|
|
8012
|
+
object-fit: cover;
|
|
8013
|
+
margin: 0.75rem 0;
|
|
8014
|
+
}
|
|
8015
|
+
|
|
8016
|
+
/* Links */
|
|
8017
|
+
a {
|
|
8018
|
+
color: ${({ theme: { palette } }) => palette.primary};
|
|
8019
|
+
text-decoration: none;
|
|
8020
|
+
|
|
8021
|
+
&:hover {
|
|
8022
|
+
text-decoration: underline;
|
|
8023
|
+
}
|
|
8024
|
+
}
|
|
8025
|
+
|
|
8026
|
+
/* Lists */
|
|
8027
|
+
ul, ol {
|
|
8028
|
+
margin: 0 0 1rem 0;
|
|
8029
|
+
padding-left: 1.25rem;
|
|
8030
|
+
|
|
8031
|
+
li {
|
|
8032
|
+
font-size: 0.875rem;
|
|
8033
|
+
line-height: 1rem;
|
|
8034
|
+
margin-bottom: 0.5rem;
|
|
8035
|
+
}
|
|
8036
|
+
}
|
|
8037
|
+
|
|
8038
|
+
/* Code */
|
|
8039
|
+
code {
|
|
8040
|
+
background: ${({ theme: { palette } }) => palette.element};
|
|
8041
|
+
padding: 0.125rem 0.375rem;
|
|
8042
|
+
border-radius: 0.25rem;
|
|
8043
|
+
font-family: monospace;
|
|
8044
|
+
font-size: 0.8125rem;
|
|
8045
|
+
}
|
|
8046
|
+
|
|
8047
|
+
pre {
|
|
8048
|
+
background: ${({ theme: { palette } }) => palette.element};
|
|
8049
|
+
padding: 0.75rem;
|
|
8050
|
+
border-radius: 0.25rem;
|
|
8051
|
+
overflow-x: auto;
|
|
8052
|
+
margin: 0.75rem 0;
|
|
8053
|
+
|
|
8054
|
+
code {
|
|
8055
|
+
background: transparent;
|
|
8056
|
+
padding: 0;
|
|
8057
|
+
}
|
|
8058
|
+
}
|
|
8059
|
+
|
|
8060
|
+
/* Hide horizontal rules */
|
|
8061
|
+
hr {
|
|
8062
|
+
display: none;
|
|
8063
|
+
}
|
|
8062
8064
|
`;
|
|
8063
8065
|
|
|
8066
|
+
const sanitizeSchema = {
|
|
8067
|
+
...defaultSchema,
|
|
8068
|
+
attributes: {
|
|
8069
|
+
...defaultSchema.attributes,
|
|
8070
|
+
"*": [...(defaultSchema.attributes?.["*"] || []), "style"],
|
|
8071
|
+
},
|
|
8072
|
+
};
|
|
8064
8073
|
const ElementMarkdown = memo(({ elementConfig, type }) => {
|
|
8065
8074
|
const { attributes } = useWidgetContext(type);
|
|
8066
8075
|
const { t } = useGlobalContext();
|
|
@@ -8081,21 +8090,21 @@ const ElementMarkdown = memo(({ elementConfig, type }) => {
|
|
|
8081
8090
|
const shouldShowExpand = expandLength > 0 && markdownString.length > expandLength;
|
|
8082
8091
|
// If expand is not needed, show full content
|
|
8083
8092
|
if (!shouldShowExpand) {
|
|
8084
|
-
return (jsx(MarkdownWrapper, { children: jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], children: markdownString }) }));
|
|
8093
|
+
return (jsx(MarkdownWrapper, { children: jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], rehypePlugins: [rehypeRaw, [rehypeSanitize, sanitizeSchema]], children: markdownString }) }));
|
|
8085
8094
|
}
|
|
8086
8095
|
// Collapsed state
|
|
8087
8096
|
if (!expanded) {
|
|
8088
8097
|
// Truncated content for collapsed state
|
|
8089
8098
|
const truncatedContent = markdownString.substring(0, expandLength);
|
|
8090
|
-
return (jsxs(MarkdownWrapper, { children: [jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], children: truncatedContent }), jsx(LegendToggler, { onClick: () => setExpanded(true), children: t("more", { ns: "dashboard", defaultValue: "Подробнее" }) })] }));
|
|
8099
|
+
return (jsxs(MarkdownWrapper, { children: [jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], rehypePlugins: [rehypeRaw, [rehypeSanitize, sanitizeSchema]], children: truncatedContent }), jsx(LegendToggler, { onClick: () => setExpanded(true), children: t("more", { ns: "dashboard", defaultValue: "Подробнее" }) })] }));
|
|
8091
8100
|
}
|
|
8092
8101
|
// Expanded state
|
|
8093
|
-
return (jsxs(MarkdownWrapper, { children: [jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], children: markdownString }), jsx(LegendToggler, { toggled: true, onClick: () => setExpanded(false), children: t("hide", { ns: "dashboard", defaultValue: "Свернуть" }) })] }));
|
|
8102
|
+
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: "Свернуть" }) })] }));
|
|
8094
8103
|
});
|
|
8095
8104
|
|
|
8096
|
-
const SmallPreviewContainer = styled.div `
|
|
8097
|
-
width: 100%;
|
|
8098
|
-
height: 100%;
|
|
8105
|
+
const SmallPreviewContainer = styled.div `
|
|
8106
|
+
width: 100%;
|
|
8107
|
+
height: 100%;
|
|
8099
8108
|
`;
|
|
8100
8109
|
|
|
8101
8110
|
const ElementSlideshow = ({ elementConfig, type, renderElement }) => {
|
|
@@ -8131,18 +8140,18 @@ const ElementSvg = memo(({ type, elementConfig }) => {
|
|
|
8131
8140
|
return (jsx(SvgImage, { url: getSvgUrl({ elementConfig, layerInfo, attributes }), width: width, height: height, fontColor: fontColor }));
|
|
8132
8141
|
});
|
|
8133
8142
|
|
|
8134
|
-
const TooltipIcon = styled(Icon) `
|
|
8135
|
-
&&& {
|
|
8136
|
-
:after {
|
|
8137
|
-
font-size: 0.75rem;
|
|
8138
|
-
color: ${({ theme: { palette } }) => palette.iconDisabled};
|
|
8139
|
-
transition: color ${transition.hover};
|
|
8140
|
-
}
|
|
8141
|
-
|
|
8142
|
-
:hover:after {
|
|
8143
|
-
color: ${({ theme: { palette } }) => palette.icon};
|
|
8144
|
-
}
|
|
8145
|
-
}
|
|
8143
|
+
const TooltipIcon = styled(Icon) `
|
|
8144
|
+
&&& {
|
|
8145
|
+
:after {
|
|
8146
|
+
font-size: 0.75rem;
|
|
8147
|
+
color: ${({ theme: { palette } }) => palette.iconDisabled};
|
|
8148
|
+
transition: color ${transition.hover};
|
|
8149
|
+
}
|
|
8150
|
+
|
|
8151
|
+
:hover:after {
|
|
8152
|
+
color: ${({ theme: { palette } }) => palette.icon};
|
|
8153
|
+
}
|
|
8154
|
+
}
|
|
8146
8155
|
`;
|
|
8147
8156
|
|
|
8148
8157
|
const ElementTooltip = memo(({ type, elementConfig }) => {
|
|
@@ -8154,76 +8163,76 @@ const ElementTooltip = memo(({ type, elementConfig }) => {
|
|
|
8154
8163
|
return text ? (jsx(Tooltip$1, { placement: "top", arrow: true, content: text, children: ref => jsx(TooltipIcon, { kind: icon || "question", ref: ref }) })) : null;
|
|
8155
8164
|
});
|
|
8156
8165
|
|
|
8157
|
-
const SlideshowHeaderWrapper = styled.div `
|
|
8158
|
-
padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
|
|
8159
|
-
|
|
8160
|
-
${Header} {
|
|
8161
|
-
align-items: flex-start;
|
|
8162
|
-
width: calc(100% + 2rem);
|
|
8163
|
-
height: ${({ big }) => (big ? "15.5rem" : "auto")};
|
|
8164
|
-
padding: 1.5rem;
|
|
8165
|
-
margin: -1rem -1rem 0 -1rem;
|
|
8166
|
-
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
8167
|
-
|
|
8168
|
-
${SmallPreviewCounter} {
|
|
8169
|
-
bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
|
|
8170
|
-
}
|
|
8171
|
-
|
|
8172
|
-
:before,
|
|
8173
|
-
:after {
|
|
8174
|
-
content: "";
|
|
8175
|
-
z-index: 2;
|
|
8176
|
-
position: absolute;
|
|
8177
|
-
top: 0;
|
|
8178
|
-
left: 0;
|
|
8179
|
-
width: 100%;
|
|
8180
|
-
}
|
|
8181
|
-
|
|
8182
|
-
:before {
|
|
8183
|
-
height: 100%;
|
|
8184
|
-
background: rgba(32, 46, 53, 0.25);
|
|
8185
|
-
}
|
|
8186
|
-
|
|
8187
|
-
:after {
|
|
8188
|
-
height: 4.5rem;
|
|
8189
|
-
background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
|
|
8190
|
-
}
|
|
8191
|
-
|
|
8192
|
-
:hover {
|
|
8193
|
-
${SmallPreviewControl}, ${SmallPreviewCounter} {
|
|
8194
|
-
opacity: 1;
|
|
8195
|
-
}
|
|
8196
|
-
}
|
|
8197
|
-
}
|
|
8166
|
+
const SlideshowHeaderWrapper = styled.div `
|
|
8167
|
+
padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
|
|
8168
|
+
|
|
8169
|
+
${Header} {
|
|
8170
|
+
align-items: flex-start;
|
|
8171
|
+
width: calc(100% + 2rem);
|
|
8172
|
+
height: ${({ big }) => (big ? "15.5rem" : "auto")};
|
|
8173
|
+
padding: 1.5rem;
|
|
8174
|
+
margin: -1rem -1rem 0 -1rem;
|
|
8175
|
+
border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
|
|
8176
|
+
|
|
8177
|
+
${SmallPreviewCounter} {
|
|
8178
|
+
bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
|
|
8179
|
+
}
|
|
8180
|
+
|
|
8181
|
+
:before,
|
|
8182
|
+
:after {
|
|
8183
|
+
content: "";
|
|
8184
|
+
z-index: 2;
|
|
8185
|
+
position: absolute;
|
|
8186
|
+
top: 0;
|
|
8187
|
+
left: 0;
|
|
8188
|
+
width: 100%;
|
|
8189
|
+
}
|
|
8190
|
+
|
|
8191
|
+
:before {
|
|
8192
|
+
height: 100%;
|
|
8193
|
+
background: rgba(32, 46, 53, 0.25);
|
|
8194
|
+
}
|
|
8195
|
+
|
|
8196
|
+
:after {
|
|
8197
|
+
height: 4.5rem;
|
|
8198
|
+
background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
|
|
8199
|
+
}
|
|
8200
|
+
|
|
8201
|
+
:hover {
|
|
8202
|
+
${SmallPreviewControl}, ${SmallPreviewCounter} {
|
|
8203
|
+
opacity: 1;
|
|
8204
|
+
}
|
|
8205
|
+
}
|
|
8206
|
+
}
|
|
8198
8207
|
`;
|
|
8199
|
-
const ImageContainerBg = styled.div `
|
|
8200
|
-
position: absolute;
|
|
8201
|
-
top: 0;
|
|
8202
|
-
bottom: 0;
|
|
8203
|
-
left: 0;
|
|
8204
|
-
right: 0;
|
|
8205
|
-
|
|
8206
|
-
img {
|
|
8207
|
-
width: 100%;
|
|
8208
|
-
height: 100%;
|
|
8209
|
-
object-position: center;
|
|
8210
|
-
object-fit: cover;
|
|
8211
|
-
}
|
|
8208
|
+
const ImageContainerBg = styled.div `
|
|
8209
|
+
position: absolute;
|
|
8210
|
+
top: 0;
|
|
8211
|
+
bottom: 0;
|
|
8212
|
+
left: 0;
|
|
8213
|
+
right: 0;
|
|
8214
|
+
|
|
8215
|
+
img {
|
|
8216
|
+
width: 100%;
|
|
8217
|
+
height: 100%;
|
|
8218
|
+
object-position: center;
|
|
8219
|
+
object-fit: cover;
|
|
8220
|
+
}
|
|
8212
8221
|
`;
|
|
8213
|
-
const HeaderSlideshow = styled.div `
|
|
8214
|
-
position: absolute;
|
|
8215
|
-
top: 0;
|
|
8216
|
-
bottom: ${({ height }) => (height ? `${height}px` : 0)};
|
|
8217
|
-
left: 0;
|
|
8218
|
-
right: 0;
|
|
8219
|
-
|
|
8220
|
-
img {
|
|
8221
|
-
width: 100%;
|
|
8222
|
-
height: 100%;
|
|
8223
|
-
min-height: inherit;
|
|
8224
|
-
object-position: center;
|
|
8225
|
-
object-fit: cover;
|
|
8226
|
-
}
|
|
8222
|
+
const HeaderSlideshow = styled.div `
|
|
8223
|
+
position: absolute;
|
|
8224
|
+
top: 0;
|
|
8225
|
+
bottom: ${({ height }) => (height ? `${height}px` : 0)};
|
|
8226
|
+
left: 0;
|
|
8227
|
+
right: 0;
|
|
8228
|
+
|
|
8229
|
+
img {
|
|
8230
|
+
width: 100%;
|
|
8231
|
+
height: 100%;
|
|
8232
|
+
min-height: inherit;
|
|
8233
|
+
object-position: center;
|
|
8234
|
+
object-fit: cover;
|
|
8235
|
+
}
|
|
8227
8236
|
`;
|
|
8228
8237
|
|
|
8229
8238
|
const FeatureCardSlideshowHeader = ({ isRow }) => {
|
|
@@ -8362,40 +8371,40 @@ const getDefaultConfig = ({ title, defaultTitle, items, baseMapName, position, r
|
|
|
8362
8371
|
return dashboardConfiguration;
|
|
8363
8372
|
};
|
|
8364
8373
|
|
|
8365
|
-
const UploaderContainer = styled(Container) `
|
|
8366
|
-
${UploaderItemArea} {
|
|
8367
|
-
overflow: visible;
|
|
8368
|
-
padding-top: 1rem;
|
|
8369
|
-
padding-bottom: 1rem;
|
|
8370
|
-
}
|
|
8371
|
-
|
|
8372
|
-
${UploaderTitleWrapper} {
|
|
8373
|
-
top: 0;
|
|
8374
|
-
padding-top: 0;
|
|
8375
|
-
border: 0;
|
|
8376
|
-
}
|
|
8374
|
+
const UploaderContainer = styled(Container) `
|
|
8375
|
+
${UploaderItemArea} {
|
|
8376
|
+
overflow: visible;
|
|
8377
|
+
padding-top: 1rem;
|
|
8378
|
+
padding-bottom: 1rem;
|
|
8379
|
+
}
|
|
8380
|
+
|
|
8381
|
+
${UploaderTitleWrapper} {
|
|
8382
|
+
top: 0;
|
|
8383
|
+
padding-top: 0;
|
|
8384
|
+
border: 0;
|
|
8385
|
+
}
|
|
8377
8386
|
`;
|
|
8378
8387
|
|
|
8379
|
-
const UploaderTitle = styled(Flex) `
|
|
8380
|
-
flex-direction: column;
|
|
8381
|
-
align-items: center;
|
|
8382
|
-
width: 11rem;
|
|
8383
|
-
margin: 0 auto;
|
|
8384
|
-
text-align: center;
|
|
8385
|
-
font-size: 0.625rem;
|
|
8386
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
8387
|
-
|
|
8388
|
-
span[kind] {
|
|
8389
|
-
width: 1.5rem;
|
|
8390
|
-
height: 1.5rem;
|
|
8391
|
-
margin-bottom: 0.75rem;
|
|
8392
|
-
|
|
8393
|
-
:after {
|
|
8394
|
-
font-size: 1.5rem;
|
|
8395
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
8396
|
-
opacity: 0.12;
|
|
8397
|
-
}
|
|
8398
|
-
}
|
|
8388
|
+
const UploaderTitle = styled(Flex) `
|
|
8389
|
+
flex-direction: column;
|
|
8390
|
+
align-items: center;
|
|
8391
|
+
width: 11rem;
|
|
8392
|
+
margin: 0 auto;
|
|
8393
|
+
text-align: center;
|
|
8394
|
+
font-size: 0.625rem;
|
|
8395
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
8396
|
+
|
|
8397
|
+
span[kind] {
|
|
8398
|
+
width: 1.5rem;
|
|
8399
|
+
height: 1.5rem;
|
|
8400
|
+
margin-bottom: 0.75rem;
|
|
8401
|
+
|
|
8402
|
+
:after {
|
|
8403
|
+
font-size: 1.5rem;
|
|
8404
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
8405
|
+
opacity: 0.12;
|
|
8406
|
+
}
|
|
8407
|
+
}
|
|
8399
8408
|
`;
|
|
8400
8409
|
|
|
8401
8410
|
const DEFAULT_FILE_EXTENSIONS = ".txt,.csv,.py";
|
|
@@ -8423,7 +8432,7 @@ const ElementUploader = memo(({ elementConfig, type }) => {
|
|
|
8423
8432
|
if (index === -1)
|
|
8424
8433
|
return;
|
|
8425
8434
|
const resourceId = files[index].id;
|
|
8426
|
-
await api.file.deleteResource(resourceId);
|
|
8435
|
+
await api.file.deleteResource({ resourceId });
|
|
8427
8436
|
setFiles(currentFiles => currentFiles.filter(({ id }) => id !== resourceId));
|
|
8428
8437
|
}, [files]);
|
|
8429
8438
|
const renderTitle = useMemo(() => {
|
|
@@ -9059,64 +9068,64 @@ const getJustifyContent = (align) => {
|
|
|
9059
9068
|
return "flex-start";
|
|
9060
9069
|
}
|
|
9061
9070
|
};
|
|
9062
|
-
const ChipsContainer = styled(Flex) `
|
|
9063
|
-
flex-wrap: wrap;
|
|
9064
|
-
gap: 0.25rem;
|
|
9065
|
-
background: transparent;
|
|
9066
|
-
justify-content: ${({ $align }) => getJustifyContent($align)};
|
|
9071
|
+
const ChipsContainer = styled(Flex) `
|
|
9072
|
+
flex-wrap: wrap;
|
|
9073
|
+
gap: 0.25rem;
|
|
9074
|
+
background: transparent;
|
|
9075
|
+
justify-content: ${({ $align }) => getJustifyContent($align)};
|
|
9067
9076
|
`;
|
|
9068
9077
|
|
|
9069
|
-
const FilterChip = styled.div `
|
|
9070
|
-
display: inline-flex;
|
|
9071
|
-
align-items: center;
|
|
9072
|
-
gap: 0.25rem;
|
|
9073
|
-
padding: 0.3125rem 0.5rem;
|
|
9074
|
-
height: 1.5rem;
|
|
9075
|
-
border-radius: 0.25rem;
|
|
9078
|
+
const FilterChip = styled.div `
|
|
9079
|
+
display: inline-flex;
|
|
9080
|
+
align-items: center;
|
|
9081
|
+
gap: 0.25rem;
|
|
9082
|
+
padding: 0.3125rem 0.5rem;
|
|
9083
|
+
height: 1.5rem;
|
|
9084
|
+
border-radius: 0.25rem;
|
|
9076
9085
|
background-color: ${({ $isActive, $bgColor, theme }) => $bgColor
|
|
9077
9086
|
? $bgColor
|
|
9078
9087
|
: $isActive
|
|
9079
9088
|
? theme.palette?.primary
|
|
9080
|
-
: theme.palette?.elementLight};
|
|
9089
|
+
: theme.palette?.elementLight};
|
|
9081
9090
|
color: ${({ $isActive, $textColor, theme }) => $textColor
|
|
9082
9091
|
? $textColor
|
|
9083
9092
|
: $isActive
|
|
9084
9093
|
? theme.palette?.textContrast
|
|
9085
|
-
: theme.palette?.textSecondary};
|
|
9086
|
-
cursor: pointer;
|
|
9087
|
-
font-size: 0.75rem;
|
|
9088
|
-
line-height: 0.875rem;
|
|
9089
|
-
white-space: nowrap;
|
|
9090
|
-
flex-shrink: 0;
|
|
9091
|
-
transition: all 0.2s ease-in-out;
|
|
9092
|
-
margin: 0 0.25rem 0 0;
|
|
9093
|
-
box-sizing: border-box;
|
|
9094
|
-
|
|
9095
|
-
&:hover {
|
|
9094
|
+
: theme.palette?.textSecondary};
|
|
9095
|
+
cursor: pointer;
|
|
9096
|
+
font-size: 0.75rem;
|
|
9097
|
+
line-height: 0.875rem;
|
|
9098
|
+
white-space: nowrap;
|
|
9099
|
+
flex-shrink: 0;
|
|
9100
|
+
transition: all 0.2s ease-in-out;
|
|
9101
|
+
margin: 0 0.25rem 0 0;
|
|
9102
|
+
box-sizing: border-box;
|
|
9103
|
+
|
|
9104
|
+
&:hover {
|
|
9096
9105
|
background-color: ${({ $isActive, $bgColor, theme }) => $isActive
|
|
9097
9106
|
? $bgColor || 'inherit'
|
|
9098
|
-
: $bgColor || theme.palette?.elementDark};
|
|
9099
|
-
}
|
|
9107
|
+
: $bgColor || theme.palette?.elementDark};
|
|
9108
|
+
}
|
|
9100
9109
|
`;
|
|
9101
|
-
const ChipIconWrapper = styled.span `
|
|
9102
|
-
display: inline-flex;
|
|
9103
|
-
align-items: center;
|
|
9104
|
-
justify-content: center;
|
|
9105
|
-
width: 0.875rem;
|
|
9106
|
-
height: 0.875rem;
|
|
9107
|
-
flex-shrink: 0;
|
|
9108
|
-
|
|
9109
|
-
svg, img {
|
|
9110
|
-
width: 100%;
|
|
9111
|
-
height: 100%;
|
|
9112
|
-
display: block;
|
|
9113
|
-
}
|
|
9110
|
+
const ChipIconWrapper = styled.span `
|
|
9111
|
+
display: inline-flex;
|
|
9112
|
+
align-items: center;
|
|
9113
|
+
justify-content: center;
|
|
9114
|
+
width: 0.875rem;
|
|
9115
|
+
height: 0.875rem;
|
|
9116
|
+
flex-shrink: 0;
|
|
9117
|
+
|
|
9118
|
+
svg, img {
|
|
9119
|
+
width: 100%;
|
|
9120
|
+
height: 100%;
|
|
9121
|
+
display: block;
|
|
9122
|
+
}
|
|
9114
9123
|
`;
|
|
9115
|
-
const ChipText = styled.span `
|
|
9116
|
-
overflow: hidden;
|
|
9117
|
-
text-overflow: ellipsis;
|
|
9118
|
-
white-space: nowrap;
|
|
9119
|
-
${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
|
|
9124
|
+
const ChipText = styled.span `
|
|
9125
|
+
overflow: hidden;
|
|
9126
|
+
text-overflow: ellipsis;
|
|
9127
|
+
white-space: nowrap;
|
|
9128
|
+
${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
|
|
9120
9129
|
`;
|
|
9121
9130
|
|
|
9122
9131
|
const CustomChip = ({ text, icon, color, primary, secondary, error, disabled, isActive, maxTextWidth, fontColor: customFontColor, backgroundColor: customBackgroundColor, ...props }) => {
|
|
@@ -10556,8 +10565,8 @@ const Dashboard = memo(({ type = WidgetType.Dashboard, noBorders }) => {
|
|
|
10556
10565
|
return (jsx(PagesContainer, { type: type, noBorders: noBorders }));
|
|
10557
10566
|
});
|
|
10558
10567
|
|
|
10559
|
-
const CardCheckbox = styled(Checkbox) `
|
|
10560
|
-
padding-left: 0.5rem;
|
|
10568
|
+
const CardCheckbox = styled(Checkbox) `
|
|
10569
|
+
padding-left: 0.5rem;
|
|
10561
10570
|
`;
|
|
10562
10571
|
|
|
10563
10572
|
const DashboardCheckbox = ({ title, checked, onChange, }) => {
|
|
@@ -10631,15 +10640,15 @@ const FeatureCardTitle = ({ title, description }) => {
|
|
|
10631
10640
|
return (jsxs(HeaderTitleContainer, { children: [jsx(FeatureTitleContainer, { children: jsx(FlexSpan, { children: resultTitle }) }), jsx(LayerDescription, { title: resultDescription, children: resultDescription })] }));
|
|
10632
10641
|
};
|
|
10633
10642
|
|
|
10634
|
-
const HiddenFilters = styled(Flex) `
|
|
10635
|
-
flex-wrap: wrap;
|
|
10636
|
-
margin-top: -1.25rem;
|
|
10637
|
-
|
|
10638
|
-
${DashboardChip$1} {
|
|
10639
|
-
height: 1.5rem;
|
|
10640
|
-
margin: 0 0.25rem 0.25rem 0;
|
|
10641
|
-
padding: 0 0 0 0.5rem;
|
|
10642
|
-
}
|
|
10643
|
+
const HiddenFilters = styled(Flex) `
|
|
10644
|
+
flex-wrap: wrap;
|
|
10645
|
+
margin-top: -1.25rem;
|
|
10646
|
+
|
|
10647
|
+
${DashboardChip$1} {
|
|
10648
|
+
height: 1.5rem;
|
|
10649
|
+
margin: 0 0.25rem 0.25rem 0;
|
|
10650
|
+
padding: 0 0 0 0.5rem;
|
|
10651
|
+
}
|
|
10643
10652
|
`;
|
|
10644
10653
|
|
|
10645
10654
|
function spliceValue(filterValue, splicingValue) {
|
|
@@ -10825,24 +10834,24 @@ const LogTerminal = ({ log, terminalOptions, className, styles }) => {
|
|
|
10825
10834
|
return jsx(TerminalWrapper, { ref: terminalRef, className: className, style: styles });
|
|
10826
10835
|
};
|
|
10827
10836
|
|
|
10828
|
-
const PageNavigator = styled(Flex) `
|
|
10829
|
-
margin-right: -0.5rem;
|
|
10830
|
-
align-items: center;
|
|
10831
|
-
|
|
10832
|
-
button {
|
|
10833
|
-
width: auto;
|
|
10834
|
-
height: 1.5rem;
|
|
10835
|
-
padding: 0 0.5rem;
|
|
10836
|
-
|
|
10837
|
-
span[kind]:after {
|
|
10838
|
-
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
10839
|
-
transition: color ${transition.hover};
|
|
10840
|
-
}
|
|
10841
|
-
|
|
10842
|
-
:hover span[kind]:after {
|
|
10843
|
-
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
10844
|
-
}
|
|
10845
|
-
}
|
|
10837
|
+
const PageNavigator = styled(Flex) `
|
|
10838
|
+
margin-right: -0.5rem;
|
|
10839
|
+
align-items: center;
|
|
10840
|
+
|
|
10841
|
+
button {
|
|
10842
|
+
width: auto;
|
|
10843
|
+
height: 1.5rem;
|
|
10844
|
+
padding: 0 0.5rem;
|
|
10845
|
+
|
|
10846
|
+
span[kind]:after {
|
|
10847
|
+
color: ${({ theme: { palette } }) => palette.textDisabled};
|
|
10848
|
+
transition: color ${transition.hover};
|
|
10849
|
+
}
|
|
10850
|
+
|
|
10851
|
+
:hover span[kind]:after {
|
|
10852
|
+
color: ${({ theme: { palette } }) => palette.textSecondary};
|
|
10853
|
+
}
|
|
10854
|
+
}
|
|
10846
10855
|
`;
|
|
10847
10856
|
|
|
10848
10857
|
const Pagination = memo(({ type = WidgetType.Dashboard }) => {
|
|
@@ -10851,34 +10860,34 @@ const Pagination = memo(({ type = WidgetType.Dashboard }) => {
|
|
|
10851
10860
|
return (jsxs(PageNavigator, { children: [jsx(IconButton, { kind: "prev", onClick: () => prevPage(pages.length) }), jsx(IconButton, { kind: "next", onClick: () => nextPage(pages.length) })] }));
|
|
10852
10861
|
});
|
|
10853
10862
|
|
|
10854
|
-
const StyledSvgWidthMixin = css `
|
|
10855
|
-
&&& {
|
|
10856
|
-
svg {
|
|
10857
|
-
width: ${({ $width }) => $width}px;
|
|
10858
|
-
}
|
|
10859
|
-
}
|
|
10863
|
+
const StyledSvgWidthMixin = css `
|
|
10864
|
+
&&& {
|
|
10865
|
+
svg {
|
|
10866
|
+
width: ${({ $width }) => $width}px;
|
|
10867
|
+
}
|
|
10868
|
+
}
|
|
10860
10869
|
`;
|
|
10861
|
-
const StyledSvgHeightMixin = css `
|
|
10862
|
-
&&& {
|
|
10863
|
-
svg {
|
|
10864
|
-
height: ${({ $height }) => $height}px;
|
|
10865
|
-
}
|
|
10866
|
-
}
|
|
10870
|
+
const StyledSvgHeightMixin = css `
|
|
10871
|
+
&&& {
|
|
10872
|
+
svg {
|
|
10873
|
+
height: ${({ $height }) => $height}px;
|
|
10874
|
+
}
|
|
10875
|
+
}
|
|
10867
10876
|
`;
|
|
10868
|
-
const StyledSvgColorMixin = css `
|
|
10869
|
-
svg {
|
|
10870
|
-
path,
|
|
10871
|
-
line,
|
|
10872
|
-
circle {
|
|
10873
|
-
fill: ${({ $fontColor }) => $fontColor} !important;
|
|
10874
|
-
}
|
|
10875
|
-
}
|
|
10877
|
+
const StyledSvgColorMixin = css `
|
|
10878
|
+
svg {
|
|
10879
|
+
path,
|
|
10880
|
+
line,
|
|
10881
|
+
circle {
|
|
10882
|
+
fill: ${({ $fontColor }) => $fontColor} !important;
|
|
10883
|
+
}
|
|
10884
|
+
}
|
|
10876
10885
|
`;
|
|
10877
|
-
const StyledSvg = styled(Flex) `
|
|
10878
|
-
align-items: center;
|
|
10879
|
-
${({ $width }) => !!$width && StyledSvgWidthMixin};
|
|
10880
|
-
${({ $height }) => !!$height && StyledSvgHeightMixin};
|
|
10881
|
-
${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
|
|
10886
|
+
const StyledSvg = styled(Flex) `
|
|
10887
|
+
align-items: center;
|
|
10888
|
+
${({ $width }) => !!$width && StyledSvgWidthMixin};
|
|
10889
|
+
${({ $height }) => !!$height && StyledSvgHeightMixin};
|
|
10890
|
+
${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
|
|
10882
10891
|
`;
|
|
10883
10892
|
|
|
10884
10893
|
const SvgImage = memo(({ url, width, height, fontColor }) => {
|
|
@@ -11109,28 +11118,28 @@ const Layer = ({ layer, layerType, visible, beforeId, tileUrl, getLayerTempStyle
|
|
|
11109
11118
|
return (jsx(VectorLayer, { layer: layer, tileUrl: tileUrl, visible: visible, beforeId: beforeId, getLayerTempStyle: getLayerTempStyle }));
|
|
11110
11119
|
};
|
|
11111
11120
|
|
|
11112
|
-
const MapWrapper = styled.div `
|
|
11113
|
-
position: relative;
|
|
11114
|
-
width: 100%;
|
|
11115
|
-
height: 100%;
|
|
11116
|
-
box-sizing: border-box;
|
|
11117
|
-
z-index: ${({ $zIndex }) => $zIndex ?? 1};
|
|
11118
|
-
|
|
11119
|
-
.mapbox-gl-draw_trash {
|
|
11120
|
-
display: none;
|
|
11121
|
-
}
|
|
11122
|
-
|
|
11123
|
-
.mapboxgl-ctrl-logo {
|
|
11124
|
-
display: none;
|
|
11125
|
-
}
|
|
11126
|
-
|
|
11127
|
-
.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
|
|
11128
|
-
display: none;
|
|
11129
|
-
}
|
|
11130
|
-
|
|
11131
|
-
.mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
|
|
11132
|
-
width: 350px;
|
|
11133
|
-
}
|
|
11121
|
+
const MapWrapper = styled.div `
|
|
11122
|
+
position: relative;
|
|
11123
|
+
width: 100%;
|
|
11124
|
+
height: 100%;
|
|
11125
|
+
box-sizing: border-box;
|
|
11126
|
+
z-index: ${({ $zIndex }) => $zIndex ?? 1};
|
|
11127
|
+
|
|
11128
|
+
.mapbox-gl-draw_trash {
|
|
11129
|
+
display: none;
|
|
11130
|
+
}
|
|
11131
|
+
|
|
11132
|
+
.mapboxgl-ctrl-logo {
|
|
11133
|
+
display: none;
|
|
11134
|
+
}
|
|
11135
|
+
|
|
11136
|
+
.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
|
|
11137
|
+
display: none;
|
|
11138
|
+
}
|
|
11139
|
+
|
|
11140
|
+
.mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
|
|
11141
|
+
width: 350px;
|
|
11142
|
+
}
|
|
11134
11143
|
`;
|
|
11135
11144
|
|
|
11136
11145
|
const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...rest }) => {
|