react-mutation-mapper 0.9.3 → 0.9.4
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/component/StatusHelpers.d.ts +1 -0
- package/dist/component/clinvar/ClinvarSummary.d.ts +1 -0
- package/dist/component/column/MyVariantInfoHelper.d.ts +1 -0
- package/dist/component/filter/ProteinImpactTypeHelper.d.ts +1 -0
- package/dist/component/lollipopPlot/DomainTooltip.d.ts +1 -0
- package/dist/component/mutationTable/MutationColumnHelper.d.ts +1 -0
- package/dist/index.es.js +3875 -26
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3870 -22
- package/dist/index.js.map +1 -1
- package/dist/model/DomainSpec.d.ts +1 -0
- package/dist/model/LollipopSpec.d.ts +1 -0
- package/dist/model/SequenceSpec.d.ts +1 -0
- package/dist/styles.css +13 -13
- package/package.json +16 -17
package/dist/styles.css
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
.default-mutation-table {
|
|
2
|
+
font-size: 0.8rem;
|
|
3
|
+
min-width: 300px;
|
|
4
|
+
}
|
|
5
|
+
.default-mutation-table .rt-table .rt-tbody .rt-td {
|
|
6
|
+
padding: 5px 5px;
|
|
7
|
+
}
|
|
8
|
+
.default-mutation-table .-pagination {
|
|
9
|
+
font-size: 0.7rem;
|
|
10
|
+
}
|
|
11
|
+
.default-mutation-table .-pagination .-center {
|
|
12
|
+
flex-grow: 5;
|
|
13
|
+
}
|
|
1
14
|
.gnomad-frequency-table .rt-table .rt-tbody .rt-td {
|
|
2
15
|
padding: 4px 5px;
|
|
3
16
|
}
|
|
@@ -16,19 +29,6 @@
|
|
|
16
29
|
position: absolute;
|
|
17
30
|
top: 0;
|
|
18
31
|
}
|
|
19
|
-
.default-mutation-table {
|
|
20
|
-
font-size: 0.8rem;
|
|
21
|
-
min-width: 300px;
|
|
22
|
-
}
|
|
23
|
-
.default-mutation-table .rt-table .rt-tbody .rt-td {
|
|
24
|
-
padding: 5px 5px;
|
|
25
|
-
}
|
|
26
|
-
.default-mutation-table .-pagination {
|
|
27
|
-
font-size: 0.7rem;
|
|
28
|
-
}
|
|
29
|
-
.default-mutation-table .-pagination .-center {
|
|
30
|
-
flex-grow: 5;
|
|
31
|
-
}
|
|
32
32
|
.civic-card {
|
|
33
33
|
margin: auto;
|
|
34
34
|
width: 500px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mutation-mapper",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Generic Mutation Mapper",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
"typings": "dist/index.d.ts",
|
|
9
9
|
"styles": "dist/styles.css",
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": "22.18.0"
|
|
12
|
-
"yarn": "1.22.22"
|
|
11
|
+
"node": "22.18.0"
|
|
13
12
|
},
|
|
14
13
|
"files": [
|
|
15
14
|
"dist"
|
|
@@ -18,17 +17,17 @@
|
|
|
18
17
|
"license": "AGPL-3.0-or-later",
|
|
19
18
|
"repository": "cBioPortal/cbioportal-frontend",
|
|
20
19
|
"scripts": {
|
|
21
|
-
"build": "
|
|
22
|
-
"start": "
|
|
23
|
-
"watch": "concurrently \"
|
|
24
|
-
"watchSSL": "
|
|
20
|
+
"build": "pnpm run tcm && cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=2048 pnpm run rollup",
|
|
21
|
+
"start": "pnpm run watch",
|
|
22
|
+
"watch": "concurrently \"pnpm run tcm:watch\" \"pnpm run rollup:watch\"",
|
|
23
|
+
"watchSSL": "pnpm run watch",
|
|
25
24
|
"rollup": "rollup -c rollup.config.ts",
|
|
26
|
-
"rollup:watch": "
|
|
25
|
+
"rollup:watch": "pnpm run rollup --watch",
|
|
27
26
|
"tcm": "tcm -p src/**/*.module.scss",
|
|
28
|
-
"tcm:watch": "
|
|
29
|
-
"prepare": "
|
|
27
|
+
"tcm:watch": "pnpm run tcm --watch",
|
|
28
|
+
"prepare": "pnpm run build",
|
|
30
29
|
"test": "cross-env jest $GREP --env=jsdom --runInBand --ci --reporters=default --reporters=jest-junit --passWithNoTests",
|
|
31
|
-
"test:watch": "
|
|
30
|
+
"test:watch": "pnpm run test --watch"
|
|
32
31
|
},
|
|
33
32
|
"peerDependencies": {
|
|
34
33
|
"mobx": "^6.0.0",
|
|
@@ -39,16 +38,16 @@
|
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
40
|
"autobind-decorator": "^2.1.0",
|
|
42
|
-
"cbioportal-frontend-commons": "
|
|
43
|
-
"cbioportal-utils": "
|
|
41
|
+
"cbioportal-frontend-commons": "0.6.3",
|
|
42
|
+
"cbioportal-utils": "0.4.3",
|
|
44
43
|
"classnames": "^2.2.5",
|
|
45
|
-
"genome-nexus-ts-api-client": "
|
|
44
|
+
"genome-nexus-ts-api-client": "1.1.38",
|
|
46
45
|
"jquery": "^3.2.1",
|
|
47
46
|
"lodash": "^4.17.21",
|
|
48
47
|
"memoize-weak-decorator": "^1.0.3",
|
|
49
|
-
"oncokb-frontend-commons": "
|
|
48
|
+
"oncokb-frontend-commons": "0.1.3",
|
|
50
49
|
"oncokb-styles": "~1.4.2",
|
|
51
|
-
"oncokb-ts-api-client": "
|
|
50
|
+
"oncokb-ts-api-client": "1.3.11",
|
|
52
51
|
"react-collapse": "^4.0.3",
|
|
53
52
|
"react-if": "^2.1.0",
|
|
54
53
|
"react-motion": "^0.5.2",
|
|
@@ -59,5 +58,5 @@
|
|
|
59
58
|
"superagent": "^3.8.3",
|
|
60
59
|
"typescript": "4.0.3"
|
|
61
60
|
},
|
|
62
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "727d3a488de0851176ae5660769364e276b94bc7"
|
|
63
62
|
}
|