@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.
- package/BaseFeatureWidget/BaseFeatureDetail.d.ts +6 -0
- package/BaseFeatureWidget/BaseFeatureDetail.js +313 -592
- package/BaseFeatureWidget/SequenceFeatureDetails.js +213 -479
- package/BaseFeatureWidget/index.js +88 -126
- package/BaseFeatureWidget/types.js +1 -4
- package/BaseFeatureWidget/util.js +40 -75
- package/CorePlugin.js +55 -94
- package/Plugin.js +9 -34
- package/PluginLoader.js +153 -422
- package/PluginManager.d.ts +17 -14
- package/PluginManager.js +377 -666
- package/ReExports/Attributes.js +3 -10
- package/ReExports/BaseCard.js +3 -10
- package/ReExports/DataGrid.js +5 -12
- package/ReExports/FeatureDetails.js +3 -10
- package/ReExports/index.js +6 -12
- package/ReExports/list.d.ts +5 -0
- package/ReExports/list.js +271 -7
- package/ReExports/material-ui-colors.js +15 -16
- package/ReExports/modules.d.ts +0 -1
- package/ReExports/modules.js +453 -798
- package/TextSearch/BaseResults.js +51 -123
- package/TextSearch/TextSearchManager.js +66 -144
- package/assemblyManager/assembly.js +280 -555
- package/assemblyManager/assemblyConfigSchema.js +47 -64
- package/assemblyManager/assemblyManager.js +126 -272
- package/assemblyManager/index.js +9 -22
- package/configuration/configurationSchema.js +167 -203
- package/configuration/configurationSlot.js +248 -326
- package/configuration/index.js +19 -35
- package/configuration/util.js +131 -173
- package/data_adapters/BaseAdapter.d.ts +2 -2
- package/data_adapters/BaseAdapter.js +132 -521
- package/data_adapters/CytobandAdapter.js +40 -126
- package/data_adapters/dataAdapterCache.js +77 -158
- package/package.json +4 -5
- package/pluggableElementTypes/AdapterType.js +24 -79
- package/pluggableElementTypes/AddTrackWorkflowType.d.ts +17 -0
- package/pluggableElementTypes/AddTrackWorkflowType.js +20 -0
- package/pluggableElementTypes/ConnectionType.js +22 -65
- package/pluggableElementTypes/DisplayType.js +35 -82
- package/pluggableElementTypes/InternetAccountType.js +23 -64
- package/pluggableElementTypes/PluggableElementBase.js +8 -20
- package/pluggableElementTypes/RpcMethodType.js +85 -427
- package/pluggableElementTypes/TextSearchAdapterType.js +16 -55
- package/pluggableElementTypes/TrackType.js +26 -70
- package/pluggableElementTypes/ViewType.js +21 -63
- package/pluggableElementTypes/WidgetType.js +21 -64
- package/pluggableElementTypes/index.d.ts +4 -3
- package/pluggableElementTypes/index.js +42 -125
- package/pluggableElementTypes/models/BaseConnectionModelFactory.js +28 -43
- package/pluggableElementTypes/models/BaseDisplayModel.js +58 -95
- package/pluggableElementTypes/models/BaseTrackModel.js +139 -199
- package/pluggableElementTypes/models/BaseViewModel.js +24 -40
- package/pluggableElementTypes/models/InternetAccountModel.js +116 -263
- package/pluggableElementTypes/models/baseConnectionConfig.js +14 -25
- package/pluggableElementTypes/models/baseInternetAccountConfig.js +29 -38
- package/pluggableElementTypes/models/baseTrackConfig.js +106 -133
- package/pluggableElementTypes/models/index.js +21 -70
- package/pluggableElementTypes/renderers/BoxRendererType.js +132 -291
- package/pluggableElementTypes/renderers/CircularChordRendererType.js +8 -38
- package/pluggableElementTypes/renderers/ComparativeServerSideRendererType.js +60 -192
- package/pluggableElementTypes/renderers/FeatureRendererType.d.ts +0 -2
- package/pluggableElementTypes/renderers/FeatureRendererType.js +89 -264
- package/pluggableElementTypes/renderers/RendererType.js +31 -105
- package/pluggableElementTypes/renderers/ServerSideRenderedContent.js +61 -72
- package/pluggableElementTypes/renderers/ServerSideRendererType.js +112 -265
- package/pluggableElementTypes/renderers/index.js +19 -62
- package/pluggableElementTypes/renderers/util/serializableFilterChain.js +27 -65
- package/rpc/BaseRpcDriver.js +169 -405
- package/rpc/MainThreadRpcDriver.js +27 -150
- package/rpc/RpcManager.js +58 -159
- package/rpc/WebWorkerRpcDriver.js +54 -171
- package/rpc/configSchema.js +25 -49
- package/rpc/coreRpcMethods.js +221 -959
- package/rpc/remoteAbortSignals.js +46 -70
- package/tsconfig.build.tsbuildinfo +1 -1
- package/ui/AboutDialog.js +106 -162
- package/ui/App.js +157 -242
- package/ui/AssemblySelector.js +59 -120
- package/ui/CascadingMenu.js +101 -196
- package/ui/ColorPicker.d.ts +16 -0
- package/ui/ColorPicker.js +97 -0
- package/ui/Drawer.js +28 -61
- package/ui/DrawerWidget.js +108 -202
- package/ui/DropDownMenu.js +60 -91
- package/ui/EditableTypography.js +87 -149
- package/ui/ErrorMessage.js +41 -56
- package/ui/FactoryResetDialog.js +24 -57
- package/ui/FatalErrorDialog.js +59 -91
- package/ui/FileSelector/FileSelector.js +123 -189
- package/ui/FileSelector/LocalFileChooser.js +44 -75
- package/ui/FileSelector/UrlChooser.js +17 -38
- package/ui/FileSelector/index.js +6 -12
- package/ui/Icons.js +45 -69
- package/ui/Logo.js +57 -110
- package/ui/Menu.js +232 -354
- package/ui/PrerenderedCanvas.js +63 -87
- package/ui/ResizeHandle.js +87 -116
- package/ui/ReturnToImportFormDialog.js +32 -63
- package/ui/SanitizedHTML.js +64 -47
- package/ui/Snackbar.js +74 -101
- package/ui/SnackbarModel.js +37 -51
- package/ui/Tooltip.js +49 -76
- package/ui/ViewContainer.js +113 -196
- package/ui/colors.d.ts +10 -0
- package/ui/colors.js +78 -0
- package/ui/index.js +51 -181
- package/ui/react-colorful.d.ts +17 -0
- package/ui/react-colorful.js +455 -0
- package/ui/theme.js +199 -247
- package/util/Base1DUtils.js +163 -202
- package/util/Base1DViewModel.js +121 -168
- package/util/QuickLRU.js +84 -332
- package/util/TimeTraveller.d.ts +19 -0
- package/util/TimeTraveller.js +86 -0
- package/util/aborting.js +49 -127
- package/util/analytics.js +91 -154
- package/util/blockTypes.js +106 -240
- package/util/calculateDynamicBlocks.js +98 -128
- package/util/calculateStaticBlocks.js +105 -125
- package/util/color/cssColorsLevel4.js +156 -160
- package/util/color/index.js +33 -55
- package/util/compositeMap.js +49 -333
- package/util/formatFastaStrings.js +9 -14
- package/util/idMaker.js +18 -31
- package/util/index.d.ts +7 -20
- package/util/index.js +742 -1188
- package/util/io/RemoteFileWithRangeCache.js +88 -257
- package/util/io/index.js +95 -169
- package/util/jexl.js +60 -115
- package/util/jexlStrings.js +24 -29
- package/util/layouts/BaseLayout.js +1 -4
- package/util/layouts/GranularRectLayout.js +388 -555
- package/util/layouts/MultiLayout.js +41 -109
- package/util/layouts/PrecomputedLayout.js +56 -112
- package/util/layouts/PrecomputedMultiLayout.js +22 -59
- package/util/layouts/SceneGraph.js +127 -197
- package/util/layouts/index.js +29 -66
- package/util/mst-reflection.js +55 -71
- package/util/offscreenCanvasPonyfill.js +66 -134
- package/util/offscreenCanvasUtils.d.ts +2 -7
- package/util/offscreenCanvasUtils.js +49 -146
- package/util/range.js +29 -40
- package/util/rxjs.js +20 -27
- package/util/simpleFeature.js +88 -152
- package/util/stats.js +91 -151
- package/util/tracks.js +130 -173
- package/util/types/index.js +110 -179
- package/util/types/mst.js +91 -146
- package/util/types/util.js +1 -4
- package/util/when.js +54 -101
- package/BaseFeatureWidget/SequenceFeatureDetails.test.js +0 -122
- package/BaseFeatureWidget/index.test.js +0 -69
- package/TextSearch/BaseResults.test.js +0 -42
- package/configuration/configurationSchema.test.js +0 -266
- package/configuration/configurationSlot.test.js +0 -69
- package/configuration/util.test.js +0 -39
- package/data_adapters/BaseAdapter.test.js +0 -200
- package/declare.d.js +0 -1
- package/pluggableElementTypes/RpcMethodType.test.js +0 -118
- package/pluggableElementTypes/renderers/declare.d.js +0 -1
- package/pluggableElementTypes/renderers/util/serializableFilterChain.test.js +0 -20
- package/rpc/BaseRpcDriver.test.js +0 -540
- package/rpc/declaration.d.js +0 -1
- package/ui/FatalErrorDialog.test.js +0 -82
- package/ui/SanitizedHTML.test.js +0 -36
- package/ui/theme.test.js +0 -92
- package/util/Base1DViewModel.test.js +0 -130
- package/util/calculateDynamicBlocks.test.js +0 -74
- package/util/calculateStaticBlocks.test.js +0 -297
- package/util/declare.d.js +0 -1
- package/util/formatFastaStrings.test.js +0 -40
- package/util/index.test.js +0 -213
- package/util/jexlStrings.test.js +0 -48
- package/util/layouts/GranularRectLayout.test.js +0 -99
- package/util/range.test.js +0 -64
- package/util/simpleFeature.test.js +0 -34
- package/util/stats.test.js +0 -172
package/ReExports/modules.js
CHANGED
|
@@ -1,804 +1,459 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
13
|
-
|
|
14
|
-
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
15
|
-
|
|
16
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
17
|
-
|
|
18
|
-
var ReactDom = _interopRequireWildcard(require("react-dom"));
|
|
19
|
-
|
|
20
|
-
var mobx = _interopRequireWildcard(require("mobx"));
|
|
21
|
-
|
|
22
|
-
var mst = _interopRequireWildcard(require("mobx-state-tree"));
|
|
23
|
-
|
|
24
|
-
var mxreact = _interopRequireWildcard(require("mobx-react"));
|
|
25
|
-
|
|
26
|
-
var _mui = require("tss-react/mui");
|
|
27
|
-
|
|
28
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
29
|
-
|
|
30
|
-
var MUIStyles = _interopRequireWildcard(require("@mui/material/styles"));
|
|
31
|
-
|
|
32
|
-
var MUIUtils = _interopRequireWildcard(require("@mui/material/utils"));
|
|
33
|
-
|
|
34
|
-
var _material = require("@mui/material");
|
|
35
|
-
|
|
36
|
-
var _xDataGrid = require("@mui/x-data-grid");
|
|
37
|
-
|
|
38
|
-
var BaseAdapterExports = _interopRequireWildcard(require("../data_adapters/BaseAdapter"));
|
|
39
|
-
|
|
40
|
-
var _Base1DViewModel = _interopRequireDefault(require("../util/Base1DViewModel"));
|
|
41
|
-
|
|
42
|
-
var pluggableElementTypes = _interopRequireWildcard(require("../pluggableElementTypes"));
|
|
43
|
-
|
|
44
|
-
var _ViewType = _interopRequireDefault(require("../pluggableElementTypes/ViewType"));
|
|
45
|
-
|
|
46
|
-
var _AdapterType = _interopRequireDefault(require("../pluggableElementTypes/AdapterType"));
|
|
47
|
-
|
|
48
|
-
var _DisplayType = _interopRequireDefault(require("../pluggableElementTypes/DisplayType"));
|
|
49
|
-
|
|
50
|
-
var _TrackType = _interopRequireDefault(require("../pluggableElementTypes/TrackType"));
|
|
51
|
-
|
|
52
|
-
var _WidgetType = _interopRequireDefault(require("../pluggableElementTypes/WidgetType"));
|
|
53
|
-
|
|
54
|
-
var pluggableElementTypeModels = _interopRequireWildcard(require("../pluggableElementTypes/models"));
|
|
55
|
-
|
|
56
|
-
var ServerSideRendererType = _interopRequireWildcard(require("../pluggableElementTypes/renderers/ServerSideRendererType"));
|
|
57
|
-
|
|
58
|
-
var _CircularChordRendererType = _interopRequireDefault(require("../pluggableElementTypes/renderers/CircularChordRendererType"));
|
|
59
|
-
|
|
60
|
-
var BoxRendererType = _interopRequireWildcard(require("../pluggableElementTypes/renderers/BoxRendererType"));
|
|
61
|
-
|
|
62
|
-
var FeatureRendererType = _interopRequireWildcard(require("../pluggableElementTypes/renderers/FeatureRendererType"));
|
|
63
|
-
|
|
64
|
-
var RendererType = _interopRequireWildcard(require("../pluggableElementTypes/renderers/RendererType"));
|
|
65
|
-
|
|
66
|
-
var Configuration = _interopRequireWildcard(require("../configuration"));
|
|
67
|
-
|
|
68
|
-
var _Plugin = _interopRequireDefault(require("../Plugin"));
|
|
69
|
-
|
|
70
|
-
var coreUi = _interopRequireWildcard(require("../ui"));
|
|
71
|
-
|
|
72
|
-
var coreUtil = _interopRequireWildcard(require("../util"));
|
|
73
|
-
|
|
74
|
-
var coreColor = _interopRequireWildcard(require("../util/color"));
|
|
75
|
-
|
|
76
|
-
var coreLayouts = _interopRequireWildcard(require("../util/layouts"));
|
|
77
|
-
|
|
78
|
-
var trackUtils = _interopRequireWildcard(require("../util/tracks"));
|
|
79
|
-
|
|
80
|
-
var coreIo = _interopRequireWildcard(require("../util/io"));
|
|
81
|
-
|
|
82
|
-
var coreMstReflection = _interopRequireWildcard(require("../util/mst-reflection"));
|
|
83
|
-
|
|
84
|
-
var rxjs = _interopRequireWildcard(require("../util/rxjs"));
|
|
85
|
-
|
|
86
|
-
var mstTypes = _interopRequireWildcard(require("../util/types/mst"));
|
|
87
|
-
|
|
88
|
-
var _list = _interopRequireDefault(require("./list"));
|
|
89
|
-
|
|
90
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
91
|
-
|
|
92
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
93
|
-
|
|
94
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
95
|
-
|
|
96
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || (0, _typeof2.default)(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
97
|
-
|
|
98
|
-
var Entries = {
|
|
99
|
-
Accordion: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
100
|
-
return Promise.resolve().then(function () {
|
|
101
|
-
return _interopRequireWildcard(require('@mui/material/Accordion'));
|
|
102
|
-
});
|
|
103
|
-
}),
|
|
104
|
-
AccordionActions: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
105
|
-
return Promise.resolve().then(function () {
|
|
106
|
-
return _interopRequireWildcard(require('@mui/material/AccordionActions'));
|
|
107
|
-
});
|
|
108
|
-
}),
|
|
109
|
-
AccordionDetails: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
110
|
-
return Promise.resolve().then(function () {
|
|
111
|
-
return _interopRequireWildcard(require('@mui/material/AccordionDetails'));
|
|
112
|
-
});
|
|
113
|
-
}),
|
|
114
|
-
Alert: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
115
|
-
return Promise.resolve().then(function () {
|
|
116
|
-
return _interopRequireWildcard(require('@mui/material/Alert'));
|
|
117
|
-
});
|
|
118
|
-
}),
|
|
119
|
-
AlertTitle: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
120
|
-
return Promise.resolve().then(function () {
|
|
121
|
-
return _interopRequireWildcard(require('@mui/material/AlertTitle'));
|
|
122
|
-
});
|
|
123
|
-
}),
|
|
124
|
-
Autocomplete: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
125
|
-
return Promise.resolve().then(function () {
|
|
126
|
-
return _interopRequireWildcard(require('@mui/material/Autocomplete'));
|
|
127
|
-
});
|
|
128
|
-
}),
|
|
129
|
-
Avatar: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
130
|
-
return Promise.resolve().then(function () {
|
|
131
|
-
return _interopRequireWildcard(require('@mui/material/Avatar'));
|
|
132
|
-
});
|
|
133
|
-
}),
|
|
134
|
-
AvatarGroup: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
135
|
-
return Promise.resolve().then(function () {
|
|
136
|
-
return _interopRequireWildcard(require('@mui/material/AvatarGroup'));
|
|
137
|
-
});
|
|
138
|
-
}),
|
|
139
|
-
Backdrop: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
140
|
-
return Promise.resolve().then(function () {
|
|
141
|
-
return _interopRequireWildcard(require('@mui/material/Backdrop'));
|
|
142
|
-
});
|
|
143
|
-
}),
|
|
144
|
-
Badge: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
145
|
-
return Promise.resolve().then(function () {
|
|
146
|
-
return _interopRequireWildcard(require('@mui/material/Badge'));
|
|
147
|
-
});
|
|
148
|
-
}),
|
|
149
|
-
Box: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
150
|
-
return Promise.resolve().then(function () {
|
|
151
|
-
return _interopRequireWildcard(require('@mui/material/Box'));
|
|
152
|
-
});
|
|
153
|
-
}),
|
|
154
|
-
Breadcrumbs: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
155
|
-
return Promise.resolve().then(function () {
|
|
156
|
-
return _interopRequireWildcard(require('@mui/material/Breadcrumbs'));
|
|
157
|
-
});
|
|
158
|
-
}),
|
|
159
|
-
Button: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
160
|
-
return Promise.resolve().then(function () {
|
|
161
|
-
return _interopRequireWildcard(require('@mui/material/Button'));
|
|
162
|
-
});
|
|
163
|
-
}),
|
|
164
|
-
ButtonGroup: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
165
|
-
return Promise.resolve().then(function () {
|
|
166
|
-
return _interopRequireWildcard(require('@mui/material/ButtonGroup'));
|
|
167
|
-
});
|
|
168
|
-
}),
|
|
169
|
-
Card: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
170
|
-
return Promise.resolve().then(function () {
|
|
171
|
-
return _interopRequireWildcard(require('@mui/material/Card'));
|
|
172
|
-
});
|
|
173
|
-
}),
|
|
174
|
-
CardActions: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
175
|
-
return Promise.resolve().then(function () {
|
|
176
|
-
return _interopRequireWildcard(require('@mui/material/CardActions'));
|
|
177
|
-
});
|
|
178
|
-
}),
|
|
179
|
-
CardActionArea: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
180
|
-
return Promise.resolve().then(function () {
|
|
181
|
-
return _interopRequireWildcard(require('@mui/material/CardActionArea'));
|
|
182
|
-
});
|
|
183
|
-
}),
|
|
184
|
-
CardContent: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
185
|
-
return Promise.resolve().then(function () {
|
|
186
|
-
return _interopRequireWildcard(require('@mui/material/CardContent'));
|
|
187
|
-
});
|
|
188
|
-
}),
|
|
189
|
-
CardHeader: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
190
|
-
return Promise.resolve().then(function () {
|
|
191
|
-
return _interopRequireWildcard(require('@mui/material/CardHeader'));
|
|
192
|
-
});
|
|
193
|
-
}),
|
|
194
|
-
CardMedia: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
195
|
-
return Promise.resolve().then(function () {
|
|
196
|
-
return _interopRequireWildcard(require('@mui/material/CardMedia'));
|
|
197
|
-
});
|
|
198
|
-
}),
|
|
199
|
-
CircularProgress: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
200
|
-
return Promise.resolve().then(function () {
|
|
201
|
-
return _interopRequireWildcard(require('@mui/material/CircularProgress'));
|
|
202
|
-
});
|
|
203
|
-
}),
|
|
204
|
-
Collapse: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
205
|
-
return Promise.resolve().then(function () {
|
|
206
|
-
return _interopRequireWildcard(require('@mui/material/Collapse'));
|
|
207
|
-
});
|
|
208
|
-
}),
|
|
209
|
-
ClickAwayListener: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
210
|
-
return Promise.resolve().then(function () {
|
|
211
|
-
return _interopRequireWildcard(require('@mui/material/ClickAwayListener'));
|
|
212
|
-
});
|
|
213
|
-
}),
|
|
214
|
-
Chip: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
215
|
-
return Promise.resolve().then(function () {
|
|
216
|
-
return _interopRequireWildcard(require('@mui/material/Chip'));
|
|
217
|
-
});
|
|
218
|
-
}),
|
|
219
|
-
Checkbox: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
220
|
-
return Promise.resolve().then(function () {
|
|
221
|
-
return _interopRequireWildcard(require('@mui/material/Checkbox'));
|
|
222
|
-
});
|
|
223
|
-
}),
|
|
224
|
-
Container: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
225
|
-
return Promise.resolve().then(function () {
|
|
226
|
-
return _interopRequireWildcard(require('@mui/material/Container'));
|
|
227
|
-
});
|
|
228
|
-
}),
|
|
229
|
-
Dialog: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
230
|
-
return Promise.resolve().then(function () {
|
|
231
|
-
return _interopRequireWildcard(require('@mui/material/Dialog'));
|
|
232
|
-
});
|
|
233
|
-
}),
|
|
234
|
-
DialogActions: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
235
|
-
return Promise.resolve().then(function () {
|
|
236
|
-
return _interopRequireWildcard(require('@mui/material/DialogActions'));
|
|
237
|
-
});
|
|
238
|
-
}),
|
|
239
|
-
DialogTitle: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
240
|
-
return Promise.resolve().then(function () {
|
|
241
|
-
return _interopRequireWildcard(require('@mui/material/DialogTitle'));
|
|
242
|
-
});
|
|
243
|
-
}),
|
|
244
|
-
DialogContent: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
245
|
-
return Promise.resolve().then(function () {
|
|
246
|
-
return _interopRequireWildcard(require('@mui/material/DialogContent'));
|
|
247
|
-
});
|
|
248
|
-
}),
|
|
249
|
-
DialogContentText: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
250
|
-
return Promise.resolve().then(function () {
|
|
251
|
-
return _interopRequireWildcard(require('@mui/material/DialogContentText'));
|
|
252
|
-
});
|
|
253
|
-
}),
|
|
254
|
-
Divider: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
255
|
-
return Promise.resolve().then(function () {
|
|
256
|
-
return _interopRequireWildcard(require('@mui/material/Divider'));
|
|
257
|
-
});
|
|
258
|
-
}),
|
|
259
|
-
Drawer: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
260
|
-
return Promise.resolve().then(function () {
|
|
261
|
-
return _interopRequireWildcard(require('@mui/material/Drawer'));
|
|
262
|
-
});
|
|
263
|
-
}),
|
|
264
|
-
Fab: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
265
|
-
return Promise.resolve().then(function () {
|
|
266
|
-
return _interopRequireWildcard(require('@mui/material/Fab'));
|
|
267
|
-
});
|
|
268
|
-
}),
|
|
269
|
-
Fade: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
270
|
-
return Promise.resolve().then(function () {
|
|
271
|
-
return _interopRequireWildcard(require('@mui/material/Fade'));
|
|
272
|
-
});
|
|
273
|
-
}),
|
|
274
|
-
FilledInput: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
275
|
-
return Promise.resolve().then(function () {
|
|
276
|
-
return _interopRequireWildcard(require('@mui/material/FilledInput'));
|
|
277
|
-
});
|
|
278
|
-
}),
|
|
279
|
-
FormLabel: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
280
|
-
return Promise.resolve().then(function () {
|
|
281
|
-
return _interopRequireWildcard(require('@mui/material/FormLabel'));
|
|
282
|
-
});
|
|
283
|
-
}),
|
|
284
|
-
FormControl: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
285
|
-
return Promise.resolve().then(function () {
|
|
286
|
-
return _interopRequireWildcard(require('@mui/material/FormControl'));
|
|
287
|
-
});
|
|
288
|
-
}),
|
|
289
|
-
FormControlLabel: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
290
|
-
return Promise.resolve().then(function () {
|
|
291
|
-
return _interopRequireWildcard(require('@mui/material/FormControlLabel'));
|
|
292
|
-
});
|
|
293
|
-
}),
|
|
294
|
-
FormHelperText: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
295
|
-
return Promise.resolve().then(function () {
|
|
296
|
-
return _interopRequireWildcard(require('@mui/material/FormHelperText'));
|
|
297
|
-
});
|
|
298
|
-
}),
|
|
299
|
-
FormGroup: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
300
|
-
return Promise.resolve().then(function () {
|
|
301
|
-
return _interopRequireWildcard(require('@mui/material/FormGroup'));
|
|
302
|
-
});
|
|
303
|
-
}),
|
|
304
|
-
Grid: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
305
|
-
return Promise.resolve().then(function () {
|
|
306
|
-
return _interopRequireWildcard(require('@mui/material/Grid'));
|
|
307
|
-
});
|
|
308
|
-
}),
|
|
309
|
-
Grow: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
310
|
-
return Promise.resolve().then(function () {
|
|
311
|
-
return _interopRequireWildcard(require('@mui/material/Grow'));
|
|
312
|
-
});
|
|
313
|
-
}),
|
|
314
|
-
Icon: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
315
|
-
return Promise.resolve().then(function () {
|
|
316
|
-
return _interopRequireWildcard(require('@mui/material/Icon'));
|
|
317
|
-
});
|
|
318
|
-
}),
|
|
319
|
-
IconButton: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
320
|
-
return Promise.resolve().then(function () {
|
|
321
|
-
return _interopRequireWildcard(require('@mui/material/IconButton'));
|
|
322
|
-
});
|
|
323
|
-
}),
|
|
324
|
-
Input: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
325
|
-
return Promise.resolve().then(function () {
|
|
326
|
-
return _interopRequireWildcard(require('@mui/material/Input'));
|
|
327
|
-
});
|
|
328
|
-
}),
|
|
329
|
-
InputBase: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
330
|
-
return Promise.resolve().then(function () {
|
|
331
|
-
return _interopRequireWildcard(require('@mui/material/InputBase'));
|
|
332
|
-
});
|
|
333
|
-
}),
|
|
334
|
-
InputLabel: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
335
|
-
return Promise.resolve().then(function () {
|
|
336
|
-
return _interopRequireWildcard(require('@mui/material/InputLabel'));
|
|
337
|
-
});
|
|
338
|
-
}),
|
|
339
|
-
InputAdornment: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
340
|
-
return Promise.resolve().then(function () {
|
|
341
|
-
return _interopRequireWildcard(require('@mui/material/InputAdornment'));
|
|
342
|
-
});
|
|
343
|
-
}),
|
|
344
|
-
Link: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
345
|
-
return Promise.resolve().then(function () {
|
|
346
|
-
return _interopRequireWildcard(require('@mui/material/Link'));
|
|
347
|
-
});
|
|
348
|
-
}),
|
|
349
|
-
LinearProgress: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
350
|
-
return Promise.resolve().then(function () {
|
|
351
|
-
return _interopRequireWildcard(require('@mui/material/LinearProgress'));
|
|
352
|
-
});
|
|
353
|
-
}),
|
|
354
|
-
List: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
355
|
-
return Promise.resolve().then(function () {
|
|
356
|
-
return _interopRequireWildcard(require('@mui/material/List'));
|
|
357
|
-
});
|
|
358
|
-
}),
|
|
359
|
-
ListItem: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
360
|
-
return Promise.resolve().then(function () {
|
|
361
|
-
return _interopRequireWildcard(require('@mui/material/ListItem'));
|
|
362
|
-
});
|
|
363
|
-
}),
|
|
364
|
-
ListItemAvatar: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
365
|
-
return Promise.resolve().then(function () {
|
|
366
|
-
return _interopRequireWildcard(require('@mui/material/ListItemAvatar'));
|
|
367
|
-
});
|
|
368
|
-
}),
|
|
369
|
-
ListItemSecondaryAction: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
370
|
-
return Promise.resolve().then(function () {
|
|
371
|
-
return _interopRequireWildcard(require('@mui/material/ListItemSecondaryAction'));
|
|
372
|
-
});
|
|
373
|
-
}),
|
|
374
|
-
ListItemIcon: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
375
|
-
return Promise.resolve().then(function () {
|
|
376
|
-
return _interopRequireWildcard(require('@mui/material/ListItemIcon'));
|
|
377
|
-
});
|
|
378
|
-
}),
|
|
379
|
-
ListSubheader: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
380
|
-
return Promise.resolve().then(function () {
|
|
381
|
-
return _interopRequireWildcard(require('@mui/material/ListSubheader'));
|
|
382
|
-
});
|
|
383
|
-
}),
|
|
384
|
-
ListItemText: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
385
|
-
return Promise.resolve().then(function () {
|
|
386
|
-
return _interopRequireWildcard(require('@mui/material/ListItemText'));
|
|
387
|
-
});
|
|
388
|
-
}),
|
|
389
|
-
Menu: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
390
|
-
return Promise.resolve().then(function () {
|
|
391
|
-
return _interopRequireWildcard(require('@mui/material/Menu'));
|
|
392
|
-
});
|
|
393
|
-
}),
|
|
394
|
-
MenuItem: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
395
|
-
return Promise.resolve().then(function () {
|
|
396
|
-
return _interopRequireWildcard(require('@mui/material/MenuItem'));
|
|
397
|
-
});
|
|
398
|
-
}),
|
|
399
|
-
MenuList: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
400
|
-
return Promise.resolve().then(function () {
|
|
401
|
-
return _interopRequireWildcard(require('@mui/material/MenuList'));
|
|
402
|
-
});
|
|
403
|
-
}),
|
|
404
|
-
Modal: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
405
|
-
return Promise.resolve().then(function () {
|
|
406
|
-
return _interopRequireWildcard(require('@mui/material/Modal'));
|
|
407
|
-
});
|
|
408
|
-
}),
|
|
409
|
-
NativeSelect: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
410
|
-
return Promise.resolve().then(function () {
|
|
411
|
-
return _interopRequireWildcard(require('@mui/material/NativeSelect'));
|
|
412
|
-
});
|
|
413
|
-
}),
|
|
414
|
-
OutlinedInput: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
415
|
-
return Promise.resolve().then(function () {
|
|
416
|
-
return _interopRequireWildcard(require('@mui/material/OutlinedInput'));
|
|
417
|
-
});
|
|
418
|
-
}),
|
|
419
|
-
Pagination: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
420
|
-
return Promise.resolve().then(function () {
|
|
421
|
-
return _interopRequireWildcard(require('@mui/material/Pagination'));
|
|
422
|
-
});
|
|
423
|
-
}),
|
|
424
|
-
PaginationItem: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
425
|
-
return Promise.resolve().then(function () {
|
|
426
|
-
return _interopRequireWildcard(require('@mui/material/PaginationItem'));
|
|
427
|
-
});
|
|
428
|
-
}),
|
|
429
|
-
Paper: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
430
|
-
return Promise.resolve().then(function () {
|
|
431
|
-
return _interopRequireWildcard(require('@mui/material/Paper'));
|
|
432
|
-
});
|
|
433
|
-
}),
|
|
434
|
-
Popover: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
435
|
-
return Promise.resolve().then(function () {
|
|
436
|
-
return _interopRequireWildcard(require('@mui/material/Popover'));
|
|
437
|
-
});
|
|
438
|
-
}),
|
|
439
|
-
Popper: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
440
|
-
return Promise.resolve().then(function () {
|
|
441
|
-
return _interopRequireWildcard(require('@mui/material/Popper'));
|
|
442
|
-
});
|
|
443
|
-
}),
|
|
444
|
-
Portal: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
445
|
-
return Promise.resolve().then(function () {
|
|
446
|
-
return _interopRequireWildcard(require('@mui/material/Portal'));
|
|
447
|
-
});
|
|
448
|
-
}),
|
|
449
|
-
Radio: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
450
|
-
return Promise.resolve().then(function () {
|
|
451
|
-
return _interopRequireWildcard(require('@mui/material/Radio'));
|
|
452
|
-
});
|
|
453
|
-
}),
|
|
454
|
-
RadioGroup: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
455
|
-
return Promise.resolve().then(function () {
|
|
456
|
-
return _interopRequireWildcard(require('@mui/material/RadioGroup'));
|
|
457
|
-
});
|
|
458
|
-
}),
|
|
459
|
-
Rating: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
460
|
-
return Promise.resolve().then(function () {
|
|
461
|
-
return _interopRequireWildcard(require('@mui/material/Rating'));
|
|
462
|
-
});
|
|
463
|
-
}),
|
|
464
|
-
ScopedCssBaseline: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
465
|
-
return Promise.resolve().then(function () {
|
|
466
|
-
return _interopRequireWildcard(require('@mui/material/ScopedCssBaseline'));
|
|
467
|
-
});
|
|
468
|
-
}),
|
|
469
|
-
Select: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
470
|
-
return Promise.resolve().then(function () {
|
|
471
|
-
return _interopRequireWildcard(require('@mui/material/Select'));
|
|
472
|
-
});
|
|
473
|
-
}),
|
|
474
|
-
Skeleton: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
475
|
-
return Promise.resolve().then(function () {
|
|
476
|
-
return _interopRequireWildcard(require('@mui/material/Skeleton'));
|
|
477
|
-
});
|
|
478
|
-
}),
|
|
479
|
-
Slider: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
480
|
-
return Promise.resolve().then(function () {
|
|
481
|
-
return _interopRequireWildcard(require('@mui/material/Slider'));
|
|
482
|
-
});
|
|
483
|
-
}),
|
|
484
|
-
Snackbar: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
485
|
-
return Promise.resolve().then(function () {
|
|
486
|
-
return _interopRequireWildcard(require('@mui/material/Snackbar'));
|
|
487
|
-
});
|
|
488
|
-
}),
|
|
489
|
-
SnackbarContent: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
490
|
-
return Promise.resolve().then(function () {
|
|
491
|
-
return _interopRequireWildcard(require('@mui/material/SnackbarContent'));
|
|
492
|
-
});
|
|
493
|
-
}),
|
|
494
|
-
SpeedDial: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
495
|
-
return Promise.resolve().then(function () {
|
|
496
|
-
return _interopRequireWildcard(require('@mui/material/SpeedDial'));
|
|
497
|
-
});
|
|
498
|
-
}),
|
|
499
|
-
SpeedDialAction: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
500
|
-
return Promise.resolve().then(function () {
|
|
501
|
-
return _interopRequireWildcard(require('@mui/material/SpeedDialAction'));
|
|
502
|
-
});
|
|
503
|
-
}),
|
|
504
|
-
SpeedDialIcon: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
505
|
-
return Promise.resolve().then(function () {
|
|
506
|
-
return _interopRequireWildcard(require('@mui/material/SpeedDialIcon'));
|
|
507
|
-
});
|
|
508
|
-
}),
|
|
509
|
-
Stack: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
510
|
-
return Promise.resolve().then(function () {
|
|
511
|
-
return _interopRequireWildcard(require('@mui/material/Stack'));
|
|
512
|
-
});
|
|
513
|
-
}),
|
|
514
|
-
Step: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
515
|
-
return Promise.resolve().then(function () {
|
|
516
|
-
return _interopRequireWildcard(require('@mui/material/Step'));
|
|
517
|
-
});
|
|
518
|
-
}),
|
|
519
|
-
StepButton: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
520
|
-
return Promise.resolve().then(function () {
|
|
521
|
-
return _interopRequireWildcard(require('@mui/material/StepButton'));
|
|
522
|
-
});
|
|
523
|
-
}),
|
|
524
|
-
StepConnector: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
525
|
-
return Promise.resolve().then(function () {
|
|
526
|
-
return _interopRequireWildcard(require('@mui/material/StepConnector'));
|
|
527
|
-
});
|
|
528
|
-
}),
|
|
529
|
-
StepLabel: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
530
|
-
return Promise.resolve().then(function () {
|
|
531
|
-
return _interopRequireWildcard(require('@mui/material/StepLabel'));
|
|
532
|
-
});
|
|
533
|
-
}),
|
|
534
|
-
StepIcon: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
535
|
-
return Promise.resolve().then(function () {
|
|
536
|
-
return _interopRequireWildcard(require('@mui/material/StepIcon'));
|
|
537
|
-
});
|
|
538
|
-
}),
|
|
539
|
-
Stepper: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
540
|
-
return Promise.resolve().then(function () {
|
|
541
|
-
return _interopRequireWildcard(require('@mui/material/Stepper'));
|
|
542
|
-
});
|
|
543
|
-
}),
|
|
544
|
-
SvgIcon: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
545
|
-
return Promise.resolve().then(function () {
|
|
546
|
-
return _interopRequireWildcard(require('@mui/material/SvgIcon'));
|
|
547
|
-
});
|
|
548
|
-
}),
|
|
549
|
-
Switch: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
550
|
-
return Promise.resolve().then(function () {
|
|
551
|
-
return _interopRequireWildcard(require('@mui/material/Switch'));
|
|
552
|
-
});
|
|
553
|
-
}),
|
|
554
|
-
Tab: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
555
|
-
return Promise.resolve().then(function () {
|
|
556
|
-
return _interopRequireWildcard(require('@mui/material/Tab'));
|
|
557
|
-
});
|
|
558
|
-
}),
|
|
559
|
-
Table: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
560
|
-
return Promise.resolve().then(function () {
|
|
561
|
-
return _interopRequireWildcard(require('@mui/material/Table'));
|
|
562
|
-
});
|
|
563
|
-
}),
|
|
564
|
-
TableBody: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
565
|
-
return Promise.resolve().then(function () {
|
|
566
|
-
return _interopRequireWildcard(require('@mui/material/TableBody'));
|
|
567
|
-
});
|
|
568
|
-
}),
|
|
569
|
-
TableCell: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
570
|
-
return Promise.resolve().then(function () {
|
|
571
|
-
return _interopRequireWildcard(require('@mui/material/TableCell'));
|
|
572
|
-
});
|
|
573
|
-
}),
|
|
574
|
-
TableContainer: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
575
|
-
return Promise.resolve().then(function () {
|
|
576
|
-
return _interopRequireWildcard(require('@mui/material/TableContainer'));
|
|
577
|
-
});
|
|
578
|
-
}),
|
|
579
|
-
TableFooter: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
580
|
-
return Promise.resolve().then(function () {
|
|
581
|
-
return _interopRequireWildcard(require('@mui/material/TableFooter'));
|
|
582
|
-
});
|
|
583
|
-
}),
|
|
584
|
-
TableHead: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
585
|
-
return Promise.resolve().then(function () {
|
|
586
|
-
return _interopRequireWildcard(require('@mui/material/TableHead'));
|
|
587
|
-
});
|
|
588
|
-
}),
|
|
589
|
-
TablePagination: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
590
|
-
return Promise.resolve().then(function () {
|
|
591
|
-
return _interopRequireWildcard(require('@mui/material/TablePagination'));
|
|
592
|
-
});
|
|
593
|
-
}),
|
|
594
|
-
TableRow: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
595
|
-
return Promise.resolve().then(function () {
|
|
596
|
-
return _interopRequireWildcard(require('@mui/material/TableRow'));
|
|
597
|
-
});
|
|
598
|
-
}),
|
|
599
|
-
TableSortLabel: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
600
|
-
return Promise.resolve().then(function () {
|
|
601
|
-
return _interopRequireWildcard(require('@mui/material/TableSortLabel'));
|
|
602
|
-
});
|
|
603
|
-
}),
|
|
604
|
-
Tabs: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
605
|
-
return Promise.resolve().then(function () {
|
|
606
|
-
return _interopRequireWildcard(require('@mui/material/Tabs'));
|
|
607
|
-
});
|
|
608
|
-
}),
|
|
609
|
-
TextField: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
610
|
-
return Promise.resolve().then(function () {
|
|
611
|
-
return _interopRequireWildcard(require('@mui/material/TextField'));
|
|
612
|
-
});
|
|
613
|
-
}),
|
|
614
|
-
TextareaAutosize: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
615
|
-
return Promise.resolve().then(function () {
|
|
616
|
-
return _interopRequireWildcard(require('@mui/material/TextareaAutosize'));
|
|
617
|
-
});
|
|
618
|
-
}),
|
|
619
|
-
ToggleButton: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
620
|
-
return Promise.resolve().then(function () {
|
|
621
|
-
return _interopRequireWildcard(require('@mui/material/ToggleButton'));
|
|
622
|
-
});
|
|
623
|
-
}),
|
|
624
|
-
ToggleButtonGroup: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
625
|
-
return Promise.resolve().then(function () {
|
|
626
|
-
return _interopRequireWildcard(require('@mui/material/ToggleButtonGroup'));
|
|
627
|
-
});
|
|
628
|
-
}),
|
|
629
|
-
Toolbar: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
630
|
-
return Promise.resolve().then(function () {
|
|
631
|
-
return _interopRequireWildcard(require('@mui/material/Toolbar'));
|
|
632
|
-
});
|
|
633
|
-
}),
|
|
634
|
-
Tooltip: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
635
|
-
return Promise.resolve().then(function () {
|
|
636
|
-
return _interopRequireWildcard(require('@mui/material/Tooltip'));
|
|
637
|
-
});
|
|
638
|
-
}),
|
|
639
|
-
Typography: /*#__PURE__*/(0, _react.lazy)(function () {
|
|
640
|
-
return Promise.resolve().then(function () {
|
|
641
|
-
return _interopRequireWildcard(require('@mui/material/Typography'));
|
|
642
|
-
});
|
|
643
|
-
})
|
|
644
|
-
};
|
|
645
|
-
var LazyMUICore = Object.fromEntries(Object.entries(Entries).map(function (_ref) {
|
|
646
|
-
var _ref2 = (0, _slicedToArray2.default)(_ref, 2),
|
|
647
|
-
key = _ref2[0],
|
|
648
|
-
ReactComponent = _ref2[1];
|
|
649
|
-
|
|
650
|
-
return [key, // eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
651
|
-
function (props) {
|
|
652
|
-
return /*#__PURE__*/_react.default.createElement(_react.Suspense, {
|
|
653
|
-
fallback: /*#__PURE__*/_react.default.createElement("div", null)
|
|
654
|
-
}, /*#__PURE__*/_react.default.createElement(ReactComponent, props));
|
|
655
|
-
}];
|
|
656
|
-
}));
|
|
657
|
-
var MaterialPrefixMUI = Object.fromEntries(Object.entries(LazyMUICore).map(function (_ref3) {
|
|
658
|
-
var _ref4 = (0, _slicedToArray2.default)(_ref3, 2),
|
|
659
|
-
key = _ref4[0],
|
|
660
|
-
value = _ref4[1];
|
|
661
|
-
|
|
662
|
-
return ['@material-ui/core/' + key, value];
|
|
663
|
-
}));
|
|
664
|
-
var MuiPrefixMUI = Object.fromEntries(Object.entries(LazyMUICore).map(function (_ref5) {
|
|
665
|
-
var _ref6 = (0, _slicedToArray2.default)(_ref5, 2),
|
|
666
|
-
key = _ref6[0],
|
|
667
|
-
value = _ref6[1];
|
|
668
|
-
|
|
669
|
-
return ['@mui/material/' + key, value];
|
|
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]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
670
12
|
}));
|
|
671
|
-
var
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
});
|
|
676
|
-
var FeatureDetails = /*#__PURE__*/(0, _react.lazy)(function () {
|
|
677
|
-
return Promise.resolve().then(function () {
|
|
678
|
-
return _interopRequireWildcard(require('./FeatureDetails'));
|
|
679
|
-
});
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
680
17
|
});
|
|
681
|
-
var
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
// this is all the stuff that the pluginManager re-exports for plugins to use
|
|
30
|
+
const react_1 = __importStar(require("react"));
|
|
31
|
+
const ReactDom = __importStar(require("react-dom"));
|
|
32
|
+
const mobx = __importStar(require("mobx"));
|
|
33
|
+
const mst = __importStar(require("mobx-state-tree"));
|
|
34
|
+
const mxreact = __importStar(require("mobx-react"));
|
|
35
|
+
const mui_1 = require("tss-react/mui");
|
|
36
|
+
const prop_types_1 = __importDefault(require("prop-types"));
|
|
37
|
+
const MUIStyles = __importStar(require("@mui/material/styles"));
|
|
38
|
+
const MUIUtils = __importStar(require("@mui/material/utils"));
|
|
39
|
+
const material_1 = require("@mui/material");
|
|
40
|
+
const x_data_grid_1 = require("@mui/x-data-grid");
|
|
41
|
+
// material-ui lab
|
|
42
|
+
const BaseAdapterExports = __importStar(require("../data_adapters/BaseAdapter"));
|
|
43
|
+
const Base1DViewModel_1 = __importDefault(require("../util/Base1DViewModel"));
|
|
44
|
+
const pluggableElementTypes = __importStar(require("../pluggableElementTypes"));
|
|
45
|
+
const ViewType_1 = __importDefault(require("../pluggableElementTypes/ViewType"));
|
|
46
|
+
const AdapterType_1 = __importDefault(require("../pluggableElementTypes/AdapterType"));
|
|
47
|
+
const DisplayType_1 = __importDefault(require("../pluggableElementTypes/DisplayType"));
|
|
48
|
+
const TrackType_1 = __importDefault(require("../pluggableElementTypes/TrackType"));
|
|
49
|
+
const WidgetType_1 = __importDefault(require("../pluggableElementTypes/WidgetType"));
|
|
50
|
+
const pluggableElementTypeModels = __importStar(require("../pluggableElementTypes/models"));
|
|
51
|
+
const ServerSideRendererType = __importStar(require("../pluggableElementTypes/renderers/ServerSideRendererType"));
|
|
52
|
+
const CircularChordRendererType_1 = __importDefault(require("../pluggableElementTypes/renderers/CircularChordRendererType"));
|
|
53
|
+
const BoxRendererType = __importStar(require("../pluggableElementTypes/renderers/BoxRendererType"));
|
|
54
|
+
const FeatureRendererType = __importStar(require("../pluggableElementTypes/renderers/FeatureRendererType"));
|
|
55
|
+
const RendererType = __importStar(require("../pluggableElementTypes/renderers/RendererType"));
|
|
56
|
+
const Configuration = __importStar(require("../configuration"));
|
|
57
|
+
const Plugin_1 = __importDefault(require("../Plugin"));
|
|
58
|
+
const coreUi = __importStar(require("../ui"));
|
|
59
|
+
const coreUtil = __importStar(require("../util"));
|
|
60
|
+
const coreColor = __importStar(require("../util/color"));
|
|
61
|
+
const coreLayouts = __importStar(require("../util/layouts"));
|
|
62
|
+
const trackUtils = __importStar(require("../util/tracks"));
|
|
63
|
+
const coreIo = __importStar(require("../util/io"));
|
|
64
|
+
const coreMstReflection = __importStar(require("../util/mst-reflection"));
|
|
65
|
+
const rxjs = __importStar(require("../util/rxjs"));
|
|
66
|
+
const mstTypes = __importStar(require("../util/types/mst"));
|
|
67
|
+
const list_1 = __importDefault(require("./list"));
|
|
68
|
+
const Entries = {
|
|
69
|
+
Accordion: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Accordion')))),
|
|
70
|
+
AccordionActions: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/AccordionActions')))),
|
|
71
|
+
AccordionDetails: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/AccordionDetails')))),
|
|
72
|
+
Alert: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Alert')))),
|
|
73
|
+
AlertTitle: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/AlertTitle')))),
|
|
74
|
+
Autocomplete: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Autocomplete')))),
|
|
75
|
+
Avatar: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Avatar')))),
|
|
76
|
+
AvatarGroup: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/AvatarGroup')))),
|
|
77
|
+
Backdrop: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Backdrop')))),
|
|
78
|
+
Badge: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Badge')))),
|
|
79
|
+
Box: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Box')))),
|
|
80
|
+
Breadcrumbs: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Breadcrumbs')))),
|
|
81
|
+
Button: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Button')))),
|
|
82
|
+
ButtonGroup: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ButtonGroup')))),
|
|
83
|
+
Card: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Card')))),
|
|
84
|
+
CardActions: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/CardActions')))),
|
|
85
|
+
CardActionArea: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/CardActionArea')))),
|
|
86
|
+
CardContent: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/CardContent')))),
|
|
87
|
+
CardHeader: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/CardHeader')))),
|
|
88
|
+
CardMedia: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/CardMedia')))),
|
|
89
|
+
CircularProgress: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/CircularProgress')))),
|
|
90
|
+
Collapse: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Collapse')))),
|
|
91
|
+
ClickAwayListener: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ClickAwayListener')))),
|
|
92
|
+
Chip: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Chip')))),
|
|
93
|
+
Checkbox: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Checkbox')))),
|
|
94
|
+
Container: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Container')))),
|
|
95
|
+
Dialog: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Dialog')))),
|
|
96
|
+
DialogActions: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/DialogActions')))),
|
|
97
|
+
DialogTitle: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/DialogTitle')))),
|
|
98
|
+
DialogContent: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/DialogContent')))),
|
|
99
|
+
DialogContentText: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/DialogContentText')))),
|
|
100
|
+
Divider: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Divider')))),
|
|
101
|
+
Drawer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Drawer')))),
|
|
102
|
+
Fab: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Fab')))),
|
|
103
|
+
Fade: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Fade')))),
|
|
104
|
+
FilledInput: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/FilledInput')))),
|
|
105
|
+
FormLabel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/FormLabel')))),
|
|
106
|
+
FormControl: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/FormControl')))),
|
|
107
|
+
FormControlLabel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/FormControlLabel')))),
|
|
108
|
+
FormHelperText: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/FormHelperText')))),
|
|
109
|
+
FormGroup: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/FormGroup')))),
|
|
110
|
+
Grid: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Grid')))),
|
|
111
|
+
Grow: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Grow')))),
|
|
112
|
+
Icon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Icon')))),
|
|
113
|
+
IconButton: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/IconButton')))),
|
|
114
|
+
Input: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Input')))),
|
|
115
|
+
InputBase: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/InputBase')))),
|
|
116
|
+
InputLabel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/InputLabel')))),
|
|
117
|
+
InputAdornment: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/InputAdornment')))),
|
|
118
|
+
Link: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Link')))),
|
|
119
|
+
LinearProgress: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/LinearProgress')))),
|
|
120
|
+
List: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/List')))),
|
|
121
|
+
ListItem: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ListItem')))),
|
|
122
|
+
ListItemAvatar: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ListItemAvatar')))),
|
|
123
|
+
ListItemSecondaryAction: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ListItemSecondaryAction')))),
|
|
124
|
+
ListItemIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ListItemIcon')))),
|
|
125
|
+
ListSubheader: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ListSubheader')))),
|
|
126
|
+
ListItemText: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ListItemText')))),
|
|
127
|
+
Menu: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Menu')))),
|
|
128
|
+
MenuItem: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/MenuItem')))),
|
|
129
|
+
MenuList: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/MenuList')))),
|
|
130
|
+
Modal: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Modal')))),
|
|
131
|
+
NativeSelect: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/NativeSelect')))),
|
|
132
|
+
OutlinedInput: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/OutlinedInput')))),
|
|
133
|
+
Pagination: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Pagination')))),
|
|
134
|
+
PaginationItem: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/PaginationItem')))),
|
|
135
|
+
Paper: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Paper')))),
|
|
136
|
+
Popover: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Popover')))),
|
|
137
|
+
Popper: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Popper')))),
|
|
138
|
+
Portal: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Portal')))),
|
|
139
|
+
Radio: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Radio')))),
|
|
140
|
+
RadioGroup: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/RadioGroup')))),
|
|
141
|
+
Rating: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Rating')))),
|
|
142
|
+
ScopedCssBaseline: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ScopedCssBaseline')))),
|
|
143
|
+
Select: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Select')))),
|
|
144
|
+
Skeleton: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Skeleton')))),
|
|
145
|
+
Slider: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Slider')))),
|
|
146
|
+
Snackbar: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Snackbar')))),
|
|
147
|
+
SnackbarContent: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/SnackbarContent')))),
|
|
148
|
+
SpeedDial: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/SpeedDial')))),
|
|
149
|
+
SpeedDialAction: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/SpeedDialAction')))),
|
|
150
|
+
SpeedDialIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/SpeedDialIcon')))),
|
|
151
|
+
Stack: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Stack')))),
|
|
152
|
+
Step: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Step')))),
|
|
153
|
+
StepButton: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/StepButton')))),
|
|
154
|
+
StepConnector: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/StepConnector')))),
|
|
155
|
+
StepLabel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/StepLabel')))),
|
|
156
|
+
StepIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/StepIcon')))),
|
|
157
|
+
Stepper: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Stepper')))),
|
|
158
|
+
SvgIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/SvgIcon')))),
|
|
159
|
+
Switch: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Switch')))),
|
|
160
|
+
Tab: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Tab')))),
|
|
161
|
+
Table: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Table')))),
|
|
162
|
+
TableBody: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableBody')))),
|
|
163
|
+
TableCell: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableCell')))),
|
|
164
|
+
TableContainer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableContainer')))),
|
|
165
|
+
TableFooter: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableFooter')))),
|
|
166
|
+
TableHead: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableHead')))),
|
|
167
|
+
TablePagination: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TablePagination')))),
|
|
168
|
+
TableRow: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableRow')))),
|
|
169
|
+
TableSortLabel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TableSortLabel')))),
|
|
170
|
+
Tabs: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Tabs')))),
|
|
171
|
+
TextField: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TextField')))),
|
|
172
|
+
TextareaAutosize: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/TextareaAutosize')))),
|
|
173
|
+
ToggleButton: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ToggleButton')))),
|
|
174
|
+
ToggleButtonGroup: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/ToggleButtonGroup')))),
|
|
175
|
+
Toolbar: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Toolbar')))),
|
|
176
|
+
Tooltip: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Tooltip')))),
|
|
177
|
+
Typography: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/material/Typography')))),
|
|
178
|
+
};
|
|
179
|
+
const LazyMUICore = Object.fromEntries(Object.entries(Entries).map(([key, ReactComponent]) => [
|
|
180
|
+
key,
|
|
181
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
182
|
+
(props) => (react_1.default.createElement(react_1.Suspense, { fallback: react_1.default.createElement("div", null) },
|
|
183
|
+
react_1.default.createElement(ReactComponent, { ...props }))),
|
|
184
|
+
]));
|
|
185
|
+
const MaterialPrefixMUI = Object.fromEntries(Object.entries(LazyMUICore).map(([key, value]) => [
|
|
186
|
+
'@material-ui/core/' + key,
|
|
187
|
+
value,
|
|
188
|
+
]));
|
|
189
|
+
const MuiPrefixMUI = Object.fromEntries(Object.entries(LazyMUICore).map(([key, value]) => [
|
|
190
|
+
'@mui/material/' + key,
|
|
191
|
+
value,
|
|
192
|
+
]));
|
|
193
|
+
const Attributes = (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('./Attributes'))));
|
|
194
|
+
const FeatureDetails = (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('./FeatureDetails'))));
|
|
195
|
+
const BaseCard = (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('./BaseCard'))));
|
|
688
196
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
197
|
+
const DataGridEntries = {
|
|
198
|
+
DataGrid: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({ default: module.DataGrid }))),
|
|
199
|
+
GridActionsCellItem: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
200
|
+
default: module.GridActionsCellItem,
|
|
201
|
+
}))),
|
|
202
|
+
GridAddIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
203
|
+
default: module.GridAddIcon,
|
|
204
|
+
}))),
|
|
205
|
+
GridArrowDownwardIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
206
|
+
default: module.GridArrowDownwardIcon,
|
|
207
|
+
}))),
|
|
208
|
+
GridArrowUpwardIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
209
|
+
default: module.GridArrowUpwardIcon,
|
|
210
|
+
}))),
|
|
211
|
+
GridAutoSizer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
212
|
+
default: module.GridAutoSizer,
|
|
213
|
+
}))),
|
|
214
|
+
GridCellCheckboxForwardRef: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
215
|
+
default: module.GridCellCheckboxForwardRef,
|
|
216
|
+
}))),
|
|
217
|
+
GridCellCheckboxRenderer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
218
|
+
default: module.GridCellCheckboxRenderer,
|
|
219
|
+
}))),
|
|
220
|
+
GridCheckCircleIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
221
|
+
default: module.GridCheckCircleIcon,
|
|
222
|
+
}))),
|
|
223
|
+
GridCheckIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
224
|
+
default: module.GridCheckIcon,
|
|
225
|
+
}))),
|
|
226
|
+
GridCloseIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
227
|
+
default: module.GridCloseIcon,
|
|
228
|
+
}))),
|
|
229
|
+
GridColumnHeaderSeparator: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
230
|
+
default: module.GridColumnHeaderSeparator,
|
|
231
|
+
}))),
|
|
232
|
+
GridColumnHeaderSortIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
233
|
+
default: module.GridColumnHeaderSortIcon,
|
|
234
|
+
}))),
|
|
235
|
+
GridColumnIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
236
|
+
default: module.GridColumnIcon,
|
|
237
|
+
}))),
|
|
238
|
+
GridColumnMenu: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
239
|
+
default: module.GridColumnMenu,
|
|
240
|
+
}))),
|
|
241
|
+
GridColumnMenuContainer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
242
|
+
default: module.GridColumnMenuContainer,
|
|
243
|
+
}))),
|
|
244
|
+
GridDragIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
245
|
+
default: module.GridDragIcon,
|
|
246
|
+
}))),
|
|
247
|
+
GridExpandMoreIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
248
|
+
default: module.GridExpandMoreIcon,
|
|
249
|
+
}))),
|
|
250
|
+
GridFilterAltIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
251
|
+
default: module.GridFilterAltIcon,
|
|
252
|
+
}))),
|
|
253
|
+
GridFilterForm: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
254
|
+
default: module.GridFilterForm,
|
|
255
|
+
}))),
|
|
256
|
+
GridFilterListIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
257
|
+
default: module.GridFilterListIcon,
|
|
258
|
+
}))),
|
|
259
|
+
GridFilterPanel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
260
|
+
default: module.GridFilterPanel,
|
|
261
|
+
}))),
|
|
262
|
+
GridFooter: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({ default: module.GridFooter }))),
|
|
263
|
+
GridFooterContainer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
264
|
+
default: module.GridFooterContainer,
|
|
265
|
+
}))),
|
|
266
|
+
GridHeader: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({ default: module.GridHeader }))),
|
|
267
|
+
GridHeaderCheckbox: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
268
|
+
default: module.GridHeaderCheckbox,
|
|
269
|
+
}))),
|
|
270
|
+
GridKeyboardArrowRight: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
271
|
+
default: module.GridKeyboardArrowRight,
|
|
272
|
+
}))),
|
|
273
|
+
GridLoadIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
274
|
+
default: module.GridLoadIcon,
|
|
275
|
+
}))),
|
|
276
|
+
GridLoadingOverlay: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
277
|
+
default: module.GridLoadingOverlay,
|
|
278
|
+
}))),
|
|
279
|
+
GridMenuIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
280
|
+
default: module.GridMenuIcon,
|
|
281
|
+
}))),
|
|
282
|
+
GridMoreVertIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
283
|
+
default: module.GridMoreVertIcon,
|
|
284
|
+
}))),
|
|
285
|
+
GridNoRowsOverlay: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
286
|
+
default: module.GridNoRowsOverlay,
|
|
287
|
+
}))),
|
|
288
|
+
GridOverlay: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
289
|
+
default: module.GridOverlay,
|
|
290
|
+
}))),
|
|
291
|
+
GridPagination: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
292
|
+
default: module.GridPagination,
|
|
293
|
+
}))),
|
|
294
|
+
GridPanel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({ default: module.GridPanel }))),
|
|
295
|
+
GridPanelWrapper: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
296
|
+
default: module.GridPanelWrapper,
|
|
297
|
+
}))),
|
|
298
|
+
GridPreferencesPanel: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
299
|
+
default: module.GridPreferencesPanel,
|
|
300
|
+
}))),
|
|
301
|
+
GridRemoveIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
302
|
+
default: module.GridRemoveIcon,
|
|
303
|
+
}))),
|
|
304
|
+
GridRoot: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({ default: module.GridRoot }))),
|
|
305
|
+
GridRowCount: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
306
|
+
default: module.GridRowCount,
|
|
307
|
+
}))),
|
|
308
|
+
GridSaveAltIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
309
|
+
default: module.GridSaveAltIcon,
|
|
310
|
+
}))),
|
|
311
|
+
GridScrollArea: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
312
|
+
default: module.GridScrollArea,
|
|
313
|
+
}))),
|
|
314
|
+
GridSearchIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
315
|
+
default: module.GridSearchIcon,
|
|
316
|
+
}))),
|
|
317
|
+
GridSelectedRowCount: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
318
|
+
default: module.GridSelectedRowCount,
|
|
319
|
+
}))),
|
|
320
|
+
GridSeparatorIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
321
|
+
default: module.GridSeparatorIcon,
|
|
322
|
+
}))),
|
|
323
|
+
GridTableRowsIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
324
|
+
default: module.GridTableRowsIcon,
|
|
325
|
+
}))),
|
|
326
|
+
GridToolbar: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
327
|
+
default: module.GridToolbar,
|
|
328
|
+
}))),
|
|
329
|
+
GridToolbarColumnsButton: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
330
|
+
default: module.GridToolbarColumnsButton,
|
|
331
|
+
}))),
|
|
332
|
+
GridToolbarContainer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
333
|
+
default: module.GridToolbarContainer,
|
|
334
|
+
}))),
|
|
335
|
+
GridToolbarDensitySelector: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
336
|
+
default: module.GridToolbarDensitySelector,
|
|
337
|
+
}))),
|
|
338
|
+
GridToolbarExport: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
339
|
+
default: module.GridToolbarExport,
|
|
340
|
+
}))),
|
|
341
|
+
GridToolbarExportContainer: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
342
|
+
default: module.GridToolbarExportContainer,
|
|
343
|
+
}))),
|
|
344
|
+
GridToolbarFilterButton: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
345
|
+
default: module.GridToolbarFilterButton,
|
|
346
|
+
}))),
|
|
347
|
+
GridTripleDotsVerticalIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
348
|
+
default: module.GridTripleDotsVerticalIcon,
|
|
349
|
+
}))),
|
|
350
|
+
GridViewHeadlineIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
351
|
+
default: module.GridViewHeadlineIcon,
|
|
352
|
+
}))),
|
|
353
|
+
GridViewStreamIcon: (0, react_1.lazy)(() => Promise.resolve().then(() => __importStar(require('@mui/x-data-grid'))).then(module => ({
|
|
354
|
+
default: module.GridViewStreamIcon,
|
|
355
|
+
}))),
|
|
714
356
|
};
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
mobx: mobx,
|
|
718
|
-
'mobx-state-tree': mst,
|
|
719
|
-
react: _react.default,
|
|
720
|
-
'react-dom': ReactDom,
|
|
721
|
-
'mobx-react': mxreact,
|
|
722
|
-
'@mui/x-data-grid': {
|
|
723
|
-
DataGrid: DataGrid,
|
|
724
|
-
useGridApiContext: _xDataGrid.useGridApiContext,
|
|
725
|
-
useGridApiRef: _xDataGrid.useGridApiRef,
|
|
726
|
-
useGridRootProps: _xDataGrid.useGridRootProps
|
|
727
|
-
},
|
|
728
|
-
// special case so plugins can easily use @mui/icons-material; don't remove
|
|
729
|
-
'@mui/material/utils': MUIUtils,
|
|
730
|
-
'@material-ui/core/utils': MUIUtils,
|
|
731
|
-
'tss-react/mui': {
|
|
732
|
-
makeStyles: _mui.makeStyles
|
|
733
|
-
},
|
|
734
|
-
'@material-ui/core': _objectSpread(_objectSpread({}, LazyMUICore), {}, {
|
|
735
|
-
useTheme: _material.useTheme,
|
|
736
|
-
alpha: MUIStyles.alpha,
|
|
357
|
+
const LazyDataGridComponents = Object.fromEntries(Object.entries(DataGridEntries).map(([key, ReactComponent]) => [
|
|
358
|
+
key,
|
|
737
359
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
360
|
+
(props) => (react_1.default.createElement(react_1.Suspense, { fallback: react_1.default.createElement("div", null) },
|
|
361
|
+
react_1.default.createElement(ReactComponent, { ...props }))),
|
|
362
|
+
]));
|
|
363
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
364
|
+
const LazyAttributes = (props) => (react_1.default.createElement(react_1.Suspense, { fallback: react_1.default.createElement("div", null) },
|
|
365
|
+
react_1.default.createElement(Attributes, { ...props })));
|
|
366
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
367
|
+
const LazyFeatureDetails = (props) => (react_1.default.createElement(react_1.Suspense, { fallback: react_1.default.createElement("div", null) },
|
|
368
|
+
react_1.default.createElement(FeatureDetails, { ...props })));
|
|
369
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
370
|
+
const LazyBaseCard = (props) => (react_1.default.createElement(react_1.Suspense, { fallback: react_1.default.createElement("div", null) },
|
|
371
|
+
react_1.default.createElement(BaseCard, { ...props })));
|
|
372
|
+
const libs = {
|
|
373
|
+
mobx,
|
|
374
|
+
'mobx-state-tree': mst,
|
|
375
|
+
react: react_1.default,
|
|
376
|
+
'react-dom': ReactDom,
|
|
377
|
+
'mobx-react': mxreact,
|
|
378
|
+
'@mui/x-data-grid': {
|
|
379
|
+
useGridApiContext: x_data_grid_1.useGridApiContext,
|
|
380
|
+
useGridApiRef: x_data_grid_1.useGridApiRef,
|
|
381
|
+
useGridRootProps: x_data_grid_1.useGridRootProps,
|
|
382
|
+
...LazyDataGridComponents,
|
|
383
|
+
},
|
|
384
|
+
// special case so plugins can easily use @mui/icons-material; don't remove
|
|
385
|
+
'@mui/material/utils': MUIUtils,
|
|
386
|
+
'@material-ui/core/utils': MUIUtils,
|
|
387
|
+
'tss-react/mui': { makeStyles: mui_1.makeStyles },
|
|
388
|
+
'@material-ui/core': {
|
|
389
|
+
...LazyMUICore,
|
|
390
|
+
useTheme: material_1.useTheme,
|
|
391
|
+
alpha: MUIStyles.alpha,
|
|
392
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
393
|
+
makeStyles: (args) => {
|
|
394
|
+
const useStyles = (0, mui_1.makeStyles)()(args);
|
|
395
|
+
return () => useStyles().classes;
|
|
396
|
+
},
|
|
397
|
+
},
|
|
398
|
+
'@mui/material': LazyMUICore,
|
|
399
|
+
'prop-types': prop_types_1.default,
|
|
400
|
+
// end special case
|
|
401
|
+
// material-ui subcomponents, should get rid of these
|
|
402
|
+
'@mui/material/styles': MUIStyles,
|
|
403
|
+
'@material-ui/core/styles': MUIStyles,
|
|
404
|
+
...MaterialPrefixMUI,
|
|
405
|
+
...MuiPrefixMUI,
|
|
406
|
+
// these are core in @mui/material, but used to be in @material-ui/lab
|
|
407
|
+
'@material-ui/lab/ToggleButton': Entries.ToggleButton,
|
|
408
|
+
'@material-ui/lab/ToggleButtonGroup': Entries.ToggleButtonGroup,
|
|
409
|
+
'@material-ui/lab/Autocomplete': Entries.Autocomplete,
|
|
410
|
+
'@material-ui/lab/Alert': Entries.Alert,
|
|
411
|
+
'@material-ui/lab': {
|
|
412
|
+
Alert: Entries.Alert,
|
|
413
|
+
Autocomplete: Entries.Autocomplete,
|
|
414
|
+
ToggleButton: Entries.ToggleButton,
|
|
415
|
+
ToggleButtonGroup: Entries.ToggleButtonGroup,
|
|
416
|
+
},
|
|
417
|
+
'@jbrowse/core/Plugin': Plugin_1.default,
|
|
418
|
+
'@jbrowse/core/pluggableElementTypes': pluggableElementTypes,
|
|
419
|
+
'@jbrowse/core/pluggableElementTypes/ViewType': ViewType_1.default,
|
|
420
|
+
'@jbrowse/core/pluggableElementTypes/AdapterType': AdapterType_1.default,
|
|
421
|
+
'@jbrowse/core/pluggableElementTypes/DisplayType': DisplayType_1.default,
|
|
422
|
+
'@jbrowse/core/pluggableElementTypes/TrackType': TrackType_1.default,
|
|
423
|
+
'@jbrowse/core/pluggableElementTypes/WidgetType': WidgetType_1.default,
|
|
424
|
+
'@jbrowse/core/pluggableElementTypes/models': pluggableElementTypeModels,
|
|
425
|
+
'@jbrowse/core/pluggableElementTypes/renderers/ServerSideRendererType': ServerSideRendererType,
|
|
426
|
+
'@jbrowse/core/pluggableElementTypes/renderers/CircularChordRendererType': CircularChordRendererType_1.default,
|
|
427
|
+
'@jbrowse/core/pluggableElementTypes/renderers/BoxRendererType': BoxRendererType,
|
|
428
|
+
'@jbrowse/core/pluggableElementTypes/renderers/FeatureRendererType': FeatureRendererType,
|
|
429
|
+
'@jbrowse/core/pluggableElementTypes/renderers/RendererType': RendererType,
|
|
430
|
+
'@jbrowse/core/configuration': Configuration,
|
|
431
|
+
'@jbrowse/core/util/types/mst': mstTypes,
|
|
432
|
+
'@jbrowse/core/ui': coreUi,
|
|
433
|
+
'@jbrowse/core/util': coreUtil,
|
|
434
|
+
'@jbrowse/core/util/color': coreColor,
|
|
435
|
+
'@jbrowse/core/util/layouts': coreLayouts,
|
|
436
|
+
'@jbrowse/core/util/tracks': trackUtils,
|
|
437
|
+
'@jbrowse/core/util/Base1DViewModel': Base1DViewModel_1.default,
|
|
438
|
+
'@jbrowse/core/util/io': coreIo,
|
|
439
|
+
'@jbrowse/core/util/mst-reflection': coreMstReflection,
|
|
440
|
+
'@jbrowse/core/util/rxjs': rxjs,
|
|
441
|
+
'@jbrowse/core/BaseFeatureWidget/BaseFeatureDetail': {
|
|
442
|
+
Attributes: LazyAttributes,
|
|
443
|
+
FeatureDetails: LazyFeatureDetails,
|
|
444
|
+
BaseCard: LazyBaseCard,
|
|
445
|
+
},
|
|
446
|
+
'@jbrowse/core/data_adapters/BaseAdapter': BaseAdapterExports,
|
|
447
|
+
};
|
|
448
|
+
const libsList = Array.from(Object.keys(libs));
|
|
449
|
+
// make sure that all the items in the ReExports/list array (used by build
|
|
450
|
+
// systems and such) are included here, and vice versa
|
|
451
|
+
const inLibsOnly = libsList.filter(mod => !list_1.default.includes(mod));
|
|
452
|
+
if (inLibsOnly.length) {
|
|
453
|
+
throw new Error(`The following modules are in the re-exports list, but not the modules libs: ${inLibsOnly.join(', ')}`);
|
|
454
|
+
}
|
|
455
|
+
const inReExportsOnly = list_1.default.filter(mod => !libsList.includes(mod));
|
|
456
|
+
if (inReExportsOnly.length) {
|
|
457
|
+
throw new Error(`The following modules are in the modules libs, but not the re-exports list: ${inReExportsOnly.join(', ')}`);
|
|
458
|
+
}
|
|
459
|
+
exports.default = libs;
|