@mtes-mct/monitor-ui 18.3.0 → 18.4.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/index.js +17 -9
- package/package.json +1 -1
- package/theme.d.ts +11 -3
- package/theme.d.ts.map +1 -1
package/index.js
CHANGED
|
@@ -274,6 +274,7 @@ const OnlyFontGlobalStyle = createGlobalStyle`
|
|
|
274
274
|
powderBlue: '#9ED7D9',
|
|
275
275
|
wheat: '#EDD6A4',
|
|
276
276
|
opal: '#A5BCC0',
|
|
277
|
+
earthYellow: '#E6B771',
|
|
277
278
|
// Regulation Areas
|
|
278
279
|
yaleBlue: '#295375',
|
|
279
280
|
queenBlue: '#367096',
|
|
@@ -296,12 +297,13 @@ const OnlyFontGlobalStyle = createGlobalStyle`
|
|
|
296
297
|
frenchBlue: '#2E75AB',
|
|
297
298
|
prussianBlue: '#003E54',
|
|
298
299
|
lightCoral: '#FA8282',
|
|
299
|
-
//
|
|
300
|
-
|
|
301
|
-
|
|
300
|
+
// Vigilance Areas
|
|
301
|
+
rufous: '#A13112',
|
|
302
|
+
brownSugar: '#B0644A',
|
|
303
|
+
rust: '#A85438',
|
|
302
304
|
burntSienna: '#D46E49',
|
|
303
305
|
persianOrange: '#D6814F',
|
|
304
|
-
jasper: '#
|
|
306
|
+
jasper: '#C25141',
|
|
305
307
|
bittersweet: '#F0755C',
|
|
306
308
|
coral: '#F78A69',
|
|
307
309
|
peach: '#FCB394',
|
|
@@ -309,14 +311,20 @@ const OnlyFontGlobalStyle = createGlobalStyle`
|
|
|
309
311
|
melon: '#E7A58D',
|
|
310
312
|
paleDogwood: '#F8D7CE',
|
|
311
313
|
seashell: '#FCECE4',
|
|
312
|
-
//
|
|
314
|
+
// AMP Zones
|
|
313
315
|
darkGoldenrod: '#A98A0F',
|
|
314
|
-
pear: '#DBE33E',
|
|
315
|
-
jonquil: '#F0CB38',
|
|
316
|
-
earthYellow: '#E6B771',
|
|
317
316
|
ecru: '#BAAB68',
|
|
317
|
+
citron: '#B9B94D',
|
|
318
|
+
citrine: '#C8C732',
|
|
319
|
+
pear: '#DBE33E',
|
|
318
320
|
goldMetallic: '#C5A730',
|
|
319
|
-
|
|
321
|
+
oldGold: '#DBB934',
|
|
322
|
+
arylideYellow: '#E1C55E',
|
|
323
|
+
jonquil: '#F0CB38',
|
|
324
|
+
maize: '#F1E243',
|
|
325
|
+
lemonLime: '#F0FE58',
|
|
326
|
+
mindaro: '#F2F58E',
|
|
327
|
+
cream: '#FFFEC2'
|
|
320
328
|
}
|
|
321
329
|
};
|
|
322
330
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mtes-mct/monitor-ui",
|
|
3
3
|
"description": "Common React components, hooks, utilities and CSS stylesheets for MonitorFish, MonitorEnv and RapportNav.",
|
|
4
|
-
"version": "18.
|
|
4
|
+
"version": "18.4.0",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
package/theme.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare const THEME: {
|
|
|
37
37
|
powderBlue: string;
|
|
38
38
|
wheat: string;
|
|
39
39
|
opal: string;
|
|
40
|
+
earthYellow: string;
|
|
40
41
|
yaleBlue: string;
|
|
41
42
|
queenBlue: string;
|
|
42
43
|
glaucous: string;
|
|
@@ -58,6 +59,7 @@ export declare const THEME: {
|
|
|
58
59
|
frenchBlue: string;
|
|
59
60
|
prussianBlue: string;
|
|
60
61
|
lightCoral: string;
|
|
62
|
+
rufous: string;
|
|
61
63
|
brownSugar: string;
|
|
62
64
|
rust: string;
|
|
63
65
|
burntSienna: string;
|
|
@@ -71,12 +73,18 @@ export declare const THEME: {
|
|
|
71
73
|
paleDogwood: string;
|
|
72
74
|
seashell: string;
|
|
73
75
|
darkGoldenrod: string;
|
|
74
|
-
pear: string;
|
|
75
|
-
jonquil: string;
|
|
76
|
-
earthYellow: string;
|
|
77
76
|
ecru: string;
|
|
77
|
+
citron: string;
|
|
78
|
+
citrine: string;
|
|
79
|
+
pear: string;
|
|
78
80
|
goldMetallic: string;
|
|
81
|
+
oldGold: string;
|
|
82
|
+
arylideYellow: string;
|
|
83
|
+
jonquil: string;
|
|
84
|
+
maize: string;
|
|
85
|
+
lemonLime: string;
|
|
79
86
|
mindaro: string;
|
|
87
|
+
cream: string;
|
|
80
88
|
};
|
|
81
89
|
};
|
|
82
90
|
//# sourceMappingURL=theme.d.ts.map
|
package/theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAA;AAChC,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,KAAK,CAAC,CAAA;AAE7C,eAAO,MAAM,KAAK;;QAGd,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;QA+BvB,wBAAwB
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAA;AAChC,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,KAAK,CAAC,CAAA;AAE7C,eAAO,MAAM,KAAK;;QAGd,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;QA+BvB,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2E3B,CAAA"}
|