react-mutation-mapper 0.8.58 → 0.8.59
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/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/store/DefaultMutationMapperStore.d.ts +2 -2
- package/dist/styles.css +3 -3
- package/package.json +2 -2
|
@@ -97,10 +97,10 @@ declare class DefaultMutationMapperStore<T extends Mutation> implements Mutation
|
|
|
97
97
|
};
|
|
98
98
|
countUniqueMutationsByPosition(mutationsByPosition: {
|
|
99
99
|
[pos: number]: T[];
|
|
100
|
-
}): {
|
|
100
|
+
}, group?: string): {
|
|
101
101
|
[pos: number]: number;
|
|
102
102
|
};
|
|
103
|
-
countUniqueMutations(mutations: T[]): number;
|
|
103
|
+
countUniqueMutations(mutations: T[], group?: string): number;
|
|
104
104
|
protected getMutationCount(mutations: T[], getMutationCount: (mutation: Partial<T>) => number): number;
|
|
105
105
|
readonly mutationData: MobxPromise<Partial<T>[] | undefined>;
|
|
106
106
|
readonly swissProtId: MobxPromise<string>;
|
package/dist/styles.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
.gnomad-frequency-table .rt-table .rt-tbody .rt-td {
|
|
2
|
-
padding: 4px 5px;
|
|
3
|
-
}
|
|
4
1
|
.oncokb-treatment-table {
|
|
5
2
|
font-size: 0.8rem;
|
|
6
3
|
}
|
|
7
4
|
.oncokb-treatment-table .rt-tbody {
|
|
8
5
|
line-height: 0.8rem;
|
|
9
6
|
}
|
|
7
|
+
.gnomad-frequency-table .rt-table .rt-tbody .rt-td {
|
|
8
|
+
padding: 4px 5px;
|
|
9
|
+
}
|
|
10
10
|
.oncokb-tooltip {
|
|
11
11
|
background: none;
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mutation-mapper",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.59",
|
|
4
4
|
"description": "Generic Mutation Mapper",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"superagent": "^3.8.3",
|
|
60
60
|
"typescript": "4.0.3"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "5df3d371bea1c7605d4decd057079f3f53ed7ec9"
|
|
63
63
|
}
|