@jbrowse/plugin-config 2.10.3 → 2.11.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 (37) hide show
  1. package/dist/ConfigurationEditorWidget/components/ColorEditor.d.ts +2 -2
  2. package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.d.ts +1 -1
  3. package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.js +1 -1
  4. package/dist/ConfigurationEditorWidget/components/HeadingComponent.d.ts +2 -2
  5. package/dist/ConfigurationEditorWidget/components/HeadingComponent.js +2 -2
  6. package/dist/ConfigurationEditorWidget/components/NumberEditor.d.ts +3 -3
  7. package/dist/ConfigurationEditorWidget/model.d.ts +1 -2
  8. package/dist/ConfigurationEditorWidget/model.js +17 -14
  9. package/dist/FromConfigAdapter/index.d.ts +1 -2
  10. package/dist/FromConfigAdapter/index.js +3 -2
  11. package/dist/FromConfigRegionsAdapter/index.d.ts +1 -2
  12. package/dist/FromConfigRegionsAdapter/index.js +3 -2
  13. package/dist/FromConfigSequenceAdapter/index.d.ts +1 -2
  14. package/dist/FromConfigSequenceAdapter/index.js +3 -2
  15. package/dist/RefNameAliasAdapter/index.d.ts +1 -2
  16. package/dist/RefNameAliasAdapter/index.js +3 -2
  17. package/dist/index.d.ts +1 -1
  18. package/dist/index.js +2 -2
  19. package/esm/ConfigurationEditorWidget/components/ColorEditor.d.ts +2 -2
  20. package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.d.ts +1 -1
  21. package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.js +1 -1
  22. package/esm/ConfigurationEditorWidget/components/HeadingComponent.d.ts +2 -2
  23. package/esm/ConfigurationEditorWidget/components/HeadingComponent.js +2 -2
  24. package/esm/ConfigurationEditorWidget/components/NumberEditor.d.ts +3 -3
  25. package/esm/ConfigurationEditorWidget/model.d.ts +1 -2
  26. package/esm/ConfigurationEditorWidget/model.js +16 -14
  27. package/esm/FromConfigAdapter/index.d.ts +1 -2
  28. package/esm/FromConfigAdapter/index.js +2 -2
  29. package/esm/FromConfigRegionsAdapter/index.d.ts +1 -2
  30. package/esm/FromConfigRegionsAdapter/index.js +2 -2
  31. package/esm/FromConfigSequenceAdapter/index.d.ts +1 -2
  32. package/esm/FromConfigSequenceAdapter/index.js +2 -2
  33. package/esm/RefNameAliasAdapter/index.d.ts +1 -2
  34. package/esm/RefNameAliasAdapter/index.js +2 -2
  35. package/esm/index.d.ts +1 -1
  36. package/esm/index.js +1 -1
  37. package/package.json +2 -2
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
2
  export declare const ColorSlot: (props: {
3
3
  value: string;
4
- label?: string | undefined;
4
+ label?: string;
5
5
  TextFieldProps?: {
6
6
  helperText: string;
7
7
  fullWidth: boolean;
8
- } | undefined;
8
+ };
9
9
  onChange: (arg: string) => void;
10
10
  }) => React.JSX.Element;
11
11
  declare const ColorEditor: (props: {
@@ -5,6 +5,6 @@ declare const ConfigurationEditor: ({ model, }: {
5
5
  model: {
6
6
  target: AnyConfigurationModel;
7
7
  };
8
- session?: AbstractSessionModel | undefined;
8
+ session?: AbstractSessionModel;
9
9
  }) => React.JSX.Element;
10
10
  export default ConfigurationEditor;
@@ -45,7 +45,7 @@ const Member = (0, mobx_react_1.observer)(function (props) {
45
45
  if (slot.length) {
46
46
  return slot.map((subslot, slotIndex) => {
47
47
  const key = `${(0, pluralize_1.singular)(slotName)} ${slotIndex + 1}`;
48
- return react_1.default.createElement(Member, { ...props, key: key, slot: subslot, slotName: key });
48
+ return react_1.default.createElement(Member, { key: key, ...props, slot: subslot, slotName: key });
49
49
  });
50
50
  }
51
51
  // if this is an explicitly typed schema, make a type-selecting dropdown
@@ -4,6 +4,6 @@ declare const HeadingComponent: ({ model, }: {
4
4
  target: {
5
5
  type: string;
6
6
  };
7
- } | undefined;
8
- }) => React.JSX.Element;
7
+ };
8
+ }) => string | React.JSX.Element;
9
9
  export default HeadingComponent;
@@ -9,12 +9,12 @@ const mobx_state_tree_1 = require("mobx-state-tree");
9
9
  const HeadingComponent = (0, mobx_react_1.observer)(function ({ model, }) {
10
10
  if (model === null || model === void 0 ? void 0 : model.target) {
11
11
  if (model.target.type) {
12
- return react_1.default.createElement(react_1.default.Fragment, null, `${model.target.type} settings`);
12
+ return `${model.target.type} settings`;
13
13
  }
14
14
  if ((0, mobx_state_tree_1.isStateTreeNode)(model.target)) {
15
15
  const type = (0, mobx_state_tree_1.getType)(model.target);
16
16
  if (type === null || type === void 0 ? void 0 : type.name) {
17
- return react_1.default.createElement(react_1.default.Fragment, null, `${type.name.replace('ConfigurationSchema', '')} settings`);
17
+ return `${type.name.replace('ConfigurationSchema', '')} settings`;
18
18
  }
19
19
  }
20
20
  }
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
2
  declare const NumberEditor: ({ slot, }: {
3
3
  slot: {
4
- name?: string | undefined;
4
+ name?: string;
5
5
  value: string;
6
- description?: string | undefined;
6
+ description?: string;
7
7
  set: (val: number) => void;
8
- reset?: (() => void) | undefined;
8
+ reset?: () => void;
9
9
  };
10
10
  }) => React.JSX.Element;
11
11
  export default NumberEditor;
@@ -1,9 +1,8 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => import("mobx-state-tree").IModelType<{
2
+ export default function stateModelFactory(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
3
3
  id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
4
4
  type: import("mobx-state-tree").ISimpleType<"ConfigurationEditorWidget">;
5
5
  target: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyModelType>>;
6
6
  }, {
7
7
  setTarget(newTarget: any): void;
8
8
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
9
- export default _default;
@@ -2,17 +2,20 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const mobx_state_tree_1 = require("mobx-state-tree");
4
4
  const mst_1 = require("@jbrowse/core/util/types/mst");
5
- exports.default = (pluginManager) => mobx_state_tree_1.types
6
- .model('ConfigurationEditorWidget', {
7
- id: mst_1.ElementId,
8
- type: mobx_state_tree_1.types.literal('ConfigurationEditorWidget'),
9
- // If you add different types of targets, don't forget to account for that
10
- // in the key of ./components/ConfigurationEditor.js
11
- target: mobx_state_tree_1.types.safeReference(pluginManager.pluggableConfigSchemaType('track')),
12
- })
13
- .actions(self => ({
14
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
15
- setTarget(newTarget) {
16
- self.target = newTarget;
17
- },
18
- }));
5
+ function stateModelFactory(pluginManager) {
6
+ return mobx_state_tree_1.types
7
+ .model('ConfigurationEditorWidget', {
8
+ id: mst_1.ElementId,
9
+ type: mobx_state_tree_1.types.literal('ConfigurationEditorWidget'),
10
+ // If you add different types of targets, don't forget to account for that
11
+ // in the key of ./components/ConfigurationEditor.js
12
+ target: mobx_state_tree_1.types.safeReference(pluginManager.pluggableConfigSchemaType('track')),
13
+ })
14
+ .actions(self => ({
15
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
16
+ setTarget(newTarget) {
17
+ self.target = newTarget;
18
+ },
19
+ }));
20
+ }
21
+ exports.default = stateModelFactory;
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function FromConfigAdapterF(pluginManager: PluginManager): void;
@@ -28,7 +28,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
29
  const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
30
30
  const configSchema_1 = __importDefault(require("./configSchema"));
31
- exports.default = (pluginManager) => {
31
+ function FromConfigAdapterF(pluginManager) {
32
32
  pluginManager.addAdapterType(() => new pluggableElementTypes_1.AdapterType({
33
33
  name: 'FromConfigAdapter',
34
34
  configSchema: configSchema_1.default,
@@ -37,4 +37,5 @@ exports.default = (pluginManager) => {
37
37
  hiddenFromGUI: true,
38
38
  },
39
39
  }));
40
- };
40
+ }
41
+ exports.default = FromConfigAdapterF;
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function FromConfigRegionsAdapterF(pluginManager: PluginManager): void;
@@ -28,7 +28,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
29
  const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
30
30
  const configSchema_1 = __importDefault(require("./configSchema"));
31
- exports.default = (pluginManager) => {
31
+ function FromConfigRegionsAdapterF(pluginManager) {
32
32
  pluginManager.addAdapterType(() => new pluggableElementTypes_1.AdapterType({
33
33
  name: 'FromConfigRegionsAdapter',
34
34
  configSchema: configSchema_1.default,
@@ -37,4 +37,5 @@ exports.default = (pluginManager) => {
37
37
  hiddenFromGUI: true,
38
38
  },
39
39
  }));
40
- };
40
+ }
41
+ exports.default = FromConfigRegionsAdapterF;
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function FromConfigSequenceAdapterF(pluginManager: PluginManager): void;
@@ -28,7 +28,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
29
  const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
30
30
  const configSchema_1 = __importDefault(require("./configSchema"));
31
- exports.default = (pluginManager) => {
31
+ function FromConfigSequenceAdapterF(pluginManager) {
32
32
  pluginManager.addAdapterType(() => new pluggableElementTypes_1.AdapterType({
33
33
  name: 'FromConfigSequenceAdapter',
34
34
  configSchema: configSchema_1.default,
@@ -37,4 +37,5 @@ exports.default = (pluginManager) => {
37
37
  hiddenFromGUI: true,
38
38
  },
39
39
  }));
40
- };
40
+ }
41
+ exports.default = FromConfigSequenceAdapterF;
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function RefNameAliasAdapterF(pluginManager: PluginManager): void;
@@ -28,7 +28,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
29
  const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
30
30
  const configSchema_1 = __importDefault(require("./configSchema"));
31
- exports.default = (pluginManager) => {
31
+ function RefNameAliasAdapterF(pluginManager) {
32
32
  pluginManager.addAdapterType(() => new pluggableElementTypes_1.AdapterType({
33
33
  name: 'RefNameAliasAdapter',
34
34
  configSchema: configSchema_1.default,
@@ -37,4 +37,5 @@ exports.default = (pluginManager) => {
37
37
  hiddenFromGUI: true,
38
38
  },
39
39
  }));
40
- };
40
+ }
41
+ exports.default = RefNameAliasAdapterF;
package/dist/index.d.ts CHANGED
@@ -11,7 +11,7 @@ declare const LazyConfigurationEditorComponent: import("react").LazyExoticCompon
11
11
  };
12
12
  session?: import("@jbrowse/core/util").AbstractSessionModel | undefined;
13
13
  }) => import("react").JSX.Element>;
14
- export default class extends Plugin {
14
+ export default class ConfigurationPlugin extends Plugin {
15
15
  name: string;
16
16
  install(pluginManager: PluginManager): void;
17
17
  }
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ const RefNameAliasAdapter_1 = __importDefault(require("./RefNameAliasAdapter"));
36
36
  const ConfigurationEditorWidget_1 = __importDefault(require("./ConfigurationEditorWidget"));
37
37
  const LazyConfigurationEditorComponent = (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('./ConfigurationEditorWidget/components/ConfigurationEditor'))));
38
38
  exports.ConfigurationEditor = LazyConfigurationEditorComponent;
39
- class default_1 extends Plugin_1.default {
39
+ class ConfigurationPlugin extends Plugin_1.default {
40
40
  constructor() {
41
41
  super(...arguments);
42
42
  this.name = 'ConfigurationPlugin';
@@ -49,6 +49,6 @@ class default_1 extends Plugin_1.default {
49
49
  (0, ConfigurationEditorWidget_1.default)(pluginManager);
50
50
  }
51
51
  }
52
- exports.default = default_1;
52
+ exports.default = ConfigurationPlugin;
53
53
  var JsonEditor_1 = require("./ConfigurationEditorWidget/components/JsonEditor");
54
54
  Object.defineProperty(exports, "JsonEditor", { enumerable: true, get: function () { return __importDefault(JsonEditor_1).default; } });
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
2
  export declare const ColorSlot: (props: {
3
3
  value: string;
4
- label?: string | undefined;
4
+ label?: string;
5
5
  TextFieldProps?: {
6
6
  helperText: string;
7
7
  fullWidth: boolean;
8
- } | undefined;
8
+ };
9
9
  onChange: (arg: string) => void;
10
10
  }) => React.JSX.Element;
11
11
  declare const ColorEditor: (props: {
@@ -5,6 +5,6 @@ declare const ConfigurationEditor: ({ model, }: {
5
5
  model: {
6
6
  target: AnyConfigurationModel;
7
7
  };
8
- session?: AbstractSessionModel | undefined;
8
+ session?: AbstractSessionModel;
9
9
  }) => React.JSX.Element;
10
10
  export default ConfigurationEditor;
@@ -40,7 +40,7 @@ const Member = observer(function (props) {
40
40
  if (slot.length) {
41
41
  return slot.map((subslot, slotIndex) => {
42
42
  const key = `${singular(slotName)} ${slotIndex + 1}`;
43
- return React.createElement(Member, { ...props, key: key, slot: subslot, slotName: key });
43
+ return React.createElement(Member, { key: key, ...props, slot: subslot, slotName: key });
44
44
  });
45
45
  }
46
46
  // if this is an explicitly typed schema, make a type-selecting dropdown
@@ -4,6 +4,6 @@ declare const HeadingComponent: ({ model, }: {
4
4
  target: {
5
5
  type: string;
6
6
  };
7
- } | undefined;
8
- }) => React.JSX.Element;
7
+ };
8
+ }) => string | React.JSX.Element;
9
9
  export default HeadingComponent;
@@ -4,12 +4,12 @@ import { isStateTreeNode, getType } from 'mobx-state-tree';
4
4
  const HeadingComponent = observer(function ({ model, }) {
5
5
  if (model === null || model === void 0 ? void 0 : model.target) {
6
6
  if (model.target.type) {
7
- return React.createElement(React.Fragment, null, `${model.target.type} settings`);
7
+ return `${model.target.type} settings`;
8
8
  }
9
9
  if (isStateTreeNode(model.target)) {
10
10
  const type = getType(model.target);
11
11
  if (type === null || type === void 0 ? void 0 : type.name) {
12
- return React.createElement(React.Fragment, null, `${type.name.replace('ConfigurationSchema', '')} settings`);
12
+ return `${type.name.replace('ConfigurationSchema', '')} settings`;
13
13
  }
14
14
  }
15
15
  }
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
2
  declare const NumberEditor: ({ slot, }: {
3
3
  slot: {
4
- name?: string | undefined;
4
+ name?: string;
5
5
  value: string;
6
- description?: string | undefined;
6
+ description?: string;
7
7
  set: (val: number) => void;
8
- reset?: (() => void) | undefined;
8
+ reset?: () => void;
9
9
  };
10
10
  }) => React.JSX.Element;
11
11
  export default NumberEditor;
@@ -1,9 +1,8 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => import("mobx-state-tree").IModelType<{
2
+ export default function stateModelFactory(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
3
3
  id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
4
4
  type: import("mobx-state-tree").ISimpleType<"ConfigurationEditorWidget">;
5
5
  target: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyModelType>>;
6
6
  }, {
7
7
  setTarget(newTarget: any): void;
8
8
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
9
- export default _default;
@@ -1,16 +1,18 @@
1
1
  import { types } from 'mobx-state-tree';
2
2
  import { ElementId } from '@jbrowse/core/util/types/mst';
3
- export default (pluginManager) => types
4
- .model('ConfigurationEditorWidget', {
5
- id: ElementId,
6
- type: types.literal('ConfigurationEditorWidget'),
7
- // If you add different types of targets, don't forget to account for that
8
- // in the key of ./components/ConfigurationEditor.js
9
- target: types.safeReference(pluginManager.pluggableConfigSchemaType('track')),
10
- })
11
- .actions(self => ({
12
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
13
- setTarget(newTarget) {
14
- self.target = newTarget;
15
- },
16
- }));
3
+ export default function stateModelFactory(pluginManager) {
4
+ return types
5
+ .model('ConfigurationEditorWidget', {
6
+ id: ElementId,
7
+ type: types.literal('ConfigurationEditorWidget'),
8
+ // If you add different types of targets, don't forget to account for that
9
+ // in the key of ./components/ConfigurationEditor.js
10
+ target: types.safeReference(pluginManager.pluggableConfigSchemaType('track')),
11
+ })
12
+ .actions(self => ({
13
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
14
+ setTarget(newTarget) {
15
+ self.target = newTarget;
16
+ },
17
+ }));
18
+ }
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function FromConfigAdapterF(pluginManager: PluginManager): void;
@@ -1,6 +1,6 @@
1
1
  import { AdapterType } from '@jbrowse/core/pluggableElementTypes';
2
2
  import configSchema from './configSchema';
3
- export default (pluginManager) => {
3
+ export default function FromConfigAdapterF(pluginManager) {
4
4
  pluginManager.addAdapterType(() => new AdapterType({
5
5
  name: 'FromConfigAdapter',
6
6
  configSchema,
@@ -9,4 +9,4 @@ export default (pluginManager) => {
9
9
  hiddenFromGUI: true,
10
10
  },
11
11
  }));
12
- };
12
+ }
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function FromConfigRegionsAdapterF(pluginManager: PluginManager): void;
@@ -1,6 +1,6 @@
1
1
  import { AdapterType } from '@jbrowse/core/pluggableElementTypes';
2
2
  import configSchema from './configSchema';
3
- export default (pluginManager) => {
3
+ export default function FromConfigRegionsAdapterF(pluginManager) {
4
4
  pluginManager.addAdapterType(() => new AdapterType({
5
5
  name: 'FromConfigRegionsAdapter',
6
6
  configSchema,
@@ -9,4 +9,4 @@ export default (pluginManager) => {
9
9
  hiddenFromGUI: true,
10
10
  },
11
11
  }));
12
- };
12
+ }
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function FromConfigSequenceAdapterF(pluginManager: PluginManager): void;
@@ -1,6 +1,6 @@
1
1
  import { AdapterType } from '@jbrowse/core/pluggableElementTypes';
2
2
  import configSchema from './configSchema';
3
- export default (pluginManager) => {
3
+ export default function FromConfigSequenceAdapterF(pluginManager) {
4
4
  pluginManager.addAdapterType(() => new AdapterType({
5
5
  name: 'FromConfigSequenceAdapter',
6
6
  configSchema,
@@ -9,4 +9,4 @@ export default (pluginManager) => {
9
9
  hiddenFromGUI: true,
10
10
  },
11
11
  }));
12
- };
12
+ }
@@ -1,3 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- declare const _default: (pluginManager: PluginManager) => void;
3
- export default _default;
2
+ export default function RefNameAliasAdapterF(pluginManager: PluginManager): void;
@@ -1,6 +1,6 @@
1
1
  import { AdapterType } from '@jbrowse/core/pluggableElementTypes';
2
2
  import configSchema from './configSchema';
3
- export default (pluginManager) => {
3
+ export default function RefNameAliasAdapterF(pluginManager) {
4
4
  pluginManager.addAdapterType(() => new AdapterType({
5
5
  name: 'RefNameAliasAdapter',
6
6
  configSchema,
@@ -9,4 +9,4 @@ export default (pluginManager) => {
9
9
  hiddenFromGUI: true,
10
10
  },
11
11
  }));
12
- };
12
+ }
package/esm/index.d.ts CHANGED
@@ -11,7 +11,7 @@ declare const LazyConfigurationEditorComponent: import("react").LazyExoticCompon
11
11
  };
12
12
  session?: import("@jbrowse/core/util").AbstractSessionModel | undefined;
13
13
  }) => import("react").JSX.Element>;
14
- export default class extends Plugin {
14
+ export default class ConfigurationPlugin extends Plugin {
15
15
  name: string;
16
16
  install(pluginManager: PluginManager): void;
17
17
  }
package/esm/index.js CHANGED
@@ -6,7 +6,7 @@ import FromConfigSequenceAdapterF from './FromConfigSequenceAdapter';
6
6
  import RefNameAliasAdapterF from './RefNameAliasAdapter';
7
7
  import ConfigurationEditorWidgetF from './ConfigurationEditorWidget';
8
8
  const LazyConfigurationEditorComponent = lazy(() => import('./ConfigurationEditorWidget/components/ConfigurationEditor'));
9
- export default class extends Plugin {
9
+ export default class ConfigurationPlugin extends Plugin {
10
10
  constructor() {
11
11
  super(...arguments);
12
12
  this.name = 'ConfigurationPlugin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-config",
3
- "version": "2.10.3",
3
+ "version": "2.11.1",
4
4
  "description": "JBrowse 2 config utilities",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -56,5 +56,5 @@
56
56
  "distModule": "esm/index.js",
57
57
  "srcModule": "src/index.ts",
58
58
  "module": "esm/index.js",
59
- "gitHead": "c8fc800cd17decd72b2e971c7a6add3b95214e72"
59
+ "gitHead": "11b28d66d782eb06f92ccb993108bb6c3c82819e"
60
60
  }