@apollo-annotation/jbrowse-plugin-apollo 0.1.8 → 0.1.11
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/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.development.js +68 -68
- package/dist/jbrowse-plugin-apollo.cjs.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.development.js +77 -78
- package/dist/jbrowse-plugin-apollo.umd.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js.map +1 -1
- package/package.json +5 -5
- package/src/ApolloInternetAccount/model.ts +2 -2
- package/src/ApolloSixFrameRenderer/components/ApolloRendering.tsx +2 -2
- package/src/BackendDrivers/BackendDriver.ts +3 -3
- package/src/BackendDrivers/CollaborationServerDriver.ts +3 -9
- package/src/BackendDrivers/DesktopFileDriver.ts +3 -3
- package/src/BackendDrivers/InMemoryFileDriver.ts +3 -6
- package/src/ChangeManager.ts +2 -2
- package/src/FeatureDetailsWidget/Attributes.tsx +2 -2
- package/src/FeatureDetailsWidget/BasicInformation.tsx +2 -2
- package/src/FeatureDetailsWidget/RelatedFeature.tsx +1 -4
- package/src/FeatureDetailsWidget/Sequence.tsx +2 -2
- package/src/FeatureDetailsWidget/model.ts +1 -4
- package/src/LinearApolloDisplay/glyphs/BoxGlyph.ts +2 -2
- package/src/LinearApolloDisplay/glyphs/CanonicalGeneGlyph.ts +2 -2
- package/src/LinearApolloDisplay/glyphs/GenericChildGlyph.ts +1 -1
- package/src/LinearApolloDisplay/glyphs/Glyph.ts +1 -1
- package/src/LinearApolloDisplay/glyphs/ImplicitExonGeneGlyph.ts +2 -2
- package/src/LinearApolloDisplay/stateModel/base.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/getGlyph.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/glyphs.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/layouts.ts +1 -1
- package/src/LinearApolloDisplay/stateModel/mouseEvents.ts +1 -1
- package/src/OntologyManager/util.ts +1 -1
- package/src/SixFrameFeatureDisplay/stateModel.ts +1 -1
- package/src/TabularEditor/HybridGrid/ChangeHandling.ts +2 -2
- package/src/TabularEditor/HybridGrid/Feature.tsx +1 -1
- package/src/TabularEditor/HybridGrid/FeatureAttributes.tsx +1 -1
- package/src/TabularEditor/HybridGrid/featureContextMenuItems.ts +1 -1
- package/src/components/AddAssembly.tsx +1 -1
- package/src/components/AddChildFeature.tsx +2 -2
- package/src/components/AddFeature.tsx +1 -1
- package/src/components/CopyFeature.tsx +2 -2
- package/src/components/DeleteAssembly.tsx +1 -1
- package/src/components/DeleteFeature.tsx +2 -2
- package/src/components/DownloadGFF3.tsx +2 -2
- package/src/components/ImportFeatures.tsx +1 -1
- package/src/components/ManageUsers.tsx +1 -1
- package/src/components/ModifyFeatureAttribute.tsx +2 -2
- package/src/components/ViewChangeLog.tsx +1 -1
- package/src/extensions/annotationFromPileup.ts +2 -2
- package/src/index.ts +2 -2
- package/src/session/ClientDataStore.ts +2 -2
- package/src/session/session.ts +3 -6
- package/src/util/loadAssemblyIntoClient.ts +2 -5
package/dist/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { checkRegistry, changeRegistry, Change, isAssemblySpecificChange } from '@apollo-annotation/
|
|
2
|
-
import { AddAssemblyFromExternalChange, AddAssemblyAndFeaturesFromFileChange, AddAssemblyFromFileChange, AddFeatureChange, DeleteAssemblyChange, DeleteFeatureChange, makeGFF3Feature, AddFeaturesFromFileChange, UserChange, DeleteUserChange, FeatureAttributeChange, getDecodedToken, makeUserSessionId, LocationEndChange, LocationStartChange, TypeChange, StrandChange, splitStringIntoChunks, DiscontinuousLocationStartChange, DiscontinuousLocationEndChange, validationRegistry, ValidationResultSet, changes, CDSCheck, CoreValidation, ParentChildValidation } from '@apollo-annotation/
|
|
1
|
+
import { checkRegistry, changeRegistry, Change, isAssemblySpecificChange } from '@apollo-annotation/common';
|
|
2
|
+
import { AddAssemblyFromExternalChange, AddAssemblyAndFeaturesFromFileChange, AddAssemblyFromFileChange, AddFeatureChange, DeleteAssemblyChange, DeleteFeatureChange, makeGFF3Feature, AddFeaturesFromFileChange, UserChange, DeleteUserChange, FeatureAttributeChange, getDecodedToken, makeUserSessionId, LocationEndChange, LocationStartChange, TypeChange, StrandChange, splitStringIntoChunks, DiscontinuousLocationStartChange, DiscontinuousLocationEndChange, validationRegistry, ValidationResultSet, changes, CDSCheck, CoreValidation, ParentChildValidation } from '@apollo-annotation/shared';
|
|
3
3
|
import { ConfigurationSchema, readConfObject, getConf, ConfigurationReference } from '@jbrowse/core/configuration';
|
|
4
4
|
import { BaseInternetAccountConfig, InternetAccount, RendererType, TextSearchAdapterType, BaseDisplay, WidgetType, createBaseTrackConfig, TrackType, createBaseTrackModel, InternetAccountType, DisplayType } from '@jbrowse/core/pluggableElementTypes';
|
|
5
5
|
import Plugin from '@jbrowse/core/Plugin';
|
|
@@ -40,7 +40,7 @@ import { BaseSequenceAdapter, BaseAdapter } from '@jbrowse/core/data_adapters/Ba
|
|
|
40
40
|
import { ObservableCreate } from '@jbrowse/core/util/rxjs';
|
|
41
41
|
import SimpleFeature from '@jbrowse/core/util/simpleFeature';
|
|
42
42
|
import BaseResult from '@jbrowse/core/TextSearch/BaseResults';
|
|
43
|
-
import { AnnotationFeature, ApolloAssembly, CheckResult, ApolloRefSeq } from '@apollo-annotation/
|
|
43
|
+
import { AnnotationFeature, ApolloAssembly, CheckResult, ApolloRefSeq } from '@apollo-annotation/mst';
|
|
44
44
|
import ClearIcon from '@mui/icons-material/Clear';
|
|
45
45
|
import UnfoldLessIcon from '@mui/icons-material/UnfoldLess';
|
|
46
46
|
import { getParentRenderProps } from '@jbrowse/core/util/tracks';
|
|
@@ -48,7 +48,7 @@ import ExpandLessIcon from '@mui/icons-material/ExpandLess';
|
|
|
48
48
|
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
|
49
49
|
import ErrorIcon from '@mui/icons-material/Error';
|
|
50
50
|
|
|
51
|
-
var version = "0.1.
|
|
51
|
+
var version = "0.1.11";
|
|
52
52
|
|
|
53
53
|
const ApolloConfigSchema = ConfigurationSchema('ApolloInternetAccount', {
|
|
54
54
|
baseURL: {
|