tycho-components 0.21.9 → 0.21.11
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.
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
.MuiTableCell-head {
|
|
35
35
|
@include tag-medium-2;
|
|
36
36
|
color: var(--text-primary);
|
|
37
|
-
font-family:
|
|
37
|
+
font-family: "Lora";
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.MuiTableCell-body {
|
|
42
42
|
@include label-medium-1;
|
|
43
43
|
color: var(--text-primary);
|
|
44
|
-
font-family:
|
|
44
|
+
font-family: "Work Sans";
|
|
45
45
|
cursor: pointer;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
+
}
|
|
48
49
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
50
|
+
.table-striped tbody tr:nth-of-type(odd) {
|
|
51
|
+
background-color: var(--layer-hover-1);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
@media (max-width: 768px) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import Participant from
|
|
2
|
-
import { PlatformTools } from
|
|
3
|
-
export type DocumentStatus =
|
|
1
|
+
import Participant from "../../features/Participants/types/Participant";
|
|
2
|
+
import { PlatformTools } from "../../functions/ToolsUtils";
|
|
3
|
+
export type DocumentStatus = "EDITING" | "EDITED" | "SYNTACTIC" | "COMPLETED";
|
|
4
4
|
export declare const DocumentStatusNames: {
|
|
5
5
|
EDITING: string;
|
|
6
6
|
EDITED: string;
|
|
@@ -29,5 +29,9 @@ type Document = {
|
|
|
29
29
|
pages?: number;
|
|
30
30
|
boxes?: number;
|
|
31
31
|
sentences?: number;
|
|
32
|
+
github?: string;
|
|
33
|
+
githubFormat?: string;
|
|
34
|
+
visible?: boolean;
|
|
35
|
+
description?: string;
|
|
32
36
|
};
|
|
33
37
|
export default Document;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const DocumentStatusNames = {
|
|
2
|
-
EDITING:
|
|
3
|
-
EDITED:
|
|
4
|
-
SYNTACTIC:
|
|
5
|
-
COMPLETED:
|
|
2
|
+
EDITING: "common:document.status.editing",
|
|
3
|
+
EDITED: "common:document.status.edited",
|
|
4
|
+
SYNTACTIC: "common:document.status.syntactic",
|
|
5
|
+
COMPLETED: "common:document.status.completed",
|
|
6
6
|
};
|