@opengeoweb/theme 9.7.0 → 9.9.0
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/README.md +5 -19
- package/index.esm.js +652 -336
- package/package.json +3 -2
- package/src/index.d.ts +1 -0
- package/src/lib/components/Theme/ThemeContext.d.ts +0 -1
- package/src/lib/stories/FormElements.stories.d.ts +0 -1
- package/src/lib/stories/Select.stories.d.ts +25 -0
- package/src/lib/stories/Typography.stories.d.ts +0 -1
- package/src/lib/types.d.ts +12 -5
- package/src/lib/utils/EChartsThemes/darkTheme.d.ts +249 -0
- package/src/lib/utils/EChartsThemes/index.d.ts +3 -0
- package/src/lib/utils/EChartsThemes/lightTheme.d.ts +244 -0
- package/src/lib/utils/createTheme.d.ts +2 -2
- package/src/lib/utils/themes/index.d.ts +0 -1
- package/src/lib/utils/themes/gwTheme.d.ts +0 -1
package/index.esm.js
CHANGED
|
@@ -1512,16 +1512,21 @@ var colors$1 = {
|
|
|
1512
1512
|
iconLinkDisabled: '#CCCCCC',
|
|
1513
1513
|
textLinkActive: '#186DFF',
|
|
1514
1514
|
buttonIconTertiaryFlat: '#575F7A',
|
|
1515
|
-
inactiveText: '#626262'
|
|
1515
|
+
inactiveText: '#626262',
|
|
1516
|
+
iconWarning: '#ffa800'
|
|
1516
1517
|
},
|
|
1517
1518
|
textInputField: {
|
|
1518
1519
|
"default": {
|
|
1519
|
-
fill: '#
|
|
1520
|
-
opacity:
|
|
1520
|
+
fill: '#e9edf5',
|
|
1521
|
+
opacity: 1
|
|
1522
|
+
},
|
|
1523
|
+
mouseOver: {
|
|
1524
|
+
fill: '#e0e8f5',
|
|
1525
|
+
opacity: 1
|
|
1521
1526
|
},
|
|
1522
1527
|
active: {
|
|
1523
|
-
fill: '#
|
|
1524
|
-
opacity:
|
|
1528
|
+
fill: '#e9edf5',
|
|
1529
|
+
opacity: 1
|
|
1525
1530
|
},
|
|
1526
1531
|
disabled: {
|
|
1527
1532
|
fill: '#000000',
|
|
@@ -1530,8 +1535,21 @@ var colors$1 = {
|
|
|
1530
1535
|
label: {
|
|
1531
1536
|
fill: '#051039',
|
|
1532
1537
|
opacity: 0.67
|
|
1538
|
+
},
|
|
1539
|
+
error: {
|
|
1540
|
+
fill: '#FEEDEE',
|
|
1541
|
+
opacity: 1
|
|
1542
|
+
},
|
|
1543
|
+
errorMouseOver: {
|
|
1544
|
+
fill: '#ffc5c5',
|
|
1545
|
+
opacity: 1
|
|
1533
1546
|
}
|
|
1534
1547
|
},
|
|
1548
|
+
menuItem: {
|
|
1549
|
+
mouseOver: '#e0e8f5',
|
|
1550
|
+
selected: '#186DFF',
|
|
1551
|
+
selectedMouseOver: '#1047b0'
|
|
1552
|
+
},
|
|
1535
1553
|
tab: {
|
|
1536
1554
|
mouseOver: {
|
|
1537
1555
|
fill: '#051039',
|
|
@@ -1774,7 +1792,7 @@ var colors$1 = {
|
|
|
1774
1792
|
},
|
|
1775
1793
|
captionErrorBackground: {
|
|
1776
1794
|
color: '#C00000',
|
|
1777
|
-
opacity:
|
|
1795
|
+
opacity: 1
|
|
1778
1796
|
},
|
|
1779
1797
|
captionDisabled: {
|
|
1780
1798
|
color: '#707070',
|
|
@@ -1901,6 +1919,9 @@ var createTheme = function createTheme(_ref) {
|
|
|
1901
1919
|
text: {
|
|
1902
1920
|
primary: geowebColors.typographyAndIcons.text
|
|
1903
1921
|
},
|
|
1922
|
+
warning: {
|
|
1923
|
+
main: geowebColors.typographyAndIcons.iconWarning
|
|
1924
|
+
},
|
|
1904
1925
|
// geoweb color palette
|
|
1905
1926
|
geowebColors: geowebColors
|
|
1906
1927
|
},
|
|
@@ -1959,6 +1980,25 @@ var createTheme = function createTheme(_ref) {
|
|
|
1959
1980
|
}
|
|
1960
1981
|
}
|
|
1961
1982
|
},
|
|
1983
|
+
MuiPopover: {
|
|
1984
|
+
styleOverrides: {
|
|
1985
|
+
root: {
|
|
1986
|
+
'& .MuiMenuItem-root': {
|
|
1987
|
+
'&:hover, &:focus': {
|
|
1988
|
+
backgroundColor: geowebColors.menuItem.mouseOver
|
|
1989
|
+
},
|
|
1990
|
+
'&.Mui-selected': {
|
|
1991
|
+
background: geowebColors.menuItem.selected,
|
|
1992
|
+
boxShadow: 'none',
|
|
1993
|
+
color: '#fff',
|
|
1994
|
+
'&:hover, &:focus': {
|
|
1995
|
+
backgroundColor: geowebColors.menuItem.selectedMouseOver
|
|
1996
|
+
}
|
|
1997
|
+
}
|
|
1998
|
+
}
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
},
|
|
1962
2002
|
MuiRadio: {
|
|
1963
2003
|
styleOverrides: {
|
|
1964
2004
|
root: {
|
|
@@ -2234,16 +2274,23 @@ var createTheme = function createTheme(_ref) {
|
|
|
2234
2274
|
root: {
|
|
2235
2275
|
backgroundColor: geowebColors.textInputField["default"].rgba,
|
|
2236
2276
|
'&.Mui-focused': {
|
|
2237
|
-
backgroundColor: geowebColors.textInputField.
|
|
2277
|
+
backgroundColor: geowebColors.textInputField["default"].rgba,
|
|
2238
2278
|
'&:after': {
|
|
2239
|
-
borderColor:
|
|
2279
|
+
borderColor: geowebColors.captions.captionInformation.rgba
|
|
2240
2280
|
}
|
|
2241
2281
|
},
|
|
2282
|
+
'&:hover': {
|
|
2283
|
+
backgroundColor: geowebColors.textInputField.mouseOver.rgba
|
|
2284
|
+
},
|
|
2242
2285
|
'&.Mui-disabled': {
|
|
2243
2286
|
backgroundColor: geowebColors.textInputField.disabled.rgba
|
|
2244
2287
|
},
|
|
2245
2288
|
'&.Mui-error': {
|
|
2246
|
-
|
|
2289
|
+
backgroundColor: geowebColors.textInputField.error.rgba,
|
|
2290
|
+
'&:hover': {
|
|
2291
|
+
backgroundColor: geowebColors.textInputField.errorMouseOver.rgba
|
|
2292
|
+
},
|
|
2293
|
+
'&:after': {
|
|
2247
2294
|
borderColor: geowebColors.captions.captionError.color
|
|
2248
2295
|
}
|
|
2249
2296
|
},
|
|
@@ -2260,8 +2307,11 @@ var createTheme = function createTheme(_ref) {
|
|
|
2260
2307
|
}
|
|
2261
2308
|
},
|
|
2262
2309
|
underline: {
|
|
2310
|
+
'&:before': {
|
|
2311
|
+
borderColor: geowebColors.greys.accessible
|
|
2312
|
+
},
|
|
2263
2313
|
'&:after': {
|
|
2264
|
-
borderWidth: '
|
|
2314
|
+
borderWidth: '2px'
|
|
2265
2315
|
},
|
|
2266
2316
|
'&.Mui-disabled:before': {
|
|
2267
2317
|
borderBottomStyle: 'solid'
|
|
@@ -2278,7 +2328,7 @@ var createTheme = function createTheme(_ref) {
|
|
|
2278
2328
|
color: geowebColors.captions.captionInformation.color,
|
|
2279
2329
|
opacity: geowebColors.captions.captionInformation.opacity
|
|
2280
2330
|
},
|
|
2281
|
-
'&.Mui-error': {
|
|
2331
|
+
'&.Mui-error, :has(+ .Mui-error)': {
|
|
2282
2332
|
color: geowebColors.captions.captionError.color,
|
|
2283
2333
|
opacity: geowebColors.captions.captionError.opacity
|
|
2284
2334
|
},
|
|
@@ -2393,6 +2443,48 @@ var createTheme = function createTheme(_ref) {
|
|
|
2393
2443
|
paddingRight: '5px'
|
|
2394
2444
|
}
|
|
2395
2445
|
}
|
|
2446
|
+
},
|
|
2447
|
+
MuiPickersPopper: {
|
|
2448
|
+
styleOverrides: {
|
|
2449
|
+
root: {
|
|
2450
|
+
'& .MuiPickersPopper-paper': {
|
|
2451
|
+
backgroundColor: geowebColors.background.surface
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
MuiPickersDay: {
|
|
2457
|
+
styleOverrides: {
|
|
2458
|
+
root: {
|
|
2459
|
+
borderRadius: 2,
|
|
2460
|
+
'&.Mui-selected': {
|
|
2461
|
+
backgroundColor: geowebColors.buttons.primary["default"].fill,
|
|
2462
|
+
color: geowebColors.buttons.primary["default"].color
|
|
2463
|
+
},
|
|
2464
|
+
'&:hover, &.Mui-selected:hover': {
|
|
2465
|
+
backgroundColor: geowebColors.buttons.primary.mouseOver.fill,
|
|
2466
|
+
color: geowebColors.buttons.primary["default"].color
|
|
2467
|
+
},
|
|
2468
|
+
'&.MuiPickersDay-today': {
|
|
2469
|
+
borderColor: geowebColors.buttons.primary.mouseOver.borderColor
|
|
2470
|
+
}
|
|
2471
|
+
}
|
|
2472
|
+
}
|
|
2473
|
+
},
|
|
2474
|
+
MuiMultiSectionDigitalClockSection: {
|
|
2475
|
+
styleOverrides: {
|
|
2476
|
+
item: {
|
|
2477
|
+
borderRadius: 2,
|
|
2478
|
+
'&.Mui-selected': {
|
|
2479
|
+
backgroundColor: geowebColors.buttons.primary["default"].fill,
|
|
2480
|
+
color: geowebColors.buttons.primary["default"].color
|
|
2481
|
+
},
|
|
2482
|
+
'&:hover, &.Mui-selected:hover': {
|
|
2483
|
+
backgroundColor: geowebColors.buttons.primary.mouseOver.fill,
|
|
2484
|
+
color: geowebColors.buttons.primary["default"].color
|
|
2485
|
+
}
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2396
2488
|
}
|
|
2397
2489
|
}
|
|
2398
2490
|
});
|
|
@@ -2711,12 +2803,17 @@ var colors = {
|
|
|
2711
2803
|
iconLinkDisabled: '#5E5E5E',
|
|
2712
2804
|
textLinkActive: '#488BFD',
|
|
2713
2805
|
buttonIconTertiaryFlat: '#C5C5C5',
|
|
2714
|
-
inactiveText: '#b4b4b4'
|
|
2806
|
+
inactiveText: '#b4b4b4',
|
|
2807
|
+
iconWarning: '#ffa800'
|
|
2715
2808
|
},
|
|
2716
2809
|
textInputField: {
|
|
2717
2810
|
"default": {
|
|
2718
|
-
fill: '#
|
|
2719
|
-
opacity:
|
|
2811
|
+
fill: '#2b2f35',
|
|
2812
|
+
opacity: 1
|
|
2813
|
+
},
|
|
2814
|
+
mouseOver: {
|
|
2815
|
+
fill: '#414751',
|
|
2816
|
+
opacity: 1
|
|
2720
2817
|
},
|
|
2721
2818
|
active: {
|
|
2722
2819
|
fill: '#909090',
|
|
@@ -2729,8 +2826,21 @@ var colors = {
|
|
|
2729
2826
|
label: {
|
|
2730
2827
|
fill: '#FFFFFF',
|
|
2731
2828
|
opacity: 0.7
|
|
2829
|
+
},
|
|
2830
|
+
error: {
|
|
2831
|
+
fill: '#532323',
|
|
2832
|
+
opacity: 1
|
|
2833
|
+
},
|
|
2834
|
+
errorMouseOver: {
|
|
2835
|
+
fill: '#633838',
|
|
2836
|
+
opacity: 1
|
|
2732
2837
|
}
|
|
2733
2838
|
},
|
|
2839
|
+
menuItem: {
|
|
2840
|
+
mouseOver: '#414751',
|
|
2841
|
+
selected: '#186DFF',
|
|
2842
|
+
selectedMouseOver: '#1047b0'
|
|
2843
|
+
},
|
|
2734
2844
|
tab: {
|
|
2735
2845
|
mouseOver: {
|
|
2736
2846
|
fill: '#000000',
|
|
@@ -2962,7 +3072,7 @@ var colors = {
|
|
|
2962
3072
|
captions: {
|
|
2963
3073
|
captionStatus: {
|
|
2964
3074
|
color: '#FFFFFF',
|
|
2965
|
-
opacity: 0.
|
|
3075
|
+
opacity: 0.67
|
|
2966
3076
|
},
|
|
2967
3077
|
captionInformation: {
|
|
2968
3078
|
color: '#9EC2FF',
|
|
@@ -3047,318 +3157,6 @@ var elevations = {
|
|
|
3047
3157
|
elevation_24: '0 11px 15px 0 rgba(0, 0, 0, 0.2), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.14)'
|
|
3048
3158
|
};
|
|
3049
3159
|
|
|
3050
|
-
/* *
|
|
3051
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
3052
|
-
* you may not use this file except in compliance with the License.
|
|
3053
|
-
* You may obtain a copy of the License at
|
|
3054
|
-
*
|
|
3055
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
3056
|
-
*
|
|
3057
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
3058
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
3059
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3060
|
-
* See the License for the specific language governing permissions and
|
|
3061
|
-
* limitations under the License.
|
|
3062
|
-
*
|
|
3063
|
-
* Copyright 2023 - Koninklijk Nederlands Meteorologisch Instituut (KNMI)
|
|
3064
|
-
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
3065
|
-
* */
|
|
3066
|
-
// temporary copy of theme color values to make sure GWTheme is backwards compatible while working on new theme.
|
|
3067
|
-
var geowebColors = Object.assign({}, colors$1);
|
|
3068
|
-
var GWTheme = createTheme$1({
|
|
3069
|
-
breakpoints: {
|
|
3070
|
-
values: {
|
|
3071
|
-
xs: breakpoints.mobile,
|
|
3072
|
-
sm: breakpoints.tablet,
|
|
3073
|
-
md: breakpoints.desktop,
|
|
3074
|
-
lg: breakpoints.desktopHD,
|
|
3075
|
-
xl: breakpoints.desktopHDWide
|
|
3076
|
-
}
|
|
3077
|
-
},
|
|
3078
|
-
palette: {
|
|
3079
|
-
secondary: {
|
|
3080
|
-
main: '#0075a9'
|
|
3081
|
-
},
|
|
3082
|
-
action: {
|
|
3083
|
-
active: '#ffa800'
|
|
3084
|
-
},
|
|
3085
|
-
text: {
|
|
3086
|
-
disabled: '#051039'
|
|
3087
|
-
},
|
|
3088
|
-
geowebColors: parseColors(geowebColors)
|
|
3089
|
-
},
|
|
3090
|
-
shape: {
|
|
3091
|
-
borderRadius: 3
|
|
3092
|
-
},
|
|
3093
|
-
typography: {
|
|
3094
|
-
h6: {
|
|
3095
|
-
fontSize: '16px'
|
|
3096
|
-
},
|
|
3097
|
-
subtitle1: {
|
|
3098
|
-
fontSize: '16px',
|
|
3099
|
-
fontWeight: 500,
|
|
3100
|
-
lineHeight: 1.5,
|
|
3101
|
-
letterSpacing: '0.15px',
|
|
3102
|
-
opacity: 0.87,
|
|
3103
|
-
color: '#051039'
|
|
3104
|
-
},
|
|
3105
|
-
subtitle2: {
|
|
3106
|
-
fontSize: '14px',
|
|
3107
|
-
fontWeight: 500,
|
|
3108
|
-
lineHeight: 1.71,
|
|
3109
|
-
letterSpacing: '0.1px',
|
|
3110
|
-
opacity: 0.87,
|
|
3111
|
-
color: '#051039'
|
|
3112
|
-
},
|
|
3113
|
-
body1: {
|
|
3114
|
-
fontSize: '16px',
|
|
3115
|
-
lineHeight: 1.56,
|
|
3116
|
-
letterSpacing: '0.44px',
|
|
3117
|
-
color: '#051039'
|
|
3118
|
-
},
|
|
3119
|
-
body2: {
|
|
3120
|
-
fontSize: '14px',
|
|
3121
|
-
lineHeight: 1.43,
|
|
3122
|
-
letterSpacing: '0.25px',
|
|
3123
|
-
color: '#051039'
|
|
3124
|
-
},
|
|
3125
|
-
overline: {
|
|
3126
|
-
textTransform: 'none',
|
|
3127
|
-
fontSize: '12px',
|
|
3128
|
-
lineHeight: 1.43,
|
|
3129
|
-
letterSpacing: '0.25px',
|
|
3130
|
-
color: '#051039',
|
|
3131
|
-
opacity: 0.7
|
|
3132
|
-
},
|
|
3133
|
-
caption: {
|
|
3134
|
-
fontSize: '12px',
|
|
3135
|
-
lineHeight: 1.33,
|
|
3136
|
-
letterSpacing: '0.4px',
|
|
3137
|
-
color: '#051039',
|
|
3138
|
-
opacity: 0.7
|
|
3139
|
-
},
|
|
3140
|
-
button: {
|
|
3141
|
-
fontWeight: 500,
|
|
3142
|
-
fontSize: '14px',
|
|
3143
|
-
color: '0075a9'
|
|
3144
|
-
}
|
|
3145
|
-
},
|
|
3146
|
-
components: {
|
|
3147
|
-
MuiTooltip: {
|
|
3148
|
-
styleOverrides: {
|
|
3149
|
-
tooltip: {
|
|
3150
|
-
borderRadius: '2px',
|
|
3151
|
-
fontSize: '16px',
|
|
3152
|
-
fontWeight: 'normal',
|
|
3153
|
-
padding: '10px',
|
|
3154
|
-
backgroundColor: '#232323'
|
|
3155
|
-
}
|
|
3156
|
-
}
|
|
3157
|
-
},
|
|
3158
|
-
MuiIconButton: {
|
|
3159
|
-
styleOverrides: {
|
|
3160
|
-
root: {
|
|
3161
|
-
color: '#0075a9'
|
|
3162
|
-
}
|
|
3163
|
-
}
|
|
3164
|
-
},
|
|
3165
|
-
MuiCheckbox: {
|
|
3166
|
-
styleOverrides: {
|
|
3167
|
-
root: {
|
|
3168
|
-
'&.Mui-disabled': {
|
|
3169
|
-
color: '#CCCCCC!important'
|
|
3170
|
-
},
|
|
3171
|
-
'&.Mui-checked': {
|
|
3172
|
-
color: '#0075a9'
|
|
3173
|
-
}
|
|
3174
|
-
}
|
|
3175
|
-
}
|
|
3176
|
-
},
|
|
3177
|
-
MuiSelect: {
|
|
3178
|
-
styleOverrides: {
|
|
3179
|
-
icon: {
|
|
3180
|
-
color: '#0075a9'
|
|
3181
|
-
},
|
|
3182
|
-
select: {
|
|
3183
|
-
'&:focus': {
|
|
3184
|
-
backgroundColor: 'rgba(0, 117, 169, 0.05)'
|
|
3185
|
-
}
|
|
3186
|
-
}
|
|
3187
|
-
}
|
|
3188
|
-
},
|
|
3189
|
-
MuiAlert: {
|
|
3190
|
-
styleOverrides: {
|
|
3191
|
-
standardError: {
|
|
3192
|
-
border: '1px solid #c00000',
|
|
3193
|
-
borderRadius: '0px',
|
|
3194
|
-
backgroundColor: '#fff0ea'
|
|
3195
|
-
},
|
|
3196
|
-
standardWarning: {
|
|
3197
|
-
border: '1px solid #ffa800',
|
|
3198
|
-
borderRadius: '0px',
|
|
3199
|
-
backgroundColor: '#fff8eb'
|
|
3200
|
-
},
|
|
3201
|
-
standardInfo: {
|
|
3202
|
-
border: '1px solid #0062e6',
|
|
3203
|
-
borderRadius: '0px',
|
|
3204
|
-
backgroundColor: '#eaf3ff'
|
|
3205
|
-
},
|
|
3206
|
-
standardSuccess: {
|
|
3207
|
-
border: '1px solid #72bb23',
|
|
3208
|
-
borderRadius: '0px',
|
|
3209
|
-
backgroundColor: '#fcffeb'
|
|
3210
|
-
},
|
|
3211
|
-
action: {
|
|
3212
|
-
color: '#0075a9'
|
|
3213
|
-
},
|
|
3214
|
-
message: {
|
|
3215
|
-
fontSize: '14px',
|
|
3216
|
-
lineHeight: 1.43,
|
|
3217
|
-
letterSpacing: '0.25px',
|
|
3218
|
-
color: '#051039'
|
|
3219
|
-
}
|
|
3220
|
-
}
|
|
3221
|
-
},
|
|
3222
|
-
MuiTabs: {
|
|
3223
|
-
styleOverrides: {
|
|
3224
|
-
root: {
|
|
3225
|
-
backgroundColor: '#ffffff',
|
|
3226
|
-
minHeight: '30px'
|
|
3227
|
-
},
|
|
3228
|
-
scrollButtons: {
|
|
3229
|
-
width: '20px'
|
|
3230
|
-
}
|
|
3231
|
-
}
|
|
3232
|
-
},
|
|
3233
|
-
MuiTab: {
|
|
3234
|
-
styleOverrides: {
|
|
3235
|
-
root: {
|
|
3236
|
-
minHeight: '30px',
|
|
3237
|
-
textTransform: 'none',
|
|
3238
|
-
minWidth: '76px',
|
|
3239
|
-
'@media (min-width: 600px)': {
|
|
3240
|
-
minWidth: '76px'
|
|
3241
|
-
}
|
|
3242
|
-
},
|
|
3243
|
-
labelIcon: {
|
|
3244
|
-
minHeight: '30px'
|
|
3245
|
-
}
|
|
3246
|
-
}
|
|
3247
|
-
},
|
|
3248
|
-
MuiListItem: {
|
|
3249
|
-
styleOverrides: {
|
|
3250
|
-
root: {
|
|
3251
|
-
'&$selected': {
|
|
3252
|
-
backgroundColor: 'rgba(0, 117, 169, 0.15)',
|
|
3253
|
-
borderLeft: '4px solid #0075a9',
|
|
3254
|
-
'&:hover': {
|
|
3255
|
-
backgroundColor: 'rgba(0, 117, 169, 0.10)'
|
|
3256
|
-
}
|
|
3257
|
-
}
|
|
3258
|
-
},
|
|
3259
|
-
button: {
|
|
3260
|
-
'&:hover': {
|
|
3261
|
-
backgroundColor: 'rgba(0, 117, 169, 0.15)'
|
|
3262
|
-
}
|
|
3263
|
-
}
|
|
3264
|
-
}
|
|
3265
|
-
},
|
|
3266
|
-
MuiMenuItem: {
|
|
3267
|
-
styleOverrides: {
|
|
3268
|
-
root: {
|
|
3269
|
-
'&.Mui-selected': {
|
|
3270
|
-
backgroundColor: 'rgba(0, 117, 169, 0.15)',
|
|
3271
|
-
borderLeft: '4px solid #0075a9',
|
|
3272
|
-
'&:hover': {
|
|
3273
|
-
backgroundColor: 'rgba(0, 117, 169, 0.10)'
|
|
3274
|
-
}
|
|
3275
|
-
},
|
|
3276
|
-
'&:hover': {
|
|
3277
|
-
backgroundColor: 'rgba(0, 117, 169, 0.15)'
|
|
3278
|
-
}
|
|
3279
|
-
}
|
|
3280
|
-
}
|
|
3281
|
-
},
|
|
3282
|
-
MuiFormLabel: {
|
|
3283
|
-
styleOverrides: {
|
|
3284
|
-
root: {
|
|
3285
|
-
color: 'rgba(5, 16, 57, 0.7)',
|
|
3286
|
-
'&.Mui-focused': {
|
|
3287
|
-
color: '#0075a9'
|
|
3288
|
-
},
|
|
3289
|
-
'&.Mui-error': {
|
|
3290
|
-
color: '#d32f2f!important'
|
|
3291
|
-
}
|
|
3292
|
-
}
|
|
3293
|
-
}
|
|
3294
|
-
},
|
|
3295
|
-
MuiOutlinedInput: {
|
|
3296
|
-
styleOverrides: {
|
|
3297
|
-
root: {
|
|
3298
|
-
'&$focused $notchedOutline': {
|
|
3299
|
-
borderColor: '#0075a9'
|
|
3300
|
-
}
|
|
3301
|
-
}
|
|
3302
|
-
}
|
|
3303
|
-
},
|
|
3304
|
-
MuiFilledInput: {
|
|
3305
|
-
styleOverrides: {
|
|
3306
|
-
root: {
|
|
3307
|
-
backgroundColor: 'rgba(0, 117, 169, 0.05)',
|
|
3308
|
-
color: '#051039',
|
|
3309
|
-
'&.Mui-disabled': {
|
|
3310
|
-
backgroundColor: 'white'
|
|
3311
|
-
},
|
|
3312
|
-
'&.Mui-focused': {
|
|
3313
|
-
backgroundColor: 'rgba(0,0,0,0.09)'
|
|
3314
|
-
}
|
|
3315
|
-
},
|
|
3316
|
-
underline: {
|
|
3317
|
-
'&.Mui-disabled:before': {
|
|
3318
|
-
borderBottomStyle: 'none'
|
|
3319
|
-
}
|
|
3320
|
-
}
|
|
3321
|
-
}
|
|
3322
|
-
},
|
|
3323
|
-
MuiRadio: {
|
|
3324
|
-
styleOverrides: {
|
|
3325
|
-
root: {
|
|
3326
|
-
'&.Mui-disabled': {
|
|
3327
|
-
color: '#CCCCCC!important'
|
|
3328
|
-
},
|
|
3329
|
-
'&.Mui-checked': {
|
|
3330
|
-
color: '#0075a9'
|
|
3331
|
-
}
|
|
3332
|
-
}
|
|
3333
|
-
}
|
|
3334
|
-
},
|
|
3335
|
-
MuiCardContent: {
|
|
3336
|
-
styleOverrides: {
|
|
3337
|
-
root: {
|
|
3338
|
-
'&:last-child': {
|
|
3339
|
-
paddingBottom: 0
|
|
3340
|
-
}
|
|
3341
|
-
}
|
|
3342
|
-
}
|
|
3343
|
-
},
|
|
3344
|
-
MuiDialog: {
|
|
3345
|
-
styleOverrides: {
|
|
3346
|
-
paperWidthLg: {
|
|
3347
|
-
maxWidth: '1280px'
|
|
3348
|
-
}
|
|
3349
|
-
}
|
|
3350
|
-
},
|
|
3351
|
-
MuiButton: {
|
|
3352
|
-
variants: buttonVariants(geowebColors.buttons)
|
|
3353
|
-
},
|
|
3354
|
-
MuiToggleButton: {
|
|
3355
|
-
styleOverrides: {
|
|
3356
|
-
root: variantsToClassName(buttonVariants(geowebColors.buttons))
|
|
3357
|
-
}
|
|
3358
|
-
}
|
|
3359
|
-
}
|
|
3360
|
-
});
|
|
3361
|
-
|
|
3362
3160
|
/* *
|
|
3363
3161
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
3364
3162
|
* you may not use this file except in compliance with the License.
|
|
@@ -3460,14 +3258,532 @@ var ThemeWrapper = function ThemeWrapper(_ref2) {
|
|
|
3460
3258
|
disableCssBaseline: disableCssBaseline
|
|
3461
3259
|
}, children));
|
|
3462
3260
|
};
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3261
|
+
|
|
3262
|
+
/* *
|
|
3263
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
3264
|
+
* you may not use this file except in compliance with the License.
|
|
3265
|
+
* You may obtain a copy of the License at
|
|
3266
|
+
*
|
|
3267
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
3268
|
+
*
|
|
3269
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
3270
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
3271
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3272
|
+
* See the License for the specific language governing permissions and
|
|
3273
|
+
* limitations under the License.
|
|
3274
|
+
*
|
|
3275
|
+
* Copyright 2024 - Koninklijk Nederlands Meteorologisch Instituut (KNMI)
|
|
3276
|
+
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
3277
|
+
* */
|
|
3278
|
+
var EChartsDarkTheme = {
|
|
3279
|
+
backgroundColor: '#393939',
|
|
3280
|
+
textStyle: {
|
|
3281
|
+
color: '#ffffff',
|
|
3282
|
+
fontSize: '10px',
|
|
3283
|
+
fontWeight: '400'
|
|
3284
|
+
},
|
|
3285
|
+
title: {
|
|
3286
|
+
textStyle: {
|
|
3287
|
+
color: '#ffffff'
|
|
3288
|
+
},
|
|
3289
|
+
subtextStyle: {
|
|
3290
|
+
color: '#ffffff'
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
line: {
|
|
3294
|
+
itemStyle: {
|
|
3295
|
+
borderWidth: 1
|
|
3296
|
+
},
|
|
3297
|
+
lineStyle: {
|
|
3298
|
+
width: 2
|
|
3299
|
+
},
|
|
3300
|
+
symbolSize: 4,
|
|
3301
|
+
symbol: 'circle',
|
|
3302
|
+
smooth: false
|
|
3303
|
+
},
|
|
3304
|
+
bar: {
|
|
3305
|
+
itemStyle: {
|
|
3306
|
+
barBorderWidth: 0,
|
|
3307
|
+
barBorderColor: '#ccc'
|
|
3308
|
+
}
|
|
3309
|
+
},
|
|
3310
|
+
scatter: {
|
|
3311
|
+
itemStyle: {
|
|
3312
|
+
borderWidth: 0,
|
|
3313
|
+
borderColor: '#ccc'
|
|
3314
|
+
}
|
|
3315
|
+
},
|
|
3316
|
+
categoryAxis: {
|
|
3317
|
+
axisLine: {
|
|
3318
|
+
show: true,
|
|
3319
|
+
lineStyle: {
|
|
3320
|
+
color: '#979797'
|
|
3321
|
+
}
|
|
3322
|
+
},
|
|
3323
|
+
axisTick: {
|
|
3324
|
+
show: true,
|
|
3325
|
+
lineStyle: {
|
|
3326
|
+
color: '#979797'
|
|
3327
|
+
}
|
|
3328
|
+
},
|
|
3329
|
+
axisLabel: {
|
|
3330
|
+
show: true,
|
|
3331
|
+
color: 'rgba(255, 255, 255, 0.67)',
|
|
3332
|
+
fontSize: '8px'
|
|
3333
|
+
},
|
|
3334
|
+
splitLine: {
|
|
3335
|
+
show: true,
|
|
3336
|
+
lineStyle: {
|
|
3337
|
+
color: ['#979797']
|
|
3338
|
+
}
|
|
3339
|
+
},
|
|
3340
|
+
splitArea: {
|
|
3341
|
+
show: false,
|
|
3342
|
+
areaStyle: {
|
|
3343
|
+
color: ['#979797']
|
|
3344
|
+
}
|
|
3345
|
+
}
|
|
3346
|
+
},
|
|
3347
|
+
valueAxis: {
|
|
3348
|
+
axisLine: {
|
|
3349
|
+
show: true,
|
|
3350
|
+
lineStyle: {
|
|
3351
|
+
color: '#979797'
|
|
3352
|
+
}
|
|
3353
|
+
},
|
|
3354
|
+
axisTick: {
|
|
3355
|
+
show: true,
|
|
3356
|
+
lineStyle: {
|
|
3357
|
+
color: '#979797'
|
|
3358
|
+
}
|
|
3359
|
+
},
|
|
3360
|
+
axisLabel: {
|
|
3361
|
+
show: true,
|
|
3362
|
+
color: 'rgba(255, 255, 255, 0.67)',
|
|
3363
|
+
fontSize: '8px'
|
|
3364
|
+
},
|
|
3365
|
+
splitLine: {
|
|
3366
|
+
show: true,
|
|
3367
|
+
lineStyle: {
|
|
3368
|
+
color: ['#979797']
|
|
3369
|
+
}
|
|
3370
|
+
},
|
|
3371
|
+
splitArea: {
|
|
3372
|
+
show: false,
|
|
3373
|
+
areaStyle: {
|
|
3374
|
+
color: ['#979797']
|
|
3375
|
+
}
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
3378
|
+
logAxis: {
|
|
3379
|
+
axisLine: {
|
|
3380
|
+
show: true,
|
|
3381
|
+
lineStyle: {
|
|
3382
|
+
color: '#979797'
|
|
3383
|
+
}
|
|
3384
|
+
},
|
|
3385
|
+
axisTick: {
|
|
3386
|
+
show: true,
|
|
3387
|
+
lineStyle: {
|
|
3388
|
+
color: '#979797'
|
|
3389
|
+
}
|
|
3390
|
+
},
|
|
3391
|
+
axisLabel: {
|
|
3392
|
+
show: true,
|
|
3393
|
+
color: 'rgba(255, 255, 255, 0.67)',
|
|
3394
|
+
fontSize: '8px'
|
|
3395
|
+
},
|
|
3396
|
+
splitLine: {
|
|
3397
|
+
show: true,
|
|
3398
|
+
lineStyle: {
|
|
3399
|
+
color: ['#979797']
|
|
3400
|
+
}
|
|
3401
|
+
},
|
|
3402
|
+
splitArea: {
|
|
3403
|
+
show: false,
|
|
3404
|
+
areaStyle: {
|
|
3405
|
+
color: ['#979797']
|
|
3406
|
+
}
|
|
3407
|
+
}
|
|
3408
|
+
},
|
|
3409
|
+
timeAxis: {
|
|
3410
|
+
nameTextStyle: {
|
|
3411
|
+
color: 'rgba(255, 255, 255, 0.67)'
|
|
3412
|
+
},
|
|
3413
|
+
axisLine: {
|
|
3414
|
+
show: true,
|
|
3415
|
+
lineStyle: {
|
|
3416
|
+
color: '#979797'
|
|
3417
|
+
}
|
|
3418
|
+
},
|
|
3419
|
+
axisTick: {
|
|
3420
|
+
show: true,
|
|
3421
|
+
lineStyle: {
|
|
3422
|
+
color: '#979797'
|
|
3423
|
+
}
|
|
3424
|
+
},
|
|
3425
|
+
axisLabel: {
|
|
3426
|
+
show: true,
|
|
3427
|
+
color: 'rgba(255, 255, 255, 0.67)',
|
|
3428
|
+
fontSize: '8px'
|
|
3429
|
+
},
|
|
3430
|
+
splitLine: {
|
|
3431
|
+
show: false,
|
|
3432
|
+
lineStyle: {
|
|
3433
|
+
color: ['#979797']
|
|
3434
|
+
}
|
|
3435
|
+
},
|
|
3436
|
+
splitArea: {
|
|
3437
|
+
show: false,
|
|
3438
|
+
areaStyle: {
|
|
3439
|
+
color: ['#979797']
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3442
|
+
},
|
|
3443
|
+
toolbox: {
|
|
3444
|
+
iconStyle: {
|
|
3445
|
+
borderColor: '#ffffff'
|
|
3446
|
+
},
|
|
3447
|
+
emphasis: {
|
|
3448
|
+
iconStyle: {
|
|
3449
|
+
borderColor: '#979797'
|
|
3450
|
+
}
|
|
3451
|
+
}
|
|
3452
|
+
},
|
|
3453
|
+
legend: {
|
|
3454
|
+
textStyle: {
|
|
3455
|
+
color: '#979797'
|
|
3456
|
+
}
|
|
3457
|
+
},
|
|
3458
|
+
tooltip: {
|
|
3459
|
+
axisPointer: {
|
|
3460
|
+
lineStyle: {
|
|
3461
|
+
color: '#979797',
|
|
3462
|
+
width: '1'
|
|
3463
|
+
},
|
|
3464
|
+
crossStyle: {
|
|
3465
|
+
color: '#979797',
|
|
3466
|
+
width: '1'
|
|
3467
|
+
}
|
|
3468
|
+
}
|
|
3469
|
+
},
|
|
3470
|
+
timeline: {
|
|
3471
|
+
lineStyle: {
|
|
3472
|
+
color: '#979797',
|
|
3473
|
+
width: 1
|
|
3474
|
+
},
|
|
3475
|
+
itemStyle: {
|
|
3476
|
+
color: '#e60049',
|
|
3477
|
+
borderWidth: 1
|
|
3478
|
+
},
|
|
3479
|
+
controlStyle: {
|
|
3480
|
+
color: '#979797',
|
|
3481
|
+
borderColor: '#979797',
|
|
3482
|
+
borderWidth: 0.5
|
|
3483
|
+
},
|
|
3484
|
+
checkpointStyle: {
|
|
3485
|
+
color: '#e43c59',
|
|
3486
|
+
borderColor: '#c23531'
|
|
3487
|
+
},
|
|
3488
|
+
label: {
|
|
3489
|
+
color: 'rgba(255, 255, 255, 0.67)',
|
|
3490
|
+
fontSize: '8px'
|
|
3491
|
+
},
|
|
3492
|
+
emphasis: {
|
|
3493
|
+
itemStyle: {
|
|
3494
|
+
color: '#a9334c'
|
|
3495
|
+
},
|
|
3496
|
+
controlStyle: {
|
|
3497
|
+
color: '#979797',
|
|
3498
|
+
borderColor: '#979797',
|
|
3499
|
+
borderWidth: 0.5
|
|
3500
|
+
},
|
|
3501
|
+
label: {
|
|
3502
|
+
color: 'rgba(255, 255, 255, 0.67)'
|
|
3503
|
+
}
|
|
3504
|
+
}
|
|
3505
|
+
},
|
|
3506
|
+
dataZoom: {
|
|
3507
|
+
backgroundColor: 'rgba(47,69,84,0)',
|
|
3508
|
+
dataBackgroundColor: 'rgba(255,255,255,0.3)',
|
|
3509
|
+
fillerColor: 'rgba(167,183,204,0.4)',
|
|
3510
|
+
handleColor: '#313131',
|
|
3511
|
+
handleSize: '100%',
|
|
3512
|
+
textStyle: {
|
|
3513
|
+
color: '#979797'
|
|
3514
|
+
}
|
|
3515
|
+
},
|
|
3516
|
+
markPoint: {
|
|
3517
|
+
label: {
|
|
3518
|
+
color: 'rgba(255, 255, 255, 0.67)'
|
|
3519
|
+
},
|
|
3520
|
+
emphasis: {
|
|
3521
|
+
label: {
|
|
3522
|
+
color: 'rgba(255, 255, 255, 0.67)'
|
|
3523
|
+
}
|
|
3524
|
+
}
|
|
3525
|
+
}
|
|
3526
|
+
};
|
|
3527
|
+
|
|
3528
|
+
/* *
|
|
3529
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
3530
|
+
* you may not use this file except in compliance with the License.
|
|
3531
|
+
* You may obtain a copy of the License at
|
|
3532
|
+
*
|
|
3533
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
3534
|
+
*
|
|
3535
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
3536
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
3537
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3538
|
+
* See the License for the specific language governing permissions and
|
|
3539
|
+
* limitations under the License.
|
|
3540
|
+
*
|
|
3541
|
+
* Copyright 2024 - Koninklijk Nederlands Meteorologisch Instituut (KNMI)
|
|
3542
|
+
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
3543
|
+
* */
|
|
3544
|
+
var EChartsLightTheme = {
|
|
3545
|
+
backgroundColor: 'rgba(0,0,0,0)',
|
|
3546
|
+
textStyle: {
|
|
3547
|
+
color: '#051039',
|
|
3548
|
+
fontSize: '10px',
|
|
3549
|
+
fontWeight: '400'
|
|
3550
|
+
},
|
|
3551
|
+
title: {
|
|
3552
|
+
textStyle: {
|
|
3553
|
+
color: 'rgba(5, 16, 57, 0.67)'
|
|
3554
|
+
},
|
|
3555
|
+
subtextStyle: {
|
|
3556
|
+
color: 'rgba(5, 16, 57, 0.67)'
|
|
3557
|
+
}
|
|
3558
|
+
},
|
|
3559
|
+
line: {
|
|
3560
|
+
itemStyle: {
|
|
3561
|
+
borderWidth: 1
|
|
3562
|
+
},
|
|
3563
|
+
lineStyle: {
|
|
3564
|
+
width: 2
|
|
3565
|
+
},
|
|
3566
|
+
symbolSize: 4,
|
|
3567
|
+
symbol: 'circle',
|
|
3568
|
+
smooth: false
|
|
3569
|
+
},
|
|
3570
|
+
bar: {
|
|
3571
|
+
itemStyle: {
|
|
3572
|
+
barBorderWidth: 0,
|
|
3573
|
+
barBorderColor: '#ccc'
|
|
3574
|
+
}
|
|
3575
|
+
},
|
|
3576
|
+
scatter: {
|
|
3577
|
+
itemStyle: {
|
|
3578
|
+
borderWidth: 0,
|
|
3579
|
+
borderColor: '#ccc'
|
|
3580
|
+
}
|
|
3581
|
+
},
|
|
3582
|
+
categoryAxis: {
|
|
3583
|
+
axisLine: {
|
|
3584
|
+
show: true,
|
|
3585
|
+
lineStyle: {
|
|
3586
|
+
color: '#6E7079'
|
|
3587
|
+
}
|
|
3588
|
+
},
|
|
3589
|
+
axisTick: {
|
|
3590
|
+
show: true,
|
|
3591
|
+
lineStyle: {
|
|
3592
|
+
color: '#6E7079'
|
|
3593
|
+
}
|
|
3594
|
+
},
|
|
3595
|
+
axisLabel: {
|
|
3596
|
+
show: true,
|
|
3597
|
+
color: '#6E7079',
|
|
3598
|
+
fontSize: '8px'
|
|
3599
|
+
},
|
|
3600
|
+
splitLine: {
|
|
3601
|
+
show: false,
|
|
3602
|
+
lineStyle: {
|
|
3603
|
+
color: ['#E0E6F1']
|
|
3604
|
+
}
|
|
3605
|
+
},
|
|
3606
|
+
splitArea: {
|
|
3607
|
+
show: false,
|
|
3608
|
+
areaStyle: {
|
|
3609
|
+
color: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)']
|
|
3610
|
+
}
|
|
3611
|
+
}
|
|
3612
|
+
},
|
|
3613
|
+
valueAxis: {
|
|
3614
|
+
axisLine: {
|
|
3615
|
+
show: false,
|
|
3616
|
+
lineStyle: {
|
|
3617
|
+
color: '#6E7079'
|
|
3618
|
+
}
|
|
3619
|
+
},
|
|
3620
|
+
axisTick: {
|
|
3621
|
+
show: false,
|
|
3622
|
+
lineStyle: {
|
|
3623
|
+
color: '#6E7079'
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
axisLabel: {
|
|
3627
|
+
show: true,
|
|
3628
|
+
color: '#6E7079',
|
|
3629
|
+
fontSize: '8px'
|
|
3630
|
+
},
|
|
3631
|
+
splitLine: {
|
|
3632
|
+
show: true,
|
|
3633
|
+
lineStyle: {
|
|
3634
|
+
color: ['#E0E6F1']
|
|
3635
|
+
}
|
|
3636
|
+
},
|
|
3637
|
+
splitArea: {
|
|
3638
|
+
show: false,
|
|
3639
|
+
areaStyle: {
|
|
3640
|
+
color: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)']
|
|
3641
|
+
}
|
|
3642
|
+
}
|
|
3643
|
+
},
|
|
3644
|
+
logAxis: {
|
|
3645
|
+
axisLine: {
|
|
3646
|
+
show: false,
|
|
3647
|
+
lineStyle: {
|
|
3648
|
+
color: '#6E7079'
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3651
|
+
axisTick: {
|
|
3652
|
+
show: false,
|
|
3653
|
+
lineStyle: {
|
|
3654
|
+
color: '#6E7079'
|
|
3655
|
+
}
|
|
3656
|
+
},
|
|
3657
|
+
axisLabel: {
|
|
3658
|
+
show: true,
|
|
3659
|
+
color: '#6E7079',
|
|
3660
|
+
fontSize: '8px'
|
|
3661
|
+
},
|
|
3662
|
+
splitLine: {
|
|
3663
|
+
show: true,
|
|
3664
|
+
lineStyle: {
|
|
3665
|
+
color: ['#E0E6F1']
|
|
3666
|
+
}
|
|
3667
|
+
},
|
|
3668
|
+
splitArea: {
|
|
3669
|
+
show: false,
|
|
3670
|
+
areaStyle: {
|
|
3671
|
+
color: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)']
|
|
3672
|
+
}
|
|
3673
|
+
}
|
|
3674
|
+
},
|
|
3675
|
+
timeAxis: {
|
|
3676
|
+
nameTextStyle: {
|
|
3677
|
+
color: '#6E7079'
|
|
3678
|
+
},
|
|
3679
|
+
axisLine: {
|
|
3680
|
+
show: true,
|
|
3681
|
+
lineStyle: {
|
|
3682
|
+
color: '#6E7079'
|
|
3683
|
+
}
|
|
3684
|
+
},
|
|
3685
|
+
axisTick: {
|
|
3686
|
+
show: true,
|
|
3687
|
+
lineStyle: {
|
|
3688
|
+
color: '#6E7079'
|
|
3689
|
+
}
|
|
3690
|
+
},
|
|
3691
|
+
axisLabel: {
|
|
3692
|
+
show: true,
|
|
3693
|
+
color: '#6E7079',
|
|
3694
|
+
fontSize: '8px'
|
|
3695
|
+
},
|
|
3696
|
+
splitLine: {
|
|
3697
|
+
show: false,
|
|
3698
|
+
lineStyle: {
|
|
3699
|
+
color: ['#E0E6F1']
|
|
3700
|
+
}
|
|
3701
|
+
},
|
|
3702
|
+
splitArea: {
|
|
3703
|
+
show: false,
|
|
3704
|
+
areaStyle: {
|
|
3705
|
+
color: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)']
|
|
3706
|
+
}
|
|
3707
|
+
}
|
|
3708
|
+
},
|
|
3709
|
+
toolbox: {
|
|
3710
|
+
iconStyle: {
|
|
3711
|
+
borderColor: '#374061'
|
|
3712
|
+
},
|
|
3713
|
+
emphasis: {
|
|
3714
|
+
iconStyle: {
|
|
3715
|
+
borderColor: '#6E7079'
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3718
|
+
},
|
|
3719
|
+
legend: {
|
|
3720
|
+
textStyle: {
|
|
3721
|
+
color: '#333333'
|
|
3722
|
+
}
|
|
3723
|
+
},
|
|
3724
|
+
tooltip: {
|
|
3725
|
+
axisPointer: {
|
|
3726
|
+
lineStyle: {
|
|
3727
|
+
color: '#cccccc',
|
|
3728
|
+
width: 1
|
|
3729
|
+
},
|
|
3730
|
+
crossStyle: {
|
|
3731
|
+
color: '#cccccc',
|
|
3732
|
+
width: 1
|
|
3733
|
+
}
|
|
3734
|
+
}
|
|
3735
|
+
},
|
|
3736
|
+
timeline: {
|
|
3737
|
+
lineStyle: {
|
|
3738
|
+
color: '#dae1f5',
|
|
3739
|
+
width: 2
|
|
3740
|
+
},
|
|
3741
|
+
itemStyle: {
|
|
3742
|
+
color: '#a4b1d7',
|
|
3743
|
+
borderWidth: 1
|
|
3744
|
+
},
|
|
3745
|
+
controlStyle: {
|
|
3746
|
+
color: '#a4b1d7',
|
|
3747
|
+
borderColor: '#a4b1d7',
|
|
3748
|
+
borderWidth: 1
|
|
3749
|
+
},
|
|
3750
|
+
checkpointStyle: {
|
|
3751
|
+
color: '#316bf3',
|
|
3752
|
+
borderColor: '#ffffff'
|
|
3753
|
+
},
|
|
3754
|
+
label: {
|
|
3755
|
+
color: '#a4b1d7'
|
|
3756
|
+
},
|
|
3757
|
+
emphasis: {
|
|
3758
|
+
itemStyle: {
|
|
3759
|
+
color: '#ffffff'
|
|
3760
|
+
},
|
|
3761
|
+
controlStyle: {
|
|
3762
|
+
color: '#a4b1d7',
|
|
3763
|
+
borderColor: '#a4b1d7',
|
|
3764
|
+
borderWidth: 1
|
|
3765
|
+
},
|
|
3766
|
+
label: {
|
|
3767
|
+
color: '#a4b1d7'
|
|
3768
|
+
}
|
|
3769
|
+
}
|
|
3770
|
+
},
|
|
3771
|
+
dataZoom: {
|
|
3772
|
+
handleSize: '100%',
|
|
3773
|
+
textStyle: {
|
|
3774
|
+
color: '#051039'
|
|
3775
|
+
}
|
|
3776
|
+
},
|
|
3777
|
+
markPoint: {
|
|
3778
|
+
label: {
|
|
3779
|
+
color: '#eeeeee'
|
|
3780
|
+
},
|
|
3781
|
+
emphasis: {
|
|
3782
|
+
label: {
|
|
3783
|
+
color: '#eeeeee'
|
|
3784
|
+
}
|
|
3785
|
+
}
|
|
3786
|
+
}
|
|
3471
3787
|
};
|
|
3472
3788
|
|
|
3473
|
-
export { Add, Animation, ArrowDown, ArrowDropDownDown, ArrowDropDownUp, ArrowLeft, ArrowRight, ArrowUp, AutoUpdateActive, AutoUpdateInActive, Both, Cached, CalendarToday, Cancel, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clear, Clock, Close, CoastalEvent, CollapseLarge, CollapseMedium, CollapseSmall, CollapseWindow, Copy, Delete, DimensionsElevation, DimensionsOther, DimensionsRefTime, DimensionsTime, DragHandle, DrawFIRLand, DrawPolygon, DrawRegion, Edit, Equalizer, Exclamation, ExitDomain, Expand, ExpandWindow, Export, FastForward, Filter, Fog, FunnelCloud,
|
|
3789
|
+
export { Add, Animation, ArrowDown, ArrowDropDownDown, ArrowDropDownUp, ArrowLeft, ArrowRight, ArrowUp, AutoUpdateActive, AutoUpdateInActive, Both, Cached, CalendarToday, Cancel, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clear, Clock, Close, CoastalEvent, CollapseLarge, CollapseMedium, CollapseSmall, CollapseWindow, Copy, Delete, DimensionsElevation, DimensionsOther, DimensionsRefTime, DimensionsTime, DragHandle, DrawFIRLand, DrawPolygon, DrawRegion, EChartsDarkTheme, EChartsLightTheme, Edit, Equalizer, Exclamation, ExitDomain, Expand, ExpandWindow, Export, FastForward, Filter, Fog, FunnelCloud, GeoWebLogo, HamburgerMenu, Home, index as Icons, Info, KeyCommand, KeyOption, Layers, LayersAdd, Lightning, Link, LinkOff, List, ListItem, Location, LockLocked, LockUnlocked, MapAdd, Menu, Minus, MyLocation, None, Notifications, Now, Options, Pause, Picture, Play, Polygons, Preset, PresetTiles, PresetWorkspace, Rain, Resize, Search, Share, SliderThumb, Snow, Speed, SplitHorizontal, SplitVertical, StepBackward, StepForward, SubdirectoryArrowRight, Success, TemperatureHigh, TemperatureLow, TextIcon, ThemeContext, ThemeProvider, ThemeTypes, ThemeWrapper, ThumbsUp, TimeSeriesSelect, UnExpand, Update, Visibility, VisibilityOff, WebAssetOff, Wind, WorldMapProjection, breakpoints, colors$1 as colorsLight, createShadows, createTheme, darkTheme, dragHandlePath, elevations$1 as elevationsLight, lightTheme, parseColors, useThemeContext };
|