@jbrowse/plugin-gccontent 2.15.0 → 2.15.2

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.
@@ -36,7 +36,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
36
36
  }, {
37
37
  renderInProgress: AbortController | undefined;
38
38
  filled: boolean;
39
- reactElement: import("react").ReactElement | undefined;
39
+ reactElement: React.ReactElement | undefined;
40
40
  features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
41
41
  layout: any;
42
42
  status: string;
@@ -47,10 +47,10 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
47
47
  model: {
48
48
  error?: unknown;
49
49
  reload: () => void;
50
- message: import("react").ReactNode;
50
+ message: React.ReactNode;
51
51
  filled?: boolean;
52
52
  status?: string;
53
- reactElement?: import("react").ReactElement;
53
+ reactElement?: React.ReactElement;
54
54
  };
55
55
  }) => import("react").JSX.Element | undefined;
56
56
  renderProps: any;
@@ -61,7 +61,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
61
61
  setLoading(abortController: AbortController): void;
62
62
  setMessage(messageText: string): void;
63
63
  setRendered(props: {
64
- reactElement: import("react").ReactElement;
64
+ reactElement: React.ReactElement;
65
65
  features: Map<string, import("@jbrowse/core/util").Feature>;
66
66
  layout: any;
67
67
  maxHeightReached: boolean;
@@ -133,7 +133,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
133
133
  error: unknown;
134
134
  message: string | undefined;
135
135
  } & {
136
- readonly RenderingComponent: import("react").FC<{
136
+ readonly RenderingComponent: React.FC<{
137
137
  model: {
138
138
  id: string;
139
139
  type: string;
@@ -154,7 +154,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
154
154
  onHorizontalScroll?: () => void;
155
155
  blockState?: Record<string, any>;
156
156
  }>;
157
- readonly DisplayBlurb: import("react").FC<{
157
+ readonly DisplayBlurb: React.FC<{
158
158
  model: {
159
159
  id: string;
160
160
  type: string;
@@ -177,7 +177,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
177
177
  readonly parentTrack: any;
178
178
  renderProps(): any;
179
179
  readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
180
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
180
+ readonly DisplayMessageComponent: undefined | React.FC<any>;
181
181
  trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
182
182
  readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
183
183
  regionCannotBeRendered(): null;
@@ -223,13 +223,13 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
223
223
  featureIdUnderMouse: undefined | string;
224
224
  contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
225
225
  } & {
226
+ readonly DisplayMessageComponent: import("react").FC<any> | undefined;
226
227
  readonly blockType: "dynamicBlocks" | "staticBlocks";
227
228
  readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
228
229
  } & {
229
230
  readonly renderDelay: number;
230
- readonly TooltipComponent: import("react").FC<any>;
231
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
231
232
  readonly selectedFeatureId: string | undefined;
232
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
233
233
  } & {
234
234
  readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
235
235
  readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
@@ -346,7 +346,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
346
346
  } & {
347
347
  reload(): Promise<void>;
348
348
  } & {
349
- readonly TooltipComponent: import("react").FC;
349
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
350
350
  readonly rendererTypeName: string;
351
351
  } & {
352
352
  readonly ticks: {
@@ -33,7 +33,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
33
33
  }, {
34
34
  renderInProgress: AbortController | undefined;
35
35
  filled: boolean;
36
- reactElement: import("react").ReactElement | undefined;
36
+ reactElement: React.ReactElement | undefined;
37
37
  features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
38
38
  layout: any;
39
39
  status: string;
@@ -44,10 +44,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
44
44
  model: {
45
45
  error?: unknown;
46
46
  reload: () => void;
47
- message: import("react").ReactNode;
47
+ message: React.ReactNode;
48
48
  filled?: boolean;
49
49
  status?: string;
50
- reactElement?: import("react").ReactElement;
50
+ reactElement?: React.ReactElement;
51
51
  };
52
52
  }) => import("react").JSX.Element | undefined;
53
53
  renderProps: any;
@@ -58,7 +58,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
58
58
  setLoading(abortController: AbortController): void;
59
59
  setMessage(messageText: string): void;
60
60
  setRendered(props: {
61
- reactElement: import("react").ReactElement;
61
+ reactElement: React.ReactElement;
62
62
  features: Map<string, import("@jbrowse/core/util").Feature>;
63
63
  layout: any;
64
64
  maxHeightReached: boolean;
@@ -126,7 +126,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
126
126
  error: unknown;
127
127
  message: string | undefined;
128
128
  } & {
129
- readonly RenderingComponent: import("react").FC<{
129
+ readonly RenderingComponent: React.FC<{
130
130
  model: {
131
131
  id: string;
132
132
  type: string;
@@ -147,7 +147,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
147
147
  onHorizontalScroll?: () => void;
148
148
  blockState?: Record<string, any>;
149
149
  }>;
150
- readonly DisplayBlurb: import("react").FC<{
150
+ readonly DisplayBlurb: React.FC<{
151
151
  model: {
152
152
  id: string;
153
153
  type: string;
@@ -170,7 +170,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
170
170
  readonly parentTrack: any;
171
171
  renderProps(): any;
172
172
  readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
173
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
173
+ readonly DisplayMessageComponent: undefined | React.FC<any>;
174
174
  trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
175
175
  readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
176
176
  regionCannotBeRendered(): null;
@@ -216,13 +216,13 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
216
216
  featureIdUnderMouse: undefined | string;
217
217
  contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
218
218
  } & {
219
+ readonly DisplayMessageComponent: import("react").FC<any> | undefined;
219
220
  readonly blockType: "dynamicBlocks" | "staticBlocks";
220
221
  readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
221
222
  } & {
222
223
  readonly renderDelay: number;
223
- readonly TooltipComponent: import("react").FC<any>;
224
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
224
225
  readonly selectedFeatureId: string | undefined;
225
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
226
226
  } & {
227
227
  readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
228
228
  readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
@@ -339,7 +339,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
339
339
  } & {
340
340
  reload(): Promise<void>;
341
341
  } & {
342
- readonly TooltipComponent: import("react").FC;
342
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
343
343
  readonly rendererTypeName: string;
344
344
  } & {
345
345
  readonly ticks: {
@@ -38,7 +38,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
38
38
  }, {
39
39
  renderInProgress: AbortController | undefined;
40
40
  filled: boolean;
41
- reactElement: import("react").ReactElement | undefined;
41
+ reactElement: React.ReactElement | undefined;
42
42
  features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
43
43
  layout: any;
44
44
  status: string;
@@ -49,10 +49,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
49
49
  model: {
50
50
  error?: unknown;
51
51
  reload: () => void;
52
- message: import("react").ReactNode;
52
+ message: React.ReactNode;
53
53
  filled?: boolean;
54
54
  status?: string;
55
- reactElement?: import("react").ReactElement;
55
+ reactElement?: React.ReactElement;
56
56
  };
57
57
  }) => import("react").JSX.Element | undefined;
58
58
  renderProps: any;
@@ -63,7 +63,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
63
63
  setLoading(abortController: AbortController): void;
64
64
  setMessage(messageText: string): void;
65
65
  setRendered(props: {
66
- reactElement: import("react").ReactElement;
66
+ reactElement: React.ReactElement;
67
67
  features: Map<string, import("@jbrowse/core/util").Feature>;
68
68
  layout: any;
69
69
  maxHeightReached: boolean;
@@ -131,7 +131,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
131
131
  error: unknown;
132
132
  message: string | undefined;
133
133
  } & {
134
- readonly RenderingComponent: import("react").FC<{
134
+ readonly RenderingComponent: React.FC<{
135
135
  model: {
136
136
  id: string;
137
137
  type: string;
@@ -152,7 +152,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
152
152
  onHorizontalScroll?: () => void;
153
153
  blockState?: Record<string, any>;
154
154
  }>;
155
- readonly DisplayBlurb: import("react").FC<{
155
+ readonly DisplayBlurb: React.FC<{
156
156
  model: {
157
157
  id: string;
158
158
  type: string;
@@ -175,7 +175,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
175
175
  readonly parentTrack: any;
176
176
  renderProps(): any;
177
177
  readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
178
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
178
+ readonly DisplayMessageComponent: undefined | React.FC<any>;
179
179
  trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
180
180
  readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
181
181
  regionCannotBeRendered(): null;
@@ -221,13 +221,13 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
221
221
  featureIdUnderMouse: undefined | string;
222
222
  contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
223
223
  } & {
224
+ readonly DisplayMessageComponent: import("react").FC<any> | undefined;
224
225
  readonly blockType: "dynamicBlocks" | "staticBlocks";
225
226
  readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
226
227
  } & {
227
228
  readonly renderDelay: number;
228
- readonly TooltipComponent: import("react").FC<any>;
229
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
229
230
  readonly selectedFeatureId: string | undefined;
230
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
231
231
  } & {
232
232
  readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
233
233
  readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
@@ -344,7 +344,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
344
344
  } & {
345
345
  reload(): Promise<void>;
346
346
  } & {
347
- readonly TooltipComponent: import("react").FC;
347
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
348
348
  readonly rendererTypeName: string;
349
349
  } & {
350
350
  readonly ticks: {
@@ -36,7 +36,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
36
36
  }, {
37
37
  renderInProgress: AbortController | undefined;
38
38
  filled: boolean;
39
- reactElement: import("react").ReactElement | undefined;
39
+ reactElement: React.ReactElement | undefined;
40
40
  features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
41
41
  layout: any;
42
42
  status: string;
@@ -47,10 +47,10 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
47
47
  model: {
48
48
  error?: unknown;
49
49
  reload: () => void;
50
- message: import("react").ReactNode;
50
+ message: React.ReactNode;
51
51
  filled?: boolean;
52
52
  status?: string;
53
- reactElement?: import("react").ReactElement;
53
+ reactElement?: React.ReactElement;
54
54
  };
55
55
  }) => import("react").JSX.Element | undefined;
56
56
  renderProps: any;
@@ -61,7 +61,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
61
61
  setLoading(abortController: AbortController): void;
62
62
  setMessage(messageText: string): void;
63
63
  setRendered(props: {
64
- reactElement: import("react").ReactElement;
64
+ reactElement: React.ReactElement;
65
65
  features: Map<string, import("@jbrowse/core/util").Feature>;
66
66
  layout: any;
67
67
  maxHeightReached: boolean;
@@ -133,7 +133,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
133
133
  error: unknown;
134
134
  message: string | undefined;
135
135
  } & {
136
- readonly RenderingComponent: import("react").FC<{
136
+ readonly RenderingComponent: React.FC<{
137
137
  model: {
138
138
  id: string;
139
139
  type: string;
@@ -154,7 +154,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
154
154
  onHorizontalScroll?: () => void;
155
155
  blockState?: Record<string, any>;
156
156
  }>;
157
- readonly DisplayBlurb: import("react").FC<{
157
+ readonly DisplayBlurb: React.FC<{
158
158
  model: {
159
159
  id: string;
160
160
  type: string;
@@ -177,7 +177,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
177
177
  readonly parentTrack: any;
178
178
  renderProps(): any;
179
179
  readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
180
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
180
+ readonly DisplayMessageComponent: undefined | React.FC<any>;
181
181
  trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
182
182
  readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
183
183
  regionCannotBeRendered(): null;
@@ -223,13 +223,13 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
223
223
  featureIdUnderMouse: undefined | string;
224
224
  contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
225
225
  } & {
226
+ readonly DisplayMessageComponent: import("react").FC<any> | undefined;
226
227
  readonly blockType: "dynamicBlocks" | "staticBlocks";
227
228
  readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
228
229
  } & {
229
230
  readonly renderDelay: number;
230
- readonly TooltipComponent: import("react").FC<any>;
231
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
231
232
  readonly selectedFeatureId: string | undefined;
232
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
233
233
  } & {
234
234
  readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
235
235
  readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
@@ -346,7 +346,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
346
346
  } & {
347
347
  reload(): Promise<void>;
348
348
  } & {
349
- readonly TooltipComponent: import("react").FC;
349
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
350
350
  readonly rendererTypeName: string;
351
351
  } & {
352
352
  readonly ticks: {
@@ -33,7 +33,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
33
33
  }, {
34
34
  renderInProgress: AbortController | undefined;
35
35
  filled: boolean;
36
- reactElement: import("react").ReactElement | undefined;
36
+ reactElement: React.ReactElement | undefined;
37
37
  features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
38
38
  layout: any;
39
39
  status: string;
@@ -44,10 +44,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
44
44
  model: {
45
45
  error?: unknown;
46
46
  reload: () => void;
47
- message: import("react").ReactNode;
47
+ message: React.ReactNode;
48
48
  filled?: boolean;
49
49
  status?: string;
50
- reactElement?: import("react").ReactElement;
50
+ reactElement?: React.ReactElement;
51
51
  };
52
52
  }) => import("react").JSX.Element | undefined;
53
53
  renderProps: any;
@@ -58,7 +58,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
58
58
  setLoading(abortController: AbortController): void;
59
59
  setMessage(messageText: string): void;
60
60
  setRendered(props: {
61
- reactElement: import("react").ReactElement;
61
+ reactElement: React.ReactElement;
62
62
  features: Map<string, import("@jbrowse/core/util").Feature>;
63
63
  layout: any;
64
64
  maxHeightReached: boolean;
@@ -126,7 +126,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
126
126
  error: unknown;
127
127
  message: string | undefined;
128
128
  } & {
129
- readonly RenderingComponent: import("react").FC<{
129
+ readonly RenderingComponent: React.FC<{
130
130
  model: {
131
131
  id: string;
132
132
  type: string;
@@ -147,7 +147,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
147
147
  onHorizontalScroll?: () => void;
148
148
  blockState?: Record<string, any>;
149
149
  }>;
150
- readonly DisplayBlurb: import("react").FC<{
150
+ readonly DisplayBlurb: React.FC<{
151
151
  model: {
152
152
  id: string;
153
153
  type: string;
@@ -170,7 +170,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
170
170
  readonly parentTrack: any;
171
171
  renderProps(): any;
172
172
  readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
173
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
173
+ readonly DisplayMessageComponent: undefined | React.FC<any>;
174
174
  trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
175
175
  readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
176
176
  regionCannotBeRendered(): null;
@@ -216,13 +216,13 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
216
216
  featureIdUnderMouse: undefined | string;
217
217
  contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
218
218
  } & {
219
+ readonly DisplayMessageComponent: import("react").FC<any> | undefined;
219
220
  readonly blockType: "dynamicBlocks" | "staticBlocks";
220
221
  readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
221
222
  } & {
222
223
  readonly renderDelay: number;
223
- readonly TooltipComponent: import("react").FC<any>;
224
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
224
225
  readonly selectedFeatureId: string | undefined;
225
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
226
226
  } & {
227
227
  readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
228
228
  readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
@@ -339,7 +339,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
339
339
  } & {
340
340
  reload(): Promise<void>;
341
341
  } & {
342
- readonly TooltipComponent: import("react").FC;
342
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
343
343
  readonly rendererTypeName: string;
344
344
  } & {
345
345
  readonly ticks: {
@@ -38,7 +38,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
38
38
  }, {
39
39
  renderInProgress: AbortController | undefined;
40
40
  filled: boolean;
41
- reactElement: import("react").ReactElement | undefined;
41
+ reactElement: React.ReactElement | undefined;
42
42
  features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
43
43
  layout: any;
44
44
  status: string;
@@ -49,10 +49,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
49
49
  model: {
50
50
  error?: unknown;
51
51
  reload: () => void;
52
- message: import("react").ReactNode;
52
+ message: React.ReactNode;
53
53
  filled?: boolean;
54
54
  status?: string;
55
- reactElement?: import("react").ReactElement;
55
+ reactElement?: React.ReactElement;
56
56
  };
57
57
  }) => import("react").JSX.Element | undefined;
58
58
  renderProps: any;
@@ -63,7 +63,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
63
63
  setLoading(abortController: AbortController): void;
64
64
  setMessage(messageText: string): void;
65
65
  setRendered(props: {
66
- reactElement: import("react").ReactElement;
66
+ reactElement: React.ReactElement;
67
67
  features: Map<string, import("@jbrowse/core/util").Feature>;
68
68
  layout: any;
69
69
  maxHeightReached: boolean;
@@ -131,7 +131,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
131
131
  error: unknown;
132
132
  message: string | undefined;
133
133
  } & {
134
- readonly RenderingComponent: import("react").FC<{
134
+ readonly RenderingComponent: React.FC<{
135
135
  model: {
136
136
  id: string;
137
137
  type: string;
@@ -152,7 +152,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
152
152
  onHorizontalScroll?: () => void;
153
153
  blockState?: Record<string, any>;
154
154
  }>;
155
- readonly DisplayBlurb: import("react").FC<{
155
+ readonly DisplayBlurb: React.FC<{
156
156
  model: {
157
157
  id: string;
158
158
  type: string;
@@ -175,7 +175,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
175
175
  readonly parentTrack: any;
176
176
  renderProps(): any;
177
177
  readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
178
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
178
+ readonly DisplayMessageComponent: undefined | React.FC<any>;
179
179
  trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
180
180
  readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
181
181
  regionCannotBeRendered(): null;
@@ -221,13 +221,13 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
221
221
  featureIdUnderMouse: undefined | string;
222
222
  contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
223
223
  } & {
224
+ readonly DisplayMessageComponent: import("react").FC<any> | undefined;
224
225
  readonly blockType: "dynamicBlocks" | "staticBlocks";
225
226
  readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
226
227
  } & {
227
228
  readonly renderDelay: number;
228
- readonly TooltipComponent: import("react").FC<any>;
229
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
229
230
  readonly selectedFeatureId: string | undefined;
230
- readonly DisplayMessageComponent: undefined | import("react").FC<any>;
231
231
  } & {
232
232
  readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
233
233
  readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
@@ -344,7 +344,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
344
344
  } & {
345
345
  reload(): Promise<void>;
346
346
  } & {
347
- readonly TooltipComponent: import("react").FC;
347
+ readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
348
348
  readonly rendererTypeName: string;
349
349
  } & {
350
350
  readonly ticks: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-gccontent",
3
- "version": "2.15.0",
3
+ "version": "2.15.2",
4
4
  "description": "JBrowse 2 gccontent concepts",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -53,5 +53,5 @@
53
53
  "distModule": "esm/index.js",
54
54
  "srcModule": "src/index.ts",
55
55
  "module": "esm/index.js",
56
- "gitHead": "87eeb1fbf8311dbf88d5e75b5a265f03beffdda8"
56
+ "gitHead": "8a58cefbfe39af4c97bcb6ead354d72c9fef9224"
57
57
  }