allaw-ui 1.0.56 → 1.0.57
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.
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
text-align: right;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.folder-status-tag.
|
|
18
|
+
.folder-status-tag.OPEN {
|
|
19
19
|
background: var(--tag-green-light, #daf6e9);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.folder-status-tag.
|
|
22
|
+
.folder-status-tag.CLOSED {
|
|
23
23
|
background: var(--tag-grey-light, #f2f2f2);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.folder-status-tag.
|
|
26
|
+
.folder-status-tag.BLOCKED {
|
|
27
27
|
background: var(--tag-red-light, #fdf2f2);
|
|
28
28
|
}
|
|
@@ -4,15 +4,15 @@ var FolderStatusTag = function (_a) {
|
|
|
4
4
|
var status = _a.status;
|
|
5
5
|
var label, color;
|
|
6
6
|
switch (status) {
|
|
7
|
-
case "
|
|
7
|
+
case "OPEN":
|
|
8
8
|
label = "DOSSIER OUVERT";
|
|
9
9
|
color = "--Tags-Vert, #29a36a";
|
|
10
10
|
break;
|
|
11
|
-
case "
|
|
11
|
+
case "CLOSED":
|
|
12
12
|
label = "DOSSIER CLÔS";
|
|
13
13
|
color = "--dark-grey, #456073";
|
|
14
14
|
break;
|
|
15
|
-
case "
|
|
15
|
+
case "BLOCKED":
|
|
16
16
|
label = "DOSSIER BLOQUÉ";
|
|
17
17
|
color = "--actions-error, #e15151";
|
|
18
18
|
break;
|