@jbrowse/plugin-gccontent 3.0.0 → 3.0.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.
- package/dist/LinearGCContentDisplay/shared.d.ts +16 -12
- package/dist/LinearGCContentDisplay/stateModel1.d.ts +16 -12
- package/dist/LinearGCContentDisplay/stateModel2.d.ts +16 -12
- package/esm/LinearGCContentDisplay/shared.d.ts +16 -12
- package/esm/LinearGCContentDisplay/stateModel1.d.ts +16 -12
- package/esm/LinearGCContentDisplay/stateModel2.d.ts +16 -12
- package/package.json +10 -8
|
@@ -96,6 +96,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
configuration: AnyConfigurationSchemaType;
|
|
97
97
|
} & {
|
|
98
98
|
type: import("mobx-state-tree").ISimpleType<"LinearWiggleDisplay">;
|
|
99
|
+
invertedSetting: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
99
100
|
} & {
|
|
100
101
|
windowSize: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
101
102
|
windowDelta: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -320,10 +321,14 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
320
321
|
})[];
|
|
321
322
|
} & {
|
|
322
323
|
reload(): Promise<void>;
|
|
324
|
+
} & {
|
|
325
|
+
setInverted(arg: boolean): void;
|
|
323
326
|
} & {
|
|
324
327
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
325
328
|
readonly rendererTypeName: string;
|
|
326
329
|
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
330
|
+
readonly graphType: boolean;
|
|
331
|
+
readonly inverted: any;
|
|
327
332
|
} & {
|
|
328
333
|
adapterProps(): any;
|
|
329
334
|
readonly ticks: {
|
|
@@ -334,18 +339,10 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
334
339
|
} | undefined;
|
|
335
340
|
} & {
|
|
336
341
|
renderProps(): any;
|
|
337
|
-
readonly needsScalebar: boolean;
|
|
338
342
|
readonly fillSetting: 1 | 2 | 0;
|
|
339
343
|
readonly quantitativeStatsReady: boolean;
|
|
340
344
|
} & {
|
|
341
345
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
342
|
-
type: string;
|
|
343
|
-
label?: undefined;
|
|
344
|
-
icon?: undefined;
|
|
345
|
-
subMenu?: undefined;
|
|
346
|
-
onClick?: undefined;
|
|
347
|
-
checked?: undefined;
|
|
348
|
-
} | {
|
|
349
346
|
label: string;
|
|
350
347
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
351
348
|
muiName: string;
|
|
@@ -372,8 +369,15 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
372
369
|
subMenu?: undefined;
|
|
373
370
|
})[];
|
|
374
371
|
type?: undefined;
|
|
375
|
-
onClick?: undefined;
|
|
376
372
|
checked?: undefined;
|
|
373
|
+
onClick?: undefined;
|
|
374
|
+
} | {
|
|
375
|
+
label: string;
|
|
376
|
+
type: string;
|
|
377
|
+
checked: any;
|
|
378
|
+
onClick: () => void;
|
|
379
|
+
icon?: undefined;
|
|
380
|
+
subMenu?: undefined;
|
|
377
381
|
} | {
|
|
378
382
|
label: string;
|
|
379
383
|
subMenu: {
|
|
@@ -382,18 +386,18 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
382
386
|
checked: boolean;
|
|
383
387
|
onClick: () => void;
|
|
384
388
|
}[];
|
|
385
|
-
type?: undefined;
|
|
386
389
|
icon?: undefined;
|
|
387
|
-
|
|
390
|
+
type?: undefined;
|
|
388
391
|
checked?: undefined;
|
|
392
|
+
onClick?: undefined;
|
|
389
393
|
} | {
|
|
390
394
|
label: string;
|
|
391
395
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
392
396
|
muiName: string;
|
|
393
397
|
};
|
|
394
398
|
onClick: () => void;
|
|
395
|
-
type?: undefined;
|
|
396
399
|
subMenu?: undefined;
|
|
400
|
+
type?: undefined;
|
|
397
401
|
checked?: undefined;
|
|
398
402
|
} | {
|
|
399
403
|
type: string;
|
|
@@ -96,6 +96,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
configuration: AnyConfigurationSchemaType;
|
|
97
97
|
} & {
|
|
98
98
|
type: import("mobx-state-tree").ISimpleType<"LinearWiggleDisplay">;
|
|
99
|
+
invertedSetting: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
99
100
|
} & {
|
|
100
101
|
windowSize: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
101
102
|
windowDelta: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -322,10 +323,14 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
322
323
|
})[];
|
|
323
324
|
} & {
|
|
324
325
|
reload(): Promise<void>;
|
|
326
|
+
} & {
|
|
327
|
+
setInverted(arg: boolean): void;
|
|
325
328
|
} & {
|
|
326
329
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
327
330
|
readonly rendererTypeName: string;
|
|
328
331
|
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
332
|
+
readonly graphType: boolean;
|
|
333
|
+
readonly inverted: any;
|
|
329
334
|
} & {
|
|
330
335
|
adapterProps(): any;
|
|
331
336
|
readonly ticks: {
|
|
@@ -336,18 +341,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
336
341
|
} | undefined;
|
|
337
342
|
} & {
|
|
338
343
|
renderProps(): any;
|
|
339
|
-
readonly needsScalebar: boolean;
|
|
340
344
|
readonly fillSetting: 1 | 2 | 0;
|
|
341
345
|
readonly quantitativeStatsReady: boolean;
|
|
342
346
|
} & {
|
|
343
347
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
344
|
-
type: string;
|
|
345
|
-
label?: undefined;
|
|
346
|
-
icon?: undefined;
|
|
347
|
-
subMenu?: undefined;
|
|
348
|
-
onClick?: undefined;
|
|
349
|
-
checked?: undefined;
|
|
350
|
-
} | {
|
|
351
348
|
label: string;
|
|
352
349
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
353
350
|
muiName: string;
|
|
@@ -374,8 +371,15 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
374
371
|
subMenu?: undefined;
|
|
375
372
|
})[];
|
|
376
373
|
type?: undefined;
|
|
377
|
-
onClick?: undefined;
|
|
378
374
|
checked?: undefined;
|
|
375
|
+
onClick?: undefined;
|
|
376
|
+
} | {
|
|
377
|
+
label: string;
|
|
378
|
+
type: string;
|
|
379
|
+
checked: any;
|
|
380
|
+
onClick: () => void;
|
|
381
|
+
icon?: undefined;
|
|
382
|
+
subMenu?: undefined;
|
|
379
383
|
} | {
|
|
380
384
|
label: string;
|
|
381
385
|
subMenu: {
|
|
@@ -384,18 +388,18 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
384
388
|
checked: boolean;
|
|
385
389
|
onClick: () => void;
|
|
386
390
|
}[];
|
|
387
|
-
type?: undefined;
|
|
388
391
|
icon?: undefined;
|
|
389
|
-
|
|
392
|
+
type?: undefined;
|
|
390
393
|
checked?: undefined;
|
|
394
|
+
onClick?: undefined;
|
|
391
395
|
} | {
|
|
392
396
|
label: string;
|
|
393
397
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
394
398
|
muiName: string;
|
|
395
399
|
};
|
|
396
400
|
onClick: () => void;
|
|
397
|
-
type?: undefined;
|
|
398
401
|
subMenu?: undefined;
|
|
402
|
+
type?: undefined;
|
|
399
403
|
checked?: undefined;
|
|
400
404
|
} | {
|
|
401
405
|
type: string;
|
|
@@ -96,6 +96,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
configuration: AnyConfigurationSchemaType;
|
|
97
97
|
} & {
|
|
98
98
|
type: import("mobx-state-tree").ISimpleType<"LinearWiggleDisplay">;
|
|
99
|
+
invertedSetting: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
99
100
|
} & {
|
|
100
101
|
windowSize: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
101
102
|
windowDelta: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -322,10 +323,14 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
322
323
|
})[];
|
|
323
324
|
} & {
|
|
324
325
|
reload(): Promise<void>;
|
|
326
|
+
} & {
|
|
327
|
+
setInverted(arg: boolean): void;
|
|
325
328
|
} & {
|
|
326
329
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
327
330
|
readonly rendererTypeName: string;
|
|
328
331
|
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
332
|
+
readonly graphType: boolean;
|
|
333
|
+
readonly inverted: any;
|
|
329
334
|
} & {
|
|
330
335
|
adapterProps(): any;
|
|
331
336
|
readonly ticks: {
|
|
@@ -336,18 +341,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
336
341
|
} | undefined;
|
|
337
342
|
} & {
|
|
338
343
|
renderProps(): any;
|
|
339
|
-
readonly needsScalebar: boolean;
|
|
340
344
|
readonly fillSetting: 1 | 2 | 0;
|
|
341
345
|
readonly quantitativeStatsReady: boolean;
|
|
342
346
|
} & {
|
|
343
347
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
344
|
-
type: string;
|
|
345
|
-
label?: undefined;
|
|
346
|
-
icon?: undefined;
|
|
347
|
-
subMenu?: undefined;
|
|
348
|
-
onClick?: undefined;
|
|
349
|
-
checked?: undefined;
|
|
350
|
-
} | {
|
|
351
348
|
label: string;
|
|
352
349
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
353
350
|
muiName: string;
|
|
@@ -374,8 +371,15 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
374
371
|
subMenu?: undefined;
|
|
375
372
|
})[];
|
|
376
373
|
type?: undefined;
|
|
377
|
-
onClick?: undefined;
|
|
378
374
|
checked?: undefined;
|
|
375
|
+
onClick?: undefined;
|
|
376
|
+
} | {
|
|
377
|
+
label: string;
|
|
378
|
+
type: string;
|
|
379
|
+
checked: any;
|
|
380
|
+
onClick: () => void;
|
|
381
|
+
icon?: undefined;
|
|
382
|
+
subMenu?: undefined;
|
|
379
383
|
} | {
|
|
380
384
|
label: string;
|
|
381
385
|
subMenu: {
|
|
@@ -384,18 +388,18 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
384
388
|
checked: boolean;
|
|
385
389
|
onClick: () => void;
|
|
386
390
|
}[];
|
|
387
|
-
type?: undefined;
|
|
388
391
|
icon?: undefined;
|
|
389
|
-
|
|
392
|
+
type?: undefined;
|
|
390
393
|
checked?: undefined;
|
|
394
|
+
onClick?: undefined;
|
|
391
395
|
} | {
|
|
392
396
|
label: string;
|
|
393
397
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
394
398
|
muiName: string;
|
|
395
399
|
};
|
|
396
400
|
onClick: () => void;
|
|
397
|
-
type?: undefined;
|
|
398
401
|
subMenu?: undefined;
|
|
402
|
+
type?: undefined;
|
|
399
403
|
checked?: undefined;
|
|
400
404
|
} | {
|
|
401
405
|
type: string;
|
|
@@ -96,6 +96,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
configuration: AnyConfigurationSchemaType;
|
|
97
97
|
} & {
|
|
98
98
|
type: import("mobx-state-tree").ISimpleType<"LinearWiggleDisplay">;
|
|
99
|
+
invertedSetting: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
99
100
|
} & {
|
|
100
101
|
windowSize: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
101
102
|
windowDelta: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -320,10 +321,14 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
320
321
|
})[];
|
|
321
322
|
} & {
|
|
322
323
|
reload(): Promise<void>;
|
|
324
|
+
} & {
|
|
325
|
+
setInverted(arg: boolean): void;
|
|
323
326
|
} & {
|
|
324
327
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
325
328
|
readonly rendererTypeName: string;
|
|
326
329
|
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
330
|
+
readonly graphType: boolean;
|
|
331
|
+
readonly inverted: any;
|
|
327
332
|
} & {
|
|
328
333
|
adapterProps(): any;
|
|
329
334
|
readonly ticks: {
|
|
@@ -334,18 +339,10 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
334
339
|
} | undefined;
|
|
335
340
|
} & {
|
|
336
341
|
renderProps(): any;
|
|
337
|
-
readonly needsScalebar: boolean;
|
|
338
342
|
readonly fillSetting: 1 | 2 | 0;
|
|
339
343
|
readonly quantitativeStatsReady: boolean;
|
|
340
344
|
} & {
|
|
341
345
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
342
|
-
type: string;
|
|
343
|
-
label?: undefined;
|
|
344
|
-
icon?: undefined;
|
|
345
|
-
subMenu?: undefined;
|
|
346
|
-
onClick?: undefined;
|
|
347
|
-
checked?: undefined;
|
|
348
|
-
} | {
|
|
349
346
|
label: string;
|
|
350
347
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
351
348
|
muiName: string;
|
|
@@ -372,8 +369,15 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
372
369
|
subMenu?: undefined;
|
|
373
370
|
})[];
|
|
374
371
|
type?: undefined;
|
|
375
|
-
onClick?: undefined;
|
|
376
372
|
checked?: undefined;
|
|
373
|
+
onClick?: undefined;
|
|
374
|
+
} | {
|
|
375
|
+
label: string;
|
|
376
|
+
type: string;
|
|
377
|
+
checked: any;
|
|
378
|
+
onClick: () => void;
|
|
379
|
+
icon?: undefined;
|
|
380
|
+
subMenu?: undefined;
|
|
377
381
|
} | {
|
|
378
382
|
label: string;
|
|
379
383
|
subMenu: {
|
|
@@ -382,18 +386,18 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
382
386
|
checked: boolean;
|
|
383
387
|
onClick: () => void;
|
|
384
388
|
}[];
|
|
385
|
-
type?: undefined;
|
|
386
389
|
icon?: undefined;
|
|
387
|
-
|
|
390
|
+
type?: undefined;
|
|
388
391
|
checked?: undefined;
|
|
392
|
+
onClick?: undefined;
|
|
389
393
|
} | {
|
|
390
394
|
label: string;
|
|
391
395
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
392
396
|
muiName: string;
|
|
393
397
|
};
|
|
394
398
|
onClick: () => void;
|
|
395
|
-
type?: undefined;
|
|
396
399
|
subMenu?: undefined;
|
|
400
|
+
type?: undefined;
|
|
397
401
|
checked?: undefined;
|
|
398
402
|
} | {
|
|
399
403
|
type: string;
|
|
@@ -96,6 +96,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
configuration: AnyConfigurationSchemaType;
|
|
97
97
|
} & {
|
|
98
98
|
type: import("mobx-state-tree").ISimpleType<"LinearWiggleDisplay">;
|
|
99
|
+
invertedSetting: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
99
100
|
} & {
|
|
100
101
|
windowSize: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
101
102
|
windowDelta: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -322,10 +323,14 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
322
323
|
})[];
|
|
323
324
|
} & {
|
|
324
325
|
reload(): Promise<void>;
|
|
326
|
+
} & {
|
|
327
|
+
setInverted(arg: boolean): void;
|
|
325
328
|
} & {
|
|
326
329
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
327
330
|
readonly rendererTypeName: string;
|
|
328
331
|
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
332
|
+
readonly graphType: boolean;
|
|
333
|
+
readonly inverted: any;
|
|
329
334
|
} & {
|
|
330
335
|
adapterProps(): any;
|
|
331
336
|
readonly ticks: {
|
|
@@ -336,18 +341,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
336
341
|
} | undefined;
|
|
337
342
|
} & {
|
|
338
343
|
renderProps(): any;
|
|
339
|
-
readonly needsScalebar: boolean;
|
|
340
344
|
readonly fillSetting: 1 | 2 | 0;
|
|
341
345
|
readonly quantitativeStatsReady: boolean;
|
|
342
346
|
} & {
|
|
343
347
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
344
|
-
type: string;
|
|
345
|
-
label?: undefined;
|
|
346
|
-
icon?: undefined;
|
|
347
|
-
subMenu?: undefined;
|
|
348
|
-
onClick?: undefined;
|
|
349
|
-
checked?: undefined;
|
|
350
|
-
} | {
|
|
351
348
|
label: string;
|
|
352
349
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
353
350
|
muiName: string;
|
|
@@ -374,8 +371,15 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
374
371
|
subMenu?: undefined;
|
|
375
372
|
})[];
|
|
376
373
|
type?: undefined;
|
|
377
|
-
onClick?: undefined;
|
|
378
374
|
checked?: undefined;
|
|
375
|
+
onClick?: undefined;
|
|
376
|
+
} | {
|
|
377
|
+
label: string;
|
|
378
|
+
type: string;
|
|
379
|
+
checked: any;
|
|
380
|
+
onClick: () => void;
|
|
381
|
+
icon?: undefined;
|
|
382
|
+
subMenu?: undefined;
|
|
379
383
|
} | {
|
|
380
384
|
label: string;
|
|
381
385
|
subMenu: {
|
|
@@ -384,18 +388,18 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
384
388
|
checked: boolean;
|
|
385
389
|
onClick: () => void;
|
|
386
390
|
}[];
|
|
387
|
-
type?: undefined;
|
|
388
391
|
icon?: undefined;
|
|
389
|
-
|
|
392
|
+
type?: undefined;
|
|
390
393
|
checked?: undefined;
|
|
394
|
+
onClick?: undefined;
|
|
391
395
|
} | {
|
|
392
396
|
label: string;
|
|
393
397
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
394
398
|
muiName: string;
|
|
395
399
|
};
|
|
396
400
|
onClick: () => void;
|
|
397
|
-
type?: undefined;
|
|
398
401
|
subMenu?: undefined;
|
|
402
|
+
type?: undefined;
|
|
399
403
|
checked?: undefined;
|
|
400
404
|
} | {
|
|
401
405
|
type: string;
|
|
@@ -96,6 +96,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
96
96
|
configuration: AnyConfigurationSchemaType;
|
|
97
97
|
} & {
|
|
98
98
|
type: import("mobx-state-tree").ISimpleType<"LinearWiggleDisplay">;
|
|
99
|
+
invertedSetting: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
99
100
|
} & {
|
|
100
101
|
windowSize: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
101
102
|
windowDelta: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
@@ -322,10 +323,14 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
322
323
|
})[];
|
|
323
324
|
} & {
|
|
324
325
|
reload(): Promise<void>;
|
|
326
|
+
} & {
|
|
327
|
+
setInverted(arg: boolean): void;
|
|
325
328
|
} & {
|
|
326
329
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
327
330
|
readonly rendererTypeName: string;
|
|
328
331
|
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
332
|
+
readonly graphType: boolean;
|
|
333
|
+
readonly inverted: any;
|
|
329
334
|
} & {
|
|
330
335
|
adapterProps(): any;
|
|
331
336
|
readonly ticks: {
|
|
@@ -336,18 +341,10 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
336
341
|
} | undefined;
|
|
337
342
|
} & {
|
|
338
343
|
renderProps(): any;
|
|
339
|
-
readonly needsScalebar: boolean;
|
|
340
344
|
readonly fillSetting: 1 | 2 | 0;
|
|
341
345
|
readonly quantitativeStatsReady: boolean;
|
|
342
346
|
} & {
|
|
343
347
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
344
|
-
type: string;
|
|
345
|
-
label?: undefined;
|
|
346
|
-
icon?: undefined;
|
|
347
|
-
subMenu?: undefined;
|
|
348
|
-
onClick?: undefined;
|
|
349
|
-
checked?: undefined;
|
|
350
|
-
} | {
|
|
351
348
|
label: string;
|
|
352
349
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
353
350
|
muiName: string;
|
|
@@ -374,8 +371,15 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
374
371
|
subMenu?: undefined;
|
|
375
372
|
})[];
|
|
376
373
|
type?: undefined;
|
|
377
|
-
onClick?: undefined;
|
|
378
374
|
checked?: undefined;
|
|
375
|
+
onClick?: undefined;
|
|
376
|
+
} | {
|
|
377
|
+
label: string;
|
|
378
|
+
type: string;
|
|
379
|
+
checked: any;
|
|
380
|
+
onClick: () => void;
|
|
381
|
+
icon?: undefined;
|
|
382
|
+
subMenu?: undefined;
|
|
379
383
|
} | {
|
|
380
384
|
label: string;
|
|
381
385
|
subMenu: {
|
|
@@ -384,18 +388,18 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
384
388
|
checked: boolean;
|
|
385
389
|
onClick: () => void;
|
|
386
390
|
}[];
|
|
387
|
-
type?: undefined;
|
|
388
391
|
icon?: undefined;
|
|
389
|
-
|
|
392
|
+
type?: undefined;
|
|
390
393
|
checked?: undefined;
|
|
394
|
+
onClick?: undefined;
|
|
391
395
|
} | {
|
|
392
396
|
label: string;
|
|
393
397
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
394
398
|
muiName: string;
|
|
395
399
|
};
|
|
396
400
|
onClick: () => void;
|
|
397
|
-
type?: undefined;
|
|
398
401
|
subMenu?: undefined;
|
|
402
|
+
type?: undefined;
|
|
399
403
|
checked?: undefined;
|
|
400
404
|
} | {
|
|
401
405
|
type: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gccontent",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "JBrowse 2 gccontent concepts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -35,23 +35,25 @@
|
|
|
35
35
|
"build:commonjs": "tsc --build tsconfig.build.commonjs.json",
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
|
-
"
|
|
39
|
-
"@jbrowse/core": "^
|
|
40
|
-
"@jbrowse/plugin-linear-genome-view": "^
|
|
41
|
-
"@jbrowse/plugin-sequence": "^
|
|
42
|
-
"@jbrowse/plugin-wiggle": "^
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@jbrowse/core": "^3.0.2",
|
|
40
|
+
"@jbrowse/plugin-linear-genome-view": "^3.0.2",
|
|
41
|
+
"@jbrowse/plugin-sequence": "^3.0.2",
|
|
42
|
+
"@jbrowse/plugin-wiggle": "^3.0.2",
|
|
43
43
|
"@mui/material": "^6.0.0",
|
|
44
44
|
"mobx": "^6.0.0",
|
|
45
45
|
"mobx-react": "^9.0.0",
|
|
46
46
|
"mobx-state-tree": "^5.0.0",
|
|
47
|
-
"react": ">=16.8.0",
|
|
48
47
|
"rxjs": "^7.0.0"
|
|
49
48
|
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": ">=18.0.0"
|
|
51
|
+
},
|
|
50
52
|
"publishConfig": {
|
|
51
53
|
"access": "public"
|
|
52
54
|
},
|
|
53
55
|
"distModule": "esm/index.js",
|
|
54
56
|
"srcModule": "src/index.ts",
|
|
55
57
|
"module": "esm/index.js",
|
|
56
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "c01a35edcb2612e94661af8793f09c95c0b13c75"
|
|
57
59
|
}
|