@jbrowse/plugin-lollipop 3.7.0 → 4.0.1

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 (44) hide show
  1. package/esm/LinearLollipopDisplay/configSchema.d.ts +4 -4
  2. package/esm/LinearLollipopDisplay/index.js +2 -2
  3. package/esm/LinearLollipopDisplay/model.d.ts +953 -91
  4. package/esm/LinearLollipopDisplay/model.js +1 -2
  5. package/esm/LollipopRenderer/Layout.d.ts +8 -32
  6. package/esm/LollipopRenderer/Layout.js +4 -43
  7. package/esm/LollipopRenderer/LollipopRenderer.d.ts +2 -7
  8. package/esm/LollipopRenderer/LollipopRenderer.js +2 -10
  9. package/esm/LollipopRenderer/components/Lollipop.d.ts +17 -1
  10. package/esm/LollipopRenderer/components/Lollipop.js +27 -75
  11. package/esm/LollipopRenderer/components/LollipopRendering.js +29 -33
  12. package/esm/LollipopRenderer/components/Stick.d.ts +2 -7
  13. package/esm/LollipopRenderer/configSchema.d.ts +2 -2
  14. package/esm/LollipopRenderer/index.js +4 -4
  15. package/esm/index.js +3 -6
  16. package/package.json +23 -29
  17. package/dist/LinearLollipopDisplay/configSchema.d.ts +0 -31
  18. package/dist/LinearLollipopDisplay/configSchema.js +0 -13
  19. package/dist/LinearLollipopDisplay/index.d.ts +0 -2
  20. package/dist/LinearLollipopDisplay/index.js +0 -20
  21. package/dist/LinearLollipopDisplay/model.d.ts +0 -314
  22. package/dist/LinearLollipopDisplay/model.js +0 -34
  23. package/dist/LollipopRenderer/FloatingLayoutSession.d.ts +0 -6
  24. package/dist/LollipopRenderer/FloatingLayoutSession.js +0 -17
  25. package/dist/LollipopRenderer/Layout.d.ts +0 -54
  26. package/dist/LollipopRenderer/Layout.js +0 -113
  27. package/dist/LollipopRenderer/LollipopRenderer.d.ts +0 -8
  28. package/dist/LollipopRenderer/LollipopRenderer.js +0 -17
  29. package/dist/LollipopRenderer/components/Lollipop.d.ts +0 -2
  30. package/dist/LollipopRenderer/components/Lollipop.js +0 -87
  31. package/dist/LollipopRenderer/components/LollipopRendering.d.ts +0 -2
  32. package/dist/LollipopRenderer/components/LollipopRendering.js +0 -81
  33. package/dist/LollipopRenderer/components/ScoreText.d.ts +0 -14
  34. package/dist/LollipopRenderer/components/ScoreText.js +0 -20
  35. package/dist/LollipopRenderer/components/Stick.d.ts +0 -14
  36. package/dist/LollipopRenderer/components/Stick.js +0 -9
  37. package/dist/LollipopRenderer/configSchema.d.ts +0 -56
  38. package/dist/LollipopRenderer/configSchema.js +0 -58
  39. package/dist/LollipopRenderer/index.d.ts +0 -2
  40. package/dist/LollipopRenderer/index.js +0 -17
  41. package/dist/index.d.ts +0 -6
  42. package/dist/index.js +0 -19
  43. package/esm/LollipopRenderer/FloatingLayoutSession.d.ts +0 -6
  44. package/esm/LollipopRenderer/FloatingLayoutSession.js +0 -13
@@ -1,7 +1,7 @@
1
1
  import type PluginManager from '@jbrowse/core/PluginManager';
2
- export declare function configSchemaFactory(pluginManager: PluginManager): import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
3
- renderer: import("mobx-state-tree").IAnyModelType;
4
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
2
+ export declare function configSchemaFactory(pluginManager: PluginManager): import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
3
+ renderer: import("@jbrowse/mobx-state-tree").IAnyModelType;
4
+ }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaType<{
5
5
  maxFeatureScreenDensity: {
6
6
  type: string;
7
7
  description: string;
@@ -28,4 +28,4 @@ export declare function configSchemaFactory(pluginManager: PluginManager): impor
28
28
  description: string;
29
29
  defaultValue: never[];
30
30
  };
31
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
31
+ }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
@@ -1,7 +1,7 @@
1
1
  import { DisplayType } from '@jbrowse/core/pluggableElementTypes';
2
2
  import { BaseLinearDisplayComponent } from '@jbrowse/plugin-linear-genome-view';
3
- import { configSchemaFactory } from './configSchema';
4
- import { stateModelFactory } from './model';
3
+ import { configSchemaFactory } from "./configSchema.js";
4
+ import { stateModelFactory } from "./model.js";
5
5
  export default function LinearLollipopDisplayF(pluginManager) {
6
6
  pluginManager.addDisplayType(() => {
7
7
  const configSchema = configSchemaFactory(pluginManager);