@jbrowse/core 2.0.1 → 2.1.0

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 (179) hide show
  1. package/BaseFeatureWidget/BaseFeatureDetail.d.ts +6 -0
  2. package/BaseFeatureWidget/BaseFeatureDetail.js +313 -592
  3. package/BaseFeatureWidget/SequenceFeatureDetails.js +213 -479
  4. package/BaseFeatureWidget/index.js +88 -126
  5. package/BaseFeatureWidget/types.js +1 -4
  6. package/BaseFeatureWidget/util.js +40 -75
  7. package/CorePlugin.js +55 -94
  8. package/Plugin.js +9 -34
  9. package/PluginLoader.js +153 -422
  10. package/PluginManager.d.ts +17 -14
  11. package/PluginManager.js +377 -666
  12. package/ReExports/Attributes.js +3 -10
  13. package/ReExports/BaseCard.js +3 -10
  14. package/ReExports/DataGrid.js +5 -12
  15. package/ReExports/FeatureDetails.js +3 -10
  16. package/ReExports/index.js +6 -12
  17. package/ReExports/list.d.ts +5 -0
  18. package/ReExports/list.js +271 -7
  19. package/ReExports/material-ui-colors.js +15 -16
  20. package/ReExports/modules.d.ts +0 -1
  21. package/ReExports/modules.js +453 -798
  22. package/TextSearch/BaseResults.js +51 -123
  23. package/TextSearch/TextSearchManager.js +66 -144
  24. package/assemblyManager/assembly.js +280 -555
  25. package/assemblyManager/assemblyConfigSchema.js +47 -64
  26. package/assemblyManager/assemblyManager.js +126 -272
  27. package/assemblyManager/index.js +9 -22
  28. package/configuration/configurationSchema.js +167 -203
  29. package/configuration/configurationSlot.js +248 -326
  30. package/configuration/index.js +19 -35
  31. package/configuration/util.js +131 -173
  32. package/data_adapters/BaseAdapter.d.ts +2 -2
  33. package/data_adapters/BaseAdapter.js +132 -521
  34. package/data_adapters/CytobandAdapter.js +40 -126
  35. package/data_adapters/dataAdapterCache.js +77 -158
  36. package/package.json +4 -5
  37. package/pluggableElementTypes/AdapterType.js +24 -79
  38. package/pluggableElementTypes/AddTrackWorkflowType.d.ts +17 -0
  39. package/pluggableElementTypes/AddTrackWorkflowType.js +20 -0
  40. package/pluggableElementTypes/ConnectionType.js +22 -65
  41. package/pluggableElementTypes/DisplayType.js +35 -82
  42. package/pluggableElementTypes/InternetAccountType.js +23 -64
  43. package/pluggableElementTypes/PluggableElementBase.js +8 -20
  44. package/pluggableElementTypes/RpcMethodType.js +85 -427
  45. package/pluggableElementTypes/TextSearchAdapterType.js +16 -55
  46. package/pluggableElementTypes/TrackType.js +26 -70
  47. package/pluggableElementTypes/ViewType.js +21 -63
  48. package/pluggableElementTypes/WidgetType.js +21 -64
  49. package/pluggableElementTypes/index.d.ts +4 -3
  50. package/pluggableElementTypes/index.js +42 -125
  51. package/pluggableElementTypes/models/BaseConnectionModelFactory.js +28 -43
  52. package/pluggableElementTypes/models/BaseDisplayModel.js +58 -95
  53. package/pluggableElementTypes/models/BaseTrackModel.js +139 -199
  54. package/pluggableElementTypes/models/BaseViewModel.js +24 -40
  55. package/pluggableElementTypes/models/InternetAccountModel.js +116 -263
  56. package/pluggableElementTypes/models/baseConnectionConfig.js +14 -25
  57. package/pluggableElementTypes/models/baseInternetAccountConfig.js +29 -38
  58. package/pluggableElementTypes/models/baseTrackConfig.js +106 -133
  59. package/pluggableElementTypes/models/index.js +21 -70
  60. package/pluggableElementTypes/renderers/BoxRendererType.js +132 -291
  61. package/pluggableElementTypes/renderers/CircularChordRendererType.js +8 -38
  62. package/pluggableElementTypes/renderers/ComparativeServerSideRendererType.js +60 -192
  63. package/pluggableElementTypes/renderers/FeatureRendererType.d.ts +0 -2
  64. package/pluggableElementTypes/renderers/FeatureRendererType.js +89 -264
  65. package/pluggableElementTypes/renderers/RendererType.js +31 -105
  66. package/pluggableElementTypes/renderers/ServerSideRenderedContent.js +61 -72
  67. package/pluggableElementTypes/renderers/ServerSideRendererType.js +112 -265
  68. package/pluggableElementTypes/renderers/index.js +19 -62
  69. package/pluggableElementTypes/renderers/util/serializableFilterChain.js +27 -65
  70. package/rpc/BaseRpcDriver.js +169 -405
  71. package/rpc/MainThreadRpcDriver.js +27 -150
  72. package/rpc/RpcManager.js +58 -159
  73. package/rpc/WebWorkerRpcDriver.js +54 -171
  74. package/rpc/configSchema.js +25 -49
  75. package/rpc/coreRpcMethods.js +221 -959
  76. package/rpc/remoteAbortSignals.js +46 -70
  77. package/tsconfig.build.tsbuildinfo +1 -1
  78. package/ui/AboutDialog.js +106 -162
  79. package/ui/App.js +157 -242
  80. package/ui/AssemblySelector.js +59 -120
  81. package/ui/CascadingMenu.js +101 -196
  82. package/ui/ColorPicker.d.ts +16 -0
  83. package/ui/ColorPicker.js +97 -0
  84. package/ui/Drawer.js +28 -61
  85. package/ui/DrawerWidget.js +108 -202
  86. package/ui/DropDownMenu.js +60 -91
  87. package/ui/EditableTypography.js +87 -149
  88. package/ui/ErrorMessage.js +41 -56
  89. package/ui/FactoryResetDialog.js +24 -57
  90. package/ui/FatalErrorDialog.js +59 -91
  91. package/ui/FileSelector/FileSelector.js +123 -189
  92. package/ui/FileSelector/LocalFileChooser.js +44 -75
  93. package/ui/FileSelector/UrlChooser.js +17 -38
  94. package/ui/FileSelector/index.js +6 -12
  95. package/ui/Icons.js +45 -69
  96. package/ui/Logo.js +57 -110
  97. package/ui/Menu.js +232 -354
  98. package/ui/PrerenderedCanvas.js +63 -87
  99. package/ui/ResizeHandle.js +87 -116
  100. package/ui/ReturnToImportFormDialog.js +32 -63
  101. package/ui/SanitizedHTML.js +64 -47
  102. package/ui/Snackbar.js +74 -101
  103. package/ui/SnackbarModel.js +37 -51
  104. package/ui/Tooltip.js +49 -76
  105. package/ui/ViewContainer.js +113 -196
  106. package/ui/colors.d.ts +10 -0
  107. package/ui/colors.js +78 -0
  108. package/ui/index.js +51 -181
  109. package/ui/react-colorful.d.ts +17 -0
  110. package/ui/react-colorful.js +455 -0
  111. package/ui/theme.js +199 -247
  112. package/util/Base1DUtils.js +163 -202
  113. package/util/Base1DViewModel.js +121 -168
  114. package/util/QuickLRU.js +84 -332
  115. package/util/TimeTraveller.d.ts +19 -0
  116. package/util/TimeTraveller.js +86 -0
  117. package/util/aborting.js +49 -127
  118. package/util/analytics.js +91 -154
  119. package/util/blockTypes.js +106 -240
  120. package/util/calculateDynamicBlocks.js +98 -128
  121. package/util/calculateStaticBlocks.js +105 -125
  122. package/util/color/cssColorsLevel4.js +156 -160
  123. package/util/color/index.js +33 -55
  124. package/util/compositeMap.js +49 -333
  125. package/util/formatFastaStrings.js +9 -14
  126. package/util/idMaker.js +18 -31
  127. package/util/index.d.ts +7 -20
  128. package/util/index.js +742 -1188
  129. package/util/io/RemoteFileWithRangeCache.js +88 -257
  130. package/util/io/index.js +95 -169
  131. package/util/jexl.js +60 -115
  132. package/util/jexlStrings.js +24 -29
  133. package/util/layouts/BaseLayout.js +1 -4
  134. package/util/layouts/GranularRectLayout.js +388 -555
  135. package/util/layouts/MultiLayout.js +41 -109
  136. package/util/layouts/PrecomputedLayout.js +56 -112
  137. package/util/layouts/PrecomputedMultiLayout.js +22 -59
  138. package/util/layouts/SceneGraph.js +127 -197
  139. package/util/layouts/index.js +29 -66
  140. package/util/mst-reflection.js +55 -71
  141. package/util/offscreenCanvasPonyfill.js +66 -134
  142. package/util/offscreenCanvasUtils.d.ts +2 -7
  143. package/util/offscreenCanvasUtils.js +49 -146
  144. package/util/range.js +29 -40
  145. package/util/rxjs.js +20 -27
  146. package/util/simpleFeature.js +88 -152
  147. package/util/stats.js +91 -151
  148. package/util/tracks.js +130 -173
  149. package/util/types/index.js +110 -179
  150. package/util/types/mst.js +91 -146
  151. package/util/types/util.js +1 -4
  152. package/util/when.js +54 -101
  153. package/BaseFeatureWidget/SequenceFeatureDetails.test.js +0 -122
  154. package/BaseFeatureWidget/index.test.js +0 -69
  155. package/TextSearch/BaseResults.test.js +0 -42
  156. package/configuration/configurationSchema.test.js +0 -266
  157. package/configuration/configurationSlot.test.js +0 -69
  158. package/configuration/util.test.js +0 -39
  159. package/data_adapters/BaseAdapter.test.js +0 -200
  160. package/declare.d.js +0 -1
  161. package/pluggableElementTypes/RpcMethodType.test.js +0 -118
  162. package/pluggableElementTypes/renderers/declare.d.js +0 -1
  163. package/pluggableElementTypes/renderers/util/serializableFilterChain.test.js +0 -20
  164. package/rpc/BaseRpcDriver.test.js +0 -540
  165. package/rpc/declaration.d.js +0 -1
  166. package/ui/FatalErrorDialog.test.js +0 -82
  167. package/ui/SanitizedHTML.test.js +0 -36
  168. package/ui/theme.test.js +0 -92
  169. package/util/Base1DViewModel.test.js +0 -130
  170. package/util/calculateDynamicBlocks.test.js +0 -74
  171. package/util/calculateStaticBlocks.test.js +0 -297
  172. package/util/declare.d.js +0 -1
  173. package/util/formatFastaStrings.test.js +0 -40
  174. package/util/index.test.js +0 -213
  175. package/util/jexlStrings.test.js +0 -48
  176. package/util/layouts/GranularRectLayout.test.js +0 -99
  177. package/util/range.test.js +0 -64
  178. package/util/simpleFeature.test.js +0 -34
  179. package/util/stats.test.js +0 -172
@@ -1,12 +1,5 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
-
8
- var _BaseFeatureDetail = require("@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail");
9
-
2
+ Object.defineProperty(exports, "__esModule", { value: true });
10
3
  // convert named export to default for lazy react
11
- var _default = _BaseFeatureDetail.Attributes;
12
- exports.default = _default;
4
+ const BaseFeatureDetail_1 = require("@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail");
5
+ exports.default = BaseFeatureDetail_1.Attributes;
@@ -1,12 +1,5 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
-
8
- var _BaseFeatureDetail = require("@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail");
9
-
2
+ Object.defineProperty(exports, "__esModule", { value: true });
10
3
  // convert named export to default for lazy react
11
- var _default = _BaseFeatureDetail.BaseCard;
12
- exports.default = _default;
4
+ const BaseFeatureDetail_1 = require("@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail");
5
+ exports.default = BaseFeatureDetail_1.BaseCard;
@@ -1,13 +1,6 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "default", {
7
- enumerable: true,
8
- get: function get() {
9
- return _xDataGrid.DataGrid;
10
- }
11
- });
12
-
13
- var _xDataGrid = require("@mui/x-data-grid");
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = void 0;
4
+ // convert named export to default for lazy react
5
+ const x_data_grid_1 = require("@mui/x-data-grid");
6
+ Object.defineProperty(exports, "default", { enumerable: true, get: function () { return x_data_grid_1.DataGrid; } });
@@ -1,12 +1,5 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
-
8
- var _BaseFeatureDetail = require("@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail");
9
-
2
+ Object.defineProperty(exports, "__esModule", { value: true });
10
3
  // convert named export to default for lazy react
11
- var _default = _BaseFeatureDetail.FeatureDetails;
12
- exports.default = _default;
4
+ const BaseFeatureDetail_1 = require("@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail");
5
+ exports.default = BaseFeatureDetail_1.FeatureDetails;
@@ -1,13 +1,7 @@
1
1
  "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
-
10
- var _modules = _interopRequireDefault(require("./modules"));
11
-
12
- var _default = _modules.default;
13
- exports.default = _default;
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const modules_1 = __importDefault(require("./modules"));
7
+ exports.default = modules_1.default;
@@ -1,2 +1,7 @@
1
+ /**
2
+ * Used by plugin build systems to determine if a module is provided by JBrowse
3
+ * globally and thus doesn't need to be bundled. A check in ./modules.tsx makes
4
+ * sure this is in sync with the re-exported modules.
5
+ */
1
6
  declare const _default: string[];
2
7
  export default _default;
package/ReExports/list.js CHANGED
@@ -1,8 +1,272 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _default = ['mobx', 'mobx-state-tree', 'react', 'react-dom', 'mobx-react', 'prop-types', '@jbrowse/core/Plugin', '@jbrowse/core/pluggableElementTypes', '@jbrowse/core/pluggableElementTypes/ViewType', '@jbrowse/core/pluggableElementTypes/AdapterType', '@jbrowse/core/pluggableElementTypes/DisplayType', '@jbrowse/core/pluggableElementTypes/TrackType', '@jbrowse/core/pluggableElementTypes/WidgetType', '@jbrowse/core/pluggableElementTypes/models', '@jbrowse/core/pluggableElementTypes/renderers/ServerSideRendererType', '@jbrowse/core/pluggableElementTypes/renderers/CircularChordRendererType', '@jbrowse/core/pluggableElementTypes/renderers/BoxRendererType', '@jbrowse/core/pluggableElementTypes/renderers/FeatureRendererType', '@jbrowse/core/pluggableElementTypes/renderers/RendererType', '@jbrowse/core/configuration', '@jbrowse/core/util/types/mst', '@jbrowse/core/ui', '@jbrowse/core/util', '@jbrowse/core/util/color', '@jbrowse/core/util/layouts', '@jbrowse/core/util/tracks', '@jbrowse/core/util/Base1DViewModel', '@jbrowse/core/util/io', '@jbrowse/core/util/mst-reflection', '@jbrowse/core/util/rxjs', '@jbrowse/core/data_adapters/BaseAdapter'];
8
- exports.default = _default;
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ /**
4
+ * Used by plugin build systems to determine if a module is provided by JBrowse
5
+ * globally and thus doesn't need to be bundled. A check in ./modules.tsx makes
6
+ * sure this is in sync with the re-exported modules.
7
+ */
8
+ exports.default = [
9
+ 'mobx',
10
+ 'mobx-state-tree',
11
+ 'react',
12
+ 'react-dom',
13
+ 'mobx-react',
14
+ '@mui/x-data-grid',
15
+ '@mui/material/utils',
16
+ '@material-ui/core/utils',
17
+ 'tss-react/mui',
18
+ '@material-ui/core',
19
+ '@mui/material',
20
+ 'prop-types',
21
+ '@mui/material/styles',
22
+ '@material-ui/core/styles',
23
+ '@material-ui/core/Accordion',
24
+ '@material-ui/core/AccordionActions',
25
+ '@material-ui/core/AccordionDetails',
26
+ '@material-ui/core/Alert',
27
+ '@material-ui/core/AlertTitle',
28
+ '@material-ui/core/Autocomplete',
29
+ '@material-ui/core/Avatar',
30
+ '@material-ui/core/AvatarGroup',
31
+ '@material-ui/core/Backdrop',
32
+ '@material-ui/core/Badge',
33
+ '@material-ui/core/Box',
34
+ '@material-ui/core/Breadcrumbs',
35
+ '@material-ui/core/Button',
36
+ '@material-ui/core/ButtonGroup',
37
+ '@material-ui/core/Card',
38
+ '@material-ui/core/CardActions',
39
+ '@material-ui/core/CardActionArea',
40
+ '@material-ui/core/CardContent',
41
+ '@material-ui/core/CardHeader',
42
+ '@material-ui/core/CardMedia',
43
+ '@material-ui/core/CircularProgress',
44
+ '@material-ui/core/Collapse',
45
+ '@material-ui/core/ClickAwayListener',
46
+ '@material-ui/core/Chip',
47
+ '@material-ui/core/Checkbox',
48
+ '@material-ui/core/Container',
49
+ '@material-ui/core/Dialog',
50
+ '@material-ui/core/DialogActions',
51
+ '@material-ui/core/DialogTitle',
52
+ '@material-ui/core/DialogContent',
53
+ '@material-ui/core/DialogContentText',
54
+ '@material-ui/core/Divider',
55
+ '@material-ui/core/Drawer',
56
+ '@material-ui/core/Fab',
57
+ '@material-ui/core/Fade',
58
+ '@material-ui/core/FilledInput',
59
+ '@material-ui/core/FormLabel',
60
+ '@material-ui/core/FormControl',
61
+ '@material-ui/core/FormControlLabel',
62
+ '@material-ui/core/FormHelperText',
63
+ '@material-ui/core/FormGroup',
64
+ '@material-ui/core/Grid',
65
+ '@material-ui/core/Grow',
66
+ '@material-ui/core/Icon',
67
+ '@material-ui/core/IconButton',
68
+ '@material-ui/core/Input',
69
+ '@material-ui/core/InputBase',
70
+ '@material-ui/core/InputLabel',
71
+ '@material-ui/core/InputAdornment',
72
+ '@material-ui/core/Link',
73
+ '@material-ui/core/LinearProgress',
74
+ '@material-ui/core/List',
75
+ '@material-ui/core/ListItem',
76
+ '@material-ui/core/ListItemAvatar',
77
+ '@material-ui/core/ListItemSecondaryAction',
78
+ '@material-ui/core/ListItemIcon',
79
+ '@material-ui/core/ListSubheader',
80
+ '@material-ui/core/ListItemText',
81
+ '@material-ui/core/Menu',
82
+ '@material-ui/core/MenuItem',
83
+ '@material-ui/core/MenuList',
84
+ '@material-ui/core/Modal',
85
+ '@material-ui/core/NativeSelect',
86
+ '@material-ui/core/OutlinedInput',
87
+ '@material-ui/core/Pagination',
88
+ '@material-ui/core/PaginationItem',
89
+ '@material-ui/core/Paper',
90
+ '@material-ui/core/Popover',
91
+ '@material-ui/core/Popper',
92
+ '@material-ui/core/Portal',
93
+ '@material-ui/core/Radio',
94
+ '@material-ui/core/RadioGroup',
95
+ '@material-ui/core/Rating',
96
+ '@material-ui/core/ScopedCssBaseline',
97
+ '@material-ui/core/Select',
98
+ '@material-ui/core/Skeleton',
99
+ '@material-ui/core/Slider',
100
+ '@material-ui/core/Snackbar',
101
+ '@material-ui/core/SnackbarContent',
102
+ '@material-ui/core/SpeedDial',
103
+ '@material-ui/core/SpeedDialAction',
104
+ '@material-ui/core/SpeedDialIcon',
105
+ '@material-ui/core/Stack',
106
+ '@material-ui/core/Step',
107
+ '@material-ui/core/StepButton',
108
+ '@material-ui/core/StepConnector',
109
+ '@material-ui/core/StepLabel',
110
+ '@material-ui/core/StepIcon',
111
+ '@material-ui/core/Stepper',
112
+ '@material-ui/core/SvgIcon',
113
+ '@material-ui/core/Switch',
114
+ '@material-ui/core/Tab',
115
+ '@material-ui/core/Table',
116
+ '@material-ui/core/TableBody',
117
+ '@material-ui/core/TableCell',
118
+ '@material-ui/core/TableContainer',
119
+ '@material-ui/core/TableFooter',
120
+ '@material-ui/core/TableHead',
121
+ '@material-ui/core/TablePagination',
122
+ '@material-ui/core/TableRow',
123
+ '@material-ui/core/TableSortLabel',
124
+ '@material-ui/core/Tabs',
125
+ '@material-ui/core/TextField',
126
+ '@material-ui/core/TextareaAutosize',
127
+ '@material-ui/core/ToggleButton',
128
+ '@material-ui/core/ToggleButtonGroup',
129
+ '@material-ui/core/Toolbar',
130
+ '@material-ui/core/Tooltip',
131
+ '@material-ui/core/Typography',
132
+ '@mui/material/Accordion',
133
+ '@mui/material/AccordionActions',
134
+ '@mui/material/AccordionDetails',
135
+ '@mui/material/Alert',
136
+ '@mui/material/AlertTitle',
137
+ '@mui/material/Autocomplete',
138
+ '@mui/material/Avatar',
139
+ '@mui/material/AvatarGroup',
140
+ '@mui/material/Backdrop',
141
+ '@mui/material/Badge',
142
+ '@mui/material/Box',
143
+ '@mui/material/Breadcrumbs',
144
+ '@mui/material/Button',
145
+ '@mui/material/ButtonGroup',
146
+ '@mui/material/Card',
147
+ '@mui/material/CardActions',
148
+ '@mui/material/CardActionArea',
149
+ '@mui/material/CardContent',
150
+ '@mui/material/CardHeader',
151
+ '@mui/material/CardMedia',
152
+ '@mui/material/CircularProgress',
153
+ '@mui/material/Collapse',
154
+ '@mui/material/ClickAwayListener',
155
+ '@mui/material/Chip',
156
+ '@mui/material/Checkbox',
157
+ '@mui/material/Container',
158
+ '@mui/material/Dialog',
159
+ '@mui/material/DialogActions',
160
+ '@mui/material/DialogTitle',
161
+ '@mui/material/DialogContent',
162
+ '@mui/material/DialogContentText',
163
+ '@mui/material/Divider',
164
+ '@mui/material/Drawer',
165
+ '@mui/material/Fab',
166
+ '@mui/material/Fade',
167
+ '@mui/material/FilledInput',
168
+ '@mui/material/FormLabel',
169
+ '@mui/material/FormControl',
170
+ '@mui/material/FormControlLabel',
171
+ '@mui/material/FormHelperText',
172
+ '@mui/material/FormGroup',
173
+ '@mui/material/Grid',
174
+ '@mui/material/Grow',
175
+ '@mui/material/Icon',
176
+ '@mui/material/IconButton',
177
+ '@mui/material/Input',
178
+ '@mui/material/InputBase',
179
+ '@mui/material/InputLabel',
180
+ '@mui/material/InputAdornment',
181
+ '@mui/material/Link',
182
+ '@mui/material/LinearProgress',
183
+ '@mui/material/List',
184
+ '@mui/material/ListItem',
185
+ '@mui/material/ListItemAvatar',
186
+ '@mui/material/ListItemSecondaryAction',
187
+ '@mui/material/ListItemIcon',
188
+ '@mui/material/ListSubheader',
189
+ '@mui/material/ListItemText',
190
+ '@mui/material/Menu',
191
+ '@mui/material/MenuItem',
192
+ '@mui/material/MenuList',
193
+ '@mui/material/Modal',
194
+ '@mui/material/NativeSelect',
195
+ '@mui/material/OutlinedInput',
196
+ '@mui/material/Pagination',
197
+ '@mui/material/PaginationItem',
198
+ '@mui/material/Paper',
199
+ '@mui/material/Popover',
200
+ '@mui/material/Popper',
201
+ '@mui/material/Portal',
202
+ '@mui/material/Radio',
203
+ '@mui/material/RadioGroup',
204
+ '@mui/material/Rating',
205
+ '@mui/material/ScopedCssBaseline',
206
+ '@mui/material/Select',
207
+ '@mui/material/Skeleton',
208
+ '@mui/material/Slider',
209
+ '@mui/material/Snackbar',
210
+ '@mui/material/SnackbarContent',
211
+ '@mui/material/SpeedDial',
212
+ '@mui/material/SpeedDialAction',
213
+ '@mui/material/SpeedDialIcon',
214
+ '@mui/material/Stack',
215
+ '@mui/material/Step',
216
+ '@mui/material/StepButton',
217
+ '@mui/material/StepConnector',
218
+ '@mui/material/StepLabel',
219
+ '@mui/material/StepIcon',
220
+ '@mui/material/Stepper',
221
+ '@mui/material/SvgIcon',
222
+ '@mui/material/Switch',
223
+ '@mui/material/Tab',
224
+ '@mui/material/Table',
225
+ '@mui/material/TableBody',
226
+ '@mui/material/TableCell',
227
+ '@mui/material/TableContainer',
228
+ '@mui/material/TableFooter',
229
+ '@mui/material/TableHead',
230
+ '@mui/material/TablePagination',
231
+ '@mui/material/TableRow',
232
+ '@mui/material/TableSortLabel',
233
+ '@mui/material/Tabs',
234
+ '@mui/material/TextField',
235
+ '@mui/material/TextareaAutosize',
236
+ '@mui/material/ToggleButton',
237
+ '@mui/material/ToggleButtonGroup',
238
+ '@mui/material/Toolbar',
239
+ '@mui/material/Tooltip',
240
+ '@mui/material/Typography',
241
+ '@material-ui/lab/ToggleButton',
242
+ '@material-ui/lab/ToggleButtonGroup',
243
+ '@material-ui/lab/Autocomplete',
244
+ '@material-ui/lab/Alert',
245
+ '@material-ui/lab',
246
+ '@jbrowse/core/Plugin',
247
+ '@jbrowse/core/pluggableElementTypes',
248
+ '@jbrowse/core/pluggableElementTypes/ViewType',
249
+ '@jbrowse/core/pluggableElementTypes/AdapterType',
250
+ '@jbrowse/core/pluggableElementTypes/DisplayType',
251
+ '@jbrowse/core/pluggableElementTypes/TrackType',
252
+ '@jbrowse/core/pluggableElementTypes/WidgetType',
253
+ '@jbrowse/core/pluggableElementTypes/models',
254
+ '@jbrowse/core/pluggableElementTypes/renderers/ServerSideRendererType',
255
+ '@jbrowse/core/pluggableElementTypes/renderers/CircularChordRendererType',
256
+ '@jbrowse/core/pluggableElementTypes/renderers/BoxRendererType',
257
+ '@jbrowse/core/pluggableElementTypes/renderers/FeatureRendererType',
258
+ '@jbrowse/core/pluggableElementTypes/renderers/RendererType',
259
+ '@jbrowse/core/configuration',
260
+ '@jbrowse/core/util/types/mst',
261
+ '@jbrowse/core/ui',
262
+ '@jbrowse/core/util',
263
+ '@jbrowse/core/util/color',
264
+ '@jbrowse/core/util/layouts',
265
+ '@jbrowse/core/util/tracks',
266
+ '@jbrowse/core/util/Base1DViewModel',
267
+ '@jbrowse/core/util/io',
268
+ '@jbrowse/core/util/mst-reflection',
269
+ '@jbrowse/core/util/rxjs',
270
+ '@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail',
271
+ '@jbrowse/core/data_adapters/BaseAdapter',
272
+ ];
@@ -1,18 +1,17 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
7
- var _colors = require("@mui/material/colors");
8
-
9
- Object.keys(_colors).forEach(function (key) {
10
- if (key === "default" || key === "__esModule") return;
11
- if (key in exports && exports[key] === _colors[key]) return;
12
- Object.defineProperty(exports, key, {
13
- enumerable: true,
14
- get: function get() {
15
- return _colors[key];
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
16
7
  }
17
- });
18
- });
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("@mui/material/colors"), exports);
@@ -134,7 +134,6 @@ declare const libs: {
134
134
  'react-dom': typeof ReactDom;
135
135
  'mobx-react': typeof mxreact;
136
136
  '@mui/x-data-grid': {
137
- DataGrid: any;
138
137
  useGridApiContext: typeof useGridApiContext;
139
138
  useGridApiRef: <Api extends import("@mui/x-data-grid").GridApiCommon = import("@mui/x-data-grid/models/api/gridApiCommunity").GridApiCommunity>() => React.MutableRefObject<Api>;
140
139
  useGridRootProps: () => import("@mui/x-data-grid/models/props/DataGridProps").DataGridProcessedProps<any>;