@vitessce/statistical-plots 3.0.0 → 3.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/dist/index.js +190 -169
- package/dist-tsc/CellSetExpressionPlotSubscriber.d.ts.map +1 -1
- package/dist-tsc/CellSetExpressionPlotSubscriber.js +8 -4
- package/dist-tsc/CellSetSizesPlotSubscriber.d.ts.map +1 -1
- package/dist-tsc/CellSetSizesPlotSubscriber.js +3 -5
- package/dist-tsc/ExpressionHistogramSubscriber.d.ts.map +1 -1
- package/dist-tsc/ExpressionHistogramSubscriber.js +4 -2
- package/package.json +8 -8
- package/src/CellSetExpressionPlotSubscriber.js +11 -7
- package/src/CellSetSizesPlotSubscriber.js +4 -6
- package/src/ExpressionHistogramSubscriber.js +7 -3
    
        package/dist/index.js
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            import * as React from "react";
         | 
| 2 2 | 
             
            import React__default, { useMemo, Suspense, useCallback, useState, useEffect } from "react";
         | 
| 3 | 
            -
            import { usePlotOptionsStyles, OptionsContainer, OptionSelect, useLoaders, useCoordination, useGridItemSize,  | 
| 3 | 
            +
            import { usePlotOptionsStyles, OptionsContainer, OptionSelect, useLoaders, useCoordination, useGridItemSize, useFeatureSelection, useFeatureLabelsData, useObsFeatureMatrixIndices, useObsSetsData, useReady, useUrls, TitleInfo, useObsFeatureMatrixData } from "@vitessce/vit-s";
         | 
| 4 4 | 
             
            import * as ReactDOM from "react-dom";
         | 
| 5 5 | 
             
            import ReactDOM__default from "react-dom";
         | 
| 6 6 | 
             
            var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
         | 
| @@ -1016,6 +1016,10 @@ const FileType$1 = { | |
| 1016 1016 | 
             
              ANNDATA_EXPRESSION_MATRIX_ZARR: "anndata-expression-matrix.zarr"
         | 
| 1017 1017 | 
             
            };
         | 
| 1018 1018 | 
             
            const CoordinationType$1 = {
         | 
| 1019 | 
            +
              // Meta coordination scopes
         | 
| 1020 | 
            +
              META_COORDINATION_SCOPES: "metaCoordinationScopes",
         | 
| 1021 | 
            +
              META_COORDINATION_SCOPES_BY: "metaCoordinationScopesBy",
         | 
| 1022 | 
            +
              // Other coordination scopes
         | 
| 1019 1023 | 
             
              DATASET: "dataset",
         | 
| 1020 1024 | 
             
              // Entity types
         | 
| 1021 1025 | 
             
              OBS_TYPE: "obsType",
         | 
| @@ -17924,7 +17928,24 @@ function elementTypeAcceptingRef(props, propName, componentName, location, propF | |
| 17924 17928 | 
             
              return null;
         | 
| 17925 17929 | 
             
            }
         | 
| 17926 17930 | 
             
            const elementTypeAcceptingRef$1 = chainPropTypes(propTypesExports.elementType, elementTypeAcceptingRef);
         | 
| 17927 | 
            -
            function  | 
| 17931 | 
            +
            function _toPrimitive(input, hint) {
         | 
| 17932 | 
            +
              if (_typeof$2(input) !== "object" || input === null)
         | 
| 17933 | 
            +
                return input;
         | 
| 17934 | 
            +
              var prim = input[Symbol.toPrimitive];
         | 
| 17935 | 
            +
              if (prim !== void 0) {
         | 
| 17936 | 
            +
                var res = prim.call(input, hint || "default");
         | 
| 17937 | 
            +
                if (_typeof$2(res) !== "object")
         | 
| 17938 | 
            +
                  return res;
         | 
| 17939 | 
            +
                throw new TypeError("@@toPrimitive must return a primitive value.");
         | 
| 17940 | 
            +
              }
         | 
| 17941 | 
            +
              return (hint === "string" ? String : Number)(input);
         | 
| 17942 | 
            +
            }
         | 
| 17943 | 
            +
            function _toPropertyKey(arg) {
         | 
| 17944 | 
            +
              var key2 = _toPrimitive(arg, "string");
         | 
| 17945 | 
            +
              return _typeof$2(key2) === "symbol" ? key2 : String(key2);
         | 
| 17946 | 
            +
            }
         | 
| 17947 | 
            +
            function _defineProperty$4(obj, key2, value2) {
         | 
| 17948 | 
            +
              key2 = _toPropertyKey(key2);
         | 
| 17928 17949 | 
             
              if (key2 in obj) {
         | 
| 17929 17950 | 
             
                Object.defineProperty(obj, key2, {
         | 
| 17930 17951 | 
             
                  value: value2,
         | 
| @@ -17939,7 +17960,7 @@ function _defineProperty$3(obj, key2, value2) { | |
| 17939 17960 | 
             
            }
         | 
| 17940 17961 | 
             
            var specialProperty = "exact-prop: ";
         | 
| 17941 17962 | 
             
            function exactProp(propTypes2) {
         | 
| 17942 | 
            -
              return _extends$2({}, propTypes2, _defineProperty$ | 
| 17963 | 
            +
              return _extends$2({}, propTypes2, _defineProperty$4({}, specialProperty, function(props) {
         | 
| 17943 17964 | 
             
                var unsupportedProps = Object.keys(props).filter(function(prop) {
         | 
| 17944 17965 | 
             
                  return !propTypes2.hasOwnProperty(prop);
         | 
| 17945 17966 | 
             
                });
         | 
| @@ -18321,6 +18342,19 @@ function lighten(color2, coefficient) { | |
| 18321 18342 | 
             
              }
         | 
| 18322 18343 | 
             
              return recomposeColor(color2);
         | 
| 18323 18344 | 
             
            }
         | 
| 18345 | 
            +
            function _defineProperty$3(obj, key2, value2) {
         | 
| 18346 | 
            +
              if (key2 in obj) {
         | 
| 18347 | 
            +
                Object.defineProperty(obj, key2, {
         | 
| 18348 | 
            +
                  value: value2,
         | 
| 18349 | 
            +
                  enumerable: true,
         | 
| 18350 | 
            +
                  configurable: true,
         | 
| 18351 | 
            +
                  writable: true
         | 
| 18352 | 
            +
                });
         | 
| 18353 | 
            +
              } else {
         | 
| 18354 | 
            +
                obj[key2] = value2;
         | 
| 18355 | 
            +
              }
         | 
| 18356 | 
            +
              return obj;
         | 
| 18357 | 
            +
            }
         | 
| 18324 18358 | 
             
            function _objectWithoutPropertiesLoose$1(source2, excluded) {
         | 
| 18325 18359 | 
             
              if (source2 == null)
         | 
| 18326 18360 | 
             
                return {};
         | 
| @@ -18353,6 +18387,20 @@ function _objectWithoutProperties(source2, excluded) { | |
| 18353 18387 | 
             
              }
         | 
| 18354 18388 | 
             
              return target2;
         | 
| 18355 18389 | 
             
            }
         | 
| 18390 | 
            +
            function _extends$1() {
         | 
| 18391 | 
            +
              _extends$1 = Object.assign ? Object.assign.bind() : function(target2) {
         | 
| 18392 | 
            +
                for (var i = 1; i < arguments.length; i++) {
         | 
| 18393 | 
            +
                  var source2 = arguments[i];
         | 
| 18394 | 
            +
                  for (var key2 in source2) {
         | 
| 18395 | 
            +
                    if (Object.prototype.hasOwnProperty.call(source2, key2)) {
         | 
| 18396 | 
            +
                      target2[key2] = source2[key2];
         | 
| 18397 | 
            +
                    }
         | 
| 18398 | 
            +
                  }
         | 
| 18399 | 
            +
                }
         | 
| 18400 | 
            +
                return target2;
         | 
| 18401 | 
            +
              };
         | 
| 18402 | 
            +
              return _extends$1.apply(this, arguments);
         | 
| 18403 | 
            +
            }
         | 
| 18356 18404 | 
             
            var keys$4 = ["xs", "sm", "md", "lg", "xl"];
         | 
| 18357 18405 | 
             
            function createBreakpoints(breakpoints) {
         | 
| 18358 18406 | 
             
              var _breakpoints$values = breakpoints.values, values2 = _breakpoints$values === void 0 ? {
         | 
| @@ -18395,7 +18443,7 @@ function createBreakpoints(breakpoints) { | |
| 18395 18443 | 
             
                }
         | 
| 18396 18444 | 
             
                return values2[key2];
         | 
| 18397 18445 | 
             
              }
         | 
| 18398 | 
            -
              return _extends$ | 
| 18446 | 
            +
              return _extends$1({
         | 
| 18399 18447 | 
             
                keys: keys$4,
         | 
| 18400 18448 | 
             
                values: values2,
         | 
| 18401 18449 | 
             
                up,
         | 
| @@ -18407,14 +18455,14 @@ function createBreakpoints(breakpoints) { | |
| 18407 18455 | 
             
            }
         | 
| 18408 18456 | 
             
            function createMixins(breakpoints, spacing, mixins) {
         | 
| 18409 18457 | 
             
              var _toolbar;
         | 
| 18410 | 
            -
              return _extends$ | 
| 18458 | 
            +
              return _extends$1({
         | 
| 18411 18459 | 
             
                gutters: function gutters() {
         | 
| 18412 18460 | 
             
                  var styles16 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
         | 
| 18413 18461 | 
             
                  console.warn(["Material-UI: theme.mixins.gutters() is deprecated.", "You can use the source of the mixin directly:", "\n      paddingLeft: theme.spacing(2),\n      paddingRight: theme.spacing(2),\n      [theme.breakpoints.up('sm')]: {\n        paddingLeft: theme.spacing(3),\n        paddingRight: theme.spacing(3),\n      },\n      "].join("\n"));
         | 
| 18414 | 
            -
                  return _extends$ | 
| 18462 | 
            +
                  return _extends$1({
         | 
| 18415 18463 | 
             
                    paddingLeft: spacing(2),
         | 
| 18416 18464 | 
             
                    paddingRight: spacing(2)
         | 
| 18417 | 
            -
                  }, styles16, _defineProperty$3({}, breakpoints.up("sm"), _extends$ | 
| 18465 | 
            +
                  }, styles16, _defineProperty$3({}, breakpoints.up("sm"), _extends$1({
         | 
| 18418 18466 | 
             
                    paddingLeft: spacing(3),
         | 
| 18419 18467 | 
             
                    paddingRight: spacing(3)
         | 
| 18420 18468 | 
             
                  }, styles16[breakpoints.up("sm")])));
         | 
| @@ -18548,7 +18596,7 @@ function createPalette(palette) { | |
| 18548 18596 | 
             
                var mainShade = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 500;
         | 
| 18549 18597 | 
             
                var lightShade = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 300;
         | 
| 18550 18598 | 
             
                var darkShade = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : 700;
         | 
| 18551 | 
            -
                color2 = _extends$ | 
| 18599 | 
            +
                color2 = _extends$1({}, color2);
         | 
| 18552 18600 | 
             
                if (!color2.main && color2[mainShade]) {
         | 
| 18553 18601 | 
             
                  color2.main = color2[mainShade];
         | 
| 18554 18602 | 
             
                }
         | 
| @@ -18574,7 +18622,7 @@ function createPalette(palette) { | |
| 18574 18622 | 
             
                  console.error("Material-UI: The palette type `".concat(type2, "` is not supported."));
         | 
| 18575 18623 | 
             
                }
         | 
| 18576 18624 | 
             
              }
         | 
| 18577 | 
            -
              var paletteOutput = deepmerge(_extends$ | 
| 18625 | 
            +
              var paletteOutput = deepmerge(_extends$1({
         | 
| 18578 18626 | 
             
                // A collection of common colors.
         | 
| 18579 18627 | 
             
                common: common$1,
         | 
| 18580 18628 | 
             
                // The palette type, can be light or dark.
         | 
| @@ -18639,7 +18687,7 @@ function createTypography(palette, typography) { | |
| 18639 18687 | 
             
                return "".concat(size / htmlFontSize * coef, "rem");
         | 
| 18640 18688 | 
             
              };
         | 
| 18641 18689 | 
             
              var buildVariant = function buildVariant2(fontWeight, size, lineHeight2, letterSpacing, casing) {
         | 
| 18642 | 
            -
                return _extends$ | 
| 18690 | 
            +
                return _extends$1({
         | 
| 18643 18691 | 
             
                  fontFamily: fontFamily2,
         | 
| 18644 18692 | 
             
                  fontWeight,
         | 
| 18645 18693 | 
             
                  fontSize: pxToRem(size),
         | 
| @@ -18664,7 +18712,7 @@ function createTypography(palette, typography) { | |
| 18664 18712 | 
             
                caption: buildVariant(fontWeightRegular, 12, 1.66, 0.4),
         | 
| 18665 18713 | 
             
                overline: buildVariant(fontWeightRegular, 12, 2.66, 1, caseAllCaps)
         | 
| 18666 18714 | 
             
              };
         | 
| 18667 | 
            -
              return deepmerge(_extends$ | 
| 18715 | 
            +
              return deepmerge(_extends$1({
         | 
| 18668 18716 | 
             
                htmlFontSize,
         | 
| 18669 18717 | 
             
                pxToRem,
         | 
| 18670 18718 | 
             
                round: roundWithDeprecationWarning,
         | 
| @@ -18729,6 +18777,14 @@ function _nonIterableSpread$1() { | |
| 18729 18777 | 
             
            function _toConsumableArray$1(arr) {
         | 
| 18730 18778 | 
             
              return _arrayWithoutHoles$1(arr) || _iterableToArray$1(arr) || _unsupportedIterableToArray$3(arr) || _nonIterableSpread$1();
         | 
| 18731 18779 | 
             
            }
         | 
| 18780 | 
            +
            function _typeof$1(obj) {
         | 
| 18781 | 
            +
              "@babel/helpers - typeof";
         | 
| 18782 | 
            +
              return _typeof$1 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) {
         | 
| 18783 | 
            +
                return typeof obj2;
         | 
| 18784 | 
            +
              } : function(obj2) {
         | 
| 18785 | 
            +
                return obj2 && "function" == typeof Symbol && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
         | 
| 18786 | 
            +
              }, _typeof$1(obj);
         | 
| 18787 | 
            +
            }
         | 
| 18732 18788 | 
             
            function _arrayWithHoles(arr) {
         | 
| 18733 18789 | 
             
              if (Array.isArray(arr))
         | 
| 18734 18790 | 
             
                return arr;
         | 
| @@ -19050,50 +19106,12 @@ function warning(condition, message) { | |
| 19050 19106 | 
             
                }
         | 
| 19051 19107 | 
             
              }
         | 
| 19052 19108 | 
             
            }
         | 
| 19053 | 
            -
            function  | 
| 19054 | 
            -
              _extends$1 = Object.assign ? Object.assign.bind() : function(target2) {
         | 
| 19055 | 
            -
                for (var i = 1; i < arguments.length; i++) {
         | 
| 19056 | 
            -
                  var source2 = arguments[i];
         | 
| 19057 | 
            -
                  for (var key2 in source2) {
         | 
| 19058 | 
            -
                    if (Object.prototype.hasOwnProperty.call(source2, key2)) {
         | 
| 19059 | 
            -
                      target2[key2] = source2[key2];
         | 
| 19060 | 
            -
                    }
         | 
| 19061 | 
            -
                  }
         | 
| 19062 | 
            -
                }
         | 
| 19063 | 
            -
                return target2;
         | 
| 19064 | 
            -
              };
         | 
| 19065 | 
            -
              return _extends$1.apply(this, arguments);
         | 
| 19066 | 
            -
            }
         | 
| 19067 | 
            -
            var _typeof$1 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function(obj) {
         | 
| 19109 | 
            +
            var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function(obj) {
         | 
| 19068 19110 | 
             
              return typeof obj;
         | 
| 19069 19111 | 
             
            } : function(obj) {
         | 
| 19070 19112 | 
             
              return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
         | 
| 19071 19113 | 
             
            };
         | 
| 19072 | 
            -
            var isBrowser = (typeof window === "undefined" ? "undefined" : _typeof | 
| 19073 | 
            -
            function _typeof(obj) {
         | 
| 19074 | 
            -
              "@babel/helpers - typeof";
         | 
| 19075 | 
            -
              return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) {
         | 
| 19076 | 
            -
                return typeof obj2;
         | 
| 19077 | 
            -
              } : function(obj2) {
         | 
| 19078 | 
            -
                return obj2 && "function" == typeof Symbol && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
         | 
| 19079 | 
            -
              }, _typeof(obj);
         | 
| 19080 | 
            -
            }
         | 
| 19081 | 
            -
            function _toPrimitive(input, hint) {
         | 
| 19082 | 
            -
              if (_typeof(input) !== "object" || input === null)
         | 
| 19083 | 
            -
                return input;
         | 
| 19084 | 
            -
              var prim = input[Symbol.toPrimitive];
         | 
| 19085 | 
            -
              if (prim !== void 0) {
         | 
| 19086 | 
            -
                var res = prim.call(input, hint || "default");
         | 
| 19087 | 
            -
                if (_typeof(res) !== "object")
         | 
| 19088 | 
            -
                  return res;
         | 
| 19089 | 
            -
                throw new TypeError("@@toPrimitive must return a primitive value.");
         | 
| 19090 | 
            -
              }
         | 
| 19091 | 
            -
              return (hint === "string" ? String : Number)(input);
         | 
| 19092 | 
            -
            }
         | 
| 19093 | 
            -
            function _toPropertyKey(arg) {
         | 
| 19094 | 
            -
              var key2 = _toPrimitive(arg, "string");
         | 
| 19095 | 
            -
              return _typeof(key2) === "symbol" ? key2 : String(key2);
         | 
| 19096 | 
            -
            }
         | 
| 19114 | 
            +
            var isBrowser = (typeof window === "undefined" ? "undefined" : _typeof(window)) === "object" && (typeof document === "undefined" ? "undefined" : _typeof(document)) === "object" && document.nodeType === 9;
         | 
| 19097 19115 | 
             
            function _defineProperties$1(target2, props) {
         | 
| 19098 19116 | 
             
              for (var i = 0; i < props.length; i++) {
         | 
| 19099 19117 | 
             
                var descriptor = props[i];
         | 
| @@ -19371,7 +19389,7 @@ var StyleRule = /* @__PURE__ */ function(_BaseStyleRule) { | |
| 19371 19389 | 
             
              _proto2.toString = function toString2(options) {
         | 
| 19372 19390 | 
             
                var sheet = this.options.sheet;
         | 
| 19373 19391 | 
             
                var link2 = sheet ? sheet.options.link : false;
         | 
| 19374 | 
            -
                var opts2 = link2 ? _extends$ | 
| 19392 | 
            +
                var opts2 = link2 ? _extends$2({}, options, {
         | 
| 19375 19393 | 
             
                  allowEmpty: true
         | 
| 19376 19394 | 
             
                }) : options;
         | 
| 19377 19395 | 
             
                return toCss(this.selectorText, this.style, opts2);
         | 
| @@ -19418,7 +19436,7 @@ var ConditionalRule = /* @__PURE__ */ function() { | |
| 19418 19436 | 
             
                this.at = atMatch ? atMatch[1] : "unknown";
         | 
| 19419 19437 | 
             
                this.query = options.name || "@" + this.at;
         | 
| 19420 19438 | 
             
                this.options = options;
         | 
| 19421 | 
            -
                this.rules = new RuleList(_extends$ | 
| 19439 | 
            +
                this.rules = new RuleList(_extends$2({}, options, {
         | 
| 19422 19440 | 
             
                  parent: this
         | 
| 19423 19441 | 
             
                }));
         | 
| 19424 19442 | 
             
                for (var name2 in styles16) {
         | 
| @@ -19490,11 +19508,11 @@ var KeyframesRule = /* @__PURE__ */ function() { | |
| 19490 19508 | 
             
                this.options = options;
         | 
| 19491 19509 | 
             
                var scoped = options.scoped, sheet = options.sheet, generateId = options.generateId;
         | 
| 19492 19510 | 
             
                this.id = scoped === false ? this.name : escape$1(generateId(this, sheet));
         | 
| 19493 | 
            -
                this.rules = new RuleList(_extends$ | 
| 19511 | 
            +
                this.rules = new RuleList(_extends$2({}, options, {
         | 
| 19494 19512 | 
             
                  parent: this
         | 
| 19495 19513 | 
             
                }));
         | 
| 19496 19514 | 
             
                for (var name2 in frames) {
         | 
| 19497 | 
            -
                  this.rules.add(name2, frames[name2], _extends$ | 
| 19515 | 
            +
                  this.rules.add(name2, frames[name2], _extends$2({}, options, {
         | 
| 19498 19516 | 
             
                    parent: this
         | 
| 19499 19517 | 
             
                  }));
         | 
| 19500 19518 | 
             
                }
         | 
| @@ -19579,7 +19597,7 @@ var KeyframeRule = /* @__PURE__ */ function(_BaseStyleRule) { | |
| 19579 19597 | 
             
              _proto.toString = function toString2(options) {
         | 
| 19580 19598 | 
             
                var sheet = this.options.sheet;
         | 
| 19581 19599 | 
             
                var link2 = sheet ? sheet.options.link : false;
         | 
| 19582 | 
            -
                var opts2 = link2 ? _extends$ | 
| 19600 | 
            +
                var opts2 = link2 ? _extends$2({}, options, {
         | 
| 19583 19601 | 
             
                  allowEmpty: true
         | 
| 19584 19602 | 
             
                }) : options;
         | 
| 19585 19603 | 
             
                return toCss(this.key, this.style, opts2);
         | 
| @@ -19703,7 +19721,7 @@ var RuleList = /* @__PURE__ */ function() { | |
| 19703 19721 | 
             
              var _proto = RuleList2.prototype;
         | 
| 19704 19722 | 
             
              _proto.add = function add2(name2, decl, ruleOptions) {
         | 
| 19705 19723 | 
             
                var _this$options = this.options, parent = _this$options.parent, sheet = _this$options.sheet, jss2 = _this$options.jss, Renderer2 = _this$options.Renderer, generateId = _this$options.generateId, scoped = _this$options.scoped;
         | 
| 19706 | 
            -
                var options = _extends$ | 
| 19724 | 
            +
                var options = _extends$2({
         | 
| 19707 19725 | 
             
                  classes: this.classes,
         | 
| 19708 19726 | 
             
                  parent,
         | 
| 19709 19727 | 
             
                  sheet,
         | 
| @@ -19739,7 +19757,7 @@ var RuleList = /* @__PURE__ */ function() { | |
| 19739 19757 | 
             
                }
         | 
| 19740 19758 | 
             
                var options = ruleOptions;
         | 
| 19741 19759 | 
             
                if (oldIndex !== -1)
         | 
| 19742 | 
            -
                  options = _extends$ | 
| 19760 | 
            +
                  options = _extends$2({}, ruleOptions, {
         | 
| 19743 19761 | 
             
                    index: oldIndex
         | 
| 19744 19762 | 
             
                  });
         | 
| 19745 19763 | 
             
                return this.add(name2, decl, options);
         | 
| @@ -19852,7 +19870,7 @@ var StyleSheet = /* @__PURE__ */ function() { | |
| 19852 19870 | 
             
                this.deployed = false;
         | 
| 19853 19871 | 
             
                this.classes = {};
         | 
| 19854 19872 | 
             
                this.keyframes = {};
         | 
| 19855 | 
            -
                this.options = _extends$ | 
| 19873 | 
            +
                this.options = _extends$2({}, options, {
         | 
| 19856 19874 | 
             
                  sheet: this,
         | 
| 19857 19875 | 
             
                  parent: this,
         | 
| 19858 19876 | 
             
                  classes: this.classes,
         | 
| @@ -20471,7 +20489,7 @@ var Jss = /* @__PURE__ */ function() { | |
| 20471 20489 | 
             
                  this.options.createGenerateId = options.createGenerateId;
         | 
| 20472 20490 | 
             
                }
         | 
| 20473 20491 | 
             
                if (options.id) {
         | 
| 20474 | 
            -
                  this.options.id = _extends$ | 
| 20492 | 
            +
                  this.options.id = _extends$2({}, this.options.id, options.id);
         | 
| 20475 20493 | 
             
                }
         | 
| 20476 20494 | 
             
                if (options.createGenerateId || options.id) {
         | 
| 20477 20495 | 
             
                  this.generateId = this.options.createGenerateId(this.options.id);
         | 
| @@ -20493,7 +20511,7 @@ var Jss = /* @__PURE__ */ function() { | |
| 20493 20511 | 
             
                if (typeof index2 !== "number") {
         | 
| 20494 20512 | 
             
                  index2 = sheets.index === 0 ? 0 : sheets.index + 1;
         | 
| 20495 20513 | 
             
                }
         | 
| 20496 | 
            -
                var sheet = new StyleSheet(styles16, _extends$ | 
| 20514 | 
            +
                var sheet = new StyleSheet(styles16, _extends$2({}, options, {
         | 
| 20497 20515 | 
             
                  jss: this,
         | 
| 20498 20516 | 
             
                  generateId: options.generateId || this.generateId,
         | 
| 20499 20517 | 
             
                  insertionPoint: this.options.insertionPoint,
         | 
| @@ -20518,7 +20536,7 @@ var Jss = /* @__PURE__ */ function() { | |
| 20518 20536 | 
             
                if (typeof name2 === "object") {
         | 
| 20519 20537 | 
             
                  return this.createRule(void 0, name2, style2);
         | 
| 20520 20538 | 
             
                }
         | 
| 20521 | 
            -
                var ruleOptions = _extends$ | 
| 20539 | 
            +
                var ruleOptions = _extends$2({}, options, {
         | 
| 20522 20540 | 
             
                  name: name2,
         | 
| 20523 20541 | 
             
                  jss: this,
         | 
| 20524 20542 | 
             
                  Renderer: this.options.Renderer
         | 
| @@ -20629,7 +20647,7 @@ var GlobalContainerRule = /* @__PURE__ */ function() { | |
| 20629 20647 | 
             
                this.isProcessed = false;
         | 
| 20630 20648 | 
             
                this.key = key2;
         | 
| 20631 20649 | 
             
                this.options = options;
         | 
| 20632 | 
            -
                this.rules = new RuleList(_extends$ | 
| 20650 | 
            +
                this.rules = new RuleList(_extends$1({}, options, {
         | 
| 20633 20651 | 
             
                  parent: this
         | 
| 20634 20652 | 
             
                }));
         | 
| 20635 20653 | 
             
                for (var selector in styles16) {
         | 
| @@ -20669,7 +20687,7 @@ var GlobalPrefixedRule = /* @__PURE__ */ function() { | |
| 20669 20687 | 
             
                this.key = key2;
         | 
| 20670 20688 | 
             
                this.options = options;
         | 
| 20671 20689 | 
             
                var selector = key2.substr(atPrefix.length);
         | 
| 20672 | 
            -
                this.rule = options.jss.createRule(selector, style2, _extends$ | 
| 20690 | 
            +
                this.rule = options.jss.createRule(selector, style2, _extends$1({}, options, {
         | 
| 20673 20691 | 
             
                  parent: this
         | 
| 20674 20692 | 
             
                }));
         | 
| 20675 20693 | 
             
              }
         | 
| @@ -20696,7 +20714,7 @@ function handleNestedGlobalContainerRule(rule2, sheet) { | |
| 20696 20714 | 
             
              if (!rules)
         | 
| 20697 20715 | 
             
                return;
         | 
| 20698 20716 | 
             
              for (var name2 in rules) {
         | 
| 20699 | 
            -
                sheet.addRule(name2, rules[name2], _extends$ | 
| 20717 | 
            +
                sheet.addRule(name2, rules[name2], _extends$1({}, options, {
         | 
| 20700 20718 | 
             
                  selector: addScope(name2, rule2.selector)
         | 
| 20701 20719 | 
             
                }));
         | 
| 20702 20720 | 
             
              }
         | 
| @@ -20708,7 +20726,7 @@ function handlePrefixedGlobalRule(rule2, sheet) { | |
| 20708 20726 | 
             
                if (prop[0] !== "@" || prop.substr(0, at.length) !== at)
         | 
| 20709 20727 | 
             
                  continue;
         | 
| 20710 20728 | 
             
                var selector = addScope(prop.substr(at.length), rule2.selector);
         | 
| 20711 | 
            -
                sheet.addRule(selector, style2[prop], _extends$ | 
| 20729 | 
            +
                sheet.addRule(selector, style2[prop], _extends$1({}, options, {
         | 
| 20712 20730 | 
             
                  selector
         | 
| 20713 20731 | 
             
                }));
         | 
| 20714 20732 | 
             
                delete style2[prop];
         | 
| @@ -20777,12 +20795,12 @@ function jssNested() { | |
| 20777 20795 | 
             
              }
         | 
| 20778 20796 | 
             
              function getOptions(rule2, container, prevOptions) {
         | 
| 20779 20797 | 
             
                if (prevOptions)
         | 
| 20780 | 
            -
                  return _extends$ | 
| 20798 | 
            +
                  return _extends$2({}, prevOptions, {
         | 
| 20781 20799 | 
             
                    index: prevOptions.index + 1
         | 
| 20782 20800 | 
             
                  });
         | 
| 20783 20801 | 
             
                var nestingLevel = rule2.options.nestingLevel;
         | 
| 20784 20802 | 
             
                nestingLevel = nestingLevel === void 0 ? 1 : nestingLevel + 1;
         | 
| 20785 | 
            -
                var options = _extends$ | 
| 20803 | 
            +
                var options = _extends$2({}, rule2.options, {
         | 
| 20786 20804 | 
             
                  nestingLevel,
         | 
| 20787 20805 | 
             
                  index: container.indexOf(rule2) + 1
         | 
| 20788 20806 | 
             
                  // We don't need the parent name to be set options for chlid.
         | 
| @@ -20810,11 +20828,11 @@ function jssNested() { | |
| 20810 20828 | 
             
                    selector = selector.replace(refRegExp, replaceRef3);
         | 
| 20811 20829 | 
             
                    var name2 = styleRule.key + "-" + prop;
         | 
| 20812 20830 | 
             
                    if ("replaceRule" in container) {
         | 
| 20813 | 
            -
                      container.replaceRule(name2, style2[prop], _extends$ | 
| 20831 | 
            +
                      container.replaceRule(name2, style2[prop], _extends$2({}, options, {
         | 
| 20814 20832 | 
             
                        selector
         | 
| 20815 20833 | 
             
                      }));
         | 
| 20816 20834 | 
             
                    } else {
         | 
| 20817 | 
            -
                      container.addRule(name2, style2[prop], _extends$ | 
| 20835 | 
            +
                      container.addRule(name2, style2[prop], _extends$2({}, options, {
         | 
| 20818 20836 | 
             
                        selector
         | 
| 20819 20837 | 
             
                      }));
         | 
| 20820 20838 | 
             
                    }
         | 
| @@ -21584,7 +21602,7 @@ function mergeClasses() { | |
| 21584 21602 | 
             
              if (!newClasses) {
         | 
| 21585 21603 | 
             
                return baseClasses;
         | 
| 21586 21604 | 
             
              }
         | 
| 21587 | 
            -
              var nextClasses = _extends$ | 
| 21605 | 
            +
              var nextClasses = _extends$1({}, baseClasses);
         | 
| 21588 21606 | 
             
              {
         | 
| 21589 21607 | 
             
                if (typeof newClasses === "string") {
         | 
| 21590 21608 | 
             
                  console.error(["Material-UI: The value `".concat(newClasses, "` ") + "provided to the classes prop of ".concat(getDisplayName(Component), " is incorrect."), "You might want to use the className prop instead."].join("\n"));
         | 
| @@ -21656,7 +21674,7 @@ var injectFirstNode; | |
| 21656 21674 | 
             
            function StylesProvider(props) {
         | 
| 21657 21675 | 
             
              var children2 = props.children, _props$injectFirst = props.injectFirst, injectFirst = _props$injectFirst === void 0 ? false : _props$injectFirst, _props$disableGenerat = props.disableGeneration, disableGeneration = _props$disableGenerat === void 0 ? false : _props$disableGenerat, localOptions = _objectWithoutProperties(props, ["children", "injectFirst", "disableGeneration"]);
         | 
| 21658 21676 | 
             
              var outerOptions = React__default.useContext(StylesContext);
         | 
| 21659 | 
            -
              var context2 = _extends$ | 
| 21677 | 
            +
              var context2 = _extends$1({}, outerOptions, {
         | 
| 21660 21678 | 
             
                disableGeneration
         | 
| 21661 21679 | 
             
              }, localOptions);
         | 
| 21662 21680 | 
             
              {
         | 
| @@ -21761,7 +21779,7 @@ const noopTheme$1 = noopTheme; | |
| 21761 21779 | 
             
            function getStylesCreator(stylesOrCreator) {
         | 
| 21762 21780 | 
             
              var themingEnabled = typeof stylesOrCreator === "function";
         | 
| 21763 21781 | 
             
              {
         | 
| 21764 | 
            -
                if (_typeof$ | 
| 21782 | 
            +
                if (_typeof$1(stylesOrCreator) !== "object" && !themingEnabled) {
         | 
| 21765 21783 | 
             
                  console.error(["Material-UI: The `styles` argument provided is invalid.", "You need to provide a function generating the styles or a styles object."].join("\n"));
         | 
| 21766 21784 | 
             
                }
         | 
| 21767 21785 | 
             
              }
         | 
| @@ -21782,7 +21800,7 @@ function getStylesCreator(stylesOrCreator) { | |
| 21782 21800 | 
             
                    return styles16;
         | 
| 21783 21801 | 
             
                  }
         | 
| 21784 21802 | 
             
                  var overrides = theme.overrides[name2];
         | 
| 21785 | 
            -
                  var stylesWithOverrides = _extends$ | 
| 21803 | 
            +
                  var stylesWithOverrides = _extends$1({}, styles16);
         | 
| 21786 21804 | 
             
                  Object.keys(overrides).forEach(function(key2) {
         | 
| 21787 21805 | 
             
                    {
         | 
| 21788 21806 | 
             
                      if (!stylesWithOverrides[key2]) {
         | 
| @@ -21843,7 +21861,7 @@ function attach(_ref22, props) { | |
| 21843 21861 | 
             
                };
         | 
| 21844 21862 | 
             
                multiKeyStore$1.set(stylesOptions.sheetsManager, stylesCreator, theme, sheetManager);
         | 
| 21845 21863 | 
             
              }
         | 
| 21846 | 
            -
              var options = _extends$ | 
| 21864 | 
            +
              var options = _extends$1({}, stylesCreator.options, stylesOptions, {
         | 
| 21847 21865 | 
             
                theme,
         | 
| 21848 21866 | 
             
                flip: typeof stylesOptions.flip === "boolean" ? stylesOptions.flip : theme.direction === "rtl"
         | 
| 21849 21867 | 
             
              });
         | 
| @@ -21856,7 +21874,7 @@ function attach(_ref22, props) { | |
| 21856 21874 | 
             
                }
         | 
| 21857 21875 | 
             
                var styles16 = stylesCreator.create(theme, name2);
         | 
| 21858 21876 | 
             
                if (!staticSheet) {
         | 
| 21859 | 
            -
                  staticSheet = stylesOptions.jss.createStyleSheet(styles16, _extends$ | 
| 21877 | 
            +
                  staticSheet = stylesOptions.jss.createStyleSheet(styles16, _extends$1({
         | 
| 21860 21878 | 
             
                    link: false
         | 
| 21861 21879 | 
             
                  }, options));
         | 
| 21862 21880 | 
             
                  staticSheet.attach();
         | 
| @@ -21871,7 +21889,7 @@ function attach(_ref22, props) { | |
| 21871 21889 | 
             
                sheetManager.dynamicStyles = getDynamicStyles(styles16);
         | 
| 21872 21890 | 
             
              }
         | 
| 21873 21891 | 
             
              if (sheetManager.dynamicStyles) {
         | 
| 21874 | 
            -
                var dynamicSheet = stylesOptions.jss.createStyleSheet(sheetManager.dynamicStyles, _extends$ | 
| 21892 | 
            +
                var dynamicSheet = stylesOptions.jss.createStyleSheet(sheetManager.dynamicStyles, _extends$1({
         | 
| 21875 21893 | 
             
                  link: true
         | 
| 21876 21894 | 
             
                }, options));
         | 
| 21877 21895 | 
             
                dynamicSheet.update(props);
         | 
| @@ -21953,7 +21971,7 @@ function makeStyles$1(stylesOrCreator) { | |
| 21953 21971 | 
             
              var useStyles2 = function useStyles3() {
         | 
| 21954 21972 | 
             
                var props = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
         | 
| 21955 21973 | 
             
                var theme = useTheme$1() || defaultTheme2;
         | 
| 21956 | 
            -
                var stylesOptions = _extends$ | 
| 21974 | 
            +
                var stylesOptions = _extends$1({}, React__default.useContext(StylesContext), stylesOptions2);
         | 
| 21957 21975 | 
             
                var instance = React__default.useRef();
         | 
| 21958 21976 | 
             
                var shouldUpdate = React__default.useRef();
         | 
| 21959 21977 | 
             
                useSynchronousEffect(function() {
         | 
| @@ -22128,7 +22146,7 @@ var withStyles$1 = function withStyles(stylesOrCreator) { | |
| 22128 22146 | 
             
                    }
         | 
| 22129 22147 | 
             
                  }
         | 
| 22130 22148 | 
             
                }
         | 
| 22131 | 
            -
                var useStyles2 = makeStyles$1(stylesOrCreator, _extends$ | 
| 22149 | 
            +
                var useStyles2 = makeStyles$1(stylesOrCreator, _extends$1({
         | 
| 22132 22150 | 
             
                  defaultTheme: defaultTheme2,
         | 
| 22133 22151 | 
             
                  Component,
         | 
| 22134 22152 | 
             
                  name: name2 || Component.displayName,
         | 
| @@ -22137,7 +22155,7 @@ var withStyles$1 = function withStyles(stylesOrCreator) { | |
| 22137 22155 | 
             
                var WithStyles = /* @__PURE__ */ React__default.forwardRef(function WithStyles2(props, ref2) {
         | 
| 22138 22156 | 
             
                  props.classes;
         | 
| 22139 22157 | 
             
                  var innerRef = props.innerRef, other = _objectWithoutProperties(props, ["classes", "innerRef"]);
         | 
| 22140 | 
            -
                  var classes = useStyles2(_extends$ | 
| 22158 | 
            +
                  var classes = useStyles2(_extends$1({}, Component.defaultProps, props));
         | 
| 22141 22159 | 
             
                  var theme;
         | 
| 22142 22160 | 
             
                  var more = other;
         | 
| 22143 22161 | 
             
                  if (typeof name2 === "string" || withTheme) {
         | 
| @@ -22153,7 +22171,7 @@ var withStyles$1 = function withStyles(stylesOrCreator) { | |
| 22153 22171 | 
             
                      more.theme = theme;
         | 
| 22154 22172 | 
             
                    }
         | 
| 22155 22173 | 
             
                  }
         | 
| 22156 | 
            -
                  return /* @__PURE__ */ React__default.createElement(Component, _extends$ | 
| 22174 | 
            +
                  return /* @__PURE__ */ React__default.createElement(Component, _extends$1({
         | 
| 22157 22175 | 
             
                    ref: innerRef || ref2,
         | 
| 22158 22176 | 
             
                    classes
         | 
| 22159 22177 | 
             
                  }, more));
         | 
| @@ -22191,7 +22209,7 @@ var defaultTheme = createTheme(); | |
| 22191 22209 | 
             
            const defaultTheme$1 = defaultTheme;
         | 
| 22192 22210 | 
             
            function makeStyles(stylesOrCreator) {
         | 
| 22193 22211 | 
             
              var options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
         | 
| 22194 | 
            -
              return makeStyles$1(stylesOrCreator, _extends$ | 
| 22212 | 
            +
              return makeStyles$1(stylesOrCreator, _extends$1({
         | 
| 22195 22213 | 
             
                defaultTheme: defaultTheme$1
         | 
| 22196 22214 | 
             
              }, options));
         | 
| 22197 22215 | 
             
            }
         | 
| @@ -22203,7 +22221,7 @@ function useTheme() { | |
| 22203 22221 | 
             
              return theme;
         | 
| 22204 22222 | 
             
            }
         | 
| 22205 22223 | 
             
            function withStyles2(stylesOrCreator, options) {
         | 
| 22206 | 
            -
              return withStylesWithoutDefault(stylesOrCreator, _extends$ | 
| 22224 | 
            +
              return withStylesWithoutDefault(stylesOrCreator, _extends$1({
         | 
| 22207 22225 | 
             
                defaultTheme: defaultTheme$1
         | 
| 22208 22226 | 
             
              }, options));
         | 
| 22209 22227 | 
             
            }
         | 
| @@ -22287,7 +22305,7 @@ var styles$n = function styles(theme) { | |
| 22287 22305 | 
             
            };
         | 
| 22288 22306 | 
             
            var SvgIcon = /* @__PURE__ */ React.forwardRef(function SvgIcon2(props, ref2) {
         | 
| 22289 22307 | 
             
              var children2 = props.children, classes = props.classes, className = props.className, _props$color = props.color, color2 = _props$color === void 0 ? "inherit" : _props$color, _props$component = props.component, Component = _props$component === void 0 ? "svg" : _props$component, _props$fontSize = props.fontSize, fontSize2 = _props$fontSize === void 0 ? "medium" : _props$fontSize, htmlColor = props.htmlColor, titleAccess = props.titleAccess, _props$viewBox = props.viewBox, viewBox = _props$viewBox === void 0 ? "0 0 24 24" : _props$viewBox, other = _objectWithoutProperties(props, ["children", "classes", "className", "color", "component", "fontSize", "htmlColor", "titleAccess", "viewBox"]);
         | 
| 22290 | 
            -
              return /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 22308 | 
            +
              return /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 22291 22309 | 
             
                className: clsx(classes.root, className, color2 !== "inherit" && classes["color".concat(capitalize$1(color2))], fontSize2 !== "default" && fontSize2 !== "medium" && classes["fontSize".concat(capitalize$1(fontSize2))]),
         | 
| 22292 22310 | 
             
                focusable: "false",
         | 
| 22293 22311 | 
             
                viewBox,
         | 
| @@ -22365,7 +22383,7 @@ const SvgIcon$1 = withStyles2(styles$n, { | |
| 22365 22383 | 
             
            })(SvgIcon);
         | 
| 22366 22384 | 
             
            function createSvgIcon(path2, displayName) {
         | 
| 22367 22385 | 
             
              var Component = function Component2(props, ref2) {
         | 
| 22368 | 
            -
                return /* @__PURE__ */ React__default.createElement(SvgIcon$1, _extends$ | 
| 22386 | 
            +
                return /* @__PURE__ */ React__default.createElement(SvgIcon$1, _extends$1({
         | 
| 22369 22387 | 
             
                  ref: ref2
         | 
| 22370 22388 | 
             
                }, props), path2);
         | 
| 22371 22389 | 
             
              };
         | 
| @@ -22945,7 +22963,7 @@ var styles$m = function styles2(theme) { | |
| 22945 22963 | 
             
                  boxShadow: shadow
         | 
| 22946 22964 | 
             
                };
         | 
| 22947 22965 | 
             
              });
         | 
| 22948 | 
            -
              return _extends$ | 
| 22966 | 
            +
              return _extends$1({
         | 
| 22949 22967 | 
             
                /* Styles applied to the root element. */
         | 
| 22950 22968 | 
             
                root: {
         | 
| 22951 22969 | 
             
                  backgroundColor: theme.palette.background.paper,
         | 
| @@ -22964,7 +22982,7 @@ var styles$m = function styles2(theme) { | |
| 22964 22982 | 
             
            };
         | 
| 22965 22983 | 
             
            var Paper = /* @__PURE__ */ React.forwardRef(function Paper2(props, ref2) {
         | 
| 22966 22984 | 
             
              var classes = props.classes, className = props.className, _props$component = props.component, Component = _props$component === void 0 ? "div" : _props$component, _props$square = props.square, square2 = _props$square === void 0 ? false : _props$square, _props$elevation = props.elevation, elevation = _props$elevation === void 0 ? 1 : _props$elevation, _props$variant = props.variant, variant = _props$variant === void 0 ? "elevation" : _props$variant, other = _objectWithoutProperties(props, ["classes", "className", "component", "square", "elevation", "variant"]);
         | 
| 22967 | 
            -
              return /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 22985 | 
            +
              return /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 22968 22986 | 
             
                className: clsx(classes.root, className, variant === "outlined" ? classes.outlined : classes["elevation".concat(elevation)], !square2 && classes.rounded),
         | 
| 22969 22987 | 
             
                ref: ref2
         | 
| 22970 22988 | 
             
              }, other));
         | 
| @@ -23449,11 +23467,11 @@ var styles$l = { | |
| 23449 23467 | 
             
            };
         | 
| 23450 23468 | 
             
            var SimpleBackdrop = /* @__PURE__ */ React.forwardRef(function SimpleBackdrop2(props, ref2) {
         | 
| 23451 23469 | 
             
              var _props$invisible = props.invisible, invisible = _props$invisible === void 0 ? false : _props$invisible, open = props.open, other = _objectWithoutProperties(props, ["invisible", "open"]);
         | 
| 23452 | 
            -
              return open ? /* @__PURE__ */ React.createElement("div", _extends$ | 
| 23470 | 
            +
              return open ? /* @__PURE__ */ React.createElement("div", _extends$1({
         | 
| 23453 23471 | 
             
                "aria-hidden": true,
         | 
| 23454 23472 | 
             
                ref: ref2
         | 
| 23455 23473 | 
             
              }, other, {
         | 
| 23456 | 
            -
                style: _extends$ | 
| 23474 | 
            +
                style: _extends$1({}, styles$l.root, invisible ? styles$l.invisible : {}, other.style)
         | 
| 23457 23475 | 
             
              })) : null;
         | 
| 23458 23476 | 
             
            });
         | 
| 23459 23477 | 
             
            SimpleBackdrop.propTypes = {
         | 
| @@ -23497,7 +23515,7 @@ var Modal = /* @__PURE__ */ React.forwardRef(function Modal2(inProps, ref2) { | |
| 23497 23515 | 
             
              var theme = useTheme$1();
         | 
| 23498 23516 | 
             
              var props = getThemeProps({
         | 
| 23499 23517 | 
             
                name: "MuiModal",
         | 
| 23500 | 
            -
                props: _extends$ | 
| 23518 | 
            +
                props: _extends$1({}, inProps),
         | 
| 23501 23519 | 
             
                theme
         | 
| 23502 23520 | 
             
              });
         | 
| 23503 23521 | 
             
              var _props$BackdropCompon = props.BackdropComponent, BackdropComponent = _props$BackdropCompon === void 0 ? SimpleBackdrop$1 : _props$BackdropCompon, BackdropProps = props.BackdropProps, children2 = props.children, _props$closeAfterTran = props.closeAfterTransition, closeAfterTransition = _props$closeAfterTran === void 0 ? false : _props$closeAfterTran, container = props.container, _props$disableAutoFoc = props.disableAutoFocus, disableAutoFocus = _props$disableAutoFoc === void 0 ? false : _props$disableAutoFoc, _props$disableBackdro = props.disableBackdropClick, disableBackdropClick = _props$disableBackdro === void 0 ? false : _props$disableBackdro, _props$disableEnforce = props.disableEnforceFocus, disableEnforceFocus = _props$disableEnforce === void 0 ? false : _props$disableEnforce, _props$disableEscapeK = props.disableEscapeKeyDown, disableEscapeKeyDown = _props$disableEscapeK === void 0 ? false : _props$disableEscapeK, _props$disablePortal = props.disablePortal, disablePortal = _props$disablePortal === void 0 ? false : _props$disablePortal, _props$disableRestore = props.disableRestoreFocus, disableRestoreFocus = _props$disableRestore === void 0 ? false : _props$disableRestore, _props$disableScrollL = props.disableScrollLock, disableScrollLock = _props$disableScrollL === void 0 ? false : _props$disableScrollL, _props$hideBackdrop = props.hideBackdrop, hideBackdrop = _props$hideBackdrop === void 0 ? false : _props$hideBackdrop, _props$keepMounted = props.keepMounted, keepMounted = _props$keepMounted === void 0 ? false : _props$keepMounted, _props$manager = props.manager, manager = _props$manager === void 0 ? defaultManager : _props$manager, onBackdropClick = props.onBackdropClick, onClose = props.onClose, onEscapeKeyDown = props.onEscapeKeyDown, onRendered = props.onRendered, open = props.open, other = _objectWithoutProperties(props, ["BackdropComponent", "BackdropProps", "children", "closeAfterTransition", "container", "disableAutoFocus", "disableBackdropClick", "disableEnforceFocus", "disableEscapeKeyDown", "disablePortal", "disableRestoreFocus", "disableScrollLock", "hideBackdrop", "keepMounted", "manager", "onBackdropClick", "onClose", "onEscapeKeyDown", "onRendered", "open"]);
         | 
| @@ -23612,13 +23630,13 @@ var Modal = /* @__PURE__ */ React.forwardRef(function Modal2(inProps, ref2) { | |
| 23612 23630 | 
             
                ref: handlePortalRef,
         | 
| 23613 23631 | 
             
                container,
         | 
| 23614 23632 | 
             
                disablePortal
         | 
| 23615 | 
            -
              }, /* @__PURE__ */ React.createElement("div", _extends$ | 
| 23633 | 
            +
              }, /* @__PURE__ */ React.createElement("div", _extends$1({
         | 
| 23616 23634 | 
             
                ref: handleRef,
         | 
| 23617 23635 | 
             
                onKeyDown: handleKeyDown,
         | 
| 23618 23636 | 
             
                role: "presentation"
         | 
| 23619 23637 | 
             
              }, other, {
         | 
| 23620 | 
            -
                style: _extends$ | 
| 23621 | 
            -
              }), hideBackdrop ? null : /* @__PURE__ */ React.createElement(BackdropComponent, _extends$ | 
| 23638 | 
            +
                style: _extends$1({}, inlineStyle.root, !open && exited ? inlineStyle.hidden : {}, other.style)
         | 
| 23639 | 
            +
              }), hideBackdrop ? null : /* @__PURE__ */ React.createElement(BackdropComponent, _extends$1({
         | 
| 23622 23640 | 
             
                open,
         | 
| 23623 23641 | 
             
                onClick: handleBackdropClick
         | 
| 23624 23642 | 
             
              }, BackdropProps)), /* @__PURE__ */ React.createElement(Unstable_TrapFocus, {
         | 
| @@ -23846,12 +23864,12 @@ var TextareaAutosize = /* @__PURE__ */ React.forwardRef(function TextareaAutosiz | |
| 23846 23864 | 
             
                  onChange(event2);
         | 
| 23847 23865 | 
             
                }
         | 
| 23848 23866 | 
             
              };
         | 
| 23849 | 
            -
              return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("textarea", _extends$ | 
| 23867 | 
            +
              return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("textarea", _extends$1({
         | 
| 23850 23868 | 
             
                value: value2,
         | 
| 23851 23869 | 
             
                onChange: handleChange,
         | 
| 23852 23870 | 
             
                ref: handleRef,
         | 
| 23853 23871 | 
             
                rows: minRows,
         | 
| 23854 | 
            -
                style: _extends$ | 
| 23872 | 
            +
                style: _extends$1({
         | 
| 23855 23873 | 
             
                  height: state.outerHeightStyle,
         | 
| 23856 23874 | 
             
                  // Need a large enough difference to allow scrolling.
         | 
| 23857 23875 | 
             
                  // This prevents infinite rendering loop.
         | 
| @@ -23863,7 +23881,7 @@ var TextareaAutosize = /* @__PURE__ */ React.forwardRef(function TextareaAutosiz | |
| 23863 23881 | 
             
                readOnly: true,
         | 
| 23864 23882 | 
             
                ref: shadowRef,
         | 
| 23865 23883 | 
             
                tabIndex: -1,
         | 
| 23866 | 
            -
                style: _extends$ | 
| 23884 | 
            +
                style: _extends$1({}, styles$j.shadow, style2)
         | 
| 23867 23885 | 
             
              }));
         | 
| 23868 23886 | 
             
            });
         | 
| 23869 23887 | 
             
            TextareaAutosize.propTypes = {
         | 
| @@ -23947,7 +23965,7 @@ var styles$i = function styles4(theme) { | |
| 23947 23965 | 
             
                  "@keyframes mui-auto-fill-cancel": {}
         | 
| 23948 23966 | 
             
                },
         | 
| 23949 23967 | 
             
                /* Styles applied to the root element. */
         | 
| 23950 | 
            -
                root: _extends$ | 
| 23968 | 
            +
                root: _extends$1({}, theme.typography.body1, {
         | 
| 23951 23969 | 
             
                  color: theme.palette.text.primary,
         | 
| 23952 23970 | 
             
                  lineHeight: "1.1876em",
         | 
| 23953 23971 | 
             
                  // Reset (19px), match the native input line-height
         | 
| @@ -24204,11 +24222,11 @@ var InputBase = /* @__PURE__ */ React.forwardRef(function InputBase2(props, ref2 | |
| 24204 24222 | 
             
                }
         | 
| 24205 24223 | 
             
              };
         | 
| 24206 24224 | 
             
              var InputComponent = inputComponent;
         | 
| 24207 | 
            -
              var inputProps = _extends$ | 
| 24225 | 
            +
              var inputProps = _extends$1({}, inputPropsProp, {
         | 
| 24208 24226 | 
             
                ref: handleInputRef
         | 
| 24209 24227 | 
             
              });
         | 
| 24210 24228 | 
             
              if (typeof InputComponent !== "string") {
         | 
| 24211 | 
            -
                inputProps = _extends$ | 
| 24229 | 
            +
                inputProps = _extends$1({
         | 
| 24212 24230 | 
             
                  // Rename ref to inputRef as we don't know the
         | 
| 24213 24231 | 
             
                  // provided `inputComponent` structure.
         | 
| 24214 24232 | 
             
                  inputRef: handleInputRef,
         | 
| @@ -24220,7 +24238,7 @@ var InputBase = /* @__PURE__ */ React.forwardRef(function InputBase2(props, ref2 | |
| 24220 24238 | 
             
                if (rows && !maxRows && !minRows && !rowsMax && !rowsMin) {
         | 
| 24221 24239 | 
             
                  InputComponent = "textarea";
         | 
| 24222 24240 | 
             
                } else {
         | 
| 24223 | 
            -
                  inputProps = _extends$ | 
| 24241 | 
            +
                  inputProps = _extends$1({
         | 
| 24224 24242 | 
             
                    minRows: rows || minRows,
         | 
| 24225 24243 | 
             
                    rowsMax,
         | 
| 24226 24244 | 
             
                    maxRows
         | 
| @@ -24228,7 +24246,7 @@ var InputBase = /* @__PURE__ */ React.forwardRef(function InputBase2(props, ref2 | |
| 24228 24246 | 
             
                  InputComponent = TextareaAutosize$1;
         | 
| 24229 24247 | 
             
                }
         | 
| 24230 24248 | 
             
              } else {
         | 
| 24231 | 
            -
                inputProps = _extends$ | 
| 24249 | 
            +
                inputProps = _extends$1({
         | 
| 24232 24250 | 
             
                  type: type2
         | 
| 24233 24251 | 
             
                }, inputProps);
         | 
| 24234 24252 | 
             
              }
         | 
| @@ -24242,13 +24260,13 @@ var InputBase = /* @__PURE__ */ React.forwardRef(function InputBase2(props, ref2 | |
| 24242 24260 | 
             
                  muiFormControl.setAdornedStart(Boolean(startAdornment));
         | 
| 24243 24261 | 
             
                }
         | 
| 24244 24262 | 
             
              }, [muiFormControl, startAdornment]);
         | 
| 24245 | 
            -
              return /* @__PURE__ */ React.createElement("div", _extends$ | 
| 24263 | 
            +
              return /* @__PURE__ */ React.createElement("div", _extends$1({
         | 
| 24246 24264 | 
             
                className: clsx(classes.root, classes["color".concat(capitalize$1(fcs.color || "primary"))], className, fcs.disabled && classes.disabled, fcs.error && classes.error, fullWidth && classes.fullWidth, fcs.focused && classes.focused, muiFormControl && classes.formControl, multiline && classes.multiline, startAdornment && classes.adornedStart, endAdornment && classes.adornedEnd, fcs.margin === "dense" && classes.marginDense),
         | 
| 24247 24265 | 
             
                onClick: handleClick,
         | 
| 24248 24266 | 
             
                ref: ref2
         | 
| 24249 24267 | 
             
              }, other), startAdornment, /* @__PURE__ */ React.createElement(FormControlContext$1.Provider, {
         | 
| 24250 24268 | 
             
                value: null
         | 
| 24251 | 
            -
              }, /* @__PURE__ */ React.createElement(InputComponent, _extends$ | 
| 24269 | 
            +
              }, /* @__PURE__ */ React.createElement(InputComponent, _extends$1({
         | 
| 24252 24270 | 
             
                "aria-invalid": fcs.error,
         | 
| 24253 24271 | 
             
                "aria-describedby": ariaDescribedby,
         | 
| 24254 24272 | 
             
                autoComplete,
         | 
| @@ -24270,7 +24288,7 @@ var InputBase = /* @__PURE__ */ React.forwardRef(function InputBase2(props, ref2 | |
| 24270 24288 | 
             
                onBlur: handleBlur,
         | 
| 24271 24289 | 
             
                onChange: handleChange,
         | 
| 24272 24290 | 
             
                onFocus: handleFocus
         | 
| 24273 | 
            -
              }))), endAdornment, renderSuffix ? renderSuffix(_extends$ | 
| 24291 | 
            +
              }))), endAdornment, renderSuffix ? renderSuffix(_extends$1({}, fcs, {
         | 
| 24274 24292 | 
             
                startAdornment
         | 
| 24275 24293 | 
             
              })) : null);
         | 
| 24276 24294 | 
             
            });
         | 
| @@ -24588,8 +24606,8 @@ var styles$h = function styles5(theme) { | |
| 24588 24606 | 
             
            };
         | 
| 24589 24607 | 
             
            var FilledInput = /* @__PURE__ */ React.forwardRef(function FilledInput2(props, ref2) {
         | 
| 24590 24608 | 
             
              var disableUnderline = props.disableUnderline, classes = props.classes, _props$fullWidth = props.fullWidth, fullWidth = _props$fullWidth === void 0 ? false : _props$fullWidth, _props$inputComponent = props.inputComponent, inputComponent = _props$inputComponent === void 0 ? "input" : _props$inputComponent, _props$multiline = props.multiline, multiline = _props$multiline === void 0 ? false : _props$multiline, _props$type = props.type, type2 = _props$type === void 0 ? "text" : _props$type, other = _objectWithoutProperties(props, ["disableUnderline", "classes", "fullWidth", "inputComponent", "multiline", "type"]);
         | 
| 24591 | 
            -
              return /* @__PURE__ */ React.createElement(InputBase$1, _extends$ | 
| 24592 | 
            -
                classes: _extends$ | 
| 24609 | 
            +
              return /* @__PURE__ */ React.createElement(InputBase$1, _extends$1({
         | 
| 24610 | 
            +
                classes: _extends$1({}, classes, {
         | 
| 24593 24611 | 
             
                  root: clsx(classes.root, !disableUnderline && classes.underline),
         | 
| 24594 24612 | 
             
                  underline: null
         | 
| 24595 24613 | 
             
                }),
         | 
| @@ -24833,7 +24851,7 @@ var FormControl = /* @__PURE__ */ React.forwardRef(function FormControl2(props, | |
| 24833 24851 | 
             
              };
         | 
| 24834 24852 | 
             
              return /* @__PURE__ */ React.createElement(FormControlContext$1.Provider, {
         | 
| 24835 24853 | 
             
                value: childContext
         | 
| 24836 | 
            -
              }, /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 24854 | 
            +
              }, /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 24837 24855 | 
             
                className: clsx(classes.root, className, margin !== "none" && classes["margin".concat(capitalize$1(margin))], fullWidth && classes.fullWidth),
         | 
| 24838 24856 | 
             
                ref: ref2
         | 
| 24839 24857 | 
             
              }, other), children2));
         | 
| @@ -24910,7 +24928,7 @@ const FormControl$1 = withStyles2(styles$g, { | |
| 24910 24928 | 
             
            var styles$f = function styles6(theme) {
         | 
| 24911 24929 | 
             
              return {
         | 
| 24912 24930 | 
             
                /* Styles applied to the root element. */
         | 
| 24913 | 
            -
                root: _extends$ | 
| 24931 | 
            +
                root: _extends$1({
         | 
| 24914 24932 | 
             
                  color: theme.palette.text.secondary
         | 
| 24915 24933 | 
             
                }, theme.typography.caption, {
         | 
| 24916 24934 | 
             
                  textAlign: "left",
         | 
| @@ -24960,7 +24978,7 @@ var FormHelperText = /* @__PURE__ */ React.forwardRef(function FormHelperText2(p | |
| 24960 24978 | 
             
                muiFormControl,
         | 
| 24961 24979 | 
             
                states: ["variant", "margin", "disabled", "error", "filled", "focused", "required"]
         | 
| 24962 24980 | 
             
              });
         | 
| 24963 | 
            -
              return /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 24981 | 
            +
              return /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 24964 24982 | 
             
                className: clsx(classes.root, (fcs.variant === "filled" || fcs.variant === "outlined") && classes.contained, className, fcs.disabled && classes.disabled, fcs.error && classes.error, fcs.filled && classes.filled, fcs.focused && classes.focused, fcs.required && classes.required, fcs.margin === "dense" && classes.marginDense),
         | 
| 24965 24983 | 
             
                ref: ref2
         | 
| 24966 24984 | 
             
              }, other), children2 === " " ? (
         | 
| @@ -25033,7 +25051,7 @@ const FormHelperText$1 = withStyles2(styles$f, { | |
| 25033 25051 | 
             
            var styles$e = function styles7(theme) {
         | 
| 25034 25052 | 
             
              return {
         | 
| 25035 25053 | 
             
                /* Styles applied to the root element. */
         | 
| 25036 | 
            -
                root: _extends$ | 
| 25054 | 
            +
                root: _extends$1({
         | 
| 25037 25055 | 
             
                  color: theme.palette.text.secondary
         | 
| 25038 25056 | 
             
                }, theme.typography.body1, {
         | 
| 25039 25057 | 
             
                  lineHeight: 1,
         | 
| @@ -25088,7 +25106,7 @@ var FormLabel = /* @__PURE__ */ React.forwardRef(function FormLabel2(props, ref2 | |
| 25088 25106 | 
             
                muiFormControl,
         | 
| 25089 25107 | 
             
                states: ["color", "required", "focused", "disabled", "error", "filled"]
         | 
| 25090 25108 | 
             
              });
         | 
| 25091 | 
            -
              return /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 25109 | 
            +
              return /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 25092 25110 | 
             
                className: clsx(classes.root, classes["color".concat(capitalize$1(fcs.color || "primary"))], className, fcs.disabled && classes.disabled, fcs.error && classes.error, fcs.filled && classes.filled, fcs.focused && classes.focused, fcs.required && classes.required),
         | 
| 25093 25111 | 
             
                ref: ref2
         | 
| 25094 25112 | 
             
              }, other), children2, fcs.required && /* @__PURE__ */ React.createElement("span", {
         | 
| @@ -25249,7 +25267,7 @@ var Grow = /* @__PURE__ */ React.forwardRef(function Grow2(props, ref2) { | |
| 25249 25267 | 
             
                  clearTimeout(timer2.current);
         | 
| 25250 25268 | 
             
                };
         | 
| 25251 25269 | 
             
              }, []);
         | 
| 25252 | 
            -
              return /* @__PURE__ */ React.createElement(TransitionComponent, _extends$ | 
| 25270 | 
            +
              return /* @__PURE__ */ React.createElement(TransitionComponent, _extends$1({
         | 
| 25253 25271 | 
             
                appear: true,
         | 
| 25254 25272 | 
             
                in: inProp,
         | 
| 25255 25273 | 
             
                nodeRef: enableStrictModeCompat ? nodeRef : void 0,
         | 
| @@ -25262,8 +25280,8 @@ var Grow = /* @__PURE__ */ React.forwardRef(function Grow2(props, ref2) { | |
| 25262 25280 | 
             
                addEndListener,
         | 
| 25263 25281 | 
             
                timeout: timeout3 === "auto" ? null : timeout3
         | 
| 25264 25282 | 
             
              }, other), function(state, childProps) {
         | 
| 25265 | 
            -
                return /* @__PURE__ */ React.cloneElement(children2, _extends$ | 
| 25266 | 
            -
                  style: _extends$ | 
| 25283 | 
            +
                return /* @__PURE__ */ React.cloneElement(children2, _extends$1({
         | 
| 25284 | 
            +
                  style: _extends$1({
         | 
| 25267 25285 | 
             
                    opacity: 0,
         | 
| 25268 25286 | 
             
                    transform: getScale$1(0.75),
         | 
| 25269 25287 | 
             
                    visibility: state === "exited" && !inProp ? "hidden" : void 0
         | 
| @@ -25428,8 +25446,8 @@ var styles$c = function styles8(theme) { | |
| 25428 25446 | 
             
            };
         | 
| 25429 25447 | 
             
            var Input = /* @__PURE__ */ React.forwardRef(function Input2(props, ref2) {
         | 
| 25430 25448 | 
             
              var disableUnderline = props.disableUnderline, classes = props.classes, _props$fullWidth = props.fullWidth, fullWidth = _props$fullWidth === void 0 ? false : _props$fullWidth, _props$inputComponent = props.inputComponent, inputComponent = _props$inputComponent === void 0 ? "input" : _props$inputComponent, _props$multiline = props.multiline, multiline = _props$multiline === void 0 ? false : _props$multiline, _props$type = props.type, type2 = _props$type === void 0 ? "text" : _props$type, other = _objectWithoutProperties(props, ["disableUnderline", "classes", "fullWidth", "inputComponent", "multiline", "type"]);
         | 
| 25431 | 
            -
              return /* @__PURE__ */ React.createElement(InputBase$1, _extends$ | 
| 25432 | 
            -
                classes: _extends$ | 
| 25449 | 
            +
              return /* @__PURE__ */ React.createElement(InputBase$1, _extends$1({
         | 
| 25450 | 
            +
                classes: _extends$1({}, classes, {
         | 
| 25433 25451 | 
             
                  root: clsx(classes.root, !disableUnderline && classes.underline),
         | 
| 25434 25452 | 
             
                  underline: null
         | 
| 25435 25453 | 
             
                }),
         | 
| @@ -25656,7 +25674,7 @@ var InputLabel = /* @__PURE__ */ React.forwardRef(function InputLabel2(props, re | |
| 25656 25674 | 
             
                muiFormControl,
         | 
| 25657 25675 | 
             
                states: ["margin", "variant"]
         | 
| 25658 25676 | 
             
              });
         | 
| 25659 | 
            -
              return /* @__PURE__ */ React.createElement(FormLabel$1, _extends$ | 
| 25677 | 
            +
              return /* @__PURE__ */ React.createElement(FormLabel$1, _extends$1({
         | 
| 25660 25678 | 
             
                "data-shrink": shrink,
         | 
| 25661 25679 | 
             
                className: clsx(classes.root, className, muiFormControl && classes.formControl, !disableAnimation && classes.animated, shrink && classes.shrink, fcs.margin === "dense" && classes.marginDense, {
         | 
| 25662 25680 | 
             
                  "filled": classes.filled,
         | 
| @@ -25765,7 +25783,7 @@ var List = /* @__PURE__ */ React.forwardRef(function List2(props, ref2) { | |
| 25765 25783 | 
             
              }, [dense]);
         | 
| 25766 25784 | 
             
              return /* @__PURE__ */ React.createElement(ListContext$1.Provider, {
         | 
| 25767 25785 | 
             
                value: context2
         | 
| 25768 | 
            -
              }, /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 25786 | 
            +
              }, /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 25769 25787 | 
             
                className: clsx(classes.root, className, dense && classes.dense, !disablePadding && classes.padding, subheader && classes.subheader),
         | 
| 25770 25788 | 
             
                ref: ref2
         | 
| 25771 25789 | 
             
              }, other), subheader, children2));
         | 
| @@ -26024,7 +26042,7 @@ var Popover = /* @__PURE__ */ React.forwardRef(function Popover2(props, ref2) { | |
| 26024 26042 | 
             
                transitionDuration = void 0;
         | 
| 26025 26043 | 
             
              }
         | 
| 26026 26044 | 
             
              var container = containerProp || (anchorEl ? ownerDocument(getAnchorEl(anchorEl)).body : void 0);
         | 
| 26027 | 
            -
              return /* @__PURE__ */ React.createElement(Modal$1, _extends$ | 
| 26045 | 
            +
              return /* @__PURE__ */ React.createElement(Modal$1, _extends$1({
         | 
| 26028 26046 | 
             
                container,
         | 
| 26029 26047 | 
             
                open,
         | 
| 26030 26048 | 
             
                ref: ref2,
         | 
| @@ -26032,7 +26050,7 @@ var Popover = /* @__PURE__ */ React.forwardRef(function Popover2(props, ref2) { | |
| 26032 26050 | 
             
                  invisible: true
         | 
| 26033 26051 | 
             
                },
         | 
| 26034 26052 | 
             
                className: clsx(classes.root, className)
         | 
| 26035 | 
            -
              }, other), /* @__PURE__ */ React.createElement(TransitionComponent, _extends$ | 
| 26053 | 
            +
              }, other), /* @__PURE__ */ React.createElement(TransitionComponent, _extends$1({
         | 
| 26036 26054 | 
             
                appear: true,
         | 
| 26037 26055 | 
             
                in: open,
         | 
| 26038 26056 | 
             
                onEnter,
         | 
| @@ -26043,7 +26061,7 @@ var Popover = /* @__PURE__ */ React.forwardRef(function Popover2(props, ref2) { | |
| 26043 26061 | 
             
                timeout: transitionDuration
         | 
| 26044 26062 | 
             
              }, TransitionProps, {
         | 
| 26045 26063 | 
             
                onEntering: createChainedFunction(handleEntering, TransitionProps.onEntering)
         | 
| 26046 | 
            -
              }), /* @__PURE__ */ React.createElement(Paper$1, _extends$ | 
| 26064 | 
            +
              }), /* @__PURE__ */ React.createElement(Paper$1, _extends$1({
         | 
| 26047 26065 | 
             
                elevation,
         | 
| 26048 26066 | 
             
                ref: handlePaperRef
         | 
| 26049 26067 | 
             
              }, PaperProps, {
         | 
| @@ -26380,7 +26398,7 @@ var MenuList = /* @__PURE__ */ React.forwardRef(function MenuList2(props, ref2) | |
| 26380 26398 | 
             
                }
         | 
| 26381 26399 | 
             
                return child;
         | 
| 26382 26400 | 
             
              });
         | 
| 26383 | 
            -
              return /* @__PURE__ */ React.createElement(List$1, _extends$ | 
| 26401 | 
            +
              return /* @__PURE__ */ React.createElement(List$1, _extends$1({
         | 
| 26384 26402 | 
             
                role: "menu",
         | 
| 26385 26403 | 
             
                ref: handleRef,
         | 
| 26386 26404 | 
             
                className,
         | 
| @@ -26512,24 +26530,24 @@ var Menu = /* @__PURE__ */ React.forwardRef(function Menu2(props, ref2) { | |
| 26512 26530 | 
             
                }
         | 
| 26513 26531 | 
             
                return child;
         | 
| 26514 26532 | 
             
              });
         | 
| 26515 | 
            -
              return /* @__PURE__ */ React.createElement(Popover$1, _extends$ | 
| 26533 | 
            +
              return /* @__PURE__ */ React.createElement(Popover$1, _extends$1({
         | 
| 26516 26534 | 
             
                getContentAnchorEl,
         | 
| 26517 26535 | 
             
                classes: PopoverClasses,
         | 
| 26518 26536 | 
             
                onClose,
         | 
| 26519 | 
            -
                TransitionProps: _extends$ | 
| 26537 | 
            +
                TransitionProps: _extends$1({
         | 
| 26520 26538 | 
             
                  onEntering: handleEntering
         | 
| 26521 26539 | 
             
                }, TransitionProps),
         | 
| 26522 26540 | 
             
                anchorOrigin: theme.direction === "rtl" ? RTL_ORIGIN : LTR_ORIGIN,
         | 
| 26523 26541 | 
             
                transformOrigin: theme.direction === "rtl" ? RTL_ORIGIN : LTR_ORIGIN,
         | 
| 26524 | 
            -
                PaperProps: _extends$ | 
| 26525 | 
            -
                  classes: _extends$ | 
| 26542 | 
            +
                PaperProps: _extends$1({}, PaperProps, {
         | 
| 26543 | 
            +
                  classes: _extends$1({}, PaperProps.classes, {
         | 
| 26526 26544 | 
             
                    root: classes.paper
         | 
| 26527 26545 | 
             
                  })
         | 
| 26528 26546 | 
             
                }),
         | 
| 26529 26547 | 
             
                open,
         | 
| 26530 26548 | 
             
                ref: ref2,
         | 
| 26531 26549 | 
             
                transitionDuration
         | 
| 26532 | 
            -
              }, other), /* @__PURE__ */ React.createElement(MenuList$1, _extends$ | 
| 26550 | 
            +
              }, other), /* @__PURE__ */ React.createElement(MenuList$1, _extends$1({
         | 
| 26533 26551 | 
             
                onKeyDown: handleListKeyDown,
         | 
| 26534 26552 | 
             
                actions: menuListActionsRef,
         | 
| 26535 26553 | 
             
                autoFocus: autoFocus && (activeItemIndex === -1 || disableAutoFocusItem),
         | 
| @@ -26649,7 +26667,7 @@ const Menu$1 = withStyles2(styles$8, { | |
| 26649 26667 | 
             
            })(Menu);
         | 
| 26650 26668 | 
             
            var NativeSelectInput = /* @__PURE__ */ React.forwardRef(function NativeSelectInput2(props, ref2) {
         | 
| 26651 26669 | 
             
              var classes = props.classes, className = props.className, disabled = props.disabled, IconComponent = props.IconComponent, inputRef = props.inputRef, _props$variant = props.variant, variant = _props$variant === void 0 ? "standard" : _props$variant, other = _objectWithoutProperties(props, ["classes", "className", "disabled", "IconComponent", "inputRef", "variant"]);
         | 
| 26652 | 
            -
              return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("select", _extends$ | 
| 26670 | 
            +
              return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("select", _extends$1({
         | 
| 26653 26671 | 
             
                className: clsx(
         | 
| 26654 26672 | 
             
                  classes.root,
         | 
| 26655 26673 | 
             
                  // TODO v5: merge root and select
         | 
| @@ -26835,11 +26853,11 @@ var NativeSelect = /* @__PURE__ */ React.forwardRef(function NativeSelect2(props | |
| 26835 26853 | 
             
                muiFormControl,
         | 
| 26836 26854 | 
             
                states: ["variant"]
         | 
| 26837 26855 | 
             
              });
         | 
| 26838 | 
            -
              return /* @__PURE__ */ React.cloneElement(input, _extends$ | 
| 26856 | 
            +
              return /* @__PURE__ */ React.cloneElement(input, _extends$1({
         | 
| 26839 26857 | 
             
                // Most of the logic is implemented in `NativeSelectInput`.
         | 
| 26840 26858 | 
             
                // The `Select` component is a simple API wrapper to expose something better to play with.
         | 
| 26841 26859 | 
             
                inputComponent: NativeSelectInput$1,
         | 
| 26842 | 
            -
                inputProps: _extends$ | 
| 26860 | 
            +
                inputProps: _extends$1({
         | 
| 26843 26861 | 
             
                  children: children2,
         | 
| 26844 26862 | 
             
                  classes,
         | 
| 26845 26863 | 
             
                  IconComponent,
         | 
| @@ -26962,7 +26980,7 @@ var NotchedOutline = /* @__PURE__ */ React.forwardRef(function NotchedOutline2(p | |
| 26962 26980 | 
             
              var theme = useTheme();
         | 
| 26963 26981 | 
             
              var align2 = theme.direction === "rtl" ? "right" : "left";
         | 
| 26964 26982 | 
             
              if (label2 !== void 0) {
         | 
| 26965 | 
            -
                return /* @__PURE__ */ React.createElement("fieldset", _extends$ | 
| 26983 | 
            +
                return /* @__PURE__ */ React.createElement("fieldset", _extends$1({
         | 
| 26966 26984 | 
             
                  "aria-hidden": true,
         | 
| 26967 26985 | 
             
                  className: clsx(classes.root, className),
         | 
| 26968 26986 | 
             
                  ref: ref2,
         | 
| @@ -26976,9 +26994,9 @@ var NotchedOutline = /* @__PURE__ */ React.forwardRef(function NotchedOutline2(p | |
| 26976 26994 | 
             
                })));
         | 
| 26977 26995 | 
             
              }
         | 
| 26978 26996 | 
             
              var labelWidth = labelWidthProp > 0 ? labelWidthProp * 0.75 + 8 : 0.01;
         | 
| 26979 | 
            -
              return /* @__PURE__ */ React.createElement("fieldset", _extends$ | 
| 26997 | 
            +
              return /* @__PURE__ */ React.createElement("fieldset", _extends$1({
         | 
| 26980 26998 | 
             
                "aria-hidden": true,
         | 
| 26981 | 
            -
                style: _extends$ | 
| 26999 | 
            +
                style: _extends$1(_defineProperty$3({}, "padding".concat(capitalize$1(align2)), 8), style2),
         | 
| 26982 27000 | 
             
                className: clsx(classes.root, className),
         | 
| 26983 27001 | 
             
                ref: ref2
         | 
| 26984 27002 | 
             
              }, other), /* @__PURE__ */ React.createElement("legend", {
         | 
| @@ -27121,7 +27139,7 @@ var styles$5 = function styles12(theme) { | |
| 27121 27139 | 
             
            };
         | 
| 27122 27140 | 
             
            var OutlinedInput = /* @__PURE__ */ React.forwardRef(function OutlinedInput2(props, ref2) {
         | 
| 27123 27141 | 
             
              var classes = props.classes, _props$fullWidth = props.fullWidth, fullWidth = _props$fullWidth === void 0 ? false : _props$fullWidth, _props$inputComponent = props.inputComponent, inputComponent = _props$inputComponent === void 0 ? "input" : _props$inputComponent, label2 = props.label, _props$labelWidth = props.labelWidth, labelWidth = _props$labelWidth === void 0 ? 0 : _props$labelWidth, _props$multiline = props.multiline, multiline = _props$multiline === void 0 ? false : _props$multiline, notched = props.notched, _props$type = props.type, type2 = _props$type === void 0 ? "text" : _props$type, other = _objectWithoutProperties(props, ["classes", "fullWidth", "inputComponent", "label", "labelWidth", "multiline", "notched", "type"]);
         | 
| 27124 | 
            -
              return /* @__PURE__ */ React.createElement(InputBase$1, _extends$ | 
| 27142 | 
            +
              return /* @__PURE__ */ React.createElement(InputBase$1, _extends$1({
         | 
| 27125 27143 | 
             
                renderSuffix: function renderSuffix(state) {
         | 
| 27126 27144 | 
             
                  return /* @__PURE__ */ React.createElement(NotchedOutline$1, {
         | 
| 27127 27145 | 
             
                    className: classes.notchedOutline,
         | 
| @@ -27130,7 +27148,7 @@ var OutlinedInput = /* @__PURE__ */ React.forwardRef(function OutlinedInput2(pro | |
| 27130 27148 | 
             
                    notched: typeof notched !== "undefined" ? notched : Boolean(state.startAdornment || state.filled || state.focused)
         | 
| 27131 27149 | 
             
                  });
         | 
| 27132 27150 | 
             
                },
         | 
| 27133 | 
            -
                classes: _extends$ | 
| 27151 | 
            +
                classes: _extends$1({}, classes, {
         | 
| 27134 27152 | 
             
                  root: clsx(classes.root, classes.underline),
         | 
| 27135 27153 | 
             
                  notchedOutline: null
         | 
| 27136 27154 | 
             
                }),
         | 
| @@ -27276,7 +27294,7 @@ const OutlinedInput$1 = withStyles2(styles$5, { | |
| 27276 27294 | 
             
              name: "MuiOutlinedInput"
         | 
| 27277 27295 | 
             
            })(OutlinedInput);
         | 
| 27278 27296 | 
             
            function areEqualValues(a2, b2) {
         | 
| 27279 | 
            -
              if (_typeof$ | 
| 27297 | 
            +
              if (_typeof$1(b2) === "object" && b2 !== null) {
         | 
| 27280 27298 | 
             
                return a2 === b2;
         | 
| 27281 27299 | 
             
              }
         | 
| 27282 27300 | 
             
              return String(a2) === String(b2);
         | 
| @@ -27526,7 +27544,7 @@ var SelectInput = /* @__PURE__ */ React.forwardRef(function SelectInput2(props, | |
| 27526 27544 | 
             
                tabIndex = disabled ? null : 0;
         | 
| 27527 27545 | 
             
              }
         | 
| 27528 27546 | 
             
              var buttonId = SelectDisplayProps.id || (name2 ? "mui-component-select-".concat(name2) : void 0);
         | 
| 27529 | 
            -
              return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", _extends$ | 
| 27547 | 
            +
              return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", _extends$1({
         | 
| 27530 27548 | 
             
                className: clsx(
         | 
| 27531 27549 | 
             
                  classes.root,
         | 
| 27532 27550 | 
             
                  // TODO v5: merge root and select
         | 
| @@ -27558,7 +27576,7 @@ var SelectInput = /* @__PURE__ */ React.forwardRef(function SelectInput2(props, | |
| 27558 27576 | 
             
                    __html: "​"
         | 
| 27559 27577 | 
             
                  }
         | 
| 27560 27578 | 
             
                })
         | 
| 27561 | 
            -
              ) : display), /* @__PURE__ */ React.createElement("input", _extends$ | 
| 27579 | 
            +
              ) : display), /* @__PURE__ */ React.createElement("input", _extends$1({
         | 
| 27562 27580 | 
             
                value: Array.isArray(value2) ? value2.join(",") : value2,
         | 
| 27563 27581 | 
             
                name: name2,
         | 
| 27564 27582 | 
             
                ref: inputRef,
         | 
| @@ -27569,19 +27587,19 @@ var SelectInput = /* @__PURE__ */ React.forwardRef(function SelectInput2(props, | |
| 27569 27587 | 
             
                autoFocus
         | 
| 27570 27588 | 
             
              }, other)), /* @__PURE__ */ React.createElement(IconComponent, {
         | 
| 27571 27589 | 
             
                className: clsx(classes.icon, classes["icon".concat(capitalize$1(variant))], open && classes.iconOpen, disabled && classes.disabled)
         | 
| 27572 | 
            -
              }), /* @__PURE__ */ React.createElement(Menu$1, _extends$ | 
| 27590 | 
            +
              }), /* @__PURE__ */ React.createElement(Menu$1, _extends$1({
         | 
| 27573 27591 | 
             
                id: "menu-".concat(name2 || ""),
         | 
| 27574 27592 | 
             
                anchorEl: displayNode,
         | 
| 27575 27593 | 
             
                open,
         | 
| 27576 27594 | 
             
                onClose: handleClose
         | 
| 27577 27595 | 
             
              }, MenuProps, {
         | 
| 27578 | 
            -
                MenuListProps: _extends$ | 
| 27596 | 
            +
                MenuListProps: _extends$1({
         | 
| 27579 27597 | 
             
                  "aria-labelledby": labelId,
         | 
| 27580 27598 | 
             
                  role: "listbox",
         | 
| 27581 27599 | 
             
                  disableListWrap: true
         | 
| 27582 27600 | 
             
                }, MenuProps.MenuListProps),
         | 
| 27583 | 
            -
                PaperProps: _extends$ | 
| 27584 | 
            -
                  style: _extends$ | 
| 27601 | 
            +
                PaperProps: _extends$1({}, MenuProps.PaperProps, {
         | 
| 27602 | 
            +
                  style: _extends$1({
         | 
| 27585 27603 | 
             
                    minWidth: menuMinWidth
         | 
| 27586 27604 | 
             
                  }, MenuProps.PaperProps != null ? MenuProps.PaperProps.style : null)
         | 
| 27587 27605 | 
             
                })
         | 
| @@ -27741,11 +27759,11 @@ var Select = /* @__PURE__ */ React.forwardRef(function Select2(props, ref2) { | |
| 27741 27759 | 
             
                }),
         | 
| 27742 27760 | 
             
                filled: _ref2
         | 
| 27743 27761 | 
             
              }[variant];
         | 
| 27744 | 
            -
              return /* @__PURE__ */ React.cloneElement(InputComponent, _extends$ | 
| 27762 | 
            +
              return /* @__PURE__ */ React.cloneElement(InputComponent, _extends$1({
         | 
| 27745 27763 | 
             
                // Most of the logic is implemented in `SelectInput`.
         | 
| 27746 27764 | 
             
                // The `Select` component is a simple API wrapper to expose something better to play with.
         | 
| 27747 27765 | 
             
                inputComponent,
         | 
| 27748 | 
            -
                inputProps: _extends$ | 
| 27766 | 
            +
                inputProps: _extends$1({
         | 
| 27749 27767 | 
             
                  children: children2,
         | 
| 27750 27768 | 
             
                  IconComponent,
         | 
| 27751 27769 | 
             
                  variant,
         | 
| @@ -27763,7 +27781,7 @@ var Select = /* @__PURE__ */ React.forwardRef(function Select2(props, ref2) { | |
| 27763 27781 | 
             
                  onOpen,
         | 
| 27764 27782 | 
             
                  open,
         | 
| 27765 27783 | 
             
                  renderValue,
         | 
| 27766 | 
            -
                  SelectDisplayProps: _extends$ | 
| 27784 | 
            +
                  SelectDisplayProps: _extends$1({
         | 
| 27767 27785 | 
             
                    id: id2
         | 
| 27768 27786 | 
             
                  }, SelectDisplayProps)
         | 
| 27769 27787 | 
             
                }, inputProps, {
         | 
| @@ -27921,7 +27939,7 @@ const Tablelvl2Context$1 = Tablelvl2Context; | |
| 27921 27939 | 
             
            var styles$3 = function styles13(theme) {
         | 
| 27922 27940 | 
             
              return {
         | 
| 27923 27941 | 
             
                /* Styles applied to the root element. */
         | 
| 27924 | 
            -
                root: _extends$ | 
| 27942 | 
            +
                root: _extends$1({}, theme.typography.body2, {
         | 
| 27925 27943 | 
             
                  display: "table-cell",
         | 
| 27926 27944 | 
             
                  verticalAlign: "inherit",
         | 
| 27927 27945 | 
             
                  // Workaround for a rendering bug with spanned columns in Chrome 62.0.
         | 
| @@ -28033,7 +28051,7 @@ var TableCell = /* @__PURE__ */ React.forwardRef(function TableCell2(props, ref2 | |
| 28033 28051 | 
             
              if (sortDirection) {
         | 
| 28034 28052 | 
             
                ariaSort = sortDirection === "asc" ? "ascending" : "descending";
         | 
| 28035 28053 | 
             
              }
         | 
| 28036 | 
            -
              return /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 28054 | 
            +
              return /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 28037 28055 | 
             
                ref: ref2,
         | 
| 28038 28056 | 
             
                className: clsx(classes.root, classes[variant], className, align2 !== "inherit" && classes["align".concat(capitalize$1(align2))], padding2 !== "normal" && classes["padding".concat(capitalize$1(padding2))], size !== "medium" && classes["size".concat(capitalize$1(size))], variant === "head" && table && table.stickyHeader && classes.stickyHeader),
         | 
| 28039 28057 | 
             
                "aria-sort": ariaSort,
         | 
| @@ -28130,7 +28148,7 @@ var defaultComponent = "tr"; | |
| 28130 28148 | 
             
            var TableRow = /* @__PURE__ */ React.forwardRef(function TableRow2(props, ref2) {
         | 
| 28131 28149 | 
             
              var classes = props.classes, className = props.className, _props$component = props.component, Component = _props$component === void 0 ? defaultComponent : _props$component, _props$hover = props.hover, hover2 = _props$hover === void 0 ? false : _props$hover, _props$selected = props.selected, selected = _props$selected === void 0 ? false : _props$selected, other = _objectWithoutProperties(props, ["classes", "className", "component", "hover", "selected"]);
         | 
| 28132 28150 | 
             
              var tablelvl2 = React.useContext(Tablelvl2Context$1);
         | 
| 28133 | 
            -
              return /* @__PURE__ */ React.createElement(Component, _extends$ | 
| 28151 | 
            +
              return /* @__PURE__ */ React.createElement(Component, _extends$1({
         | 
| 28134 28152 | 
             
                ref: ref2,
         | 
| 28135 28153 | 
             
                className: clsx(classes.root, className, tablelvl2 && {
         | 
| 28136 28154 | 
             
                  "head": classes.head,
         | 
| @@ -28206,7 +28224,7 @@ var TextField = /* @__PURE__ */ React.forwardRef(function TextField2(props, ref2 | |
| 28206 28224 | 
             
              var helperTextId = helperText && id2 ? "".concat(id2, "-helper-text") : void 0;
         | 
| 28207 28225 | 
             
              var inputLabelId = label2 && id2 ? "".concat(id2, "-label") : void 0;
         | 
| 28208 28226 | 
             
              var InputComponent = variantComponent[variant];
         | 
| 28209 | 
            -
              var InputElement = /* @__PURE__ */ React.createElement(InputComponent, _extends$ | 
| 28227 | 
            +
              var InputElement = /* @__PURE__ */ React.createElement(InputComponent, _extends$1({
         | 
| 28210 28228 | 
             
                "aria-describedby": helperTextId,
         | 
| 28211 28229 | 
             
                autoComplete,
         | 
| 28212 28230 | 
             
                autoFocus,
         | 
| @@ -28228,7 +28246,7 @@ var TextField = /* @__PURE__ */ React.forwardRef(function TextField2(props, ref2 | |
| 28228 28246 | 
             
                placeholder,
         | 
| 28229 28247 | 
             
                inputProps
         | 
| 28230 28248 | 
             
              }, InputMore, InputProps));
         | 
| 28231 | 
            -
              return /* @__PURE__ */ React.createElement(FormControl$1, _extends$ | 
| 28249 | 
            +
              return /* @__PURE__ */ React.createElement(FormControl$1, _extends$1({
         | 
| 28232 28250 | 
             
                className: clsx(classes.root, className),
         | 
| 28233 28251 | 
             
                disabled,
         | 
| 28234 28252 | 
             
                error: error2,
         | 
| @@ -28238,16 +28256,16 @@ var TextField = /* @__PURE__ */ React.forwardRef(function TextField2(props, ref2 | |
| 28238 28256 | 
             
                required: required2,
         | 
| 28239 28257 | 
             
                color: color2,
         | 
| 28240 28258 | 
             
                variant
         | 
| 28241 | 
            -
              }, other), label2 && /* @__PURE__ */ React.createElement(InputLabel$1, _extends$ | 
| 28259 | 
            +
              }, other), label2 && /* @__PURE__ */ React.createElement(InputLabel$1, _extends$1({
         | 
| 28242 28260 | 
             
                htmlFor: id2,
         | 
| 28243 28261 | 
             
                id: inputLabelId
         | 
| 28244 | 
            -
              }, InputLabelProps), label2), select2 ? /* @__PURE__ */ React.createElement(Select$1, _extends$ | 
| 28262 | 
            +
              }, InputLabelProps), label2), select2 ? /* @__PURE__ */ React.createElement(Select$1, _extends$1({
         | 
| 28245 28263 | 
             
                "aria-describedby": helperTextId,
         | 
| 28246 28264 | 
             
                id: id2,
         | 
| 28247 28265 | 
             
                labelId: inputLabelId,
         | 
| 28248 28266 | 
             
                value: value2,
         | 
| 28249 28267 | 
             
                input: InputElement
         | 
| 28250 | 
            -
              }, SelectProps), children2) : InputElement, helperText && /* @__PURE__ */ React.createElement(FormHelperText$1, _extends$ | 
| 28268 | 
            +
              }, SelectProps), children2) : InputElement, helperText && /* @__PURE__ */ React.createElement(FormHelperText$1, _extends$1({
         | 
| 28251 28269 | 
             
                id: helperTextId
         | 
| 28252 28270 | 
             
              }, FormHelperTextProps), helperText));
         | 
| 28253 28271 | 
             
            });
         | 
| @@ -85319,7 +85337,6 @@ function CellSetExpressionPlotSubscriber(props) { | |
| 85319 85337 | 
             
                coordinationScopes
         | 
| 85320 85338 | 
             
              );
         | 
| 85321 85339 | 
             
              const [width2, height2, containerRef] = useGridItemSize();
         | 
| 85322 | 
            -
              const [urls, addUrl] = useUrls(loaders, dataset);
         | 
| 85323 85340 | 
             
              const transformOptions = VALUE_TRANSFORM_OPTIONS;
         | 
| 85324 85341 | 
             
              const [expressionData, loadedFeatureSelection, featureSelectionStatus] = useFeatureSelection(
         | 
| 85325 85342 | 
             
                loaders,
         | 
| @@ -85328,26 +85345,23 @@ function CellSetExpressionPlotSubscriber(props) { | |
| 85328 85345 | 
             
                geneSelection,
         | 
| 85329 85346 | 
             
                { obsType, featureType, featureValueType }
         | 
| 85330 85347 | 
             
              );
         | 
| 85331 | 
            -
              const [{ featureLabelsMap }, featureLabelsStatus] = useFeatureLabelsData(
         | 
| 85348 | 
            +
              const [{ featureLabelsMap }, featureLabelsStatus, featureLabelsUrls] = useFeatureLabelsData(
         | 
| 85332 85349 | 
             
                loaders,
         | 
| 85333 85350 | 
             
                dataset,
         | 
| 85334 | 
            -
                addUrl,
         | 
| 85335 85351 | 
             
                false,
         | 
| 85336 85352 | 
             
                {},
         | 
| 85337 85353 | 
             
                {},
         | 
| 85338 85354 | 
             
                { featureType }
         | 
| 85339 85355 | 
             
              );
         | 
| 85340 | 
            -
              const [{ obsIndex }, matrixIndicesStatus] = useObsFeatureMatrixIndices(
         | 
| 85356 | 
            +
              const [{ obsIndex }, matrixIndicesStatus, matrixIndicesUrls] = useObsFeatureMatrixIndices(
         | 
| 85341 85357 | 
             
                loaders,
         | 
| 85342 85358 | 
             
                dataset,
         | 
| 85343 | 
            -
                addUrl,
         | 
| 85344 85359 | 
             
                false,
         | 
| 85345 85360 | 
             
                { obsType, featureType, featureValueType }
         | 
| 85346 85361 | 
             
              );
         | 
| 85347 | 
            -
              const [{ obsSets: cellSets }, obsSetsStatus] = useObsSetsData(
         | 
| 85362 | 
            +
              const [{ obsSets: cellSets }, obsSetsStatus, obsSetsUrls] = useObsSetsData(
         | 
| 85348 85363 | 
             
                loaders,
         | 
| 85349 85364 | 
             
                dataset,
         | 
| 85350 | 
            -
                addUrl,
         | 
| 85351 85365 | 
             
                true,
         | 
| 85352 85366 | 
             
                {},
         | 
| 85353 85367 | 
             
                {},
         | 
| @@ -85359,6 +85373,11 @@ function CellSetExpressionPlotSubscriber(props) { | |
| 85359 85373 | 
             
                obsSetsStatus,
         | 
| 85360 85374 | 
             
                featureLabelsStatus
         | 
| 85361 85375 | 
             
              ]);
         | 
| 85376 | 
            +
              const urls = useUrls([
         | 
| 85377 | 
            +
                featureLabelsUrls,
         | 
| 85378 | 
            +
                matrixIndicesUrls,
         | 
| 85379 | 
            +
                obsSetsUrls
         | 
| 85380 | 
            +
              ]);
         | 
| 85362 85381 | 
             
              const [expressionArr, setArr, expressionMax] = useExpressionByCellSet(
         | 
| 85363 85382 | 
             
                expressionData,
         | 
| 85364 85383 | 
             
                obsIndex,
         | 
| @@ -85571,21 +85590,18 @@ function CellSetSizesPlotSubscriber(props) { | |
| 85571 85590 | 
             
              }] = useCoordination(COMPONENT_COORDINATION_TYPES[ViewType$1.OBS_SET_SIZES], coordinationScopes);
         | 
| 85572 85591 | 
             
              const title2 = titleOverride || `${capitalize$2(obsType)} Set Sizes`;
         | 
| 85573 85592 | 
             
              const [width2, height2, containerRef] = useGridItemSize();
         | 
| 85574 | 
            -
              const [urls, addUrl] = useUrls(loaders, dataset);
         | 
| 85575 85593 | 
             
              const [currentHierarchy, setCurrentHierarchy] = useState([]);
         | 
| 85576 85594 | 
             
              const [prevCellSetSelection, setPrevCellSetSelection] = useState([]);
         | 
| 85577 | 
            -
              const [{ obsSets: cellSets }, obsSetsStatus] = useObsSetsData(
         | 
| 85595 | 
            +
              const [{ obsSets: cellSets }, obsSetsStatus, obsSetsUrls] = useObsSetsData(
         | 
| 85578 85596 | 
             
                loaders,
         | 
| 85579 85597 | 
             
                dataset,
         | 
| 85580 | 
            -
                addUrl,
         | 
| 85581 85598 | 
             
                true,
         | 
| 85582 85599 | 
             
                { setObsSetSelection: setCellSetSelection, setObsSetColor: setCellSetColor },
         | 
| 85583 85600 | 
             
                { obsSetSelection: cellSetSelection, obsSetColor: cellSetColor },
         | 
| 85584 85601 | 
             
                { obsType }
         | 
| 85585 85602 | 
             
              );
         | 
| 85586 | 
            -
              const isReady = useReady([
         | 
| 85587 | 
            -
             | 
| 85588 | 
            -
              ]);
         | 
| 85603 | 
            +
              const isReady = useReady([obsSetsStatus]);
         | 
| 85604 | 
            +
              const urls = useUrls([obsSetsUrls]);
         | 
| 85589 85605 | 
             
              const mergedCellSets = useMemo(
         | 
| 85590 85606 | 
             
                () => mergeObsSets(cellSets, additionalCellSets),
         | 
| 85591 85607 | 
             
                [cellSets, additionalCellSets]
         | 
| @@ -85773,11 +85789,13 @@ function ExpressionHistogramSubscriber(props) { | |
| 85773 85789 | 
             
                coordinationScopes
         | 
| 85774 85790 | 
             
              );
         | 
| 85775 85791 | 
             
              const [width2, height2, containerRef] = useGridItemSize();
         | 
| 85776 | 
            -
              const [ | 
| 85777 | 
            -
             | 
| 85792 | 
            +
              const [
         | 
| 85793 | 
            +
                { obsIndex, featureIndex, obsFeatureMatrix },
         | 
| 85794 | 
            +
                matrixStatus,
         | 
| 85795 | 
            +
                matrixUrls
         | 
| 85796 | 
            +
              ] = useObsFeatureMatrixData(
         | 
| 85778 85797 | 
             
                loaders,
         | 
| 85779 85798 | 
             
                dataset,
         | 
| 85780 | 
            -
                addUrl,
         | 
| 85781 85799 | 
             
                true,
         | 
| 85782 85800 | 
             
                {},
         | 
| 85783 85801 | 
             
                {},
         | 
| @@ -85794,6 +85812,9 @@ function ExpressionHistogramSubscriber(props) { | |
| 85794 85812 | 
             
                matrixStatus,
         | 
| 85795 85813 | 
             
                featureSelectionStatus
         | 
| 85796 85814 | 
             
              ]);
         | 
| 85815 | 
            +
              const urls = useUrls([
         | 
| 85816 | 
            +
                matrixUrls
         | 
| 85817 | 
            +
              ]);
         | 
| 85797 85818 | 
             
              const firstGeneSelected = geneSelection && geneSelection.length >= 1 ? geneSelection[0] : null;
         | 
| 85798 85819 | 
             
              const data2 = useMemo(() => {
         | 
| 85799 85820 | 
             
                if (firstGeneSelected && obsFeatureMatrix && expressionData) {
         |