react-mutation-mapper 0.8.76 → 0.8.77

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.
@@ -19,7 +19,7 @@ export declare type AnnotationProps = {
19
19
  myCancerGenomeData?: IMyCancerGenomeData;
20
20
  civicGenes?: RemoteData<ICivicGeneIndex | undefined>;
21
21
  civicVariants?: RemoteData<ICivicVariantIndex | undefined>;
22
- userEmailAddress?: string;
22
+ userDisplayName?: string;
23
23
  };
24
24
  export declare type GenericAnnotationProps = {
25
25
  annotation: IAnnotation;
@@ -30,7 +30,7 @@ export declare type GenericAnnotationProps = {
30
30
  mergeOncoKbIcons?: boolean;
31
31
  oncoKbContentPadding?: number;
32
32
  pubMedCache?: MobxCache;
33
- userEmailAddress?: string;
33
+ userDisplayName?: string;
34
34
  };
35
35
  export interface IAnnotation {
36
36
  isHotspot: boolean;
package/dist/index.es.js CHANGED
@@ -700,9 +700,9 @@ function sortValue$4(annotation) {
700
700
  ]);
701
701
  }
702
702
  function GenericAnnotation(props) {
703
- var annotation = props.annotation, enableCivic = props.enableCivic, enableHotspot = props.enableHotspot, enableMyCancerGenome = props.enableMyCancerGenome, enableOncoKb = props.enableOncoKb; props.pubMedCache; var userEmailAddress = props.userEmailAddress, mergeOncoKbIcons = props.mergeOncoKbIcons, oncoKbContentPadding = props.oncoKbContentPadding;
703
+ var annotation = props.annotation, enableCivic = props.enableCivic, enableHotspot = props.enableHotspot, enableMyCancerGenome = props.enableMyCancerGenome, enableOncoKb = props.enableOncoKb; props.pubMedCache; var userDisplayName = props.userDisplayName, mergeOncoKbIcons = props.mergeOncoKbIcons, oncoKbContentPadding = props.oncoKbContentPadding;
704
704
  return (React.createElement("span", { style: { display: 'flex', minWidth: 100 } },
705
- enableOncoKb && (React.createElement(OncoKB, { usingPublicOncoKbInstance: annotation.usingPublicOncoKbInstance, hugoGeneSymbol: annotation.hugoGeneSymbol, geneNotExist: !annotation.oncoKbGeneExist, isCancerGene: annotation.isOncoKbCancerGene, status: annotation.oncoKbStatus, indicator: annotation.oncoKbIndicator, availableDataTypes: annotation.oncoKbAvailableDataTypes, mergeAnnotationIcons: mergeOncoKbIcons, userEmailAddress: userEmailAddress, contentPadding: oncoKbContentPadding })),
705
+ enableOncoKb && (React.createElement(OncoKB, { usingPublicOncoKbInstance: annotation.usingPublicOncoKbInstance, hugoGeneSymbol: annotation.hugoGeneSymbol, geneNotExist: !annotation.oncoKbGeneExist, isCancerGene: annotation.isOncoKbCancerGene, status: annotation.oncoKbStatus, indicator: annotation.oncoKbIndicator, availableDataTypes: annotation.oncoKbAvailableDataTypes, mergeAnnotationIcons: mergeOncoKbIcons, userDisplayName: userDisplayName, contentPadding: oncoKbContentPadding })),
706
706
  enableCivic && (React.createElement(Civic, { civicEntry: annotation.civicEntry, civicStatus: annotation.civicStatus, hasCivicVariants: annotation.hasCivicVariants })),
707
707
  enableMyCancerGenome && (React.createElement(MyCancerGenome, { linksHTML: annotation.myCancerGenomeLinks })),
708
708
  enableHotspot && (React.createElement(HotspotAnnotation, { isHotspot: annotation.isHotspot, is3dHotspot: annotation.is3dHotspot, status: annotation.hotspotStatus }))));