@sjcrh/proteinpaint-types 2.89.1 → 2.93.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dataset.ts +4 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-types",
3
- "version": "2.89.1",
3
+ "version": "2.93.0",
4
4
  "type": "module",
5
5
  "description": "Shared type definitions between ProteinPaint server and client code",
6
6
  "main": "src/index.ts",
package/src/dataset.ts CHANGED
@@ -547,8 +547,7 @@ export type SingleCellDataGdc = {
547
547
  get?: (q: any) => any
548
548
  refName?: string
549
549
  plots: GDCSingleCellPlot[]
550
- width?: number
551
- height?: number
550
+ settings?: { [key: string]: string }
552
551
  }
553
552
 
554
553
  export type SingleCellDEgeneGdc = {
@@ -611,8 +610,7 @@ export type SingleCellDataNative = {
611
610
  get?: (q: any) => any
612
611
  /** width and height of the plots */
613
612
 
614
- width?: number
615
- height?: number
613
+ settings?: { [key: string]: any }
616
614
  }
617
615
 
618
616
  export type SingleCellQuery = {
@@ -786,8 +784,6 @@ export type SelectCohortEntry = {
786
784
  //The profile has clearOnChange. The terms used in the plots are not always the same for the profile.
787
785
  //Therefore when switching cohorts, it is necessary to delete the plots opened and the global filter
788
786
  clearOnChange?: { [index: string]: boolean }
789
- //Allows to customize the color of the selected column on the cohort features table. Used by the PrOFILE
790
- activeCohortColor?: string
791
787
  }
792
788
 
793
789
  type MissingAccess = {
@@ -1242,6 +1238,8 @@ type MassNav = {
1242
1238
  }
1243
1239
  }
1244
1240
  }
1241
+ /** customize background color of active navigation tab */
1242
+ activeColor?: string
1245
1243
  }
1246
1244
 
1247
1245
  type ActiveItem = {