rapidfireai 0.0.1__py3-none-any.whl → 0.9.10__py3-none-any.whl
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.
Potentially problematic release.
This version of rapidfireai might be problematic. Click here for more details.
- rapidfireai/__init__.py +11 -5
- rapidfireai/automl/__init__.py +20 -0
- rapidfireai/automl/base.py +48 -0
- rapidfireai/automl/datatypes.py +42 -0
- rapidfireai/automl/grid_search.py +125 -0
- rapidfireai/automl/model_config.py +102 -0
- rapidfireai/automl/random_search.py +145 -0
- rapidfireai/backend/__init__.py +0 -0
- rapidfireai/backend/chunks.py +63 -0
- rapidfireai/backend/controller.py +637 -0
- rapidfireai/backend/scheduler.py +137 -0
- rapidfireai/backend/worker.py +272 -0
- rapidfireai/cli.py +380 -0
- rapidfireai/db/__init__.py +0 -0
- rapidfireai/db/db_interface.py +135 -0
- rapidfireai/db/rf_db.py +694 -0
- rapidfireai/db/tables.sql +64 -0
- rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai/experiment.py +168 -0
- rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai/frontend/build/index.html +1 -0
- rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai/frontend/build/report.html +39 -0
- rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai/frontend/server.py +25 -0
- rapidfireai/ml/__init__.py +0 -0
- rapidfireai/ml/callbacks.py +176 -0
- rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai/ml/trainer.py +309 -0
- rapidfireai/start.sh +634 -0
- rapidfireai/utils/__init__.py +0 -0
- rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai/utils/constants.py +141 -0
- rapidfireai/utils/datapaths.py +69 -0
- rapidfireai/utils/exceptions.py +82 -0
- rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai/utils/logging.py +87 -0
- rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai/utils/serialize.py +15 -0
- rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai/version.py +6 -0
- rapidfireai-0.9.10.dist-info/METADATA +247 -0
- rapidfireai-0.9.10.dist-info/RECORD +318 -0
- rapidfireai-0.9.10.dist-info/entry_points.txt +2 -0
- rapidfireai-0.0.1.dist-info/METADATA +0 -37
- rapidfireai-0.0.1.dist-info/RECORD +0 -6
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.10.dist-info}/WHEEL +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.10.dist-info}/licenses/LICENSE +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.10.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 9720.19d5ae76.chunk.js.LICENSE.txt */
|
|
2
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9720],{76219:function(e,t,n){"use strict";function r(e){var t=!1,n=new Promise((function(n,r){e.then((function(){return!t&&n.apply(void 0,arguments)})).catch((function(e){return!t&&r(e)}))}));return{promise:n,cancel:function(){t=!0}}}n.r(t),n.d(t,{default:function(){return r}})},64608:function(e,t,n){"use strict";n.r(t),n.d(t,{allEvents:function(){return x},animationEvents:function(){return m},clipboardEvents:function(){return r},compositionEvents:function(){return a},focusEvents:function(){return i},formEvents:function(){return u},genericEvents:function(){return s},imageEvents:function(){return g},keyboardEvents:function(){return o},mediaEvents:function(){return v},mouseEvents:function(){return c},otherEvents:function(){return b},pointerEvents:function(){return l},selectionEvents:function(){return f},touchEvents:function(){return d},transitionEvents:function(){return y},uiEvents:function(){return p},wheelEvents:function(){return h}});var r=["onCopy","onCut","onPaste"],a=["onCompositionEnd","onCompositionStart","onCompositionUpdate"],o=["onKeyDown","onKeyPress","onKeyUp"],i=["onFocus","onBlur"],u=["onChange","onInput","onInvalid","onReset","onSubmit"],s=["onError","onLoad"],c=["onClick","onContextMenu","onDoubleClick","onDrag","onDragEnd","onDragEnter","onDragExit","onDragLeave","onDragOver","onDragStart","onDrop","onMouseDown","onMouseEnter","onMouseLeave","onMouseMove","onMouseOut","onMouseOver","onMouseUp"],l=["onPointerDown","onPointerMove","onPointerUp","onPointerCancel","onGotPointerCapture","onLostPointerCapture","onPointerEnter","onPointerLeave","onPointerOver","onPointerOut"],f=["onSelect"],d=["onTouchCancel","onTouchEnd","onTouchMove","onTouchStart"],p=["onScroll"],h=["onWheel"],v=["onAbort","onCanPlay","onCanPlayThrough","onDurationChange","onEmptied","onEncrypted","onEnded","onError","onLoadedData","onLoadedMetadata","onLoadStart","onPause","onPlay","onPlaying","onProgress","onRateChange","onSeeked","onSeeking","onStalled","onSuspend","onTimeUpdate","onVolumeChange","onWaiting"],g=["onLoad","onError"],m=["onAnimationStart","onAnimationEnd","onAnimationIteration"],y=["onTransitionEnd"],b=["onToggle"],x=[].concat(r,a,o,i,u,s,c,l,f,d,p,h,v,g,m,y,b);t.default=function(e,t){var n={};return x.forEach((function(r){r in e&&(n[r]=t?function(n){return e[r](n,t(r))}:e[r])})),n}},98029:function(e,t,n){"use strict";function r(){return Array.prototype.slice.call(arguments).reduce((function(e,t){return e.concat(t)}),[]).filter((function(e){return"string"===typeof e})).join(" ")}n.r(t),n.d(t,{default:function(){return r}})},37563:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SimpleLinkService=t.PDFLinkService=void 0;var r=n(49120);function a(e){return a="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function u(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}var s=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.eventBus,a=t.externalLinkTarget,i=void 0===a?null:a,u=t.externalLinkRel,s=void 0===u?null:u;o(this,e),this.eventBus=n||(0,r.getGlobalEventBus)(),this.externalLinkTarget=i,this.externalLinkRel=s,this.baseUrl=null,this.pdfDocument=null,this.pdfViewer=null,this.pdfHistory=null,this._pagesRefCache=null}return u(e,[{key:"setDocument",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.baseUrl=t,this.pdfDocument=e,this._pagesRefCache=Object.create(null)}},{key:"setViewer",value:function(e){this.pdfViewer=e}},{key:"setHistory",value:function(e){this.pdfHistory=e}},{key:"navigateTo",value:function(e){var t=this,n=function n(r){var a,o=r.namedDest,i=r.explicitDest,u=i[0];if(u instanceof Object){if(null===(a=t._cachedPageNumber(u)))return void t.pdfDocument.getPageIndex(u).then((function(e){t.cachePageRef(e+1,u),n({namedDest:o,explicitDest:i})})).catch((function(){console.error('PDFLinkService.navigateTo: "'.concat(u,'" is not ')+'a valid page reference, for dest="'.concat(e,'".'))}))}else{if(!Number.isInteger(u))return void console.error('PDFLinkService.navigateTo: "'.concat(u,'" is not ')+'a valid destination reference, for dest="'.concat(e,'".'));a=u+1}!a||a<1||a>t.pagesCount?console.error('PDFLinkService.navigateTo: "'.concat(a,'" is not ')+'a valid page number, for dest="'.concat(e,'".')):(t.pdfHistory&&(t.pdfHistory.pushCurrentPosition(),t.pdfHistory.push({namedDest:o,explicitDest:i,pageNumber:a})),t.pdfViewer.scrollPageIntoView({pageNumber:a,destArray:i}))};new Promise((function(n,r){"string"!==typeof e?n({namedDest:"",explicitDest:e}):t.pdfDocument.getDestination(e).then((function(t){n({namedDest:e,explicitDest:t})}))})).then((function(t){Array.isArray(t.explicitDest)?n(t):console.error('PDFLinkService.navigateTo: "'.concat(t.explicitDest,'" is')+' not a valid destination array, for dest="'.concat(e,'".'))}))}},{key:"getDestinationHash",value:function(e){if("string"===typeof e)return this.getAnchorUrl("#"+escape(e));if(Array.isArray(e)){var t=JSON.stringify(e);return this.getAnchorUrl("#"+escape(t))}return this.getAnchorUrl("")}},{key:"getAnchorUrl",value:function(e){return(this.baseUrl||"")+e}},{key:"setHash",value:function(e){var t,n;if(e.includes("=")){var o=(0,r.parseQueryString)(e);if("search"in o&&this.eventBus.dispatch("findfromurlhash",{source:this,query:o.search.replace(/"/g,""),phraseSearch:"true"===o.phrase}),"nameddest"in o)return void this.navigateTo(o.nameddest);if("page"in o&&(t=0|o.page||1),"zoom"in o){var i=o.zoom.split(","),u=i[0],s=parseFloat(u);u.includes("Fit")?"Fit"===u||"FitB"===u?n=[null,{name:u}]:"FitH"===u||"FitBH"===u||"FitV"===u||"FitBV"===u?n=[null,{name:u},i.length>1?0|i[1]:null]:"FitR"===u?5!==i.length?console.error('PDFLinkService.setHash: Not enough parameters for "FitR".'):n=[null,{name:u},0|i[1],0|i[2],0|i[3],0|i[4]]:console.error('PDFLinkService.setHash: "'.concat(u,'" is not ')+"a valid zoom value."):n=[null,{name:"XYZ"},i.length>1?0|i[1]:null,i.length>2?0|i[2]:null,s?s/100:u]}n?this.pdfViewer.scrollPageIntoView({pageNumber:t||this.page,destArray:n,allowNegativeOffset:!0}):t&&(this.page=t),"pagemode"in o&&this.eventBus.dispatch("pagemode",{source:this,mode:o.pagemode})}else{n=unescape(e);try{n=JSON.parse(n),Array.isArray(n)||(n=n.toString())}catch(c){}if("string"===typeof n||function(e){if(!Array.isArray(e))return!1;var t=e.length,n=!0;if(t<2)return!1;var r=e[0];if(("object"!==a(r)||!Number.isInteger(r.num)||!Number.isInteger(r.gen))&&!(Number.isInteger(r)&&r>=0))return!1;var o=e[1];if("object"!==a(o)||"string"!==typeof o.name)return!1;switch(o.name){case"XYZ":if(5!==t)return!1;break;case"Fit":case"FitB":return 2===t;case"FitH":case"FitBH":case"FitV":case"FitBV":if(3!==t)return!1;break;case"FitR":if(6!==t)return!1;n=!1;break;default:return!1}for(var i=2;i<t;i++){var u=e[i];if(!("number"===typeof u||n&&null===u))return!1}return!0}(n))return void this.navigateTo(n);console.error('PDFLinkService.setHash: "'.concat(unescape(e),'" is not ')+"a valid destination.")}}},{key:"executeNamedAction",value:function(e){switch(e){case"GoBack":this.pdfHistory&&this.pdfHistory.back();break;case"GoForward":this.pdfHistory&&this.pdfHistory.forward();break;case"NextPage":this.page<this.pagesCount&&this.page++;break;case"PrevPage":this.page>1&&this.page--;break;case"LastPage":this.page=this.pagesCount;break;case"FirstPage":this.page=1}this.eventBus.dispatch("namedaction",{source:this,action:e})}},{key:"cachePageRef",value:function(e,t){if(t){var n=t.num+" "+t.gen+" R";this._pagesRefCache[n]=e}}},{key:"_cachedPageNumber",value:function(e){var t=e.num+" "+e.gen+" R";return this._pagesRefCache&&this._pagesRefCache[t]||null}},{key:"isPageVisible",value:function(e){return this.pdfViewer.isPageVisible(e)}},{key:"pagesCount",get:function(){return this.pdfDocument?this.pdfDocument.numPages:0}},{key:"page",get:function(){return this.pdfViewer.currentPageNumber},set:function(e){this.pdfViewer.currentPageNumber=e}},{key:"rotation",get:function(){return this.pdfViewer.pagesRotation},set:function(e){this.pdfViewer.pagesRotation=e}}]),e}();t.PDFLinkService=s;var c=function(){function e(){o(this,e),this.externalLinkTarget=null,this.externalLinkRel=null}return u(e,[{key:"navigateTo",value:function(e){}},{key:"getDestinationHash",value:function(e){return"#"}},{key:"getAnchorUrl",value:function(e){return"#"}},{key:"setHash",value:function(e){}},{key:"executeNamedAction",value:function(e){}},{key:"cachePageRef",value:function(e,t){}},{key:"isPageVisible",value:function(e){return!0}},{key:"pagesCount",get:function(){return 0}},{key:"page",get:function(){return 0},set:function(e){}},{key:"rotation",get:function(){return 0},set:function(e){}}]),e}();t.SimpleLinkService=c},49120:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isValidRotation=function(e){return Number.isInteger(e)&&e%90===0},t.isValidScrollMode=function(e){return Number.isInteger(e)&&Object.values(f).includes(e)&&e!==f.UNKNOWN},t.isValidSpreadMode=function(e){return Number.isInteger(e)&&Object.values(d).includes(e)&&e!==d.UNKNOWN},t.isPortraitOrientation=function(e){return e.width<=e.height},t.getGlobalEventBus=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];x||(x=new b({dispatchToDOM:e}));return x},t.getPDFFileNameFromURL=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"document.pdf";if("string"!==typeof e)return t;if(function(e){var t=0,n=e.length;for(;t<n&&""===e[t].trim();)t++;return"data:"===e.substring(t,t+5).toLowerCase()}(e))return console.warn('getPDFFileNameFromURL: ignoring "data:" URL for performance reasons.'),t;var n=/[^\/?#=]+\.pdf\b(?!.*\.pdf\b)/i,r=/^(?:(?:[^:]+:)?\/\/[^\/]+)?([^?#]*)(\?[^#]*)?(#.*)?$/.exec(e),a=n.exec(r[1])||n.exec(r[2])||n.exec(r[3]);if(a&&(a=a[0]).includes("%"))try{a=n.exec(decodeURIComponent(a))[0]}catch(o){}return a||t},t.noContextMenuHandler=function(e){e.preventDefault()},t.parseQueryString=function(e){for(var t=e.split("&"),n=Object.create(null),r=0,a=t.length;r<a;++r){var o=t[r].split("="),i=o[0].toLowerCase(),u=o.length>1?o[1]:null;n[decodeURIComponent(i)]=decodeURIComponent(u)}return n},t.backtrackBeforeAllVisibleElements=g,t.getVisibleElements=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],a=e.scrollTop,o=a+e.clientHeight,i=e.scrollLeft,u=i+e.clientWidth;var s=[],c=t.length,l=0===c?0:v(t,r?function(e){var t=e.div;return t.offsetLeft+t.clientLeft+t.clientWidth>i}:function(e){var t=e.div;return t.offsetTop+t.clientTop+t.clientHeight>a});l>0&&l<c&&!r&&(l=g(l,t,a));for(var f=r?u:-1,d=l;d<c;d++){var p=t[d],h=p.div,m=h.offsetLeft+h.clientLeft,y=h.offsetTop+h.clientTop,b=h.clientWidth,x=h.clientHeight,w=m+b,k=y+x;if(-1===f)k>=o&&(f=k);else if((r?m:y)>f)break;if(!(k<=a||y>=o||w<=i||m>=u)){var P=(x-(Math.max(0,a-y)+Math.max(0,k-o)))*(b-(Math.max(0,i-m)+Math.max(0,w-u)))*100/x/b|0;s.push({id:p.id,x:m,y:y,view:p,percent:P})}}var E=s[0],O=s[s.length-1];n&&s.sort((function(e,t){var n=e.percent-t.percent;return Math.abs(n)>.001?-n:e.id-t.id}));return{first:E,last:O,views:s}},t.roundToDivide=function(e,t){var n=e%t;return 0===n?e:Math.round(e-n+t)},t.getPageSizeInches=function(e){var t=e.view,n=e.userUnit,r=e.rotate,a=(d=t,p=4,function(e){if(Array.isArray(e))return e}(d)||function(e,t){var n=[],r=!0,a=!1,o=void 0;try{for(var i,u=e[Symbol.iterator]();!(r=(i=u.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(s){a=!0,o=s}finally{try{r||null==u.return||u.return()}finally{if(a)throw o}}return n}(d,p)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()),o=a[0],i=a[1],u=a[2],s=a[3],c=r%180!==0,l=(u-o)/72*n,f=(s-i)/72*n;var d,p;return{width:c?f:l,height:c?l:f}},t.approximateFraction=function(e){if(Math.floor(e)===e)return[e,1];var t=1/e;if(t>8)return[1,8];if(Math.floor(t)===t)return[1,t];var n,r=e>1?t:e,a=0,o=1,i=1,u=1;for(;;){var s=a+i,c=o+u;if(c>8)break;r<=s/c?(i=s,u=c):(a=s,o=c)}n=r-a/o<i/u-r?r===e?[a,o]:[o,a]:r===e?[i,u]:[u,i];return n},t.getOutputScale=function(e){var t=window.devicePixelRatio||1,n=e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1,r=t/n;return{sx:r,sy:r,scaled:1!==r}},t.scrollIntoView=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=e.offsetParent;if(!r)return void console.error("offsetParent is not set -- cannot scroll");var a=e.offsetTop+e.clientTop,o=e.offsetLeft+e.clientLeft;for(;r.clientHeight===r.scrollHeight&&r.clientWidth===r.scrollWidth||n&&"hidden"===getComputedStyle(r).overflow;)if(r.dataset._scaleY&&(a/=r.dataset._scaleY,o/=r.dataset._scaleX),a+=r.offsetTop,o+=r.offsetLeft,!(r=r.offsetParent))return;t&&(void 0!==t.top&&(a+=t.top),void 0!==t.left&&(o+=t.left,r.scrollLeft=o));r.scrollTop=a},t.watchScroll=function(e,t){var n=function(n){a||(a=window.requestAnimationFrame((function(){a=null;var n=e.scrollLeft,o=r.lastX;n!==o&&(r.right=n>o),r.lastX=n;var i=e.scrollTop,u=r.lastY;i!==u&&(r.down=i>u),r.lastY=i,t(r)})))},r={right:!0,down:!0,lastX:e.scrollLeft,lastY:e.scrollTop,_eventHandler:n},a=null;return e.addEventListener("scroll",n,!0),r},t.binarySearchFirstItem=v,t.normalizeWheelEventDelta=function(e){var t=Math.sqrt(e.deltaX*e.deltaX+e.deltaY*e.deltaY),n=Math.atan2(e.deltaY,e.deltaX);-.25*Math.PI<n&&n<.75*Math.PI&&(t=-t);0===e.deltaMode?t/=900:1===e.deltaMode&&(t/=30);return t},t.waitOnEventOrTimeout=function(e){var t=e.target,n=e.name,r=e.delay,a=void 0===r?0:r;return new Promise((function(e,r){if("object"!==s(t)||!n||"string"!==typeof n||!(Number.isInteger(a)&&a>=0))throw new Error("waitOnEventOrTimeout - invalid parameters.");function o(r){t instanceof b?t.off(n,i):t.removeEventListener(n,i),c&&clearTimeout(c),e(r)}var i=o.bind(null,m.EVENT);t instanceof b?t.on(n,i):t.addEventListener(n,i);var u=o.bind(null,m.TIMEOUT),c=setTimeout(u,a)}))},t.moveToEndOfArray=function(e,t){for(var n=[],r=e.length,a=0,o=0;o<r;++o)t(e[o])?n.push(e[o]):(e[a]=e[o],++a);for(var i=0;a<r;++i,++a)e[a]=n[i]},t.WaitOnType=t.animationStarted=t.ProgressBar=t.EventBus=t.NullL10n=t.SpreadMode=t.ScrollMode=t.TextLayerMode=t.RendererType=t.PresentationModeState=t.VERTICAL_PADDING=t.SCROLLBAR_PADDING=t.MAX_AUTO_SCALE=t.UNKNOWN_SCALE=t.MAX_SCALE=t.MIN_SCALE=t.DEFAULT_SCALE=t.DEFAULT_SCALE_VALUE=t.CSS_UNITS=void 0;var r,a=(r=n(54756))&&r.__esModule?r:{default:r};function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function u(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}function s(e){return s="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function c(e,t,n,r,a,o,i){try{var u=e[o](i),s=u.value}catch(c){return void n(c)}u.done?t(s):Promise.resolve(s).then(r,a)}function l(e){return function(){var t=this,n=arguments;return new Promise((function(r,a){var o=e.apply(t,n);function i(e){c(o,r,a,i,u,"next",e)}function u(e){c(o,r,a,i,u,"throw",e)}i(void 0)}))}}t.CSS_UNITS=96/72;t.DEFAULT_SCALE_VALUE="auto";t.DEFAULT_SCALE=1;t.MIN_SCALE=.1;t.MAX_SCALE=10;t.UNKNOWN_SCALE=0;t.MAX_AUTO_SCALE=1.25;t.SCROLLBAR_PADDING=40;t.VERTICAL_PADDING=5;t.PresentationModeState={UNKNOWN:0,NORMAL:1,CHANGING:2,FULLSCREEN:3};t.RendererType={CANVAS:"canvas",SVG:"svg"};t.TextLayerMode={DISABLE:0,ENABLE:1,ENABLE_ENHANCE:2};var f={UNKNOWN:-1,VERTICAL:0,HORIZONTAL:1,WRAPPED:2};t.ScrollMode=f;var d={UNKNOWN:-1,NONE:0,ODD:1,EVEN:2};function p(e,t){return t?e.replace(/\{\{\s*(\w+)\s*\}\}/g,(function(e,n){return n in t?t[n]:"{{"+n+"}}"})):e}t.SpreadMode=d;var h={getLanguage:function(){var e=l(a.default.mark((function e(){return a.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return","en-us");case 1:case"end":return e.stop()}}),e,this)})));return function(){return e.apply(this,arguments)}}(),getDirection:function(){var e=l(a.default.mark((function e(){return a.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return","ltr");case 1:case"end":return e.stop()}}),e,this)})));return function(){return e.apply(this,arguments)}}(),get:function(){var e=l(a.default.mark((function e(t,n,r){return a.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",p(r,n));case 1:case"end":return e.stop()}}),e,this)})));return function(t,n,r){return e.apply(this,arguments)}}(),translate:function(){var e=l(a.default.mark((function e(t){return a.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:case"end":return e.stop()}}),e,this)})));return function(t){return e.apply(this,arguments)}}()};function v(e,t){var n=0,r=e.length-1;if(0===e.length||!t(e[r]))return e.length;if(t(e[n]))return n;for(;n<r;){var a=n+r>>1;t(e[a])?r=a:n=a+1}return n}function g(e,t,n){if(e<2)return e;var r=t[e].div,a=r.offsetTop+r.clientTop;a>=n&&(a=(r=t[e-1].div).offsetTop+r.clientTop);for(var o=e-2;o>=0&&!((r=t[o].div).offsetTop+r.clientTop+r.clientHeight<=a);--o)e=o;return e}t.NullL10n=h;var m={EVENT:"event",TIMEOUT:"timeout"};t.WaitOnType=m;var y=new Promise((function(e){"undefined"!==typeof window?window.requestAnimationFrame(e):setTimeout(e,20)}));t.animationStarted=y;var b=function(){function e(){var t=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).dispatchToDOM,n=void 0!==t&&t;o(this,e),this._listeners=Object.create(null),this._dispatchToDOM=!0===n}return u(e,[{key:"on",value:function(e,t){var n=this._listeners[e];n||(n=[],this._listeners[e]=n),n.push(t)}},{key:"off",value:function(e,t){var n,r=this._listeners[e];!r||(n=r.indexOf(t))<0||r.splice(n,1)}},{key:"dispatch",value:function(e){var t=this._listeners[e];if(t&&0!==t.length){var n=Array.prototype.slice.call(arguments,1);t.slice(0).forEach((function(e){e.apply(null,n)})),this._dispatchToDOM&&this._dispatchDOMEvent(e,n)}else if(this._dispatchToDOM){var r=Array.prototype.slice.call(arguments,1);this._dispatchDOMEvent(e,r)}}},{key:"_dispatchDOMEvent",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=Object.create(null);if(t&&t.length>0){var r=t[0];for(var a in r){var o=r[a];if("source"!==a)n[a]=o;else if(o===window||o===document)return}}var i=document.createEvent("CustomEvent");i.initCustomEvent(e,!0,!0,n),document.dispatchEvent(i)}}]),e}();t.EventBus=b;var x=null;var w=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=n.height,a=n.width,i=n.units;o(this,e),this.visible=!0,this.div=document.querySelector(t+" .progress"),this.bar=this.div.parentNode,this.height=r||100,this.width=a||100,this.units=i||"%",this.div.style.height=this.height+this.units,this.percent=0}return u(e,[{key:"_updateBar",value:function(){if(this._indeterminate)return this.div.classList.add("indeterminate"),void(this.div.style.width=this.width+this.units);this.div.classList.remove("indeterminate");var e=this.width*this._percent/100;this.div.style.width=e+this.units}},{key:"setWidth",value:function(e){if(e){var t=e.parentNode.offsetWidth-e.offsetWidth;t>0&&this.bar.setAttribute("style","width: calc(100% - "+t+"px);")}}},{key:"hide",value:function(){this.visible&&(this.visible=!1,this.bar.classList.add("hidden"),document.body.classList.remove("loadingInProgress"))}},{key:"show",value:function(){this.visible||(this.visible=!0,document.body.classList.add("loadingInProgress"),this.bar.classList.remove("hidden"))}},{key:"percent",get:function(){return this._percent},set:function(e){var t,n,r;this._indeterminate=isNaN(e),this._percent=(t=e,n=0,r=100,Math.min(Math.max(t,n),r)),this._updateBar()}}]),e}();t.ProgressBar=w},14692:function(e){"use strict";function t(e,t){return Object.prototype.hasOwnProperty.call(e,t)}e.exports=function(e,n,r,a){n=n||"&",r=r||"=";var o={};if("string"!==typeof e||0===e.length)return o;var i=/\+/g;e=e.split(n);var u=1e3;a&&"number"===typeof a.maxKeys&&(u=a.maxKeys);var s=e.length;u>0&&s>u&&(s=u);for(var c=0;c<s;++c){var l,f,d,p,h=e[c].replace(i,"%20"),v=h.indexOf(r);v>=0?(l=h.substr(0,v),f=h.substr(v+1)):(l=h,f=""),d=decodeURIComponent(l),p=decodeURIComponent(f),t(o,d)?Array.isArray(o[d])?o[d].push(p):o[d]=[o[d],p]:o[d]=p}return o}},49772:function(e){"use strict";var t=function(e){switch(typeof e){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}};e.exports=function(e,n,r,a){return n=n||"&",r=r||"=",null===e&&(e=void 0),"object"===typeof e?Object.keys(e).map((function(a){var o=encodeURIComponent(t(a))+r;return Array.isArray(e[a])?e[a].map((function(e){return o+encodeURIComponent(t(e))})).join(n):o+encodeURIComponent(t(e[a]))})).join(n):a?encodeURIComponent(t(a))+r+encodeURIComponent(t(e)):""}},3344:function(e,t,n){"use strict";t.decode=t.parse=n(14692),t.encode=t.stringify=n(49772)},35317:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(94634)),i=a(n(91847)),u=a(n(73738)),s=a(n(54756)),c=a(n(29293)),l=a(n(17383)),f=a(n(34579)),d=a(n(12475)),p=a(n(29511)),h=a(n(28452)),v=a(n(63072)),g=a(n(43693)),m=r(n(31014)),y=a(n(15662)),b=a(n(64608)),x=a(n(76219)),w=a(n(98029)),k=r(n(3170)),P=a(n(77998)),E=a(n(46129)),O=a(n(41489)),S=a(n(96425)),R=n(13947),_=n(8876);function D(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function L(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?D(Object(n),!0).forEach((function(t){(0,g.default)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):D(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function C(e){return function(){var t,n=(0,v.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,v.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,h.default)(this,t)}}var A=function(e){(0,p.default)(n,e);var t=C(n);function n(){var e;(0,l.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,g.default)((0,d.default)(e),"state",{pdf:null}),(0,g.default)((0,d.default)(e),"viewer",{scrollPageIntoView:function(t){var n=t.pageNumber,r=e.props.onItemClick;if(r)r({pageNumber:n});else{var a=e.pages[n-1];a?a.scrollIntoView():(0,R.warnOnDev)("Warning: An internal link leading to page ".concat(n," was clicked, but neither <Document> was provided with onItemClick nor it was able to find the page within itself. Either provide onItemClick to <Document> and handle navigating by yourself or ensure that all pages are rendered within <Document>."))}}}),(0,g.default)((0,d.default)(e),"linkService",new O.default),(0,g.default)((0,d.default)(e),"loadDocument",(0,c.default)(s.default.mark((function t(){var n,r,a,o,i,u,c;return s.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=null,t.prev=1,t.next=4,e.findDocumentSource();case 4:n=t.sent,e.onSourceSuccess(),t.next=11;break;case 8:t.prev=8,t.t0=t.catch(1),e.onSourceError(t.t0);case 11:if(n){t.next=13;break}return t.abrupt("return");case 13:return e.setState((function(e){return e.pdf?{pdf:null}:null})),r=e.props,a=r.options,o=r.onLoadProgress,i=r.onPassword,t.prev=15,(0,R.cancelRunningTask)(e.runningTask),e.loadingTask=k.default.getDocument(L({},n,{},a)),e.loadingTask.onPassword=i,o&&(e.loadingTask.onProgress=o),u=(0,x.default)(e.loadingTask.promise),e.runningTask=u,t.next=24,u.promise;case 24:c=t.sent,e.setState((function(e){return e.pdf&&e.pdf.fingerprint===c.fingerprint?null:{pdf:c}}),e.onLoadSuccess),t.next=31;break;case 28:t.prev=28,t.t1=t.catch(15),e.onLoadError(t.t1);case 31:case"end":return t.stop()}}),t,null,[[1,8],[15,28]])})))),(0,g.default)((0,d.default)(e),"setupLinkService",(function(){e.linkService.setViewer(e.viewer);var t=(0,d.default)(e);Object.defineProperty(e.linkService,"externalLinkTarget",{get:function(){switch(t.props.externalLinkTarget){case"_self":return 1;case"_blank":return 2;case"_parent":return 3;case"_top":return 4;default:return 0}}})})),(0,g.default)((0,d.default)(e),"onSourceSuccess",(function(){var t=e.props.onSourceSuccess;t&&t()})),(0,g.default)((0,d.default)(e),"onSourceError",(function(t){(0,R.errorOnDev)(t);var n=e.props.onSourceError;n&&n(t)})),(0,g.default)((0,d.default)(e),"onLoadSuccess",(function(){var t=e.props.onLoadSuccess,n=e.state.pdf;t&&t(n),e.pages=new Array(n.numPages),e.linkService.setDocument(n)})),(0,g.default)((0,d.default)(e),"onLoadError",(function(t){e.setState({pdf:!1}),(0,R.errorOnDev)(t);var n=e.props.onLoadError;n&&n(t)})),(0,g.default)((0,d.default)(e),"findDocumentSource",(0,c.default)(s.default.mark((function t(){var n,r,a,o,c;return s.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.props.file){t.next=3;break}return t.abrupt("return",null);case 3:if("string"!==typeof n){t.next=9;break}if(!(0,R.isDataURI)(n)){t.next=7;break}return r=(0,R.dataURItoUint8Array)(n),t.abrupt("return",{data:r});case 7:return(0,R.displayCORSWarning)(),t.abrupt("return",{url:n});case 9:if(!(n instanceof k.PDFDataRangeTransport)){t.next=11;break}return t.abrupt("return",{range:n});case 11:if(!(0,R.isArrayBuffer)(n)){t.next=13;break}return t.abrupt("return",{data:n});case 13:if(!R.isBrowser){t.next=19;break}if(!(0,R.isBlob)(n)&&!(0,R.isFile)(n)){t.next=19;break}return t.next=17,(0,R.loadFromFile)(n);case 17:return t.t0=t.sent,t.abrupt("return",{data:t.t0});case 19:if("object"===(0,u.default)(n)){t.next=21;break}throw new Error("Invalid parameter in file, need either Uint8Array, string or a parameter object");case 21:if(n.url||n.data||n.range){t.next=23;break}throw new Error("Invalid parameter object: need either .data, .range or .url");case 23:if("string"!==typeof n.url){t.next=29;break}if(!(0,R.isDataURI)(n.url)){t.next=28;break}return a=n.url,o=(0,i.default)(n,["url"]),c=(0,R.dataURItoUint8Array)(a),t.abrupt("return",L({data:c},o));case 28:(0,R.displayCORSWarning)();case 29:return t.abrupt("return",n);case 30:case"end":return t.stop()}}),t)})))),(0,g.default)((0,d.default)(e),"registerPage",(function(t,n){e.pages[t]=n})),(0,g.default)((0,d.default)(e),"unregisterPage",(function(t){delete e.pages[t]})),e}return(0,f.default)(n,[{key:"componentDidMount",value:function(){this.loadDocument(),this.setupLinkService()}},{key:"componentDidUpdate",value:function(e){this.props.file!==e.file&&this.loadDocument()}},{key:"componentWillUnmount",value:function(){this.loadingTask&&this.loadingTask.destroy(),(0,R.cancelRunningTask)(this.runningTask)}},{key:"renderChildren",value:function(){var e=this.props.children;return m.default.createElement(P.default.Provider,{value:this.childContext},e)}},{key:"renderContent",value:function(){var e=this.props.file,t=this.state.pdf;if(!e){var n=this.props.noData;return m.default.createElement(E.default,{type:"no-data"},"function"===typeof n?n():n)}if(null===t){var r=this.props.loading;return m.default.createElement(E.default,{type:"loading"},"function"===typeof r?r():r)}if(!1===t){var a=this.props.error;return m.default.createElement(E.default,{type:"error"},"function"===typeof a?a():a)}return this.renderChildren()}},{key:"render",value:function(){var e=this.props,t=e.className,n=e.inputRef;return m.default.createElement("div",(0,o.default)({className:(0,w.default)("react-pdf__Document",t),ref:n},this.eventProps),this.renderContent())}},{key:"childContext",get:function(){var e=this.linkService,t=this.registerPage,n=this.unregisterPage,r=this.props,a=r.renderMode,o=r.rotate;return{linkService:e,pdf:this.state.pdf,registerPage:t,renderMode:a,rotate:o,unregisterPage:n}}},{key:"eventProps",get:function(){var e=this;return(0,b.default)(this.props,(function(){return e.state.pdf}))}}]),n}(m.PureComponent);t.default=A,A.defaultProps={error:"Failed to load PDF file.",loading:"Loading PDF\u2026",noData:"No PDF file specified.",onPassword:function(e,t){switch(t){case S.default.NEED_PASSWORD:e(prompt("Enter the password to open this PDF file."));break;case S.default.INCORRECT_PASSWORD:e(prompt("Invalid password. Please try again."))}}};var T=y.default.oneOfType([y.default.func,y.default.node]);A.propTypes=L({},_.eventProps,{children:y.default.node,className:_.isClassName,error:T,file:R.isFile,inputRef:y.default.func,loading:T,noData:T,onItemClick:y.default.func,onLoadError:y.default.func,onLoadProgress:y.default.func,onLoadSuccess:y.default.func,onPassword:y.default.func,onSourceError:y.default.func,onSourceSuccess:y.default.func,rotate:y.default.number})},77998:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=(0,n(31014).createContext)(null);t.default=r},41489:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(37563).PDFLinkService;t.default=r},46129:function(e,t,n){"use strict";var r=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=i;var a=r(n(31014)),o=r(n(15662));function i(e){var t=e.children,n=e.type;return a.default.createElement("div",{className:"react-pdf__message react-pdf__message--".concat(n)},t)}i.propTypes={children:o.default.node,type:o.default.oneOf(["error","loading","no-data"]).isRequired}},32424:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.OutlineInternal=void 0;var o=a(n(94634)),i=a(n(54756)),u=a(n(29293)),s=a(n(17383)),c=a(n(34579)),l=a(n(12475)),f=a(n(29511)),d=a(n(28452)),p=a(n(63072)),h=a(n(43693)),v=r(n(31014)),g=a(n(15662)),m=a(n(76219)),y=a(n(64608)),b=a(n(98029)),x=a(n(77998)),w=a(n(3357)),k=a(n(3219)),P=n(13947),E=n(8876);function O(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function S(e){return function(){var t,n=(0,p.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,p.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,d.default)(this,t)}}var R=function(e){(0,f.default)(n,e);var t=S(n);function n(){var e;(0,s.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,h.default)((0,l.default)(e),"state",{outline:null}),(0,h.default)((0,l.default)(e),"loadOutline",(0,u.default)(i.default.mark((function t(){var n,r,a;return i.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=e.props.pdf,e.setState((function(e){return e.outline?{outline:null}:null})),t.prev=2,r=(0,m.default)(n.getOutline()),e.runningTask=r,t.next=7,r.promise;case 7:a=t.sent,e.setState({outline:a},e.onLoadSuccess),t.next=14;break;case 11:t.prev=11,t.t0=t.catch(2),e.onLoadError(t.t0);case 14:case"end":return t.stop()}}),t,null,[[2,11]])})))),(0,h.default)((0,l.default)(e),"onLoadSuccess",(function(){var t=e.props.onLoadSuccess,n=e.state.outline;t&&t(n)})),(0,h.default)((0,l.default)(e),"onLoadError",(function(t){e.setState({outline:!1}),(0,P.errorOnDev)(t);var n=e.props.onLoadError;n&&n(t)})),(0,h.default)((0,l.default)(e),"onItemClick",(function(t){var n=t.pageIndex,r=t.pageNumber,a=e.props.onItemClick;a&&a({pageIndex:n,pageNumber:r})})),e}return(0,c.default)(n,[{key:"componentDidMount",value:function(){if(!this.props.pdf)throw new Error("Attempted to load an outline, but no document was specified.");this.loadOutline()}},{key:"componentDidUpdate",value:function(e){var t=this.props.pdf;e.pdf&&t!==e.pdf&&this.loadOutline()}},{key:"componentWillUnmount",value:function(){(0,P.cancelRunningTask)(this.runningTask)}},{key:"renderOutline",value:function(){var e=this.state.outline;return v.default.createElement("ul",null,e.map((function(e,t){return v.default.createElement(k.default,{key:"string"===typeof e.destination?e.destination:t,item:e})})))}},{key:"render",value:function(){var e=this.props.pdf,t=this.state.outline;if(!e||!t)return null;var n=this.props,r=n.className,a=n.inputRef;return v.default.createElement("div",(0,o.default)({className:(0,b.default)("react-pdf__Outline",r),ref:a},this.eventProps),v.default.createElement(w.default.Provider,{value:this.childContext},this.renderOutline()))}},{key:"childContext",get:function(){return{onClick:this.onItemClick}}},{key:"eventProps",get:function(){var e=this;return(0,y.default)(this.props,(function(){return e.state.outline}))}}]),n}(v.PureComponent);t.OutlineInternal=R,R.propTypes=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?O(Object(n),!0).forEach((function(t){(0,h.default)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):O(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({className:E.isClassName,inputRef:g.default.func,onItemClick:g.default.func,onLoadError:g.default.func,onLoadSuccess:g.default.func,pdf:E.isPdf},E.eventProps);var _=v.default.forwardRef((function(e,t){return v.default.createElement(x.default.Consumer,null,(function(n){return v.default.createElement(R,(0,o.default)({ref:t},n,e))}))}));t.default=_},3357:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=(0,n(31014).createContext)(null);t.default=r},3219:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.OutlineItemInternal=void 0;var o=a(n(94634)),i=a(n(91847)),u=a(n(85715)),s=a(n(54756)),c=a(n(29293)),l=a(n(17383)),f=a(n(34579)),d=a(n(12475)),p=a(n(29511)),h=a(n(28452)),v=a(n(63072)),g=a(n(43693)),m=r(n(31014)),y=a(n(15662)),b=a(n(77998)),x=a(n(3357)),w=a(n(88503)),k=n(13947),P=n(8876);function E(e){return function(){var t,n=(0,v.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,v.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,h.default)(this,t)}}var O=function(e){(0,p.default)(n,e);var t=E(n);function n(){var e;(0,l.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,g.default)((0,d.default)(e),"getDestination",(0,c.default)(s.default.mark((function t(){var n,r,a;return s.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.props,r=n.item,a=n.pdf,(0,k.isDefined)(e.destination)){t.next=9;break}if("string"!==typeof r.dest){t.next=8;break}return t.next=5,a.getDestination(r.dest);case 5:e.destination=t.sent,t.next=9;break;case 8:e.destination=r.dest;case 9:return t.abrupt("return",e.destination);case 10:case"end":return t.stop()}}),t)})))),(0,g.default)((0,d.default)(e),"getPageIndex",(0,c.default)(s.default.mark((function t(){var n,r,a,o;return s.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.props.pdf,(0,k.isDefined)(e.pageIndex)){t.next=10;break}return t.next=4,e.getDestination();case 4:if(!(r=t.sent)){t.next=10;break}return a=(0,u.default)(r,1),o=a[0],t.next=9,n.getPageIndex(new w.default(o));case 9:e.pageIndex=t.sent;case 10:return t.abrupt("return",e.pageIndex);case 11:case"end":return t.stop()}}),t)})))),(0,g.default)((0,d.default)(e),"getPageNumber",(0,c.default)(s.default.mark((function t(){return s.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if((0,k.isDefined)(e.pageNumber)){t.next=5;break}return t.next=3,e.getPageIndex();case 3:t.t0=t.sent,e.pageNumber=t.t0+1;case 5:return t.abrupt("return",e.pageNumber);case 6:case"end":return t.stop()}}),t)})))),(0,g.default)((0,d.default)(e),"onClick",function(){var t=(0,c.default)(s.default.mark((function t(n){var r,a,o;return s.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=e.props.onClick,n.preventDefault(),t.next=4,e.getPageIndex();case 4:return a=t.sent,t.next=7,e.getPageNumber();case 7:o=t.sent,r&&r({pageIndex:a,pageNumber:o});case 9:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()),e}return(0,f.default)(n,[{key:"renderSubitems",value:function(){var e=this.props,t=e.item,r=(0,i.default)(e,["item"]);if(!t.items||!t.items.length)return null;var a=t.items;return m.default.createElement("ul",null,a.map((function(e,t){return m.default.createElement(n,(0,o.default)({key:"string"===typeof e.destination?e.destination:t,item:e},r))})))}},{key:"render",value:function(){var e=this.props.item;return m.default.createElement("li",null,m.default.createElement("a",{href:"#",onClick:this.onClick},e.title),this.renderSubitems())}}]),n}(m.PureComponent);t.OutlineItemInternal=O;var S=y.default.oneOfType([y.default.string,y.default.arrayOf(y.default.any)]);O.propTypes={item:y.default.shape({dest:S,items:y.default.arrayOf(y.default.shape({dest:S,title:y.default.string})),title:y.default.string}).isRequired,onClick:y.default.func,pdf:P.isPdf.isRequired};var R=function(e){return m.default.createElement(b.default.Consumer,null,(function(t){return m.default.createElement(x.default.Consumer,null,(function(n){return m.default.createElement(O,(0,o.default)({},t,n,e))}))}))};t.default=R},2040:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.PageInternal=void 0;var o=a(n(94634)),i=a(n(54756)),u=a(n(29293)),s=a(n(17383)),c=a(n(34579)),l=a(n(12475)),f=a(n(29511)),d=a(n(28452)),p=a(n(63072)),h=a(n(43693)),v=r(n(31014)),g=a(n(15662)),m=a(n(76219)),y=a(n(64608)),b=a(n(98029)),x=a(n(77998)),w=a(n(75684)),k=a(n(46129)),P=a(n(39569)),E=a(n(66415)),O=a(n(10140)),S=a(n(91458)),R=n(13947),_=n(8876);function D(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function L(e){return function(){var t,n=(0,p.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,p.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,d.default)(this,t)}}var C=function(e){(0,f.default)(n,e);var t=L(n);function n(){var e;(0,s.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,h.default)((0,l.default)(e),"state",{page:null}),(0,h.default)((0,l.default)(e),"onLoadSuccess",(function(){var t=e.props,n=t.onLoadSuccess,r=t.registerPage,a=e.state.page;n&&n((0,R.makePageCallback)(a,e.scale)),r&&r(e.pageIndex,e.ref)})),(0,h.default)((0,l.default)(e),"onLoadError",(function(t){(0,R.errorOnDev)(t);var n=e.props.onLoadError;n&&n(t)})),(0,h.default)((0,l.default)(e),"loadPage",(0,u.default)(i.default.mark((function t(){var n,r,a,o;return i.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.props.pdf,r=e.getPageNumber()){t.next=4;break}return t.abrupt("return");case 4:return e.setState((function(e){return e.page?{page:null}:null})),t.prev=5,a=(0,m.default)(n.getPage(r)),e.runningTask=a,t.next=10,a.promise;case 10:o=t.sent,e.setState({page:o},e.onLoadSuccess),t.next=18;break;case 14:t.prev=14,t.t0=t.catch(5),e.setState({page:!1}),e.onLoadError(t.t0);case 18:case"end":return t.stop()}}),t,null,[[5,14]])})))),e}return(0,c.default)(n,[{key:"componentDidMount",value:function(){if(!this.props.pdf)throw new Error("Attempted to load a page, but no document was specified.");this.loadPage()}},{key:"componentDidUpdate",value:function(e){var t=this.props.pdf;if(e.pdf&&t!==e.pdf||this.getPageNumber()!==this.getPageNumber(e)){var n=this.props.unregisterPage;n&&n(this.getPageIndex(e)),this.loadPage()}}},{key:"componentWillUnmount",value:function(){var e=this.props.unregisterPage;e&&e(this.pageIndex),(0,R.cancelRunningTask)(this.runningTask)}},{key:"getPageIndex",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props;return(0,R.isProvided)(e.pageNumber)?e.pageNumber-1:(0,R.isProvided)(e.pageIndex)?e.pageIndex:null}},{key:"getPageNumber",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props;return(0,R.isProvided)(e.pageNumber)?e.pageNumber:(0,R.isProvided)(e.pageIndex)?e.pageIndex+1:null}},{key:"renderMainLayer",value:function(){switch(this.props.renderMode){case"none":return null;case"svg":return v.default.createElement(E.default,{key:"".concat(this.pageKeyNoScale,"_svg")});default:return v.default.createElement(P.default,{key:"".concat(this.pageKey,"_canvas")})}}},{key:"renderTextLayer",value:function(){var e=this.props.renderTextLayer;return e?v.default.createElement(O.default,{key:"".concat(this.pageKey,"_text")}):null}},{key:"renderAnnotationLayer",value:function(){var e=this.props.renderAnnotationLayer;return e?v.default.createElement(S.default,{key:"".concat(this.pageKey,"_annotations")}):null}},{key:"renderChildren",value:function(){var e=this.props.children;return v.default.createElement(w.default.Provider,{value:this.childContext},this.renderMainLayer(),this.renderTextLayer(),this.renderAnnotationLayer(),e)}},{key:"renderContent",value:function(){var e=this.pageNumber,t=this.props.pdf,n=this.state.page;if(!e){var r=this.props.noData;return v.default.createElement(k.default,{type:"no-data"},"function"===typeof r?r():r)}if(null===t||null===n){var a=this.props.loading;return v.default.createElement(k.default,{type:"loading"},"function"===typeof a?a():a)}if(!1===t||!1===n){var o=this.props.error;return v.default.createElement(k.default,{type:"error"},"function"===typeof o?o():o)}return this.renderChildren()}},{key:"render",value:function(){var e=this,t=this.pageNumber,n=this.props.className;return v.default.createElement("div",(0,o.default)({className:(0,b.default)("react-pdf__Page",n),"data-page-number":t,ref:function(t){var n=e.props.inputRef;n&&n(t),e.ref=t},style:{position:"relative"}},this.eventProps),this.renderContent())}},{key:"childContext",get:function(){var e=this.state.page;if(!e)return{};var t=this.props;return{customTextRenderer:t.customTextRenderer,onGetAnnotationsError:t.onGetAnnotationsError,onGetAnnotationsSuccess:t.onGetAnnotationsSuccess,onGetTextError:t.onGetTextError,onGetTextSuccess:t.onGetTextSuccess,onRenderAnnotationLayerError:t.onRenderAnnotationLayerError,onRenderAnnotationLayerSuccess:t.onRenderAnnotationLayerSuccess,onRenderError:t.onRenderError,onRenderSuccess:t.onRenderSuccess,page:e,renderInteractiveForms:t.renderInteractiveForms,rotate:this.rotate,scale:this.scale}}},{key:"pageIndex",get:function(){return this.getPageIndex()}},{key:"pageNumber",get:function(){return this.getPageNumber()}},{key:"rotate",get:function(){var e=this.props.rotate;if((0,R.isProvided)(e))return e;var t=this.state.page;return t?t.rotate:null}},{key:"scale",get:function(){var e=this.state.page;if(!e)return null;var t=this.props,n=t.scale,r=t.width,a=t.height,o=this.rotate,i=1,u=null===n?1:n;if(r||a){var s=e.getViewport({scale:1,rotation:o});i=r?r/s.width:a/s.height}return u*i}},{key:"eventProps",get:function(){var e=this;return(0,y.default)(this.props,(function(){var t=e.state.page;return t?(0,R.makePageCallback)(t,e.scale):t}))}},{key:"pageKey",get:function(){var e=this.state.page;return"".concat(e.pageIndex,"@").concat(this.scale,"/").concat(this.rotate)}},{key:"pageKeyNoScale",get:function(){var e=this.state.page;return"".concat(e.pageIndex,"/").concat(this.rotate)}}]),n}(v.PureComponent);t.PageInternal=C,C.defaultProps={error:"Failed to load the page.",loading:"Loading page\u2026",noData:"No page specified.",renderAnnotationLayer:!0,renderInteractiveForms:!1,renderMode:"canvas",renderTextLayer:!0,scale:1};var A=g.default.oneOfType([g.default.func,g.default.node]);C.propTypes=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?D(Object(n),!0).forEach((function(t){(0,h.default)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):D(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},_.eventProps,{children:g.default.node,className:_.isClassName,customTextRenderer:g.default.func,error:A,height:g.default.number,inputRef:g.default.func,loading:A,noData:A,onGetTextError:g.default.func,onGetTextSuccess:g.default.func,onLoadError:g.default.func,onLoadSuccess:g.default.func,onRenderError:g.default.func,onRenderSuccess:g.default.func,pageIndex:_.isPageIndex,pageNumber:_.isPageNumber,pdf:_.isPdf,registerPage:g.default.func,renderAnnotationLayer:g.default.bool,renderInteractiveForms:g.default.bool,renderMode:_.isRenderMode,renderTextLayer:g.default.bool,rotate:_.isRotate,scale:g.default.number,unregisterPage:g.default.func,width:g.default.number});var T=v.default.forwardRef((function(e,t){return v.default.createElement(x.default.Consumer,null,(function(n){return v.default.createElement(C,(0,o.default)({ref:t},n,e,{renderAnnotationLayer:"undefined"!==typeof e.renderAnnotationLayer?e.renderAnnotationLayer:e.renderAnnotations}))}))}));t.default=T},91458:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.AnnotationLayerInternal=void 0;var o=a(n(94634)),i=a(n(54756)),u=a(n(29293)),s=a(n(17383)),c=a(n(34579)),l=a(n(12475)),f=a(n(29511)),d=a(n(28452)),p=a(n(63072)),h=a(n(43693)),v=r(n(31014)),g=a(n(15662)),m=a(n(3170)),y=a(n(76219)),b=a(n(77998)),x=a(n(75684)),w=n(13947),k=n(8876);function P(e){return function(){var t,n=(0,p.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,p.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,d.default)(this,t)}}var E=function(e){(0,f.default)(n,e);var t=P(n);function n(){var e;(0,s.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,h.default)((0,l.default)(e),"state",{annotations:null}),(0,h.default)((0,l.default)(e),"loadAnnotations",(0,u.default)(i.default.mark((function t(){var n,r,a;return i.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=e.props.page,t.prev=1,r=(0,y.default)(n.getAnnotations()),e.runningTask=r,t.next=6,r.promise;case 6:a=t.sent,e.setState({annotations:a},e.onLoadSuccess),t.next=13;break;case 10:t.prev=10,t.t0=t.catch(1),e.onLoadError(t.t0);case 13:case"end":return t.stop()}}),t,null,[[1,10]])})))),(0,h.default)((0,l.default)(e),"onLoadSuccess",(function(){var t=e.props.onGetAnnotationsSuccess,n=e.state.annotations;t&&t(n)})),(0,h.default)((0,l.default)(e),"onLoadError",(function(t){e.setState({annotations:!1}),(0,w.errorOnDev)(t);var n=e.props.onGetAnnotationsError;n&&n(t)})),(0,h.default)((0,l.default)(e),"onRenderSuccess",(function(){var t=e.props.onRenderAnnotationLayerSuccess;t&&t()})),(0,h.default)((0,l.default)(e),"onRenderError",(function(t){(0,w.errorOnDev)(t);var n=e.props.onRenderAnnotationLayerError;n&&n(t)})),e}return(0,c.default)(n,[{key:"componentDidMount",value:function(){if(!this.props.page)throw new Error("Attempted to load page annotations, but no page was specified.");this.loadAnnotations()}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.page,r=t.renderInteractiveForms;(e.page&&n!==e.page||r!==e.renderInteractiveForms)&&this.loadAnnotations()}},{key:"componentWillUnmount",value:function(){(0,w.cancelRunningTask)(this.runningTask)}},{key:"renderAnnotationLayer",value:function(){var e=this.state.annotations;if(e){var t=this.props,n=t.linkService,r=t.page,a=t.renderInteractiveForms,o=this.viewport.clone({dontFlip:!0}),i={annotations:e,div:this.annotationLayer,linkService:n,page:r,renderInteractiveForms:a,viewport:o};this.annotationLayer.innerHTML="";try{m.default.AnnotationLayer.render(i),this.onRenderSuccess()}catch(u){this.onRenderError(u)}}}},{key:"render",value:function(){var e=this;return v.default.createElement("div",{className:"react-pdf__Page__annotations annotationLayer",ref:function(t){e.annotationLayer=t}},this.renderAnnotationLayer())}},{key:"viewport",get:function(){var e=this.props,t=e.page,n=e.rotate,r=e.scale;return t.getViewport({scale:r,rotation:n})}}]),n}(v.PureComponent);t.AnnotationLayerInternal=E,E.propTypes={linkService:k.isLinkService.isRequired,onGetAnnotationsError:g.default.func,onGetAnnotationsSuccess:g.default.func,onRenderAnnotationLayerError:g.default.func,onRenderAnnotationLayerSuccess:g.default.func,page:k.isPage,renderInteractiveForms:g.default.bool,rotate:k.isRotate,scale:g.default.number};var O=function(e){return v.default.createElement(b.default.Consumer,null,(function(t){return v.default.createElement(x.default.Consumer,null,(function(n){return v.default.createElement(E,(0,o.default)({},t,n,e))}))}))};t.default=O},39569:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return p.default.createElement(v.default.Consumer,null,(function(t){return p.default.createElement(b,(0,o.default)({},t,e))}))},t.PageCanvasInternal=void 0;var o=a(n(94634)),i=a(n(17383)),u=a(n(34579)),s=a(n(12475)),c=a(n(29511)),l=a(n(28452)),f=a(n(63072)),d=a(n(43693)),p=r(n(31014)),h=a(n(15662)),v=a(n(75684)),g=n(13947),m=n(8876);function y(e){return function(){var t,n=(0,f.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,f.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,l.default)(this,t)}}var b=function(e){(0,c.default)(n,e);var t=y(n);function n(){var e;(0,i.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,d.default)((0,s.default)(e),"onRenderSuccess",(function(){e.renderer=null;var t=e.props,n=t.onRenderSuccess,r=t.page,a=t.scale;n&&n((0,g.makePageCallback)(r,a))})),(0,d.default)((0,s.default)(e),"onRenderError",(function(t){if(!(0,g.isCancelException)(t)){(0,g.errorOnDev)(t);var n=e.props.onRenderError;n&&n(t)}})),(0,d.default)((0,s.default)(e),"drawPageOnCanvas",(function(){var t=(0,s.default)(e).canvasLayer;if(!t)return null;var n=(0,s.default)(e),r=n.renderViewport,a=n.viewport,o=e.props,i=o.page,u=o.renderInteractiveForms;t.width=r.width,t.height=r.height,t.style.width="".concat(Math.floor(a.width),"px"),t.style.height="".concat(Math.floor(a.height),"px");var c={get canvasContext(){return t.getContext("2d")},viewport:r,renderInteractiveForms:u};return e.cancelRenderingTask(),e.renderer=i.render(c),e.renderer.promise.then(e.onRenderSuccess).catch(e.onRenderError)})),e}return(0,u.default)(n,[{key:"componentDidMount",value:function(){this.drawPageOnCanvas()}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.page;t.renderInteractiveForms!==e.renderInteractiveForms&&(n.cleanup(),this.drawPageOnCanvas())}},{key:"componentWillUnmount",value:function(){this.cancelRenderingTask(),this.canvasLayer&&(this.canvasLayer.width=0,this.canvasLayer.height=0,this.canvasLayer=null)}},{key:"cancelRenderingTask",value:function(){this.renderer&&this.renderer._internalRenderTask.running&&this.renderer._internalRenderTask.cancel()}},{key:"render",value:function(){var e=this;return p.default.createElement("canvas",{className:"react-pdf__Page__canvas",dir:"ltr",ref:function(t){e.canvasLayer=t},style:{display:"block",userSelect:"none"}})}},{key:"renderViewport",get:function(){var e=this.props,t=e.page,n=e.rotate,r=e.scale,a=(0,g.getPixelRatio)();return t.getViewport({scale:r*a,rotation:n})}},{key:"viewport",get:function(){var e=this.props,t=e.page,n=e.rotate,r=e.scale;return t.getViewport({scale:r,rotation:n})}}]),n}(p.PureComponent);t.PageCanvasInternal=b,b.propTypes={onRenderError:h.default.func,onRenderSuccess:h.default.func,page:m.isPage.isRequired,renderInteractiveForms:h.default.bool,rotate:m.isRotate,scale:h.default.number}},66415:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return p.default.createElement(g.default.Consumer,null,(function(t){return p.default.createElement(x,(0,o.default)({},t,e))}))},t.PageSVGInternal=void 0;var o=a(n(94634)),i=a(n(17383)),u=a(n(34579)),s=a(n(12475)),c=a(n(29511)),l=a(n(28452)),f=a(n(63072)),d=a(n(43693)),p=r(n(31014)),h=a(n(15662)),v=a(n(3170)),g=a(n(75684)),m=n(13947),y=n(8876);function b(e){return function(){var t,n=(0,f.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,f.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,l.default)(this,t)}}var x=function(e){(0,c.default)(n,e);var t=b(n);function n(){var e;(0,i.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,d.default)((0,s.default)(e),"state",{svg:null}),(0,d.default)((0,s.default)(e),"onRenderSuccess",(function(){e.renderer=null;var t=e.props,n=t.onRenderSuccess,r=t.page,a=t.scale;n&&n((0,m.makePageCallback)(r,a))})),(0,d.default)((0,s.default)(e),"onRenderError",(function(t){if(!(0,m.isCancelException)(t)){(0,m.errorOnDev)(t);var n=e.props.onRenderError;n&&n(t)}})),(0,d.default)((0,s.default)(e),"renderSVG",(function(){var t=e.props.page;return e.renderer=t.getOperatorList(),e.renderer.then((function(n){var r=new v.default.SVGGraphics(t.commonObjs,t.objs);e.renderer=r.getSVG(n,e.viewport).then((function(t){e.setState({svg:t},e.onRenderSuccess)})).catch(e.onRenderError)})).catch(e.onRenderError)})),(0,d.default)((0,s.default)(e),"drawPageOnContainer",(function(t){var n=e.state.svg;if(t&&n){t.firstElementChild||t.appendChild(n);var r=e.viewport,a=r.width,o=r.height;n.setAttribute("width",a),n.setAttribute("height",o)}})),e}return(0,u.default)(n,[{key:"componentDidMount",value:function(){this.renderSVG()}},{key:"render",value:function(){var e=this,t=this.viewport,n=t.width,r=t.height;return p.default.createElement("div",{className:"react-pdf__Page__svg",ref:function(t){return e.drawPageOnContainer(t)},style:{display:"block",backgroundColor:"white",overflow:"hidden",width:n,height:r,userSelect:"none"}})}},{key:"viewport",get:function(){var e=this.props,t=e.page,n=e.rotate,r=e.scale;return t.getViewport({scale:r,rotation:n})}}]),n}(p.PureComponent);t.PageSVGInternal=x,x.propTypes={onRenderError:h.default.func,onRenderSuccess:h.default.func,page:y.isPage.isRequired,rotate:y.isRotate,scale:h.default.number}},10140:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return v.default.createElement(y.default.Consumer,null,(function(t){return v.default.createElement(P,(0,o.default)({},t,e))}))},t.TextLayerInternal=void 0;var o=a(n(94634)),i=a(n(54756)),u=a(n(29293)),s=a(n(17383)),c=a(n(34579)),l=a(n(12475)),f=a(n(29511)),d=a(n(28452)),p=a(n(63072)),h=a(n(43693)),v=r(n(31014)),g=a(n(15662)),m=a(n(76219)),y=a(n(75684)),b=a(n(72815)),x=n(13947),w=n(8876);function k(e){return function(){var t,n=(0,p.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,p.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,d.default)(this,t)}}var P=function(e){(0,f.default)(n,e);var t=k(n);function n(){var e;(0,s.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,h.default)((0,l.default)(e),"state",{textItems:null}),(0,h.default)((0,l.default)(e),"loadTextItems",(0,u.default)(i.default.mark((function t(){var n,r,a,o;return i.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n=e.props.page,t.prev=1,r=(0,m.default)(n.getTextContent()),e.runningTask=r,t.next=6,r.promise;case 6:a=t.sent,o=a.items,e.setState({textItems:o},e.onLoadSuccess),t.next=14;break;case 11:t.prev=11,t.t0=t.catch(1),e.onLoadError(t.t0);case 14:case"end":return t.stop()}}),t,null,[[1,11]])})))),(0,h.default)((0,l.default)(e),"onLoadSuccess",(function(){var t=e.props.onGetTextSuccess,n=e.state.textItems;t&&t(n)})),(0,h.default)((0,l.default)(e),"onLoadError",(function(t){e.setState({textItems:!1}),(0,x.errorOnDev)(t);var n=e.props.onGetTextError;n&&n(t)})),e}return(0,c.default)(n,[{key:"componentDidMount",value:function(){if(!this.props.page)throw new Error("Attempted to load page text content, but no page was specified.");this.loadTextItems()}},{key:"componentDidUpdate",value:function(e){var t=this.props.page;e.page&&t!==e.page&&this.loadTextItems()}},{key:"componentWillUnmount",value:function(){(0,x.cancelRunningTask)(this.runningTask)}},{key:"renderTextItems",value:function(){var e=this.state.textItems;return e?e.map((function(e,t){return v.default.createElement(b.default,(0,o.default)({key:t,itemIndex:t},e))})):null}},{key:"render",value:function(){var e=this.unrotatedViewport,t=this.rotate;return v.default.createElement("div",{className:"react-pdf__Page__textContent",style:{position:"absolute",top:"50%",left:"50%",width:"".concat(e.width,"px"),height:"".concat(e.height,"px"),color:"transparent",transform:"translate(-50%, -50%) rotate(".concat(t,"deg)"),WebkitTransform:"translate(-50%, -50%) rotate(".concat(t,"deg)"),pointerEvents:"none"}},this.renderTextItems())}},{key:"unrotatedViewport",get:function(){var e=this.props,t=e.page,n=e.scale;return t.getViewport({scale:n})}},{key:"rotate",get:function(){var e=this.props,t=e.page;return e.rotate-t.rotate}}]),n}(v.PureComponent);t.TextLayerInternal=P,P.propTypes={onGetTextError:g.default.func,onGetTextSuccess:g.default.func,page:w.isPage.isRequired,rotate:w.isRotate,scale:g.default.number}},72815:function(e,t,n){"use strict";var r=n(6305),a=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return g.default.createElement(y.default.Consumer,null,(function(t){return g.default.createElement(w,(0,o.default)({},t,e))}))},t.TextLayerItemInternal=void 0;var o=a(n(94634)),i=a(n(85715)),u=a(n(54756)),s=a(n(29293)),c=a(n(17383)),l=a(n(34579)),f=a(n(12475)),d=a(n(29511)),p=a(n(28452)),h=a(n(63072)),v=a(n(43693)),g=r(n(31014)),m=a(n(15662)),y=a(n(75684)),b=n(8876);function x(e){return function(){var t,n=(0,h.default)(e);if(function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()){var r=(0,h.default)(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return(0,p.default)(this,t)}}var w=function(e){(0,d.default)(n,e);var t=x(n);function n(){var e;(0,c.default)(this,n);for(var r=arguments.length,a=new Array(r),o=0;o<r;o++)a[o]=arguments[o];return e=t.call.apply(t,[this].concat(a)),(0,v.default)((0,f.default)(e),"getElementWidth",(function(t){var n=(0,f.default)(e).sideways;return t.getBoundingClientRect()[n?"height":"width"]})),e}return(0,l.default)(n,[{key:"componentDidMount",value:function(){this.alignTextItem()}},{key:"componentDidUpdate",value:function(){this.alignTextItem()}},{key:"getFontData",value:function(){var e=(0,s.default)(u.default.mark((function e(t){var n,r;return u.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=this.props.page,e.next=3,new Promise((function(e){n.commonObjs.get(t,e)}));case 3:return r=e.sent,e.abrupt("return",r);case 5:case"end":return e.stop()}}),e,this)})));return function(t){return e.apply(this,arguments)}}()},{key:"alignTextItem",value:function(){var e=(0,s.default)(u.default.mark((function e(){var t,n,r,a,o,i,s,c,l,f,d;return u.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t=this.item){e.next=3;break}return e.abrupt("return");case 3:return t.style.transform="",n=this.props,r=n.fontName,a=n.scale,o=n.width,t.style.fontFamily="".concat(r,", sans-serif"),e.next=8,this.getFontData(r);case 8:i=e.sent,s=i?i.fallbackName:"sans-serif",t.style.fontFamily="".concat(r,", ").concat(s),c=o*a,l=this.getElementWidth(t),f="scaleX(".concat(c/l,")"),(d=i?i.ascent:0)&&(f+=" translateY(".concat(100*(1-d),"%)")),t.style.transform=f,t.style.WebkitTransform=f;case 18:case"end":return e.stop()}}),e,this)})));return function(){return e.apply(this,arguments)}}()},{key:"render",value:function(){var e=this,t=this.fontSize,n=this.top,r=this.left,a=this.props,o=a.customTextRenderer,i=a.scale,u=a.str;return g.default.createElement("span",{ref:function(t){e.item=t},style:{height:"1em",fontFamily:"sans-serif",fontSize:"".concat(t*i,"px"),position:"absolute",top:"".concat(n*i,"px"),left:"".concat(r*i,"px"),transformOrigin:"left bottom",whiteSpace:"pre",pointerEvents:"all"}},o?o(this.props):u)}},{key:"unrotatedViewport",get:function(){var e=this.props,t=e.page,n=e.scale;return t.getViewport({scale:n})}},{key:"rotate",get:function(){var e=this.props,t=e.page;return e.rotate-t.rotate}},{key:"sideways",get:function(){return this.rotate%180!==0}},{key:"defaultSideways",get:function(){return this.unrotatedViewport.rotation%180!==0}},{key:"fontSize",get:function(){var e=this.props.transform,t=this.defaultSideways,n=(0,i.default)(e,2),r=n[0],a=n[1];return t?a:r}},{key:"top",get:function(){var e=this.props.transform,t=this.unrotatedViewport,n=this.defaultSideways,r=(0,i.default)(e,6),a=r[2],o=r[3],u=r[4],s=r[5],c=(0,i.default)(t.viewBox,4),l=c[1],f=c[3];return n?u+a+l:f-(s+o)}},{key:"left",get:function(){var e=this.props.transform,t=this.unrotatedViewport,n=this.defaultSideways,r=(0,i.default)(e,6),a=r[4],o=r[5],u=(0,i.default)(t.viewBox,1)[0];return n?o-u:a-u}}]),n}(g.PureComponent);t.TextLayerItemInternal=w,w.propTypes={customTextRenderer:m.default.func,fontName:m.default.string.isRequired,itemIndex:m.default.number.isRequired,page:b.isPage.isRequired,rotate:b.isRotate,scale:m.default.number,str:m.default.string.isRequired,transform:m.default.arrayOf(m.default.number).isRequired,width:m.default.number.isRequired}},75684:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=(0,n(31014).createContext)(null);t.default=r},96425:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={NEED_PASSWORD:1,INCORRECT_PASSWORD:2};t.default=n},88503:function(e,t,n){"use strict";var r=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(17383)),o=r(n(34579)),i=function(){function e(t){var n=t.num,r=t.gen;(0,a.default)(this,e),this.num=n,this.gen=r}return(0,o.default)(e,[{key:"toString",value:function(){var e="".concat(this.num,"R");return 0!==this.gen&&(e+=this.gen),e}}]),e}();t.default=i},83314:function(e,t,n){"use strict";var r=n(24994);Object.defineProperty(t,"Uy",{enumerable:!0,get:function(){return a.default}}),Object.defineProperty(t,"yo",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(t,"YW",{enumerable:!0,get:function(){return u.default}});var a=r(n(3170)),o=r(n(35317)),i=r(n(32424)),u=r(n(2040)),s=n(13947);s.isLocalFileSystem&&(0,s.warnOnDev)("You are running React-PDF from your local file system. PDF.js Worker may fail to load due to browser's security policies. If you're on Google Chrome, you can use --allow-file-access-from-files flag for debugging purposes."),a.default.GlobalWorkerOptions.workerSrc="pdf.worker.js"},8876:function(e,t,n){"use strict";var r=n(24994);Object.defineProperty(t,"__esModule",{value:!0}),t.isRotate=t.isRenderMode=t.isPdf=t.isPageNumber=t.isPageIndex=t.isPage=t.isLinkTarget=t.isLinkService=t.isFile=t.isClassName=t.eventProps=void 0;var a=r(n(73738)),o=r(n(41132)),i=r(n(15662)),u=n(64608),s=n(13947),c=r(n(41489)),l=function(){var e={};return[].concat((0,o.default)(u.mouseEvents),(0,o.default)(u.touchEvents),(0,o.default)(u.keyboardEvents)).forEach((function(t){e[t]=i.default.func})),e}();t.eventProps=l;var f=[i.default.string,i.default.instanceOf(ArrayBuffer),i.default.shape({data:i.default.object,httpHeaders:i.default.object,range:i.default.object,url:i.default.string,withCredentials:i.default.bool})];"undefined"!==typeof File&&f.push(i.default.instanceOf(File)),"undefined"!==typeof Blob&&f.push(i.default.instanceOf(Blob));var d=i.default.oneOfType([i.default.string,i.default.arrayOf(i.default.string)]);t.isClassName=d;var p=i.default.oneOfType(f);t.isFile=p;var h=i.default.instanceOf(c.default);t.isLinkService=h;var v=i.default.oneOf(["_self","_blank","_parent","_top"]);t.isLinkTarget=v;var g=i.default.shape({_transport:i.default.shape({fontLoader:i.default.object.isRequired}).isRequired,commonObjs:i.default.shape({_objs:i.default.object.isRequired}).isRequired,getAnnotations:i.default.func.isRequired,getTextContent:i.default.func.isRequired,getViewport:i.default.func.isRequired,render:i.default.func.isRequired});t.isPage=g;t.isPageIndex=function(e,t,n){var r=e[t],o=e.pageNumber,i=e.pdf;if(!(0,s.isDefined)(i))return null;if((0,s.isDefined)(r)){if("number"!==typeof r)return new Error("`".concat(t,"` of type `").concat((0,a.default)(r),"` supplied to `").concat(n,"`, expected `number`."));if(r<0)return new Error("Expected `".concat(t,"` to be greater or equal to 0."));var u=i.numPages;if(r+1>u)return new Error("Expected `".concat(t,"` to be less or equal to ").concat(u-1,"."))}else if(!(0,s.isDefined)(o))return new Error("`".concat(t,"` not supplied. Either pageIndex or pageNumber must be supplied to `").concat(n,"`."));return null};t.isPageNumber=function(e,t,n){var r=e[t],o=e.pageIndex,i=e.pdf;if(!(0,s.isDefined)(i))return null;if((0,s.isDefined)(r)){if("number"!==typeof r)return new Error("`".concat(t,"` of type `").concat((0,a.default)(r),"` supplied to `").concat(n,"`, expected `number`."));if(r<1)return new Error("Expected `".concat(t,"` to be greater or equal to 1."));var u=i.numPages;if(r>u)return new Error("Expected `".concat(t,"` to be less or equal to ").concat(u,"."))}else if(!(0,s.isDefined)(o))return new Error("`".concat(t,"` not supplied. Either pageIndex or pageNumber must be supplied to `").concat(n,"`."));return null};var m=i.default.oneOfType([i.default.shape({getDestination:i.default.func.isRequired,getOutline:i.default.func.isRequired,getPage:i.default.func.isRequired,numPages:i.default.number.isRequired}),i.default.bool]);t.isPdf=m;var y=i.default.oneOf(["canvas","none","svg"]);t.isRenderMode=y;var b=i.default.oneOf([0,90,180,270]);t.isRotate=b},13947:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadFromFile=t.isCancelException=t.makePageCallback=t.cancelRunningTask=t.displayCORSWarning=t.errorOnDev=t.warnOnDev=t.getPixelRatio=t.dataURItoUint8Array=t.isDataURI=t.isFile=t.isBlob=t.isArrayBuffer=t.isString=t.isProvided=t.isDefined=t.isProduction=t.isLocalFileSystem=t.isBrowser=void 0;var n="undefined"!==typeof window;t.isBrowser=n;var r=n&&"file:"===window.location.protocol;t.isLocalFileSystem=r;var a=!0;t.isProduction=a;var o=function(e){return"undefined"!==typeof e};t.isDefined=o;t.isProvided=function(e){return o(e)&&null!==e};var i=function(e){return"string"===typeof e};t.isString=i;t.isArrayBuffer=function(e){return e instanceof ArrayBuffer};t.isBlob=function(e){if(!n)throw new Error("Attempted to check if a variable is a Blob on a non-browser environment.");return e instanceof Blob};t.isFile=function(e){if(!n)throw new Error("Attempted to check if a variable is a File on a non-browser environment.");return e instanceof File};var u=function(e){return i(e)&&/^data:/.test(e)};t.isDataURI=u;t.dataURItoUint8Array=function(e){if(!u(e))throw new Error("dataURItoUint8Array was provided with an argument which is not a valid data URI.");var t;t=e.split(",")[0].indexOf("base64")>=0?atob(e.split(",")[1]):unescape(e.split(",")[1]);for(var n=new Uint8Array(t.length),r=0;r<t.length;r+=1)n[r]=t.charCodeAt(r);return n};t.getPixelRatio=function(){return n&&window.devicePixelRatio||1};var s=function(e){},c=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return s.apply(void 0,["warn"].concat(t))};t.warnOnDev=c;t.errorOnDev=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return s.apply(void 0,["error"].concat(t))};t.displayCORSWarning=function(){r&&c("Loading PDF as base64 strings/URLs might not work on protocols other than HTTP/HTTPS. On Google Chrome, you can use --allow-file-access-from-files flag for debugging purposes.")};t.cancelRunningTask=function(e){e&&e.cancel&&e.cancel()};t.makePageCallback=function(e,t){return Object.defineProperty(e,"width",{get:function(){return this.view[2]*t},configurable:!0}),Object.defineProperty(e,"height",{get:function(){return this.view[3]*t},configurable:!0}),Object.defineProperty(e,"originalWidth",{get:function(){return this.view[2]},configurable:!0}),Object.defineProperty(e,"originalHeight",{get:function(){return this.view[3]},configurable:!0}),e};t.isCancelException=function(e){return"RenderingCancelledException"===e.name};t.loadFromFile=function(e){return new Promise((function(t,n){var r=new FileReader;return r.onload=function(){return t(new Uint8Array(r.result))},r.onerror=function(e){switch(e.target.error.code){case e.target.error.NOT_FOUND_ERR:return n(new Error("Error while reading a file: File not found."));case e.target.error.NOT_READABLE_ERR:return n(new Error("Error while reading a file: File not readable."));case e.target.error.SECURITY_ERR:return n(new Error("Error while reading a file: Security error."));case e.target.error.ABORT_ERR:return n(new Error("Error while reading a file: Aborted."));default:return n(new Error("Error while reading a file."))}},r.readAsArrayBuffer(e),null}))}},67096:function(e,t,n){var r;e=n.nmd(e),function(a){t&&t.nodeType,e&&e.nodeType;var o="object"==typeof n.g&&n.g;o.global!==o&&o.window!==o&&o.self;var i,u=2147483647,s=36,c=1,l=26,f=38,d=700,p=72,h=128,v="-",g=/^xn--/,m=/[^\x20-\x7E]/,y=/[\x2E\u3002\uFF0E\uFF61]/g,b={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},x=s-c,w=Math.floor,k=String.fromCharCode;function P(e){throw RangeError(b[e])}function E(e,t){for(var n=e.length,r=[];n--;)r[n]=t(e[n]);return r}function O(e,t){var n=e.split("@"),r="";return n.length>1&&(r=n[0]+"@",e=n[1]),r+E((e=e.replace(y,".")).split("."),t).join(".")}function S(e){for(var t,n,r=[],a=0,o=e.length;a<o;)(t=e.charCodeAt(a++))>=55296&&t<=56319&&a<o?56320==(64512&(n=e.charCodeAt(a++)))?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),a--):r.push(t);return r}function R(e){return E(e,(function(e){var t="";return e>65535&&(t+=k((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=k(e)})).join("")}function _(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function D(e,t,n){var r=0;for(e=n?w(e/d):e>>1,e+=w(e/t);e>x*l>>1;r+=s)e=w(e/x);return w(r+(x+1)*e/(e+f))}function L(e){var t,n,r,a,o,i,f,d,g,m,y,b=[],x=e.length,k=0,E=h,O=p;for((n=e.lastIndexOf(v))<0&&(n=0),r=0;r<n;++r)e.charCodeAt(r)>=128&&P("not-basic"),b.push(e.charCodeAt(r));for(a=n>0?n+1:0;a<x;){for(o=k,i=1,f=s;a>=x&&P("invalid-input"),((d=(y=e.charCodeAt(a++))-48<10?y-22:y-65<26?y-65:y-97<26?y-97:s)>=s||d>w((u-k)/i))&&P("overflow"),k+=d*i,!(d<(g=f<=O?c:f>=O+l?l:f-O));f+=s)i>w(u/(m=s-g))&&P("overflow"),i*=m;O=D(k-o,t=b.length+1,0==o),w(k/t)>u-E&&P("overflow"),E+=w(k/t),k%=t,b.splice(k++,0,E)}return R(b)}function C(e){var t,n,r,a,o,i,f,d,g,m,y,b,x,E,O,R=[];for(b=(e=S(e)).length,t=h,n=0,o=p,i=0;i<b;++i)(y=e[i])<128&&R.push(k(y));for(r=a=R.length,a&&R.push(v);r<b;){for(f=u,i=0;i<b;++i)(y=e[i])>=t&&y<f&&(f=y);for(f-t>w((u-n)/(x=r+1))&&P("overflow"),n+=(f-t)*x,t=f,i=0;i<b;++i)if((y=e[i])<t&&++n>u&&P("overflow"),y==t){for(d=n,g=s;!(d<(m=g<=o?c:g>=o+l?l:g-o));g+=s)O=d-m,E=s-m,R.push(k(_(m+O%E,0))),d=w(O/E);R.push(k(_(d,0))),o=D(n,x,r==a),n=0,++r}++n,++t}return R.join("")}i={version:"1.3.2",ucs2:{decode:S,encode:R},decode:L,encode:C,toASCII:function(e){return O(e,(function(e){return m.test(e)?"xn--"+C(e):e}))},toUnicode:function(e){return O(e,(function(e){return g.test(e)?L(e.slice(4).toLowerCase()):e}))}},void 0===(r=function(){return i}.call(t,n,t,e))||(e.exports=r)}()},32569:function(e,t,n){"use strict";var r=n(67096),a=n(21346);function o(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}t.parse=b,t.resolve=function(e,t){return b(e,!1,!0).resolve(t)},t.resolveObject=function(e,t){return e?b(e,!1,!0).resolveObject(t):t},t.format=function(e){a.isString(e)&&(e=b(e));return e instanceof o?e.format():o.prototype.format.call(e)},t.Url=o;var i=/^([a-z0-9.+-]+:)/i,u=/:[0-9]*$/,s=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,c=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),l=["'"].concat(c),f=["%","/","?",";","#"].concat(l),d=["/","?","#"],p=/^[+a-z0-9A-Z_-]{0,63}$/,h=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,v={javascript:!0,"javascript:":!0},g={javascript:!0,"javascript:":!0},m={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},y=n(3344);function b(e,t,n){if(e&&a.isObject(e)&&e instanceof o)return e;var r=new o;return r.parse(e,t,n),r}o.prototype.parse=function(e,t,n){if(!a.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var o=e.indexOf("?"),u=-1!==o&&o<e.indexOf("#")?"?":"#",c=e.split(u);c[0]=c[0].replace(/\\/g,"/");var b=e=c.join(u);if(b=b.trim(),!n&&1===e.split("#").length){var x=s.exec(b);if(x)return this.path=b,this.href=b,this.pathname=x[1],x[2]?(this.search=x[2],this.query=t?y.parse(this.search.substr(1)):this.search.substr(1)):t&&(this.search="",this.query={}),this}var w=i.exec(b);if(w){var k=(w=w[0]).toLowerCase();this.protocol=k,b=b.substr(w.length)}if(n||w||b.match(/^\/\/[^@\/]+@[^@\/]+/)){var P="//"===b.substr(0,2);!P||w&&g[w]||(b=b.substr(2),this.slashes=!0)}if(!g[w]&&(P||w&&!m[w])){for(var E,O,S=-1,R=0;R<d.length;R++){-1!==(_=b.indexOf(d[R]))&&(-1===S||_<S)&&(S=_)}-1!==(O=-1===S?b.lastIndexOf("@"):b.lastIndexOf("@",S))&&(E=b.slice(0,O),b=b.slice(O+1),this.auth=decodeURIComponent(E)),S=-1;for(R=0;R<f.length;R++){var _;-1!==(_=b.indexOf(f[R]))&&(-1===S||_<S)&&(S=_)}-1===S&&(S=b.length),this.host=b.slice(0,S),b=b.slice(S),this.parseHost(),this.hostname=this.hostname||"";var D="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!D)for(var L=this.hostname.split(/\./),C=(R=0,L.length);R<C;R++){var A=L[R];if(A&&!A.match(p)){for(var T="",I=0,j=A.length;I<j;I++)A.charCodeAt(I)>127?T+="x":T+=A[I];if(!T.match(p)){var N=L.slice(0,R),M=L.slice(R+1),F=A.match(h);F&&(N.push(F[1]),M.unshift(F[2])),M.length&&(b="/"+M.join(".")+b),this.hostname=N.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),D||(this.hostname=r.toASCII(this.hostname));var U=this.port?":"+this.port:"",V=this.hostname||"";this.host=V+U,this.href+=this.host,D&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==b[0]&&(b="/"+b))}if(!v[k])for(R=0,C=l.length;R<C;R++){var q=l[R];if(-1!==b.indexOf(q)){var B=encodeURIComponent(q);B===q&&(B=escape(q)),b=b.split(q).join(B)}}var W=b.indexOf("#");-1!==W&&(this.hash=b.substr(W),b=b.slice(0,W));var G=b.indexOf("?");if(-1!==G?(this.search=b.substr(G),this.query=b.substr(G+1),t&&(this.query=y.parse(this.query)),b=b.slice(0,G)):t&&(this.search="",this.query={}),b&&(this.pathname=b),m[k]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){U=this.pathname||"";var H=this.search||"";this.path=U+H}return this.href=this.format(),this},o.prototype.format=function(){var e=this.auth||"";e&&(e=(e=encodeURIComponent(e)).replace(/%3A/i,":"),e+="@");var t=this.protocol||"",n=this.pathname||"",r=this.hash||"",o=!1,i="";this.host?o=e+this.host:this.hostname&&(o=e+(-1===this.hostname.indexOf(":")?this.hostname:"["+this.hostname+"]"),this.port&&(o+=":"+this.port)),this.query&&a.isObject(this.query)&&Object.keys(this.query).length&&(i=y.stringify(this.query));var u=this.search||i&&"?"+i||"";return t&&":"!==t.substr(-1)&&(t+=":"),this.slashes||(!t||m[t])&&!1!==o?(o="//"+(o||""),n&&"/"!==n.charAt(0)&&(n="/"+n)):o||(o=""),r&&"#"!==r.charAt(0)&&(r="#"+r),u&&"?"!==u.charAt(0)&&(u="?"+u),t+o+(n=n.replace(/[?#]/g,(function(e){return encodeURIComponent(e)})))+(u=u.replace("#","%23"))+r},o.prototype.resolve=function(e){return this.resolveObject(b(e,!1,!0)).format()},o.prototype.resolveObject=function(e){if(a.isString(e)){var t=new o;t.parse(e,!1,!0),e=t}for(var n=new o,r=Object.keys(this),i=0;i<r.length;i++){var u=r[i];n[u]=this[u]}if(n.hash=e.hash,""===e.href)return n.href=n.format(),n;if(e.slashes&&!e.protocol){for(var s=Object.keys(e),c=0;c<s.length;c++){var l=s[c];"protocol"!==l&&(n[l]=e[l])}return m[n.protocol]&&n.hostname&&!n.pathname&&(n.path=n.pathname="/"),n.href=n.format(),n}if(e.protocol&&e.protocol!==n.protocol){if(!m[e.protocol]){for(var f=Object.keys(e),d=0;d<f.length;d++){var p=f[d];n[p]=e[p]}return n.href=n.format(),n}if(n.protocol=e.protocol,e.host||g[e.protocol])n.pathname=e.pathname;else{for(var h=(e.pathname||"").split("/");h.length&&!(e.host=h.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),""!==h[0]&&h.unshift(""),h.length<2&&h.unshift(""),n.pathname=h.join("/")}if(n.search=e.search,n.query=e.query,n.host=e.host||"",n.auth=e.auth,n.hostname=e.hostname||e.host,n.port=e.port,n.pathname||n.search){var v=n.pathname||"",y=n.search||"";n.path=v+y}return n.slashes=n.slashes||e.slashes,n.href=n.format(),n}var b=n.pathname&&"/"===n.pathname.charAt(0),x=e.host||e.pathname&&"/"===e.pathname.charAt(0),w=x||b||n.host&&e.pathname,k=w,P=n.pathname&&n.pathname.split("/")||[],E=(h=e.pathname&&e.pathname.split("/")||[],n.protocol&&!m[n.protocol]);if(E&&(n.hostname="",n.port=null,n.host&&(""===P[0]?P[0]=n.host:P.unshift(n.host)),n.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(""===h[0]?h[0]=e.host:h.unshift(e.host)),e.host=null),w=w&&(""===h[0]||""===P[0])),x)n.host=e.host||""===e.host?e.host:n.host,n.hostname=e.hostname||""===e.hostname?e.hostname:n.hostname,n.search=e.search,n.query=e.query,P=h;else if(h.length)P||(P=[]),P.pop(),P=P.concat(h),n.search=e.search,n.query=e.query;else if(!a.isNullOrUndefined(e.search)){if(E)n.hostname=n.host=P.shift(),(D=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=D.shift(),n.host=n.hostname=D.shift());return n.search=e.search,n.query=e.query,a.isNull(n.pathname)&&a.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!P.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var O=P.slice(-1)[0],S=(n.host||e.host||P.length>1)&&("."===O||".."===O)||""===O,R=0,_=P.length;_>=0;_--)"."===(O=P[_])?P.splice(_,1):".."===O?(P.splice(_,1),R++):R&&(P.splice(_,1),R--);if(!w&&!k)for(;R--;R)P.unshift("..");!w||""===P[0]||P[0]&&"/"===P[0].charAt(0)||P.unshift(""),S&&"/"!==P.join("/").substr(-1)&&P.push("");var D,L=""===P[0]||P[0]&&"/"===P[0].charAt(0);E&&(n.hostname=n.host=L?"":P.length?P.shift():"",(D=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=D.shift(),n.host=n.hostname=D.shift()));return(w=w||n.host&&P.length)&&!L&&P.unshift(""),P.length?n.pathname=P.join("/"):(n.pathname=null,n.path=null),a.isNull(n.pathname)&&a.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},o.prototype.parseHost=function(){var e=this.host,t=u.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},21346:function(e){"use strict";e.exports={isString:function(e){return"string"===typeof e},isObject:function(e){return"object"===typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},70079:function(e){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.__esModule=!0,e.exports.default=e.exports},15368:function(e){e.exports=function(e){if(Array.isArray(e))return e},e.exports.__esModule=!0,e.exports.default=e.exports},5901:function(e,t,n){var r=n(70079);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.__esModule=!0,e.exports.default=e.exports},12475:function(e){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.__esModule=!0,e.exports.default=e.exports},29293:function(e){function t(e,t,n,r,a,o,i){try{var u=e[o](i),s=u.value}catch(c){return void n(c)}u.done?t(s):Promise.resolve(s).then(r,a)}e.exports=function(e){return function(){var n=this,r=arguments;return new Promise((function(a,o){var i=e.apply(n,r);function u(e){t(i,a,o,u,s,"next",e)}function s(e){t(i,a,o,u,s,"throw",e)}u(void 0)}))}},e.exports.__esModule=!0,e.exports.default=e.exports},17383:function(e){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.__esModule=!0,e.exports.default=e.exports},34579:function(e,t,n){var r=n(77736);function a(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,r(a.key),a)}}e.exports=function(e,t,n){return t&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e},e.exports.__esModule=!0,e.exports.default=e.exports},43693:function(e,t,n){var r=n(77736);e.exports=function(e,t,n){return(t=r(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.__esModule=!0,e.exports.default=e.exports},94634:function(e){function t(){return e.exports=t=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,t.apply(this,arguments)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},63072:function(e){function t(n){return e.exports=t=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},e.exports.__esModule=!0,e.exports.default=e.exports,t(n)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},29511:function(e,t,n){var r=n(95636);e.exports=function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&r(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},6305:function(e,t,n){var r=n(73738).default;function a(e){if("function"!==typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(a=function(e){return e?n:t})(e)}e.exports=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!==typeof e)return{default:e};var n=a(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in e)if("default"!==u&&Object.prototype.hasOwnProperty.call(e,u)){var s=i?Object.getOwnPropertyDescriptor(e,u):null;s&&(s.get||s.set)?Object.defineProperty(o,u,s):o[u]=e[u]}return o.default=e,n&&n.set(e,o),o},e.exports.__esModule=!0,e.exports.default=e.exports},99291:function(e){e.exports=function(e){if("undefined"!==typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.__esModule=!0,e.exports.default=e.exports},81156:function(e){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o,i,u=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(u.push(r.value),u.length!==t);s=!0);}catch(e){c=!0,a=e}finally{try{if(!s&&null!=n.return&&(i=n.return(),Object(i)!==i))return}finally{if(c)throw a}}return u}},e.exports.__esModule=!0,e.exports.default=e.exports},25371:function(e){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.__esModule=!0,e.exports.default=e.exports},41869:function(e){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.__esModule=!0,e.exports.default=e.exports},91847:function(e,t,n){var r=n(54893);e.exports=function(e,t){if(null==e)return{};var n,a,o=r(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o},e.exports.__esModule=!0,e.exports.default=e.exports},54893:function(e){e.exports=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(a[n]=e[n]);return a},e.exports.__esModule=!0,e.exports.default=e.exports},28452:function(e,t,n){var r=n(73738).default,a=n(12475);e.exports=function(e,t){if(t&&("object"===r(t)||"function"===typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return a(e)},e.exports.__esModule=!0,e.exports.default=e.exports},95636:function(e){function t(n,r){return e.exports=t=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,t(n,r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},85715:function(e,t,n){var r=n(15368),a=n(81156),o=n(17122),i=n(25371);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.__esModule=!0,e.exports.default=e.exports},41132:function(e,t,n){var r=n(5901),a=n(99291),o=n(17122),i=n(41869);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.__esModule=!0,e.exports.default=e.exports},89045:function(e,t,n){var r=n(73738).default;e.exports=function(e,t){if("object"!==r(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var a=n.call(e,t||"default");if("object"!==r(a))return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)},e.exports.__esModule=!0,e.exports.default=e.exports},77736:function(e,t,n){var r=n(73738).default,a=n(89045);e.exports=function(e){var t=a(e,"string");return"symbol"===r(t)?t:String(t)},e.exports.__esModule=!0,e.exports.default=e.exports},17122:function(e,t,n){var r=n(70079);e.exports=function(e,t){if(e){if("string"===typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports}}]);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @licstart The following is the entire license notice for the
|
|
5
|
+
* Javascript code in this page
|
|
6
|
+
*
|
|
7
|
+
* Copyright 2018 Mozilla Foundation
|
|
8
|
+
*
|
|
9
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
+
* you may not use this file except in compliance with the License.
|
|
11
|
+
* You may obtain a copy of the License at
|
|
12
|
+
*
|
|
13
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
14
|
+
*
|
|
15
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
16
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
17
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
18
|
+
* See the License for the specific language governing permissions and
|
|
19
|
+
* limitations under the License.
|
|
20
|
+
*
|
|
21
|
+
* @licend The above is the entire license notice for the
|
|
22
|
+
* Javascript code in this page
|
|
23
|
+
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9723],{27781:function(e,n,t){function r(e,n){let{checkForDefaultPrevented:t=!0}=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return function(r){if(null===e||void 0===e||e(r),!1===t||!r.defaultPrevented)return null===n||void 0===n?void 0:n(r)}}t.d(n,{m:function(){return r}})},68867:function(e,n,t){t.d(n,{b:function(){return i}});var r=t(58168),o=t(31014),u=t(39683);const c=(0,o.forwardRef)(((e,n)=>{const{children:t,width:c=10,height:i=5,...a}=e;return(0,o.createElement)(u.sG.svg,(0,r.A)({},a,{ref:n,width:c,height:i,viewBox:"0 0 30 10",preserveAspectRatio:"none"}),e.asChild?t:(0,o.createElement)("polygon",{points:"0,0 30,0 15,10"}))})),i=c},52630:function(e,n,t){t.d(n,{N:function(){return i}});var r=t(31014),o=t(14613),u=t(34271),c=t(58066);function i(e){const n=e+"CollectionProvider",[t,i]=(0,o.A)(n),[a,s]=t(n,{collectionRef:{current:null},itemMap:new Map}),l=e=>{const{scope:n,children:t}=e,o=r.useRef(null),u=r.useRef(new Map).current;return r.createElement(a,{scope:n,itemMap:u,collectionRef:o},t)},d=e+"CollectionSlot",f=r.forwardRef(((e,n)=>{const{scope:t,children:o}=e,i=s(d,t),a=(0,u.s)(n,i.collectionRef);return r.createElement(c.DX,{ref:a},o)})),p=e+"CollectionItemSlot",v="data-radix-collection-item",m=r.forwardRef(((e,n)=>{const{scope:t,children:o,...i}=e,a=r.useRef(null),l=(0,u.s)(n,a),d=s(p,t);return r.useEffect((()=>(d.itemMap.set(a,{ref:a,...i}),()=>{d.itemMap.delete(a)}))),r.createElement(c.DX,{[v]:"",ref:l},o)}));return[{Provider:l,Slot:f,ItemSlot:m},function(n){const t=s(e+"CollectionConsumer",n);return r.useCallback((()=>{const e=t.collectionRef.current;if(!e)return[];const n=Array.from(e.querySelectorAll(`[${v}]`));return Array.from(t.itemMap.values()).sort(((e,t)=>n.indexOf(e.ref.current)-n.indexOf(t.ref.current)))}),[t.collectionRef,t.itemMap])},i]}},34271:function(e,n,t){t.d(n,{s:function(){return u},t:function(){return o}});var r=t(31014);function o(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];return e=>n.forEach((n=>function(e,n){"function"===typeof e?e(n):null!==e&&void 0!==e&&(e.current=n)}(n,e)))}function u(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];return(0,r.useCallback)(o(...n),n)}},39299:function(e,n,t){t.d(n,{BO:function(){return A},F7:function(){return D},Fj:function(){return F},Ip:function(){return _},JW:function(){return C},K5:function(){return P},Pd:function(){return L},Q2:function(){return x},Rc:function(){return w},T3:function(){return O},XN:function(){return R},_E:function(){return T},es:function(){return I},kt:function(){return y},tz:function(){return h},zb:function(){return M}});var r=t(58168),o=t(31014),u=t(27781),c=t(14613),i=t(39683),a=t(23500),s=t(88631),l=t(58119);const d="ContextMenu",[f,p]=(0,c.A)(d,[a.UE]),v=(0,a.UE)(),[m,g]=f(d),h=e=>{const{__scopeContextMenu:n,children:t,onOpenChange:u,dir:c,modal:i=!0}=e,[l,d]=(0,o.useState)(!1),f=v(n),p=(0,s.c)(u),g=(0,o.useCallback)((e=>{d(e),p(e)}),[p]);return(0,o.createElement)(m,{scope:n,open:l,onOpenChange:g,modal:i},(0,o.createElement)(a.bL,(0,r.A)({},f,{dir:c,open:l,onOpenChange:g,modal:i}),t))},E="ContextMenuTrigger",w=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,disabled:c=!1,...s}=e,l=g(E,t),d=v(t),f=(0,o.useRef)({x:0,y:0}),p=(0,o.useRef)({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...f.current})}),m=(0,o.useRef)(0),h=(0,o.useCallback)((()=>window.clearTimeout(m.current)),[]),w=e=>{f.current={x:e.clientX,y:e.clientY},l.onOpenChange(!0)};return(0,o.useEffect)((()=>h),[h]),(0,o.useEffect)((()=>{c&&h()}),[c,h]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.Mz,(0,r.A)({},d,{virtualRef:p})),(0,o.createElement)(i.sG.span,(0,r.A)({"data-state":l.open?"open":"closed","data-disabled":c?"":void 0},s,{ref:n,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:c?e.onContextMenu:(0,u.m)(e.onContextMenu,(e=>{h(),w(e),e.preventDefault()})),onPointerDown:c?e.onPointerDown:(0,u.m)(e.onPointerDown,N((e=>{h(),m.current=window.setTimeout((()=>w(e)),700)}))),onPointerMove:c?e.onPointerMove:(0,u.m)(e.onPointerMove,N(h)),onPointerCancel:c?e.onPointerCancel:(0,u.m)(e.onPointerCancel,N(h)),onPointerUp:c?e.onPointerUp:(0,u.m)(e.onPointerUp,N(h))})))})),C=e=>{const{__scopeContextMenu:n,...t}=e,u=v(n);return(0,o.createElement)(a.ZL,(0,r.A)({},u,t))},b="ContextMenuContent",_=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=g(b,t),i=v(t),s=(0,o.useRef)(!1);return(0,o.createElement)(a.UC,(0,r.A)({},i,u,{ref:n,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:n=>{var t;null===(t=e.onCloseAutoFocus)||void 0===t||t.call(e,n),!n.defaultPrevented&&s.current&&n.preventDefault(),s.current=!1},onInteractOutside:n=>{var t;null===(t=e.onInteractOutside)||void 0===t||t.call(e,n),n.defaultPrevented||c.modal||(s.current=!0)},style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}}))})),x=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.YJ,(0,r.A)({},c,u,{ref:n}))})),D=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.JU,(0,r.A)({},c,u,{ref:n}))})),y=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.q7,(0,r.A)({},c,u,{ref:n}))})),R=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.H_,(0,r.A)({},c,u,{ref:n}))})),A=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.z6,(0,r.A)({},c,u,{ref:n}))})),M=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.hN,(0,r.A)({},c,u,{ref:n}))})),O=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.VF,(0,r.A)({},c,u,{ref:n}))})),P=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.wv,(0,r.A)({},c,u,{ref:n}))})),T=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.i3,(0,r.A)({},c,u,{ref:n}))})),F=e=>{const{__scopeContextMenu:n,children:t,onOpenChange:u,open:c,defaultOpen:i}=e,s=v(n),[d,f]=(0,l.i)({prop:c,defaultProp:i,onChange:u});return(0,o.createElement)(a.Pb,(0,r.A)({},s,{open:d,onOpenChange:f}),t)},L=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.ZP,(0,r.A)({},c,u,{ref:n}))})),I=(0,o.forwardRef)(((e,n)=>{const{__scopeContextMenu:t,...u}=e,c=v(t);return(0,o.createElement)(a.G5,(0,r.A)({},c,u,{ref:n,style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}}))}));function N(e){return n=>"mouse"!==n.pointerType?e(n):void 0}},14613:function(e,n,t){t.d(n,{A:function(){return u},q:function(){return o}});var r=t(31014);function o(e,n){const t=(0,r.createContext)(n);function o(e){const{children:n,...o}=e,u=(0,r.useMemo)((()=>o),Object.values(o));return(0,r.createElement)(t.Provider,{value:u},n)}return o.displayName=e+"Provider",[o,function(o){const u=(0,r.useContext)(t);if(u)return u;if(void 0!==n)return n;throw new Error(`\`${o}\` must be used within \`${e}\``)}]}function u(e){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],t=[];const o=()=>{const n=t.map((e=>(0,r.createContext)(e)));return function(t){const o=(null===t||void 0===t?void 0:t[e])||n;return(0,r.useMemo)((()=>({[`__scope${e}`]:{...t,[e]:o}})),[t,o])}};return o.scopeName=e,[function(n,o){const u=(0,r.createContext)(o),c=t.length;function i(n){const{scope:t,children:o,...i}=n,a=(null===t||void 0===t?void 0:t[e][c])||u,s=(0,r.useMemo)((()=>i),Object.values(i));return(0,r.createElement)(a.Provider,{value:s},o)}return t=[...t,o],i.displayName=n+"Provider",[i,function(t,i){const a=(null===i||void 0===i?void 0:i[e][c])||u,s=(0,r.useContext)(a);if(s)return s;if(void 0!==o)return o;throw new Error(`\`${t}\` must be used within \`${n}\``)}]},c(o,...n)]}function c(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];const o=n[0];if(1===n.length)return o;const u=()=>{const e=n.map((e=>({useScope:e(),scopeName:e.scopeName})));return function(n){const t=e.reduce(((e,t)=>{let{useScope:r,scopeName:o}=t;return{...e,...r(n)[`__scope${o}`]}}),{});return(0,r.useMemo)((()=>({[`__scope${o.scopeName}`]:t})),[t])}};return u.scopeName=o.scopeName,u}},51038:function(e,n,t){t.d(n,{Cf:function(){return N},ZL:function(){return H},bL:function(){return J},bm:function(){return V},hE:function(){return Y},hJ:function(){return X},l9:function(){return j}});var r=t(58168),o=t(31014),u=t(27781),c=t(34271),i=t(14613),a=t(29379),s=t(58119),l=t(5354),d=t(94851),f=t(7416),p=t(88227),v=t(39683),m=t(65367),g=t(91753),h=t(16487),E=t(58066);const w="Dialog",[C,b]=(0,i.A)(w),[_,x]=C(w),D=e=>{const{__scopeDialog:n,children:t,open:r,defaultOpen:u,onOpenChange:c,modal:i=!0}=e,l=(0,o.useRef)(null),d=(0,o.useRef)(null),[f=!1,p]=(0,s.i)({prop:r,defaultProp:u,onChange:c});return(0,o.createElement)(_,{scope:n,triggerRef:l,contentRef:d,contentId:(0,a.B)(),titleId:(0,a.B)(),descriptionId:(0,a.B)(),open:f,onOpenChange:p,onOpenToggle:(0,o.useCallback)((()=>p((e=>!e))),[p]),modal:i},t)},y="DialogTrigger",R=(0,o.forwardRef)(((e,n)=>{const{__scopeDialog:t,...i}=e,a=x(y,t),s=(0,c.s)(n,a.triggerRef);return(0,o.createElement)(v.sG.button,(0,r.A)({type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":q(a.open)},i,{ref:s,onClick:(0,u.m)(e.onClick,a.onOpenToggle)}))})),A="DialogPortal",[M,O]=C(A,{forceMount:void 0}),P=e=>{const{__scopeDialog:n,forceMount:t,children:r,container:u}=e,c=x(A,n);return(0,o.createElement)(M,{scope:n,forceMount:t},o.Children.map(r,(e=>(0,o.createElement)(p.C,{present:t||c.open},(0,o.createElement)(f.Z,{asChild:!0,container:u},e)))))},T="DialogOverlay",F=(0,o.forwardRef)(((e,n)=>{const t=O(T,e.__scopeDialog),{forceMount:u=t.forceMount,...c}=e,i=x(T,e.__scopeDialog);return i.modal?(0,o.createElement)(p.C,{present:u||i.open},(0,o.createElement)(L,(0,r.A)({},c,{ref:n}))):null})),L=(0,o.forwardRef)(((e,n)=>{const{__scopeDialog:t,...u}=e,c=x(T,t);return(0,o.createElement)(g.A,{as:E.DX,allowPinchZoom:!0,shards:[c.contentRef]},(0,o.createElement)(v.sG.div,(0,r.A)({"data-state":q(c.open)},u,{ref:n,style:{pointerEvents:"auto",...u.style}})))})),I="DialogContent",N=(0,o.forwardRef)(((e,n)=>{const t=O(I,e.__scopeDialog),{forceMount:u=t.forceMount,...c}=e,i=x(I,e.__scopeDialog);return(0,o.createElement)(p.C,{present:u||i.open},i.modal?(0,o.createElement)(S,(0,r.A)({},c,{ref:n})):(0,o.createElement)(k,(0,r.A)({},c,{ref:n})))})),S=(0,o.forwardRef)(((e,n)=>{const t=x(I,e.__scopeDialog),i=(0,o.useRef)(null),a=(0,c.s)(n,t.contentRef,i);return(0,o.useEffect)((()=>{const e=i.current;if(e)return(0,h.Eq)(e)}),[]),(0,o.createElement)(U,(0,r.A)({},e,{ref:a,trapFocus:t.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:(0,u.m)(e.onCloseAutoFocus,(e=>{var n;e.preventDefault(),null===(n=t.triggerRef.current)||void 0===n||n.focus()})),onPointerDownOutside:(0,u.m)(e.onPointerDownOutside,(e=>{const n=e.detail.originalEvent,t=0===n.button&&!0===n.ctrlKey;(2===n.button||t)&&e.preventDefault()})),onFocusOutside:(0,u.m)(e.onFocusOutside,(e=>e.preventDefault()))}))})),k=(0,o.forwardRef)(((e,n)=>{const t=x(I,e.__scopeDialog),u=(0,o.useRef)(!1),c=(0,o.useRef)(!1);return(0,o.createElement)(U,(0,r.A)({},e,{ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:n=>{var r,o;(null===(r=e.onCloseAutoFocus)||void 0===r||r.call(e,n),n.defaultPrevented)||(u.current||null===(o=t.triggerRef.current)||void 0===o||o.focus(),n.preventDefault());u.current=!1,c.current=!1},onInteractOutside:n=>{var r,o;null===(r=e.onInteractOutside)||void 0===r||r.call(e,n),n.defaultPrevented||(u.current=!0,"pointerdown"===n.detail.originalEvent.type&&(c.current=!0));const i=n.target;(null===(o=t.triggerRef.current)||void 0===o?void 0:o.contains(i))&&n.preventDefault(),"focusin"===n.detail.originalEvent.type&&c.current&&n.preventDefault()}}))})),U=(0,o.forwardRef)(((e,n)=>{const{__scopeDialog:t,trapFocus:u,onOpenAutoFocus:i,onCloseAutoFocus:a,...s}=e,f=x(I,t),p=(0,o.useRef)(null),v=(0,c.s)(n,p);return(0,m.Oh)(),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d.n,{asChild:!0,loop:!0,trapped:u,onMountAutoFocus:i,onUnmountAutoFocus:a},(0,o.createElement)(l.qW,(0,r.A)({role:"dialog",id:f.contentId,"aria-describedby":f.descriptionId,"aria-labelledby":f.titleId,"data-state":q(f.open)},s,{ref:v,onDismiss:()=>f.onOpenChange(!1)}))),!1)})),K="DialogTitle",W=(0,o.forwardRef)(((e,n)=>{const{__scopeDialog:t,...u}=e,c=x(K,t);return(0,o.createElement)(v.sG.h2,(0,r.A)({id:c.titleId},u,{ref:n}))})),B="DialogClose",G=(0,o.forwardRef)(((e,n)=>{const{__scopeDialog:t,...c}=e,i=x(B,t);return(0,o.createElement)(v.sG.button,(0,r.A)({type:"button"},c,{ref:n,onClick:(0,u.m)(e.onClick,(()=>i.onOpenChange(!1)))}))}));function q(e){return e?"open":"closed"}const z="DialogTitleWarning",[Z,$]=(0,i.q)(z,{contentName:I,titleName:K,docsSlug:"dialog"}),J=D,j=R,H=P,X=F,Y=W,V=G},82627:function(e,n,t){t.d(n,{jH:function(){return u}});var r=t(31014);const o=(0,r.createContext)(void 0);function u(e){const n=(0,r.useContext)(o);return e||n||"ltr"}},5354:function(e,n,t){t.d(n,{bL:function(){return w},lg:function(){return C},qW:function(){return m}});var r=t(58168),o=t(31014),u=t(27781),c=t(39683),i=t(34271),a=t(88631),s=t(24257);const l="dismissableLayer.update",d="dismissableLayer.pointerDownOutside",f="dismissableLayer.focusOutside";let p;const v=(0,o.createContext)({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),m=(0,o.forwardRef)(((e,n)=>{var t;const{disableOutsidePointerEvents:m=!1,onEscapeKeyDown:g,onPointerDownOutside:w,onFocusOutside:C,onInteractOutside:b,onDismiss:_,...x}=e,D=(0,o.useContext)(v),[y,R]=(0,o.useState)(null),A=null!==(t=null===y||void 0===y?void 0:y.ownerDocument)&&void 0!==t?t:null===globalThis||void 0===globalThis?void 0:globalThis.document,[,M]=(0,o.useState)({}),O=(0,i.s)(n,(e=>R(e))),P=Array.from(D.layers),[T]=[...D.layersWithOutsidePointerEventsDisabled].slice(-1),F=P.indexOf(T),L=y?P.indexOf(y):-1,I=D.layersWithOutsidePointerEventsDisabled.size>0,N=L>=F,S=function(e){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null===globalThis||void 0===globalThis?void 0:globalThis.document;const t=(0,a.c)(e),r=(0,o.useRef)(!1),u=(0,o.useRef)((()=>{}));return(0,o.useEffect)((()=>{const e=e=>{if(e.target&&!r.current){const o={originalEvent:e};function c(){E(d,t,o,{discrete:!0})}"touch"===e.pointerType?(n.removeEventListener("click",u.current),u.current=c,n.addEventListener("click",u.current,{once:!0})):c()}else n.removeEventListener("click",u.current);r.current=!1},o=window.setTimeout((()=>{n.addEventListener("pointerdown",e)}),0);return()=>{window.clearTimeout(o),n.removeEventListener("pointerdown",e),n.removeEventListener("click",u.current)}}),[n,t]),{onPointerDownCapture:()=>r.current=!0}}((e=>{const n=e.target,t=[...D.branches].some((e=>e.contains(n)));N&&!t&&(null===w||void 0===w||w(e),null===b||void 0===b||b(e),e.defaultPrevented||null===_||void 0===_||_())}),A),k=function(e){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null===globalThis||void 0===globalThis?void 0:globalThis.document;const t=(0,a.c)(e),r=(0,o.useRef)(!1);return(0,o.useEffect)((()=>{const e=e=>{if(e.target&&!r.current){E(f,t,{originalEvent:e},{discrete:!1})}};return n.addEventListener("focusin",e),()=>n.removeEventListener("focusin",e)}),[n,t]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}((e=>{const n=e.target;[...D.branches].some((e=>e.contains(n)))||(null===C||void 0===C||C(e),null===b||void 0===b||b(e),e.defaultPrevented||null===_||void 0===_||_())}),A);return(0,s.U)((e=>{L===D.layers.size-1&&(null===g||void 0===g||g(e),!e.defaultPrevented&&_&&(e.preventDefault(),_()))}),A),(0,o.useEffect)((()=>{if(y)return m&&(0===D.layersWithOutsidePointerEventsDisabled.size&&(p=A.body.style.pointerEvents,A.body.style.pointerEvents="none"),D.layersWithOutsidePointerEventsDisabled.add(y)),D.layers.add(y),h(),()=>{m&&1===D.layersWithOutsidePointerEventsDisabled.size&&(A.body.style.pointerEvents=p)}}),[y,A,m,D]),(0,o.useEffect)((()=>()=>{y&&(D.layers.delete(y),D.layersWithOutsidePointerEventsDisabled.delete(y),h())}),[y,D]),(0,o.useEffect)((()=>{const e=()=>M({});return document.addEventListener(l,e),()=>document.removeEventListener(l,e)}),[]),(0,o.createElement)(c.sG.div,(0,r.A)({},x,{ref:O,style:{pointerEvents:I?N?"auto":"none":void 0,...e.style},onFocusCapture:(0,u.m)(e.onFocusCapture,k.onFocusCapture),onBlurCapture:(0,u.m)(e.onBlurCapture,k.onBlurCapture),onPointerDownCapture:(0,u.m)(e.onPointerDownCapture,S.onPointerDownCapture)}))})),g=(0,o.forwardRef)(((e,n)=>{const t=(0,o.useContext)(v),u=(0,o.useRef)(null),a=(0,i.s)(n,u);return(0,o.useEffect)((()=>{const e=u.current;if(e)return t.branches.add(e),()=>{t.branches.delete(e)}}),[t.branches]),(0,o.createElement)(c.sG.div,(0,r.A)({},e,{ref:a}))}));function h(){const e=new CustomEvent(l);document.dispatchEvent(e)}function E(e,n,t,r){let{discrete:o}=r;const u=t.originalEvent.target,i=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:t});n&&u.addEventListener(e,n,{once:!0}),o?(0,c.hO)(u,i):u.dispatchEvent(i)}const w=m,C=g},64661:function(e,n,t){t.d(n,{G5:function(){return X},H_:function(){return G},JU:function(){return W},Pb:function(){return j},UC:function(){return U},VF:function(){return Z},YJ:function(){return K},ZL:function(){return k},ZP:function(){return H},bL:function(){return N},hN:function(){return z},i3:function(){return J},l9:function(){return S},q7:function(){return B},wv:function(){return $},z6:function(){return q}});var r=t(58168),o=t(31014),u=t(27781),c=t(34271),i=t(14613),a=t(58119),s=t(39683),l=t(23500),d=t(29379);const f="DropdownMenu",[p,v]=(0,i.A)(f,[l.UE]),m=(0,l.UE)(),[g,h]=p(f),E=e=>{const{__scopeDropdownMenu:n,children:t,dir:u,open:c,defaultOpen:i,onOpenChange:s,modal:f=!0}=e,p=m(n),v=(0,o.useRef)(null),[h=!1,E]=(0,a.i)({prop:c,defaultProp:i,onChange:s});return(0,o.createElement)(g,{scope:n,triggerId:(0,d.B)(),triggerRef:v,contentId:(0,d.B)(),open:h,onOpenChange:E,onOpenToggle:(0,o.useCallback)((()=>E((e=>!e))),[E]),modal:f},(0,o.createElement)(l.bL,(0,r.A)({},p,{open:h,onOpenChange:E,dir:u,modal:f}),t))},w="DropdownMenuTrigger",C=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,disabled:i=!1,...a}=e,d=h(w,t),f=m(t);return(0,o.createElement)(l.Mz,(0,r.A)({asChild:!0},f),(0,o.createElement)(s.sG.button,(0,r.A)({type:"button",id:d.triggerId,"aria-haspopup":"menu","aria-expanded":d.open,"aria-controls":d.open?d.contentId:void 0,"data-state":d.open?"open":"closed","data-disabled":i?"":void 0,disabled:i},a,{ref:(0,c.t)(n,d.triggerRef),onPointerDown:(0,u.m)(e.onPointerDown,(e=>{i||0!==e.button||!1!==e.ctrlKey||(d.onOpenToggle(),d.open||e.preventDefault())})),onKeyDown:(0,u.m)(e.onKeyDown,(e=>{i||(["Enter"," "].includes(e.key)&&d.onOpenToggle(),"ArrowDown"===e.key&&d.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(e.key)&&e.preventDefault())}))})))})),b=e=>{const{__scopeDropdownMenu:n,...t}=e,u=m(n);return(0,o.createElement)(l.ZL,(0,r.A)({},u,t))},_="DropdownMenuContent",x=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...c}=e,i=h(_,t),a=m(t),s=(0,o.useRef)(!1);return(0,o.createElement)(l.UC,(0,r.A)({id:i.contentId,"aria-labelledby":i.triggerId},a,c,{ref:n,onCloseAutoFocus:(0,u.m)(e.onCloseAutoFocus,(e=>{var n;s.current||null===(n=i.triggerRef.current)||void 0===n||n.focus(),s.current=!1,e.preventDefault()})),onInteractOutside:(0,u.m)(e.onInteractOutside,(e=>{const n=e.detail.originalEvent,t=0===n.button&&!0===n.ctrlKey,r=2===n.button||t;i.modal&&!r||(s.current=!0)})),style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}}))})),D=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.YJ,(0,r.A)({},c,u,{ref:n}))})),y=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.JU,(0,r.A)({},c,u,{ref:n}))})),R=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.q7,(0,r.A)({},c,u,{ref:n}))})),A=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.H_,(0,r.A)({},c,u,{ref:n}))})),M=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.z6,(0,r.A)({},c,u,{ref:n}))})),O=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.hN,(0,r.A)({},c,u,{ref:n}))})),P=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.VF,(0,r.A)({},c,u,{ref:n}))})),T=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.wv,(0,r.A)({},c,u,{ref:n}))})),F=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.i3,(0,r.A)({},c,u,{ref:n}))})),L=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.ZP,(0,r.A)({},c,u,{ref:n}))})),I=(0,o.forwardRef)(((e,n)=>{const{__scopeDropdownMenu:t,...u}=e,c=m(t);return(0,o.createElement)(l.G5,(0,r.A)({},c,u,{ref:n,style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}}))})),N=E,S=C,k=b,U=x,K=D,W=y,B=R,G=A,q=M,z=O,Z=P,$=T,J=F,j=e=>{const{__scopeDropdownMenu:n,children:t,open:u,onOpenChange:c,defaultOpen:i}=e,s=m(n),[d=!1,f]=(0,a.i)({prop:u,defaultProp:i,onChange:c});return(0,o.createElement)(l.Pb,(0,r.A)({},s,{open:d,onOpenChange:f}),t)},H=L,X=I},65367:function(e,n,t){t.d(n,{Oh:function(){return u}});var r=t(31014);let o=0;function u(){(0,r.useEffect)((()=>{var e,n;const t=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",null!==(e=t[0])&&void 0!==e?e:c()),document.body.insertAdjacentElement("beforeend",null!==(n=t[1])&&void 0!==n?n:c()),o++,()=>{1===o&&document.querySelectorAll("[data-radix-focus-guard]").forEach((e=>e.remove())),o--}}),[])}function c(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}},94851:function(e,n,t){t.d(n,{n:function(){return d}});var r=t(58168),o=t(31014),u=t(34271),c=t(39683),i=t(88631);const a="focusScope.autoFocusOnMount",s="focusScope.autoFocusOnUnmount",l={bubbles:!1,cancelable:!0},d=(0,o.forwardRef)(((e,n)=>{const{loop:t=!1,trapped:d=!1,onMountAutoFocus:v,onUnmountAutoFocus:h,...E}=e,[w,C]=(0,o.useState)(null),b=(0,i.c)(v),_=(0,i.c)(h),x=(0,o.useRef)(null),D=(0,u.s)(n,(e=>C(e))),y=(0,o.useRef)({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;(0,o.useEffect)((()=>{if(d){function e(e){if(y.paused||!w)return;const n=e.target;w.contains(n)?x.current=n:m(x.current,{select:!0})}function n(e){if(y.paused||!w)return;const n=e.relatedTarget;null!==n&&(w.contains(n)||m(x.current,{select:!0}))}function t(e){if(document.activeElement===document.body)for(const n of e)n.removedNodes.length>0&&m(w)}document.addEventListener("focusin",e),document.addEventListener("focusout",n);const r=new MutationObserver(t);return w&&r.observe(w,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",e),document.removeEventListener("focusout",n),r.disconnect()}}}),[d,w,y.paused]),(0,o.useEffect)((()=>{if(w){g.add(y);const n=document.activeElement;if(!w.contains(n)){const t=new CustomEvent(a,l);w.addEventListener(a,b),w.dispatchEvent(t),t.defaultPrevented||(!function(e){let{select:n=!1}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const t=document.activeElement;for(const r of e)if(m(r,{select:n}),document.activeElement!==t)return}((e=f(w),e.filter((e=>"A"!==e.tagName))),{select:!0}),document.activeElement===n&&m(w))}return()=>{w.removeEventListener(a,b),setTimeout((()=>{const e=new CustomEvent(s,l);w.addEventListener(s,_),w.dispatchEvent(e),e.defaultPrevented||m(null!==n&&void 0!==n?n:document.body,{select:!0}),w.removeEventListener(s,_),g.remove(y)}),0)}}var e}),[w,b,_,y]);const R=(0,o.useCallback)((e=>{if(!t&&!d)return;if(y.paused)return;const n="Tab"===e.key&&!e.altKey&&!e.ctrlKey&&!e.metaKey,r=document.activeElement;if(n&&r){const n=e.currentTarget,[o,u]=function(e){const n=f(e),t=p(n,e),r=p(n.reverse(),e);return[t,r]}(n);o&&u?e.shiftKey||r!==u?e.shiftKey&&r===o&&(e.preventDefault(),t&&m(u,{select:!0})):(e.preventDefault(),t&&m(o,{select:!0})):r===n&&e.preventDefault()}}),[t,d,y.paused]);return(0,o.createElement)(c.sG.div,(0,r.A)({tabIndex:-1},E,{ref:D,onKeyDown:R}))}));function f(e){const n=[],t=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>{const n="INPUT"===e.tagName&&"hidden"===e.type;return e.disabled||e.hidden||n?NodeFilter.FILTER_SKIP:e.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;t.nextNode();)n.push(t.currentNode);return n}function p(e,n){for(const t of e)if(!v(t,{upTo:n}))return t}function v(e,n){let{upTo:t}=n;if("hidden"===getComputedStyle(e).visibility)return!0;for(;e;){if(void 0!==t&&e===t)return!1;if("none"===getComputedStyle(e).display)return!0;e=e.parentElement}return!1}function m(e){let{select:n=!1}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(e&&e.focus){const t=document.activeElement;e.focus({preventScroll:!0}),e!==t&&function(e){return e instanceof HTMLInputElement&&"select"in e}(e)&&n&&e.select()}}const g=function(){let e=[];return{add(n){const t=e[0];n!==t&&(null===t||void 0===t||t.pause()),e=h(e,n),e.unshift(n)},remove(n){var t;e=h(e,n),null===(t=e[0])||void 0===t||t.resume()}}}();function h(e,n){const t=[...e],r=t.indexOf(n);return-1!==r&&t.splice(r,1),t}},29379:function(e,n,t){var r;t.d(n,{B:function(){return a}});var o=t(31014),u=t(72424);const c=(r||(r=t.t(o,2)))["useId".toString()]||(()=>{});let i=0;function a(e){const[n,t]=o.useState(c());return(0,u.N)((()=>{e||t((e=>null!==e&&void 0!==e?e:String(i++)))}),[e]),e||(n?`radix-${n}`:"")}}}]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9780],{48588:function(e,r,t){t.d(r,{L:function(){return o}});t(31014);var n=t(82589),s=t(50111);function o(e){let{usesFullHeight:r=!1,children:t,className:o,...u}=e;return(0,s.FD)(n.ffj,{css:r?i.useFullHeightLayout:i.wrapper,children:[(0,s.Y)(n.hKd,{css:i.fixedSpacer}),r?t:(0,s.Y)("div",{className:o,...u,css:i.container,children:t})]})}const i={useFullHeightLayout:{height:"100%",display:"flex",flexDirection:"column","&:last-child":{flexGrow:1}},wrapper:{flex:1},fixedSpacer:{flexShrink:0},container:{width:"100%",flexGrow:1,paddingBottom:24}}},3769:function(e,r,t){t.d(r,{Ay:function(){return d},dD:function(){return l}});var n=t(31014),s=t(10811),o=t(9101),i=t(96277),u=t(47664),a=t(50111);class c extends n.Component{constructor(){super(...arguments),this.state={shouldRender:!1,shouldRenderError:!1}}static getErrorRequests(e,r){return e.filter((e=>void 0!==e.error&&!(r&&r.includes(e.id)&&e.error.getErrorCode()===u.tG.RESOURCE_DOES_NOT_EXIST)))}static getDerivedStateFromProps(e){const r=!!e.requests.length&&e.requests.every((e=>e&&!1===e.active)),t=c.getErrorRequests(e.requests,e.requestIdsWith404sToIgnore);return{shouldRender:r,shouldRenderError:t.length>0,requestErrors:t}}getRenderedContent(){const{children:e,requests:r,customSpinner:t,permissionDeniedView:n}=this.props,{shouldRender:s,shouldRenderError:o,requestErrors:c}=this.state,d=c.filter((e=>e.error.getErrorCode()===u.tG.PERMISSION_DENIED));return"function"===typeof e?e(!s,o,r,c):s||o||this.props.shouldOptimisticallyRender?d.length>0&&n?n:(o&&l(c),e):t||(0,a.Y)(i.y,{})}render(){return this.getRenderedContent()}}c.defaultProps={requests:[],requestIdsWith404sToIgnore:[],shouldOptimisticallyRender:!1};const l=e=>{throw console.error("ERROR",e),Error(`A request error occurred.: ${e.error}`)};var d=(0,s.Ng)(((e,r)=>({requests:(0,o.EW)(r.requestIds,e)})))(c)},96277:function(e,r,t){t.d(r,{y:function(){return u}});var n=t(31014),s=t(34860),o=t(89555),i=t(50111);class u extends n.Component{render(){return(0,i.Y)("div",{css:e=>a.spinner(e,this.props.showImmediately),children:(0,i.Y)("img",{alt:"Page loading...",src:s})})}}const a={spinner:(e,r)=>({width:100,marginTop:100,marginLeft:"auto",marginRight:"auto",img:{position:"absolute",opacity:0,top:"50%",left:"50%",width:2*e.general.heightBase,height:2*e.general.heightBase,marginTop:-e.general.heightBase,marginLeft:-e.general.heightBase,animation:`${o.i7`
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 1;
|
|
4
|
+
}
|
|
5
|
+
100% {
|
|
6
|
+
opacity: 1;
|
|
7
|
+
-webkit-transform: rotate(360deg);
|
|
8
|
+
transform: rotate(360deg);
|
|
9
|
+
}
|
|
10
|
+
`} 3s linear infinite`,animationDelay:r?0:"0.5s"}})}},27705:function(e,r,t){t.d(r,{g:function(){return i}});var n=t(31014),s=t(76010),o=t(50111);class i extends n.Component{constructor(){super(...arguments),this.state={error:null}}componentDidCatch(e,r){this.setState({error:e}),console.error(e,r)}renderErrorMessage(e){return this.props.showServerError?(0,o.FD)("div",{children:["Error message: ",e.message]}):""}render(){const{children:e}=this.props,{error:r}=this.state;return r?(0,o.Y)("div",{children:(0,o.FD)("p",{children:[(0,o.Y)("i",{className:"fa fa-exclamation-triangle icon-fail",css:u.wrapper}),(0,o.Y)("span",{children:" Something went wrong with this section. "}),(0,o.Y)("span",{children:"If this error persists, please report an issue "}),(0,o.Y)("a",{href:s.A.getSupportPageUrl(),target:"_blank",children:"here"}),".",this.renderErrorMessage(r)]})}):e}}const u={wrapper:{marginLeft:-2}}},62448:function(e,r){class t{}t.mlflowServices={MODEL_REGISTRY:"Model Registry",EXPERIMENTS:"Experiments",MODEL_SERVING:"Model Serving",RUN_TRACKING:"Run Tracking",CLUSTER_MANAGEMENT:"Cluster Management",FILE_MANAGEMENT:"File Management"},r.A=t},26645:function(e,r,t){t.d(r,{X:function(){return A}});var n=t(31014);function s(e,r,t,n){Object.defineProperty(e,r,{get:t,set:n,enumerable:!0,configurable:!0})}s({},"ErrorBoundary",(()=>u));s({},"ErrorBoundaryContext",(()=>o));const o=(0,n.createContext)(null),i={didCatch:!1,error:null};class u extends n.Component{state=i;static getDerivedStateFromError(e){return{didCatch:!0,error:e}}resetErrorBoundary=(()=>{var e=this;return function(){const{error:r}=e.state;if(null!==r){for(var t=arguments.length,n=new Array(t),s=0;s<t;s++)n[s]=arguments[s];e.props.onReset?.({args:n,reason:"imperative-api"}),e.setState(i)}}})();componentDidCatch(e,r){this.props.onError?.(e,r)}componentDidUpdate(e,r){const{didCatch:t}=this.state,{resetKeys:n}=this.props;t&&null!==r.error&&function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return e.length!==r.length||e.some(((e,t)=>!Object.is(e,r[t])))}(e.resetKeys,n)&&(this.props.onReset?.({next:n,prev:e.resetKeys,reason:"keys"}),this.setState(i))}render(){const{children:e,fallbackRender:r,FallbackComponent:t,fallback:s}=this.props,{didCatch:i,error:u}=this.state;let a=e;if(i){const e={error:u,resetErrorBoundary:this.resetErrorBoundary};if((0,n.isValidElement)(s))a=s;else if("function"===typeof r)a=r(e);else{if(!t)throw new Error("react-error-boundary requires either a fallback, fallbackRender, or FallbackComponent prop");a=(0,n.createElement)(t,e)}}return(0,n.createElement)(o.Provider,{value:{didCatch:i,error:u,resetErrorBoundary:this.resetErrorBoundary}},a)}}function a(e){if(null==e||"boolean"!==typeof e.didCatch||"function"!==typeof e.resetErrorBoundary)throw new Error("ErrorBoundaryContext not found");return!0}function c(){const e=(0,n.useContext)(o);a(e);const[r,t]=(0,n.useState)({error:null,hasError:!1}),s=(0,n.useMemo)((()=>({resetBoundary:()=>{e?.resetErrorBoundary(),t({error:null,hasError:!1})},showBoundary:e=>t({error:e,hasError:!0})})),[e?.resetErrorBoundary]);if(r.hasError)throw r.error;return s}s({},"useErrorBoundary",(()=>c));function l(e,r){const t=t=>(0,n.createElement)(u,r,(0,n.createElement)(e,t)),s=e.displayName||e.name||"Unknown";return t.displayName=`withErrorBoundary(${s})`,t}s({},"withErrorBoundary",(()=>l));var d=t(82589),p=t(68254),m=t(88443),h=t(50111);function g(){return(0,h.Y)(d.SvL,{"data-testid":"fallback",title:(0,h.Y)(m.A,{id:"qAdWdK",defaultMessage:"Error"}),description:(0,h.Y)(m.A,{id:"RzZVxC",defaultMessage:"An error occurred while rendering this component."}),image:(0,h.Y)(p.k,{})})}function f(e){let{children:r}=e;return(0,h.Y)(u,{onError:function(e,r){console.error("Caught Unexpected Error: ",e,r.componentStack)},fallback:(0,h.Y)(g,{}),children:r})}function A(e,r,t){return function(e){return(0,h.Y)(f,{children:(0,h.Y)(r,{...e})})}}},25869:function(e,r,t){t.d(r,{h:function(){return o}});t(31014);var n=t(48624),s=t(50111);const o=e=>r=>{const t=(0,n.zy)(),o=(0,n.Zp)(),i=(0,n.g)();return(0,s.Y)(e,{params:i,location:t,navigate:o,...r})}},85082:function(e,r,t){t.r(r),t.d(r,{MetricPage:function(){return Y},MetricPageImpl:function(){return b},default:function(){return v}});var n=t(31014),s=t(10811),o=t(51079),i=t.n(o),u=t(44240),a=t(3769),c=t(64558),l=t(88443),d=t(76010),p=t(9101),m=t(13998),h=t(48624),g=t(77481),f=t(58481),A=t(25869),x=t(50111);class y extends n.Component{getCompareRunsPageText(e,r){return r>1?(0,x.Y)(l.A,{id:"IEORCP",defaultMessage:"Comparing {numRuns} Runs from {numExperiments} Experiments",values:{numRuns:e,numExperiments:r}}):(0,x.Y)(l.A,{id:"NN0ScV",defaultMessage:"Comparing {numRuns} Runs from 1 Experiment",values:{numRuns:e}})}hasMultipleExperiments(){return this.props.experimentIds.length>1}getRunPageLink(){const{experimentIds:e,runUuids:r,runNames:t}=this.props;if(!r||0===r.length)return null;if(1===r.length)return(0,x.Y)(h.N_,{to:f.h.getRunPageRoute(e[0],r[0]),children:t[0]});const n=this.getCompareRunsPageText(r.length,e.length);return(0,x.Y)(h.N_,{to:f.h.getCompareRunPageRoute(r,e),children:n})}getCompareExperimentsPageLinkText(e){return(0,x.Y)(l.A,{id:"LLm5Bo",defaultMessage:"Displaying Runs from {numExperiments} Experiments",values:{numExperiments:e}})}getExperimentPageLink(){const{comparedExperimentIds:e,hasComparedExperimentsBefore:r,experimentIds:t,experiments:n}=this.props;if(r&&e){const r=this.getCompareExperimentsPageLinkText(e.length);return(0,x.Y)(h.N_,{to:f.h.getCompareExperimentsPageRoute(e),children:r})}if(this.hasMultipleExperiments()){const e=this.getCompareExperimentsPageLinkText(t.length);return(0,x.Y)(h.N_,{to:f.h.getCompareExperimentsPageRoute(t),children:e})}return(0,x.Y)(h.N_,{to:f.h.getExperimentPageRoute(t[0]),children:n[0].name})}render(){const{experimentIds:e,runUuids:r,metricKey:t,location:n}=this.props,{selectedMetricKeys:s}=d.A.getMetricPlotStateFromUrl(n.search),o=s.length>1?(0,x.Y)(l.A,{id:"wbRVln",defaultMessage:"Metrics"}):s[0],i=[this.getExperimentPageLink(),this.getRunPageLink()];return(0,x.FD)("div",{children:[(0,x.Y)(g.z,{title:o,breadcrumbs:i}),(0,x.Y)(m.Ay,{experimentIds:e,runUuids:r,metricKey:t})]})}}const C=(0,A.h)((0,s.Ng)(((e,r)=>{const{comparedExperimentIds:t,hasComparedExperimentsBefore:n}=e.compareExperiments,{experimentIds:s,runUuids:o}=r;return{experiments:null!==s?s.map((r=>(0,p._m)(r,e))):null,runNames:o.map((r=>{const t=(0,p.K4)(r,e);return d.A.getRunDisplayName(t,r)})),comparedExperimentIds:t,hasComparedExperimentsBefore:n}}))(y));var I=t(7204),E=t(48588),k=t(26645),R=t(62448);class b extends n.Component{constructor(e){super(e),this.requestIds=void 0,this.requestIds=[]}fetchExperiments(){return this.props.experimentIds.map((e=>{const r=(0,I.yk)();return this.props.dispatch((0,u.yc)(e,r)),r}))}componentDidMount(){if(null!==this.props.experimentIds){const e=this.fetchExperiments();this.requestIds.push(...e)}this.props.runUuids.forEach((e=>{const r=(0,I.yk)();this.requestIds.push(r),this.props.dispatch((0,u.aO)(e,r))}))}renderPageContent(){const{runUuids:e}=this.props;return e.length>=1?(0,x.Y)(C,{runUuids:this.props.runUuids,metricKey:this.props.metricKey,experimentIds:this.props.experimentIds}):(0,x.Y)(c.A,{})}render(){return(0,x.Y)(E.L,{children:(0,x.Y)(a.Ay,{requestIds:this.requestIds,children:this.renderPageContent()})})}}const N=(0,A.h)((0,s.Ng)(((e,r)=>{const{location:t}=r,n=i().parse(t.search),s=JSON.parse(n["?runs"]),o=JSON.parse(n.metric);let u=null;return n.hasOwnProperty("experiments")&&(u=JSON.parse(n.experiments)),{runUuids:s,metricKey:o,experimentIds:u}}))(b)),Y=(0,k.X)(R.A.mlflowServices.EXPERIMENTS,N);var v=Y},77481:function(e,r,t){t.d(r,{o:function(){return c},z:function(){return p}});t(31014);var n=t(82589),s=t(68254),o=t(89555),i=t(88443),u=t(50111);const a=e=>{let{className:r}=e;const{theme:t}=(0,s.u)();return(0,u.Y)(n.vwO,{className:r,css:(0,o.AH)({marginLeft:t.spacing.xs},""),color:"turquoise",children:(0,u.Y)(i.A,{id:"8qJt7/",defaultMessage:"Experimental"})})};function c(e){let{menu:r}=e;const t=(0,u.Y)(n.W1t,{children:r.map((e=>{let{id:r,itemName:t,onClick:s,href:o,...i}=e;return(0,u.Y)(n.W1t.Item,{onClick:s,href:o,"data-test-id":r,...i,children:t},r)}))});return r.length>0?(0,u.Y)(n.msM,{overlay:t,trigger:["click"],placement:"bottomLeft",arrow:!0,children:(0,u.Y)(s.B,{componentId:"codegen_mlflow_app_src_shared_building_blocks_pageheader.tsx_54",icon:(0,u.Y)(n.ssM,{}),"data-test-id":"overflow-menu-trigger","aria-label":"Open header dropdown menu"})}):null}var l={name:"1gz4j9a",styles:"margin-left:0"},d={name:"ozd7xs",styles:"flex-shrink:0"};function p(e){const{title:r,breadcrumbs:t=[],titleAddOns:o=[],preview:i,children:c,spacerSize:p}=e,{theme:m}=(0,s.u)();return(0,u.FD)(u.FK,{children:[(0,u.Y)(n.Y9Y,{breadcrumbs:t.length>0&&(0,u.Y)(n.QpV,{includeTrailingCaret:!0,children:t.map(((e,r)=>(0,u.Y)(n.QpV.Item,{children:e},r)))}),buttons:c,title:r,titleAddOns:(0,u.FD)(u.FK,{children:[i&&(0,u.Y)(a,{css:l}),o]})}),(0,u.Y)(n.hKd,{css:d,size:p})]})}},34860:function(e){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHcAAAB3CAYAAAA5Od+KAAAAAXNSR0IArs4c6QAABBdpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAgICAgIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIj4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpERTk4ODkyMDVDMEQxMUU4QjcwMkI4NjVBQkFBMDNBNzwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpERTk4ODkyMTVDMEQxMUU4QjcwMkI4NjVBQkFBMDNBNzwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpERTk4ODkyMzVDMEQxMUU4QjcwMkI4NjVBQkFBMDNBNzwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpERTk4ODkyMjVDMEQxMUU4QjcwMkI4NjVBQkFBMDNBNzwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoTWFjaW50b3NoKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KUEkHLAAAE61JREFUeAHtXQt4VNWdP+fMJBG0IjMDVAUSqe1WbVVqSh4gJARB+ulHqwiCiu5aF6kk8KGt1u6u0e3qVlR0gmxja9XqiqBr0T7sQhJSUJII1vdaX5BMqAp5EAkEksycs78zyR1mJjOTOzPnzCPJ/ZLv3jn3nN///z+/e94vQkauIRsDdMhaJg0Tgha91TGGdZExnBGfrRZm6Tze293z2oxxnUPZfp/B6WpkUX3bRCvlFwhCzwOXZ1MicmBLNv4d+LfhP9LlxssW/P+dCPIFYeIjKsiHlJMPuzj5a7qTn1bkXrVZWFonteVSKi6mgs5CWiwAMfZI7MXxTggCogl5HQ/brRZavXWavTkOvIQHTXlyL9ojMsb0tl5KCb0SZF6GGNJFppnI/4gQ+hIi7cWqPFsDwVdmJlCy/KQsucX1LRdZBP0hCF2MGBybrAiKIFem4mc8nP+mtnD8JxH8Je1VSpErU+lpva2LkCJWI0ZykxYrUQoWlPyFceKckW/fUk5RYqfIlRLkFuxqHjWKjV6OytCtiJeJKRI30atByaeomK2zfcX+q+fPoz3RA6gNkVRyi7YLq/Wk1n8UlN4Ds76q1rSkojWj5n4PP257sraYyhp5Uq6kkVtS33YJGqIPw+pzk2J5YoR+TDgtqy60/zkx4gKlJJzc2btaz6SMSFIXBqoydH8hkl92C8uq2oKxjYm0MqHkzq5rvYFSL7FjEmlkisg6Cj1ur86zb0hUEyoh5JY0HLYT0fM4jFuQIhGdNDUQ4c9X5TsWJUIBq24hl9S1T+eiZzPknKFbVqrjCyJeszAmWwQJuZhOKXPqWks55dshY7gTy1Ec/Yfd5ZiVyC5MLdmybOJYRrWvR214uc6PJ02wP0cnx7U1eY6aROtrUS3w8j2fjfZYen4P3ISUK6r1V4snXsnscc/bNn3C+2pxzaEpTblFew47LO6eP0L0NHPih6yvXpSvdyK1PpiomnGomFRG7vwdn4/rzsioQdnyrVCCho8b3Ytx4aurpzl2J9tmJRWqebu+tI0QK6kUmzIJmZoKxEpt4m4KyTK2y937CrKA4Zxiu9CXvKqmwPFrGampcsVFrpwZ0e5uexHGDNsyFrM03qOULq4psP9fqpBq6BFXtnxoUhuaO2SeATb87rTymDg2rTo/9YiVXMScctFBsQLtt5tTnNA26NeE/xYUG4cxo8OB52IFOndgus1NIPUFBVjhISoab4SciaQ0++7wnsK/gc3RXyUNbQWYNvoXhMyIPrS2EAcFFbVUsF2Yb/UGPtt3q3JtX/pLm1PXtgh+Nvm7xfBc7xGWJVpHeJwfn8poRiVmdF4t9cP9B6R08pZodY065c7Y2TGWCLeMoOQTK4gLw4cbuYe8OLPAvmewKS6ciNExfc19sYo5BeT+Qxb7v76RS3ujjWjT/itcuZiRsgm5zBQjDH4/JTY0TSU/yt5ruJm5R01uVob7VwCeZAZckx+UBuT3nNBHZ+bbqgxCzfTtMSIykApiUesAwi3DcN3WWAKbCoPqNqloWgMi74P/4IRzKmZmPS02i5lkEfWYwoOnqMgtqWu5BmGuNAuu2B+sp8+hOPj3qgLHBxLbDKH+OnDKTkbk+TuZed7mYXxZ7bTxX5jxHJOfys8cdH3zb9GbNT9seEEKyUHXT/Bekm/qMl1bLqk/MAHCnaZQlXuiOxnj36nKty81iI1NBI/mY3Yjjf/04jz7pVqJfaSxmPb0voOSNTyx/cZilnQ5ebTxHLO2mzZWCMtDKHMGW55hVq5Zf1+iHbm6Jt/2FD6sqJNcsBAmyCkyTzdxNUHekqo8e12VCc8xeUEfATvYXC6EuBPhzSayTMrZBoSZbSY+TIGW1LcUg9ilMRkRe6Bawcl56PV50owhpsQwauZj/p/uXutUlK91pjBj8eTcP5F+4aoFSf+C4KY4OCFGFJFHXdee+B3+aVBgfFrSj5zQlsjrPpvLPqem0PF3lUKRC5wSAe84mkkrqvMdC1+9+LRDEfzF92q9awGlnndQr5sRKxDysPvIQ82jBgs/6Je8o6H9elRkzh8MSNH7XkTw9TV54zYqwguAQaRghUqAk/HjA2R3i6sLbe8aDsrvzo+zGM1ci9RaqgD7TGL1yOk6P4+EFTHlXvW+yETt8u5IAArfHWOMzNdFrNQThfZXBugrxOOWUe7vVukkdv3+b1CaWQ/5Koj1moD+7NvIun2nDbDHzyFiym070vpPSLWJaNN2McHmbptme81PN+WPqDegTuW7OkH3P1cXjHvO56Ljwdm0jArPBkCfrBh+DLOy1ZyQ8nC4YVOuLGvRlffjcAEVuvciu1ywrUAvsVJfEHtqv957hMcztTpfL7HM2fSf+KCegkzVxHrNgD2ryS/+NjA36jcyLLk7G9qvQHRM6fen7QYFb0TbVVuLw19xFLfy70Es1JpeM33Cp/7vdDxz4pF1BzkZXdc1howedUM48LDkIoCy8iGccGT5D9TkO54O9161OyprP8ZIzm0JW4FXNuVtdEjLXj1tF+pEK4nsugxxhXTEIi0szhKaZ+zRnZ5jttnJXAUXIj60OLGKpvuQQ92hBRygoHYuWZm9LRg/dMqlHOOIWq9Oj2DLhgOxMhZ525G7UBy8rStGQeL1obAHkCunzuBT0NobhezxJ1rHQ0NZmky38vN60Nsme5V6dKiBzpkrCMaAg7EHkNuR01YETzoXQtfPnOZ4LFiRIf971eT3UAbq6ulDb1XG5cFxOIBczvEV6LwoXVOeQvtG6DQ1GJtnuu9FCSn3vVJ+UcoG8BZIbl+tS+cyy5e0dsgrjzLFgMu/9qUgrFwxaj+cmEee2HeSP3YAuXPqDsm5x2f6e1D5TDm/WyVeWmKJ7seh9wENup9MjrLp/rgB5KJbfY7/S8XPNVWF499UjJl+cGVf78aUnQodiqNvtcQfN4BcLF4q9n+p9BkzhJTipTNYL/0vqH9ctQn4aAL4CyKX5KsW2I93sMNil6v/Ri4ZA2smtaM//WX1kSG+Qyr3+CbX+cids/vAFAgcp14gmu+CbNY6HVSH0poxsdRex5h1JnGPv9BQ3Ucu55YLDEfVd+x1/DvVmGmPJ7pfgQ2HldvhEQPJZVzoIZeSbt7VuUu5EekOiIoVxiC3qzYDqdW3aZsv5RLKvqFakMRDh3l9bfFZyisPOnRNNCZmp9WqlolBBN/UVx+5mNtztmpBEo/2rSnSAZ3+mNy73kqxHeIsA/AEuYzkGI4q75jvXK8Sb0hhZbW+B3vcam2ikw08L7lyayFdNWWWQTSPCxumpOF9eW4vCq69ijU/iazfb5eYXnIzMlrHKxZgwPVUXTS22fgxcg8RA5R+GMI1PiePsEkAL7nuTKZpm3m6X9lqgfjMTdnQOIijSblytO/YAC+5Fh5iPq8SiaJVCcxQBhGiXbl51D1aYnrJJYIHDBUpFHZIIdaQhOKMBqz+V2KkYN7prn3kKkEMCTLSvg0ZLX6Ogqsnl1KLlKCbXD8rRh5DxoBgnpDuChx1kztg0pYCnYcYhMhSbpAQRySml1wumJZZecAPu9RBuUHpCshIxMVcMZlFubdjxEsuZdTLdExAkQONpNzI8SNXpnnbpIN4i+41Ix0ygJdcwXlbdKFN+87pX7xtOsDw8yh83YXKbGdW7wzLvmy5u1MXuZk7dnUkYgmosnhJNBCmxkxRLrP3uLd/wUtu/5Cc+sY0tGbM83Xlyg8lQHFiiE6NWZgXLceKcXnJ7QOlLjXgQSg0fQ5cDNJc/8+Kfd/EolK1lU5BGw3FT5ArxD7DUeUd61gC5tKqxE5/LEuRahuwo9MnBqaPXOyhqGe/YEoKRypVRnQH3rF1wYxAl/h/cXGCRx+5GFfUQy7OjX+14VBh/GoPMQQs3UGuVqzcKsbeNTB95DIP/avhqPouqOcHqjHTHq+iMQ82nKHcDk/vmwamj9zCAvtHcNTTmSHolSNZsxHlfXdG2OJAFyW/PiervuYykHzk9i+r1LVVUPbOuva5htBhfy9/PxOzQq9VHQ+UkFf9MX3kSkeUATv9X6p8pkysUImX1li2k69CE8ih2gYuxA5/zAByGaXV/i9VPuNLvaxo10Et02dV6pkILOz+tlqPHCZXMfiuAHJn5NlexxtdXZHMYmHlPsnD9eHR5ktheq4G8/eSssmf+uMGkCvLXeTbf/L3oPRZkKV92yApRU0fsHLsysf5vToURrtqSzBuALnyJfLt54M9KfyNb0c8rBAvvaDszddD4ak6lMbhHAN4G0Bu1qGOrRCufvXZCYsumdPQsvTEz2HyhIniSF33a7GWkkZSmtMQjD2A3Fe+J0cUtKwd9clG58w6eRyrz2EYPDDieURHDVlGHSqrT4SaHz6AXOkZWfMT8q7xGm9xd/8WbS9k08PgqnAtRjPzGk2WCuJxPxkKOyS52wscSOL0rVAB1LnR+SUNrWvU4ZlEqvxsNCkXVpO+4/cmN9Im4tfxA4VBoOQP/r1S/r5Ckis9IKk7/T1qeH6fM/ZnDbjhISuav41jXnaTu4i26aQBwrGTOSWel+EW6WyFgCDR/hAesS5cmLDkZrW3P4tAX4QLGJ87fayLH/vu9mn2xK0ArHDdTAmX7fhzQ5VP8dkTIjTONKBWugWp5B9CvFXl9CZZlbM9HFjY7ElWrGbXtzyIPZHXhgscg/thLHy6qarAvjmGsLEFkanHypAtiiv7AXS2BPpEoO+YssznQeys2JQ2Fwrzr+6J5DNsypWB+DHxS9wORgIw+w41pwYLtV6YUGLXNxbQDCaHwAxipboocTRekljHKS9AyuUapUjot8jKSS9FkhGR3Nri8RgCpAp6VOjaQ1b7xVvzTtsXSRll72QtvKLpDuQSOxDJOUG4+lKuzCXsp2xLALHYNVn8bLDiZdCmiDx+pr2z/QN88FOCImnQn4jiFkbodTg27X8H9azKw8N7J1CL5WnAXRIGskmUZueEeRe7Mya7YedU3WWsod9W2DDP+BHuHjHlykDe8wCouDUcQAT3Kk75+Qkl1umaC2Lfhk7hiJXqdkbQObZXzsZrcKrNbqRYnZUnQzeP4NQUH4OSKxGr8xxbsC2N2WaLBz0xP8PplfO0nl5pmCrvaLfKcwQw80/qOMH/1cBn8+fPDgwb5OL8fByraNyIIbxn8EZbc8dfKvYueYBgY25/t3DPYWvLwQE83LrCQj1yEt2o4He+3ziJGsXdkppC+y5tA8M+Yf0P6/blUGvzRtSS8oNfhf7dtwIu9DuTrhjdIQ7XD6nouRc1VrvJUCq87eNZGfeYBTKVciVY35kE9KdhgQX5XbfbeqEkNqwf1S+cTQvRzEFtWJgkViog3DGr4a2oub5P7a63kYIqgZNIYjmOsbmBLD+jy6z+g1aoAoBgXElDm0yUxT53bP+HsmYNTq/c4HPT/YAdwdkRtg6p9eYYRP0RlZHLogonT7y0isXI9mVZ962owiryjI/pF7ws+45o4Exny15QWOepb1uG40tkv7Mdkfs3HAm3uDrf9k40QuPy62w6FwtON0F2bJEsTG7qJU9pOdg8HefcLxWCL4LOY+PSO57Aguzm7Uf+LVqI6MgFem2+ff/suvbrMKXgKpxeWbr1gq8ejVZozP4rGm9EVuNE+NGxYqDycxQfxsBL7lPsmXAO8YhCRvgsccA1F55sIf0ODK3TpU0I90KC42uiFRJdthwtuir/ODOH0YxKVF6ujhsSqQDt7xcwGRALsMQ4DMWdDsyz+/8z48ZXC+CBfpeSsuyqWGBTn9wKVy6GzDbBuCmxGJjOYfARLscxbo/FaoPp2nKsAmIOJ2umzsZbQaysfQ87YpHq7o+HWBnvqZly0TlAae9TyDbnx/xxpHFAnLlbyW+ZvGKwvuPBTIy6QjUYYNzvH2ksprTnv4Ejy8Jhd2GI9Vk+ftIt8RIrIy51yEXTgx1sxnoxcSf0St3iQuPnhiLoCT5h8k1kkZou0tTIlp37J1LqeQ7xNmxX4SPFrucrJ5WpSLHG95f8FLLetQDEyk6Q4UosMitxGy+dXKqSWElw8lIu5hgxmvUATiFbaXxpw/B+FMQuI2U5L+qwPTnkyumewiPbrhfqMCo9MMVHGAi4As0dbZMEE58tO5uWgVi5RcOwJRYVp+dE1/FcncTKDzxxKRdjoMzmehJdE9elR8rSoKUgnRgJvgWkymlA2q/EpdxyLF4k7HFY9Il2q1JTwB8EsZybKGJlFCQu5RoRLk9nPsJuh2A5NnmS4Tx079SFSuNtpDR7wBJL3TYnnlzDoorGs7Cjy89h+BI4JU8PQx/1dzm0uJZkZqyNZvaESjWSH6nOxqlowN8FeheoNCyJWMcRqZXc2nsvWXG2kgn9sdqSfHINzZ17L2DMshrjl3LMNh2z63ZMVPkl51kPk7LTWwyzknlPHXKNWJBHlQnPTUjNKzAqpH6jaUOOqjslbyD7fYxkZDyTrOw3nCmpR66hqZw+apNzmPgSNJ8WolgeZ7xK/p26sAXCRm5lz5IfTUrc/LEoDU9dcv0NkZPVDjTNYpR9DxWwIsy2lJuGJK4Z5z0pU7yGaT5/Ihz/JieF+5uQjOf0IDc4Zh5qtpEMMZMJkY8uvPORfX8bXiYGe4vjdxMqeLtR/r8h7+TosdfJ7d/sjAMvKUHTk9xQUbWhaSzpFecQC5Ukn4FTP04HMWcK3r/Mg9IxWJTaby/tRBfgESyVO4KRmA7sAdKMeyPCNhL38UZsI384lIgRt5EYSJkY+H8lx8IKTKY5+wAAAABJRU5ErkJggg=="}}]);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 9808.d0ca9674.chunk.js.LICENSE.txt */
|
|
2
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9808],{40674:function(e,o,r){r.d(o,{K:function(){return i}});var t=function(e,o){var r="function"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var t,s,i=r.call(e),n=[];try{for(;(void 0===o||o-- >0)&&!(t=i.next()).done;)n.push(t.value)}catch(a){s={error:a}}finally{try{t&&!t.done&&(r=i.return)&&r.call(i)}finally{if(s)throw s.error}}return n},s=function(){for(var e=[],o=0;o<arguments.length;o++)e=e.concat(t(arguments[o]));return e},i=function(){function e(){}return e.STRING_PROPERTIES=["sortingOrder","rowClass","rowSelection","overlayLoadingTemplate","overlayNoRowsTemplate","quickFilterText","rowModelType","editType","domLayout","clipboardDelimiter","rowGroupPanelShow","multiSortKey","pivotColumnGroupTotals","pivotRowTotals","pivotPanelShow","fillHandleDirection","serverSideStoreType","groupDisplayType","treeDataDisplayType"],e.OBJECT_PROPERTIES=["components","frameworkComponents","rowStyle","context","autoGroupColumnDef","localeText","icons","datasource","serverSideDatasource","viewportDatasource","groupRowRendererParams","aggFuncs","fullWidthCellRendererParams","defaultColGroupDef","defaultColDef","defaultExportParams","defaultCsvExportParams","defaultExcelExportParams","columnTypes","rowClassRules","detailCellRendererParams","loadingCellRendererParams","loadingOverlayComponentParams","noRowsOverlayComponentParams","popupParent","colResizeDefault","statusBar","sideBar","chartThemeOverrides","customChartThemes"],e.ARRAY_PROPERTIES=["alignedGrids","rowData","columnDefs","excelStyles","pinnedTopRowData","pinnedBottomRowData","chartThemes"],e.NUMBER_PROPERTIES=["rowHeight","detailRowHeight","rowBuffer","colWidth","headerHeight","groupHeaderHeight","floatingFiltersHeight","pivotHeaderHeight","pivotGroupHeaderHeight","groupDefaultExpanded","minColWidth","maxColWidth","viewportRowModelPageSize","viewportRowModelBufferSize","autoSizePadding","maxBlocksInCache","maxConcurrentDatasourceRequests","tooltipShowDelay","tooltipHideDelay","cacheOverflowSize","paginationPageSize","cacheBlockSize","infiniteInitialRowCount","scrollbarWidth","batchUpdateWaitMillis","asyncTransactionWaitMillis","blockLoadDebounceMillis","keepDetailRowsCount","undoRedoCellEditingLimit","cellFlashDelay","cellFadeDelay","tabIndex"],e.BOOLEAN_PROPERTIES=["suppressMakeColumnVisibleAfterUnGroup","suppressRowClickSelection","suppressCellSelection","suppressCellFocus","suppressHorizontalScroll","alwaysShowHorizontalScroll","alwaysShowVerticalScroll","debug","enableBrowserTooltips","enableCellExpressions","angularCompileRows","angularCompileFilters","groupSuppressAutoColumn","groupSelectsChildren","groupIncludeFooter","groupIncludeTotalFooter","groupUseEntireRow","groupSuppressBlankHeader","suppressMenuHide","suppressRowDeselection","unSortIcon","suppressMultiSort","alwaysMultiSort","singleClickEdit","suppressLoadingOverlay","suppressNoRowsOverlay","suppressAutoSize","skipHeaderOnAutoSize","suppressParentsInRowNodes","suppressColumnMoveAnimation","suppressMovableColumns","suppressFieldDotNotation","enableRangeSelection","enableRangeHandle","enableFillHandle","suppressClearOnFillReduction","deltaSort","suppressTouch","suppressAsyncEvents","allowContextMenuWithControlKey","suppressContextMenu","rememberGroupStateWhenNewData","enableCellChangeFlash","suppressDragLeaveHidesColumns","suppressMiddleClickScrolls","suppressPreventDefaultOnMouseWheel","suppressCopyRowsToClipboard","copyHeadersToClipboard","copyGroupHeadersToClipboard","pivotMode","suppressAggFuncInHeader","suppressColumnVirtualisation","suppressAggAtRootLevel","suppressFocusAfterRefresh","functionsPassive","functionsReadOnly","animateRows","groupSelectsFiltered","groupRemoveSingleChildren","groupRemoveLowestSingleChildren","enableRtl","suppressClickEdit","rowDragEntireRow","rowDragManaged","suppressRowDrag","suppressMoveWhenRowDragging","rowDragMultiRow","enableGroupEdit","embedFullWidthRows","deprecatedEmbedFullWidthRows","suppressPaginationPanel","groupHideOpenParents","groupMultiAutoColumn","pagination","stopEditingWhenGridLosesFocus","paginationAutoPageSize","suppressScrollOnNewData","suppressScrollWhenPopupsAreOpen","purgeClosedRowNodes","cacheQuickFilter","deltaRowDataMode","ensureDomOrder","accentedSort","suppressChangeDetection","valueCache","valueCacheNeverExpires","aggregateOnlyChangedColumns","suppressAnimationFrame","suppressExcelExport","suppressCsvExport","treeData","masterDetail","suppressMultiRangeSelection","enterMovesDownAfterEdit","enterMovesDown","suppressPropertyNamesCheck","rowMultiSelectWithClick","suppressEnterpriseResetOnNewColumns","suppressRowHoverHighlight","suppressRowTransform","suppressClipboardPaste","suppressLastEmptyLineOnPaste","serverSideSortingAlwaysResets","suppressSetColumnStateEvents","suppressColumnStateEvents","enableCharts","deltaColumnMode","suppressMaintainUnsortedOrder","enableCellTextSelection","suppressBrowserResizeObserver","suppressMaxRenderedRowRestriction","excludeChildrenWhenTreeDataFiltering","tooltipMouseTrack","keepDetailRows","paginateChildRows","preventDefaultOnContextMenu","undoRedoCellEditing","allowDragFromColumnsToolPanel","immutableData","immutableColumns","pivotSuppressAutoColumn","suppressExpandablePivotGroups","applyColumnDefOrder","debounceVerticalScrollbar","detailRowAutoHeight","serverSideFilteringAlwaysResets","suppressAggFilteredOnly","showOpenedGroup","suppressClipboardApi","suppressModelUpdateAfterUpdateTransaction","stopEditingWhenCellsLoseFocus","maintainColumnOrder","groupMaintainOrder","columnHoverHighlight","reactUi","suppressReactUi","readOnlyEdit","suppressRowVirtualisation","resetRowDataOnUpdate","removePivotHeaderRowWhenSingleValueColumn","suppressCopySingleCellRanges"],e.FUNCTION_PROPERTIES=["localeTextFunc","getLocaleText","groupRowInnerRenderer","groupRowInnerRendererFramework","groupRowRenderer","groupRowRendererFramework","isExternalFilterPresent","getRowHeight","doesExternalFilterPass","getRowClass","getRowStyle","getContextMenuItems","getMainMenuItems","processRowPostCreate","processCellForClipboard","groupRowAggNodes","getGroupRowAgg","getRowNodeId","isFullWidthCell","isFullWidthRow","fullWidthCellRenderer","fullWidthCellRendererFramework","processSecondaryColDef","processSecondaryColGroupDef","getBusinessKeyForNode","sendToClipboard","navigateToNextHeader","tabToNextHeader","navigateToNextCell","tabToNextCell","processCellFromClipboard","getDocument","postProcessPopup","getChildCount","getDataPath","loadingCellRenderer","loadingCellRendererFramework","loadingOverlayComponent","loadingOverlayComponentFramework","noRowsOverlayComponent","noRowsOverlayComponentFramework","detailCellRenderer","detailCellRendererFramework","isRowMaster","isRowSelectable","postSort","postSortRows","processHeaderForClipboard","processGroupHeaderForClipboard","paginationNumberFormatter","processDataFromClipboard","getServerSideGroupKey","isServerSideGroup","suppressKeyboardEvent","createChartContainer","getChartToolbarItems","fillOperation","isApplyServerSideTransaction","getServerSideStoreParams","isServerSideGroupOpenByDefault","isGroupOpenByDefault","defaultGroupSortComparator","defaultGroupOrderComparator","initialGroupOrderComparator","loadingCellRendererSelector","getRowId","groupAggFiltering"],e.ALL_PROPERTIES=s(e.ARRAY_PROPERTIES,e.OBJECT_PROPERTIES,e.STRING_PROPERTIES,e.NUMBER_PROPERTIES,e.FUNCTION_PROPERTIES,e.BOOLEAN_PROPERTIES),e.FRAMEWORK_PROPERTIES=["__ob__","__v_skip","__metadata__","mappedColumnProperties","hasChildColumns","toColDef","createColDefFromGridColumn"],e}()},22725:function(e,o,r){r.d(o,{Q:function(){return a}});var t=r(6788),s=r(72925),i=function(){var e=function(o,r){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,o){e.__proto__=o}||function(e,o){for(var r in o)o.hasOwnProperty(r)&&(e[r]=o[r])},e(o,r)};return function(o,r){function t(){this.constructor=o}e(o,r),o.prototype=null===r?Object.create(r):(t.prototype=r.prototype,new t)}}(),n=function(e,o,r,t){var s,i=arguments.length,n=i<3?o:null===t?t=Object.getOwnPropertyDescriptor(o,r):t;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)n=Reflect.decorate(e,o,r,t);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(i<3?s(n):i>3?s(o,r,n):s(o,r))||n);return i>3&&n&&Object.defineProperty(o,r,n),n},a=function(e){function o(){return null!==e&&e.apply(this,arguments)||this}return i(o,e),o.prototype.postConstruct=function(){var e=this;this.ctrlsService.whenReady((function(o){e.centerRowContainerCtrl=o.centerRowContainerCtrl}))},o.prototype.getPreferredWidthForColumn=function(e,o){var r=this.getHeaderCellForColumn(e);if(!r)return-1;var t=this.rowRenderer.getAllCellsForColumn(e);return o||t.push(r),this.addElementsToContainerAndGetWidth(t)},o.prototype.getPreferredWidthForColumnGroup=function(e){var o=this.getHeaderCellForColumn(e);return o?this.addElementsToContainerAndGetWidth([o]):-1},o.prototype.addElementsToContainerAndGetWidth=function(e){var o=this,r=document.createElement("span");r.style.position="fixed";var t=this.centerRowContainerCtrl.getContainerElement();t.appendChild(r),e.forEach((function(e){return o.cloneItemIntoDummy(e,r)}));var s=r.offsetWidth;return t.removeChild(r),s+this.gridOptionsWrapper.getAutoSizePadding()},o.prototype.getHeaderCellForColumn=function(e){var o=null;return this.ctrlsService.getHeaderRowContainerCtrls().forEach((function(r){var t=r.getHtmlElementForColumnHeader(e);null!=t&&(o=t)})),o},o.prototype.cloneItemIntoDummy=function(e,o){var r=e.cloneNode(!0);r.style.width="",r.style.position="static",r.style.left="";var t=document.createElement("div"),s=t.classList;["ag-header-cell","ag-header-group-cell"].some((function(e){return r.classList.contains(e)}))?(s.add("ag-header","ag-header-row"),t.style.position="static"):s.add("ag-row");for(var i=e.parentElement;i;){if(["ag-header-row","ag-row"].some((function(e){return i.classList.contains(e)}))){for(var n=0;n<i.classList.length;n++){var a=i.classList[n];"ag-row-position-absolute"!=a&&s.add(a)}break}i=i.parentElement}t.appendChild(r),o.appendChild(t)},n([(0,t.ds)("rowRenderer")],o.prototype,"rowRenderer",void 0),n([(0,t.ds)("ctrlsService")],o.prototype,"ctrlsService",void 0),n([(0,t.ds)("rowCssClassCalculator")],o.prototype,"rowCssClassCalculator",void 0),n([t.o7],o.prototype,"postConstruct",null),o=n([(0,t.dR)("autoWidthCalculator")],o)}(s.X)},43187:function(e,o,r){r.d(o,{M:function(){return i}});var t=r(6788),s=function(e,o,r,t){var s,i=arguments.length,n=i<3?o:null===t?t=Object.getOwnPropertyDescriptor(o,r):t;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)n=Reflect.decorate(e,o,r,t);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(i<3?s(n):i>3?s(o,r,n):s(o,r))||n);return i>3&&n&&Object.defineProperty(o,r,n),n},i=function(){function e(){}return e.prototype.postConstruct=function(){this.doingMasterDetail=this.gridOptionsWrapper.isMasterDetail(),this.gridOptionsWrapper.isRowModelDefault()&&(this.clientSideRowModel=this.rowModel),this.gridOptionsWrapper.isRowModelServerSide()&&(this.serverSideRowModel=this.rowModel)},s([(0,t.ds)("resizeObserverService")],e.prototype,"resizeObserverService",void 0),s([(0,t.ds)("paginationProxy")],e.prototype,"paginationProxy",void 0),s([(0,t.ds)("context")],e.prototype,"context",void 0),s([(0,t.ds)("columnApi")],e.prototype,"columnApi",void 0),s([(0,t.ds)("gridApi")],e.prototype,"gridApi",void 0),s([(0,t.ds)("gridOptionsWrapper")],e.prototype,"gridOptionsWrapper",void 0),s([(0,t.ds)("expressionService")],e.prototype,"expressionService",void 0),s([(0,t.ds)("rowRenderer")],e.prototype,"rowRenderer",void 0),s([(0,t.ds)("templateService")],e.prototype,"templateService",void 0),s([(0,t.ds)("valueService")],e.prototype,"valueService",void 0),s([(0,t.ds)("eventService")],e.prototype,"eventService",void 0),s([(0,t.ds)("columnModel")],e.prototype,"columnModel",void 0),s([(0,t.ds)("headerNavigationService")],e.prototype,"headerNavigationService",void 0),s([(0,t.ds)("navigationService")],e.prototype,"navigationService",void 0),s([(0,t.ds)("columnAnimationService")],e.prototype,"columnAnimationService",void 0),s([(0,t.Xx)("rangeService")],e.prototype,"rangeService",void 0),s([(0,t.ds)("focusService")],e.prototype,"focusService",void 0),s([(0,t.Xx)("contextMenuFactory")],e.prototype,"contextMenuFactory",void 0),s([(0,t.ds)("popupService")],e.prototype,"popupService",void 0),s([(0,t.ds)("valueFormatterService")],e.prototype,"valueFormatterService",void 0),s([(0,t.ds)("stylingService")],e.prototype,"stylingService",void 0),s([(0,t.ds)("columnHoverService")],e.prototype,"columnHoverService",void 0),s([(0,t.ds)("userComponentFactory")],e.prototype,"userComponentFactory",void 0),s([(0,t.ds)("userComponentRegistry")],e.prototype,"userComponentRegistry",void 0),s([(0,t.ds)("animationFrameService")],e.prototype,"animationFrameService",void 0),s([(0,t.ds)("dragAndDropService")],e.prototype,"dragAndDropService",void 0),s([(0,t.ds)("sortController")],e.prototype,"sortController",void 0),s([(0,t.ds)("filterManager")],e.prototype,"filterManager",void 0),s([(0,t.ds)("rowContainerHeightService")],e.prototype,"rowContainerHeightService",void 0),s([(0,t.ds)("frameworkOverrides")],e.prototype,"frameworkOverrides",void 0),s([(0,t.ds)("cellPositionUtils")],e.prototype,"cellPositionUtils",void 0),s([(0,t.ds)("rowPositionUtils")],e.prototype,"rowPositionUtils",void 0),s([(0,t.ds)("selectionService")],e.prototype,"selectionService",void 0),s([(0,t.Xx)("selectionHandleFactory")],e.prototype,"selectionHandleFactory",void 0),s([(0,t.ds)("rowCssClassCalculator")],e.prototype,"rowCssClassCalculator",void 0),s([(0,t.ds)("rowModel")],e.prototype,"rowModel",void 0),s([(0,t.ds)("ctrlsService")],e.prototype,"ctrlsService",void 0),s([(0,t.ds)("ctrlsFactory")],e.prototype,"ctrlsFactory",void 0),s([(0,t.ds)("agStackComponentsRegistry")],e.prototype,"agStackComponentsRegistry",void 0),s([(0,t.ds)("valueCache")],e.prototype,"valueCache",void 0),s([(0,t.ds)("rowNodeEventThrottle")],e.prototype,"rowNodeEventThrottle",void 0),s([t.o7],e.prototype,"postConstruct",null),e=s([(0,t.dR)("beans")],e)}()}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9815],{82309:function(t,e,r){var n="function"===typeof Map&&Map.prototype,o=Object.getOwnPropertyDescriptor&&n?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=n&&o&&"function"===typeof o.get?o.get:null,c=n&&Map.prototype.forEach,u="function"===typeof Set&&Set.prototype,f=Object.getOwnPropertyDescriptor&&u?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,l=u&&f&&"function"===typeof f.get?f.get:null,a=u&&Set.prototype.forEach,p="function"===typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,y="function"===typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,s="function"===typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,g=Boolean.prototype.valueOf,b=Object.prototype.toString,h=Function.prototype.toString,S=String.prototype.match,m=String.prototype.slice,d=String.prototype.replace,v=String.prototype.toUpperCase,j=String.prototype.toLowerCase,O=RegExp.prototype.test,w=Array.prototype.concat,_=Array.prototype.join,k=Array.prototype.slice,x=Math.floor,T="function"===typeof BigInt?BigInt.prototype.valueOf:null,E=Object.getOwnPropertySymbols,W="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?Symbol.prototype.toString:null,L="function"===typeof Symbol&&"object"===typeof Symbol.iterator,M="function"===typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===L||"symbol")?Symbol.toStringTag:null,P=Object.prototype.propertyIsEnumerable,R=("function"===typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null);function A(t,e){if(t===1/0||t===-1/0||t!==t||t&&t>-1e3&&t<1e3||O.call(/e/,e))return e;var r=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"===typeof t){var n=t<0?-x(-t):x(t);if(n!==t){var o=String(n),i=m.call(e,o.length+1);return d.call(o,r,"$&_")+"."+d.call(d.call(i,/([0-9]{3})/g,"$&_"),/_$/,"")}}return d.call(e,r,"$&_")}var I=r(42634),$=I.custom,q=F($)?$:null;function C(t,e,r){var n="double"===(r.quoteStyle||e)?'"':"'";return n+t+n}function N(t){return d.call(String(t),/"/g,""")}function D(t){return"[object Array]"===z(t)&&(!M||!("object"===typeof t&&M in t))}function B(t){return"[object RegExp]"===z(t)&&(!M||!("object"===typeof t&&M in t))}function F(t){if(L)return t&&"object"===typeof t&&t instanceof Symbol;if("symbol"===typeof t)return!0;if(!t||"object"!==typeof t||!W)return!1;try{return W.call(t),!0}catch(e){}return!1}t.exports=function t(e,n,o,u){var f=n||{};if(U(f,"quoteStyle")&&"single"!==f.quoteStyle&&"double"!==f.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(U(f,"maxStringLength")&&("number"===typeof f.maxStringLength?f.maxStringLength<0&&f.maxStringLength!==1/0:null!==f.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var b=!U(f,"customInspect")||f.customInspect;if("boolean"!==typeof b&&"symbol"!==b)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(U(f,"indent")&&null!==f.indent&&"\t"!==f.indent&&!(parseInt(f.indent,10)===f.indent&&f.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(U(f,"numericSeparator")&&"boolean"!==typeof f.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var v=f.numericSeparator;if("undefined"===typeof e)return"undefined";if(null===e)return"null";if("boolean"===typeof e)return e?"true":"false";if("string"===typeof e)return Y(e,f);if("number"===typeof e){if(0===e)return 1/0/e>0?"0":"-0";var O=String(e);return v?A(e,O):O}if("bigint"===typeof e){var x=String(e)+"n";return v?A(e,x):x}var E="undefined"===typeof f.depth?5:f.depth;if("undefined"===typeof o&&(o=0),o>=E&&E>0&&"object"===typeof e)return D(e)?"[Array]":"[Object]";var $=function(t,e){var r;if("\t"===t.indent)r="\t";else{if(!("number"===typeof t.indent&&t.indent>0))return null;r=_.call(Array(t.indent+1)," ")}return{base:r,prev:_.call(Array(e+1),r)}}(f,o);if("undefined"===typeof u)u=[];else if(V(u,e)>=0)return"[Circular]";function H(e,r,n){if(r&&(u=k.call(u)).push(r),n){var i={depth:f.depth};return U(f,"quoteStyle")&&(i.quoteStyle=f.quoteStyle),t(e,i,o+1,u)}return t(e,f,o+1,u)}if("function"===typeof e&&!B(e)){var G=function(t){if(t.name)return t.name;var e=S.call(h.call(t),/^function\s*([\w$]+)/);if(e)return e[1];return null}(e),tt=Z(e,H);return"[Function"+(G?": "+G:" (anonymous)")+"]"+(tt.length>0?" { "+_.call(tt,", ")+" }":"")}if(F(e)){var et=L?d.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):W.call(e);return"object"!==typeof e||L?et:J(et)}if(function(t){if(!t||"object"!==typeof t)return!1;if("undefined"!==typeof HTMLElement&&t instanceof HTMLElement)return!0;return"string"===typeof t.nodeName&&"function"===typeof t.getAttribute}(e)){for(var rt="<"+j.call(String(e.nodeName)),nt=e.attributes||[],ot=0;ot<nt.length;ot++)rt+=" "+nt[ot].name+"="+C(N(nt[ot].value),"double",f);return rt+=">",e.childNodes&&e.childNodes.length&&(rt+="..."),rt+="</"+j.call(String(e.nodeName))+">"}if(D(e)){if(0===e.length)return"[]";var it=Z(e,H);return $&&!function(t){for(var e=0;e<t.length;e++)if(V(t[e],"\n")>=0)return!1;return!0}(it)?"["+X(it,$)+"]":"[ "+_.call(it,", ")+" ]"}if(function(t){return"[object Error]"===z(t)&&(!M||!("object"===typeof t&&M in t))}(e)){var ct=Z(e,H);return"cause"in Error.prototype||!("cause"in e)||P.call(e,"cause")?0===ct.length?"["+String(e)+"]":"{ ["+String(e)+"] "+_.call(ct,", ")+" }":"{ ["+String(e)+"] "+_.call(w.call("[cause]: "+H(e.cause),ct),", ")+" }"}if("object"===typeof e&&b){if(q&&"function"===typeof e[q]&&I)return I(e,{depth:E-o});if("symbol"!==b&&"function"===typeof e.inspect)return e.inspect()}if(function(t){if(!i||!t||"object"!==typeof t)return!1;try{i.call(t);try{l.call(t)}catch(rt){return!0}return t instanceof Map}catch(e){}return!1}(e)){var ut=[];return c&&c.call(e,(function(t,r){ut.push(H(r,e,!0)+" => "+H(t,e))})),Q("Map",i.call(e),ut,$)}if(function(t){if(!l||!t||"object"!==typeof t)return!1;try{l.call(t);try{i.call(t)}catch(e){return!0}return t instanceof Set}catch(r){}return!1}(e)){var ft=[];return a&&a.call(e,(function(t){ft.push(H(t,e))})),Q("Set",l.call(e),ft,$)}if(function(t){if(!p||!t||"object"!==typeof t)return!1;try{p.call(t,p);try{y.call(t,y)}catch(rt){return!0}return t instanceof WeakMap}catch(e){}return!1}(e))return K("WeakMap");if(function(t){if(!y||!t||"object"!==typeof t)return!1;try{y.call(t,y);try{p.call(t,p)}catch(rt){return!0}return t instanceof WeakSet}catch(e){}return!1}(e))return K("WeakSet");if(function(t){if(!s||!t||"object"!==typeof t)return!1;try{return s.call(t),!0}catch(e){}return!1}(e))return K("WeakRef");if(function(t){return"[object Number]"===z(t)&&(!M||!("object"===typeof t&&M in t))}(e))return J(H(Number(e)));if(function(t){if(!t||"object"!==typeof t||!T)return!1;try{return T.call(t),!0}catch(e){}return!1}(e))return J(H(T.call(e)));if(function(t){return"[object Boolean]"===z(t)&&(!M||!("object"===typeof t&&M in t))}(e))return J(g.call(e));if(function(t){return"[object String]"===z(t)&&(!M||!("object"===typeof t&&M in t))}(e))return J(H(String(e)));if("undefined"!==typeof window&&e===window)return"{ [object Window] }";if(e===r.g)return"{ [object globalThis] }";if(!function(t){return"[object Date]"===z(t)&&(!M||!("object"===typeof t&&M in t))}(e)&&!B(e)){var lt=Z(e,H),at=R?R(e)===Object.prototype:e instanceof Object||e.constructor===Object,pt=e instanceof Object?"":"null prototype",yt=!at&&M&&Object(e)===e&&M in e?m.call(z(e),8,-1):pt?"Object":"",st=(at||"function"!==typeof e.constructor?"":e.constructor.name?e.constructor.name+" ":"")+(yt||pt?"["+_.call(w.call([],yt||[],pt||[]),": ")+"] ":"");return 0===lt.length?st+"{}":$?st+"{"+X(lt,$)+"}":st+"{ "+_.call(lt,", ")+" }"}return String(e)};var H=Object.prototype.hasOwnProperty||function(t){return t in this};function U(t,e){return H.call(t,e)}function z(t){return b.call(t)}function V(t,e){if(t.indexOf)return t.indexOf(e);for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}function Y(t,e){if(t.length>e.maxStringLength){var r=t.length-e.maxStringLength,n="... "+r+" more character"+(r>1?"s":"");return Y(m.call(t,0,e.maxStringLength),e)+n}return C(d.call(d.call(t,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,G),"single",e)}function G(t){var e=t.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return r?"\\"+r:"\\x"+(e<16?"0":"")+v.call(e.toString(16))}function J(t){return"Object("+t+")"}function K(t){return t+" { ? }"}function Q(t,e,r,n){return t+" ("+e+") {"+(n?X(r,n):_.call(r,", "))+"}"}function X(t,e){if(0===t.length)return"";var r="\n"+e.prev+e.base;return r+_.call(t,","+r)+"\n"+e.prev}function Z(t,e){var r=D(t),n=[];if(r){n.length=t.length;for(var o=0;o<t.length;o++)n[o]=U(t,o)?e(t[o],t):""}var i,c="function"===typeof E?E(t):[];if(L){i={};for(var u=0;u<c.length;u++)i["$"+c[u]]=c[u]}for(var f in t)U(t,f)&&(r&&String(Number(f))===f&&f<t.length||L&&i["$"+f]instanceof Symbol||(O.call(/[^\w$]/,f)?n.push(e(f,t)+": "+e(t[f],t)):n.push(f+": "+e(t[f],t))));if("function"===typeof E)for(var l=0;l<c.length;l++)P.call(t,c[l])&&n.push("["+e(c[l])+"]: "+e(t[c[l]],t));return n}},72648:function(t,e){"use strict";e.A=function(t,e){for(var r=Object.assign({},t),n=0;n<e.length;n+=1){delete r[e[n]]}return r}},69304:function(t,e,r){"use strict";var n=r(59391);function o(){}function i(){}i.resetWarningCache=o,t.exports=function(){function t(t,e,r,o,i,c){if(c!==n){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function e(){return t}t.isRequired=t;var r={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:i,resetWarningCache:o};return r.PropTypes=r,r}},15662:function(t,e,r){t.exports=r(69304)()},59391:function(t){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9886],{19886:function(t,e,n){t.exports={VelocityComponent:n(38301),VelocityTransitionGroup:n(61041),velocityHelpers:n(60119)}},3083:function(t,e,n){if("undefined"===typeof window||"undefined"===typeof navigator||-1!==navigator.userAgent.indexOf("Node.js")||-1!==navigator.userAgent.indexOf("jsdom")){var i=function(){};(i.Utilities={}).removeData=function(){},i.velocityReactServerShim=!0,t.exports=i}else{var r=window.jQuery||window.Zepto||window;t.exports=r.Velocity?r.Velocity:n(45223)}},86862:function(t,e,n){e.Ay=void 0;var i=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var i=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};i.get||i.set?Object.defineProperty(e,n,i):e[n]=t[n]}return e.default=t,e}(n(15662)),r=l(n(31014)),o=l(n(21751)),a=n(58843);n(57197);function l(t){return t&&t.__esModule?t:{default:t}}var s="unmounted";var u="exited";var c="entering";var p="entered";var h="exiting";var d=function(t){var e,n;function i(e,n){var i;i=t.call(this,e,n)||this;var r,o=n.transitionGroup,a=o&&!o.isMounting?e.enter:e.appear;return i.appearStatus=null,e.in?a?(r=u,i.appearStatus=c):r=p:r=e.unmountOnExit||e.mountOnEnter?s:u,i.state={status:r},i.nextCallback=null,i}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n;var a=i.prototype;return a.getChildContext=function(){return{transitionGroup:null}},i.getDerivedStateFromProps=function(t,e){return t.in&&e.status===s?{status:u}:null},a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(t){var e=null;if(t!==this.props){var n=this.state.status;this.props.in?n!==c&&n!==p&&(e=c):n!==c&&n!==p||(e=h)}this.updateStatus(!1,e)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var t,e,n,i=this.props.timeout;return t=e=n=i,null!=i&&"number"!==typeof i&&(t=i.exit,e=i.enter,n=void 0!==i.appear?i.appear:e),{exit:t,enter:e,appear:n}},a.updateStatus=function(t,e){if(void 0===t&&(t=!1),null!==e){this.cancelNextCallback();var n=o.default.findDOMNode(this);e===c?this.performEnter(n,t):this.performExit(n)}else this.props.unmountOnExit&&this.state.status===u&&this.setState({status:s})},a.performEnter=function(t,e){var n=this,i=this.props.enter,r=this.context.transitionGroup?this.context.transitionGroup.isMounting:e,o=this.getTimeouts(),a=r?o.appear:o.enter;e||i?(this.props.onEnter(t,r),this.safeSetState({status:c},(function(){n.props.onEntering(t,r),n.onTransitionEnd(t,a,(function(){n.safeSetState({status:p},(function(){n.props.onEntered(t,r)}))}))}))):this.safeSetState({status:p},(function(){n.props.onEntered(t)}))},a.performExit=function(t){var e=this,n=this.props.exit,i=this.getTimeouts();n?(this.props.onExit(t),this.safeSetState({status:h},(function(){e.props.onExiting(t),e.onTransitionEnd(t,i.exit,(function(){e.safeSetState({status:u},(function(){e.props.onExited(t)}))}))}))):this.safeSetState({status:u},(function(){e.props.onExited(t)}))},a.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(t,e){e=this.setNextCallback(e),this.setState(t,e)},a.setNextCallback=function(t){var e=this,n=!0;return this.nextCallback=function(i){n&&(n=!1,e.nextCallback=null,t(i))},this.nextCallback.cancel=function(){n=!1},this.nextCallback},a.onTransitionEnd=function(t,e,n){this.setNextCallback(n);var i=null==e&&!this.props.addEndListener;t&&!i?(this.props.addEndListener&&this.props.addEndListener(t,this.nextCallback),null!=e&&setTimeout(this.nextCallback,e)):setTimeout(this.nextCallback,0)},a.render=function(){var t=this.state.status;if(t===s)return null;var e=this.props,n=e.children,i=function(t,e){if(null==t)return{};var n,i,r={},o=Object.keys(t);for(i=0;i<o.length;i++)n=o[i],e.indexOf(n)>=0||(r[n]=t[n]);return r}(e,["children"]);if(delete i.in,delete i.mountOnEnter,delete i.unmountOnExit,delete i.appear,delete i.enter,delete i.exit,delete i.timeout,delete i.addEndListener,delete i.onEnter,delete i.onEntering,delete i.onEntered,delete i.onExit,delete i.onExiting,delete i.onExited,"function"===typeof n)return n(t,i);var o=r.default.Children.only(n);return r.default.cloneElement(o,i)},i}(r.default.Component);function f(){}d.contextTypes={transitionGroup:i.object},d.childContextTypes={transitionGroup:function(){}},d.propTypes={},d.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:f,onEntering:f,onEntered:f,onExit:f,onExiting:f,onExited:f},d.UNMOUNTED=0,d.EXITED=1,d.ENTERING=2,d.ENTERED=3,d.EXITING=4;var m=(0,a.polyfill)(d);e.Ay=m},97531:function(t,e,n){e.__esModule=!0,e.default=void 0;var i=l(n(15662)),r=l(n(31014)),o=n(58843),a=n(795);function l(t){return t&&t.__esModule?t:{default:t}}function s(){return s=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},s.apply(this,arguments)}function u(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var c=Object.values||function(t){return Object.keys(t).map((function(e){return t[e]}))},p=function(t){var e,n;function i(e,n){var i,r=(i=t.call(this,e,n)||this).handleExited.bind(u(u(i)));return i.state={handleExited:r,firstRender:!0},i}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n;var o=i.prototype;return o.getChildContext=function(){return{transitionGroup:{isMounting:!this.appeared}}},o.componentDidMount=function(){this.appeared=!0,this.mounted=!0},o.componentWillUnmount=function(){this.mounted=!1},i.getDerivedStateFromProps=function(t,e){var n=e.children,i=e.handleExited;return{children:e.firstRender?(0,a.getInitialChildMapping)(t,i):(0,a.getNextChildMapping)(t,n,i),firstRender:!1}},o.handleExited=function(t,e){var n=(0,a.getChildMapping)(this.props.children);t.key in n||(t.props.onExited&&t.props.onExited(e),this.mounted&&this.setState((function(e){var n=s({},e.children);return delete n[t.key],{children:n}})))},o.render=function(){var t=this.props,e=t.component,n=t.childFactory,i=function(t,e){if(null==t)return{};var n,i,r={},o=Object.keys(t);for(i=0;i<o.length;i++)n=o[i],e.indexOf(n)>=0||(r[n]=t[n]);return r}(t,["component","childFactory"]),o=c(this.state.children).map(n);return delete i.appear,delete i.enter,delete i.exit,null===e?o:r.default.createElement(e,i,o)},i}(r.default.Component);p.childContextTypes={transitionGroup:i.default.object.isRequired},p.propTypes={},p.defaultProps={component:"div",childFactory:function(t){return t}};var h=(0,o.polyfill)(p);e.default=h,t.exports=e.default},795:function(t,e,n){e.__esModule=!0,e.getChildMapping=r,e.mergeChildMappings=o,e.getInitialChildMapping=function(t,e){return r(t.children,(function(n){return(0,i.cloneElement)(n,{onExited:e.bind(null,n),in:!0,appear:a(n,"appear",t),enter:a(n,"enter",t),exit:a(n,"exit",t)})}))},e.getNextChildMapping=function(t,e,n){var l=r(t.children),s=o(e,l);return Object.keys(s).forEach((function(r){var o=s[r];if((0,i.isValidElement)(o)){var u=r in e,c=r in l,p=e[r],h=(0,i.isValidElement)(p)&&!p.props.in;!c||u&&!h?c||!u||h?c&&u&&(0,i.isValidElement)(p)&&(s[r]=(0,i.cloneElement)(o,{onExited:n.bind(null,o),in:p.props.in,exit:a(o,"exit",t),enter:a(o,"enter",t)})):s[r]=(0,i.cloneElement)(o,{in:!1}):s[r]=(0,i.cloneElement)(o,{onExited:n.bind(null,o),in:!0,exit:a(o,"exit",t),enter:a(o,"enter",t)})}})),s};var i=n(31014);function r(t,e){var n=Object.create(null);return t&&i.Children.map(t,(function(t){return t})).forEach((function(t){n[t.key]=function(t){return e&&(0,i.isValidElement)(t)?e(t):t}(t)})),n}function o(t,e){function n(n){return n in e?e[n]:t[n]}t=t||{},e=e||{};var i,r=Object.create(null),o=[];for(var a in t)a in e?o.length&&(r[a]=o,o=[]):o.push(a);var l={};for(var s in e){if(r[s])for(i=0;i<r[s].length;i++){var u=r[s][i];l[r[s][i]]=n(u)}l[s]=n(s)}for(i=0;i<o.length;i++)l[o[i]]=n(o[i]);return l}function a(t,e,n){return null!=n[e]?n[e]:t.props[e]}},57197:function(t,e,n){e.__esModule=!0,e.classNamesShape=e.timeoutsShape=void 0;var i;(i=n(15662))&&i.__esModule;e.timeoutsShape=null;e.classNamesShape=null},38301:function(t,e,n){var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}();var r={forEach:n(93988),isEqual:n(18258),keys:n(5636),omit:n(42517)},o=n(31014),a=n(21751),l=n(15662),s=n(3083),u=function(t){function e(t){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var n=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==typeof e&&"function"!==typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n._animationTimeout=null,n.runAnimation=n.runAnimation.bind(n),n}return function(t,e){if("function"!==typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,t),i(e,[{key:"componentDidMount",value:function(){this.runAnimation(),!0!==this.props.runOnMount&&this._finishAnimation()}},{key:"componentDidUpdate",value:function(t){r.isEqual(t.animation,this.props.animation)||("stop"===this.props.interruptBehavior?this._stopAnimation():"finish"===this.props.interruptBehavior&&this._finishAnimation(),this._scheduleAnimation())}},{key:"componentWillUnmount",value:function(){this._stopAnimation(),this._clearVelocityCache(this._getDOMTarget()),this._animationTimeout&&clearTimeout(this._animationTimeout)}},{key:"runAnimation",value:function(t){if(t=t||{},this._animationTimeout=null,null!=this.props.animation){t.stop?s(this._getDOMTarget(),"stop",!0):t.finish&&s(this._getDOMTarget(),"finishAll",!0);var n=r.omit(this.props,r.keys(e.propTypes));s(this._getDOMTarget(),this.props.animation,n)}}},{key:"_scheduleAnimation",value:function(){this._animationTimeout||(this._animationTimeout=setTimeout(this.runAnimation,0))}},{key:"_getDOMTarget",value:function(){var t=a.findDOMNode(this);return"children"===this.props.targetQuerySelector?t.children:null!=this.props.targetQuerySelector?t.querySelectorAll(this.props.targetQuerySelector):t}},{key:"_finishAnimation",value:function(){s(this._getDOMTarget(),"finishAll",!0)}},{key:"_stopAnimation",value:function(){s(this._getDOMTarget(),"stop",!0)}},{key:"_clearVelocityCache",value:function(t){t.length?r.forEach(t,this._clearVelocityCache):s.Utilities.removeData(t,["velocity","fxqueue"])}},{key:"render",value:function(){return this.props.children}}]),e}(o.Component);u.propTypes={animation:l.any,children:l.element.isRequired,runOnMount:l.bool,targetQuerySelector:l.string,interruptBehavior:l.string},u.defaultProps={animation:null,runOnMount:!1,targetQuerySelector:null,interruptBehavior:"stop"},t.exports=u},60119:function(t,e,n){var i={isObject:n(7535)},r=n(3083),o=0;t.exports={registerEffect:function(t,e){i.isObject(t)&&(e=t,t="");var n="VelocityHelper.animation."+o+++t;if(r.velocityReactServerShim)return n;if(void 0===r.RegisterEffect)throw"Velocity.RegisterEffect not found. You need to require 'velocity-animate/velocity.ui' at a top level for UI Pack.";return r.RegisterEffect(n,e),n}}},61041:function(t,e,n){var i=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},r=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}();function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!==typeof e&&"function"!==typeof e?t:e}function l(t,e){if("function"!==typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var s={each:n(86937),extend:n(10388),forEach:n(93988),isEqual:n(18258),keys:n(5636),omit:n(42517),map:n(64588)},u=n(31014),c=n(21751),p=n(15662),h=n(97531),d=n(86862).Ay,f=n(3083),m="undefined"!==typeof window&&(window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(t){window.setTimeout(t,0)});m="undefined"!==typeof window&&m.bind(window);var v="undefined"!==typeof window&&(window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||function(t){window.clearTimeout(t)});v="undefined"!==typeof window&&v.bind(window);var y=function(t){function e(){var t,n,i;o(this,e);for(var r=arguments.length,l=Array(r),s=0;s<r;s++)l[s]=arguments[s];return n=i=a(this,(t=e.__proto__||Object.getPrototypeOf(e)).call.apply(t,[this].concat(l))),i.lastState="appear",i.componentWillEnter=function(t,e){i.lastState=e?"appear":"enter"},i.componentWillExit=function(){i.lastState="exit"},i.endListener=function(t,e){switch(i.lastState){case"appear":i.props.willAppearFunc(t,e);break;case"enter":i.props.willEnterFunc(t,e);break;case"exit":i.props.willLeaveFunc(t,e)}},a(i,n)}return l(e,t),r(e,[{key:"componentWillUnmount",value:function(){f.Utilities.removeData(c.findDOMNode(this),["velocity","fxqueue"])}},{key:"render",value:function(){var t=s.omit(this.props,s.keys(e.propTypes));return u.createElement(d,i({},t,{timeout:null,addEndListener:this.endListener,appear:!0,onEnter:this.componentWillEnter,onExit:this.componentWillExit}),this.props.children)}}]),e}(u.Component);y.propTypes={children:p.element.isRequired,willAppearFunc:p.func.isRequired,willEnterFunc:p.func.isRequired,willLeaveFunc:p.func.isRequired};var _=function(t){function e(t){o(this,e);var n=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n._scheduledAnimationFrame=null,n._scheduledAnimationRunFrames=[],n._entering=[],n._leaving=[],n._timers=[],n._unmounted=!1,n.childWillAppear=n.childWillAppear.bind(n),n.childWillEnter=n.childWillEnter.bind(n),n.childWillLeave=n.childWillLeave.bind(n),n._runAnimations=n._runAnimations.bind(n),n._wrapChild=n._wrapChild.bind(n),n}return l(e,t),r(e,[{key:"componentWillUnmount",value:function(){this._scheduledAnimationFrame&&v(this._scheduledAnimationFrame),s.forEach(this._timers,(function(t){clearTimeout(t)})),s.forEach(this._scheduledAnimationRunFrames,(function(t){v(t)})),this._unmounted=!0}},{key:"render",value:function(){var t=s.omit(this.props,s.keys(e.propTypes));return u.createElement(h,t,this.constructor.disabledForTest||f.velocityReactServerShim?u.Children.map(this.props.children,(function(t){return t&&u.createElement(d,{timeout:0},t)})):u.Children.map(this.props.children,this._wrapChild))}},{key:"childWillAppear",value:function(t,e){var n=this;if(this.props.runOnMount)this.childWillEnter(t,e);else{this._finishAnimation(t,this.props.enter);var i=setTimeout((function(){var t=n._timers.indexOf(i);t>=0&&n._timers.splice(t,1),e()}),0);this._timers.push(i)}}},{key:"childWillEnter",value:function(t,e){this._shortCircuitAnimation(this.props.enter,e)||(this._finishAnimation(t,this.props.leave,{begin:void 0,complete:void 0}),s.forEach(this.props.enterHideStyle,(function(e,n){f.CSS.setPropertyValue(t,n,e)})),this._entering.push({node:t,doneFn:e}),this._schedule())}},{key:"childWillLeave",value:function(t,e){this._shortCircuitAnimation(this.props.leave,e)||(this._leaving.push({node:t,doneFn:e}),this._schedule())}},{key:"_shortCircuitAnimation",value:function(t,e){return!(!document.hidden&&null!=this._parseAnimationProp(t).animation)&&(e(),!0)}},{key:"_schedule",value:function(){this._scheduledAnimationFrame||(this._scheduledAnimationFrame=m(this._runAnimations))}},{key:"_runAnimations",value:function(){this._scheduledAnimationFrame=null,this._runAnimation(!0,this._entering,this.props.enter),this._runAnimation(!1,this._leaving,this.props.leave),this._entering=[],this._leaving=[]}},{key:"_parseAnimationProp",value:function(t){var e,n,i;return"string"===typeof t?(e=t,i=null,n={}):(e=null!=t?t.animation:null,i=null!=t?t.style:null,n=s.omit(t,"animation","style")),{animation:e,style:i,opts:n}}},{key:"_runAnimation",value:function(t,e,n){var i=this;if(0!==e.length){var r=s.map(e,"node"),o=s.map(e,"doneFn"),a=this._parseAnimationProp(n),l=a.animation,u=a.style,c=a.opts;t&&(s.isEqual(this.props.enterShowStyle,{display:""})&&(/^(fade|slide)/.test(l)||/In$/.test(l))||(u=s.extend({},this.props.enterShowStyle,u))),null!=u&&s.each(u,(function(t,e){f.hook(r,e,t)}));var p,h=function(){i._unmounted||o.map((function(t){t()}))};if(t?(h(),h=null):f(r,"stop"),h&&c.complete){var d=c.complete;p=function(){h(),d.apply(this,arguments)}}else p=h||c.complete;var v=m((function(){var t=i._scheduledAnimationRunFrames.indexOf(v);t>=0&&i._scheduledAnimationRunFrames.splice(t,1),f(r,l,s.extend({},c,{complete:p}))}));this._scheduledAnimationRunFrames.push(v)}}},{key:"_finishAnimation",value:function(t,e,n){var i=this._parseAnimationProp(e),r=i.animation,o=i.style,a=s.extend({},i.opts,n);null!=o&&s.each(o,(function(e,n){f.hook(t,n,e)})),null!=r&&(f(t,r,a),f(t,"finishAll",!0))}},{key:"_wrapChild",value:function(t){return t?u.createElement(y,{key:t.key,willAppearFunc:this.childWillAppear,willEnterFunc:this.childWillEnter,willLeaveFunc:this.childWillLeave},t):null}}]),e}(u.Component);_.disabledForTest=!1,_.propTypes={runOnMount:p.bool,enter:p.any,leave:p.any,children:p.any,enterHideStyle:p.object,enterShowStyle:p.object},_.defaultProps={runOnMount:!1,enter:null,leave:null,enterHideStyle:{display:"none"},enterShowStyle:{display:""}},t.exports=_}}]);
|