carta-frontend 5.0.0-dev → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/CHANGELOG.md +9 -3
  2. package/build/asset-manifest.json +5 -5
  3. package/build/index.html +1 -1
  4. package/build/static/css/main.4f08d1bb.css +1 -0
  5. package/build/static/js/index.f5ea988d.worker.js +2 -0
  6. package/build/static/js/{main.3eb48ba0.js → main.8626e15a.js} +2 -2
  7. package/build/static/js/zfp_wrapper.wasm +0 -0
  8. package/docs_website/docs/code-snippet-tutorial/image-fitting.mdx +7 -5
  9. package/docs_website/docs/code-snippet-tutorial/quick-start.mdx +1 -1
  10. package/docs_website/docs/code-snippet-tutorial/regions.mdx +1 -1
  11. package/docs_website/docs/contributing/github-workflow.md +4 -4
  12. package/docs_website/docs/contributing/release-guidelines.md +9 -9
  13. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/quick-start.mdx +1 -1
  14. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/regions.mdx +1 -1
  15. package/docs_website/versioned_docs/version-4.1.0/contributing/github-workflow.md +4 -4
  16. package/docs_website/versioned_docs/version-4.1.0/contributing/release-guidelines.md +9 -9
  17. package/docs_website/versioned_docs/version-5.0.0-beta.1c/code-snippet-tutorial/quick-start.mdx +1 -1
  18. package/docs_website/versioned_docs/version-5.0.0-beta.1c/code-snippet-tutorial/regions.mdx +1 -1
  19. package/docs_website/versioned_docs/version-5.0.0-beta.1c/contributing/github-workflow.md +4 -4
  20. package/docs_website/versioned_docs/version-5.0.0-beta.1c/contributing/release-guidelines.md +9 -9
  21. package/package.json +5 -4
  22. package/schemas/.github/workflows/AddToCartaVisProject.yml +23 -0
  23. package/schemas/.prettierrc.json +18 -0
  24. package/schemas/CMakeLists.txt +15 -0
  25. package/schemas/README.md +1 -0
  26. package/schemas/_config.yml +7 -0
  27. package/schemas/controller_config_schema_1.json +343 -0
  28. package/schemas/controller_config_schema_2.json +685 -0
  29. package/schemas/layout_schema_2.json +440 -0
  30. package/schemas/preference_backend_schema_1.json +81 -0
  31. package/schemas/preference_backend_schema_2.json +118 -0
  32. package/schemas/preference_schema_1.json +410 -0
  33. package/schemas/preferences_schema_2.json +434 -0
  34. package/schemas/schemacompiler.c +200 -0
  35. package/schemas/snippet_schema_1.json +45 -0
  36. package/schemas/workspace_schema_1.json +573 -0
  37. package/build/static/css/main.f89d4550.css +0 -1
  38. package/build/static/js/index.73b34931.worker.js +0 -2
  39. /package/build/static/js/{index.73b34931.worker.js.LICENSE.txt → index.f5ea988d.worker.js.LICENSE.txt} +0 -0
  40. /package/build/static/js/{main.3eb48ba0.js.LICENSE.txt → main.8626e15a.js.LICENSE.txt} +0 -0
package/CHANGELOG.md CHANGED
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [Unreleased]
7
+ ## [5.0.0]
8
8
 
9
9
  ### Fixed
10
10
  * Fixed inconsistent label offsets of ruler annotations ([#2472](https://github.com/CARTAvis/carta-frontend/issues/2472)).
@@ -15,11 +15,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
  * Fixed no wcs grid if filename contains comma characters ([#2386](https://github.com/CARTAvis/carta-frontend/issues/2386)).
16
16
  * Fixed incorrect status in the animator widget and incorrect title in the image view widget when PV previews are active ([#2523](https://github.com/CARTAvis/carta-frontend/issues/2523), [#2524](https://github.com/CARTAvis/carta-frontend/issues/2524)).
17
17
  * Fixed jumpy non-square images after widget resizing ([#2467](https://github.com/CARTAvis/carta-frontend/issues/2467)).
18
- * Colors of multi-spectral profiles do not vary with the image selection ([[#2236](https://github.com/CARTAvis/carta-frontend/issues/2236)]).
19
- * Fix reference axes in the scatter plot of Stokes analysis ([#2531](https://github.com/CARTAvis/carta-frontend/issues/2531) and [#2532](https://github.com/CARTAvis/carta-frontend/issues/2532)).
18
+ * Colors of multi-spectral profiles do not vary with the image selection ([#2236](https://github.com/CARTAvis/carta-frontend/issues/2236)).
19
+ * Fixed reference axes in the scatter plot of Stokes analysis ([#2531](https://github.com/CARTAvis/carta-frontend/issues/2531) and [#2532](https://github.com/CARTAvis/carta-frontend/issues/2532)).
20
+ * Fixed incorrect disabling of spectral axis convention for spatial-spectral images ([#2550](https://github.com/CARTAvis/carta-frontend/issues/2550)).
21
+ * Fixed slow response to file list by sending basic info only ([#1435](https://github.com/CARTAvis/carta-backend/issues/1435)).
20
22
  ### Added
21
23
  * Enhanced support for modifying the render configuration and the active channel/polarization in channel map mode ([#2492](https://github.com/CARTAvis/carta-frontend/issues/2492)).
22
24
  * Enable the copy function in the cursor info widget ([#2468](https://github.com/CARTAvis/carta-frontend/issues/2468)).
25
+ * Supported flux density calculations with various pixel units in the statistics widget ([#2521](https://github.com/CARTAvis/carta-frontend/issues/2521)).
26
+ * Enhanced support for displaying channel, spectral, and velocity information in channel map mode ([#2492](https://github.com/CARTAvis/carta-frontend/issues/2492)).
27
+ * Supported image export with normal, high, and highest resolution in channel map mode ([#2492](https://github.com/CARTAvis/carta-frontend/issues/2492)).
28
+ * Added support for generating initial values for multiple Gaussian image fitting ([#2095](https://github.com/CARTAvis/carta-frontend/issues/2095)).
23
29
  ### Changed
24
30
  * The dropdown options in the z profile widget becomes scrollable with small widget width ([#1600](https://github.com/CARTAvis/carta-frontend/issues/1600)).
25
31
  * When a PV preview is active, the image view shows the page with the source image instead of the first page.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "files": {
3
- "main.css": "./static/css/main.f89d4550.css",
4
- "main.js": "./static/js/main.3eb48ba0.js",
3
+ "main.css": "./static/css/main.4f08d1bb.css",
4
+ "main.js": "./static/js/main.8626e15a.js",
5
5
  "blueprint-icons-all-paths-loader.js": "./static/js/blueprint-icons-all-paths-loader.63690339.chunk.js",
6
6
  "blueprint-icons-split-paths-by-size-loader.js": "./static/js/blueprint-icons-split-paths-by-size-loader.802c3795.chunk.js",
7
7
  "static/css/20.2e97cf1c.chunk.css": "./static/css/20.2e97cf1c.chunk.css",
@@ -14,7 +14,7 @@
14
14
  "blueprint-icons-20px-paths.js": "./static/js/blueprint-icons-20px-paths.199f613c.chunk.js",
15
15
  "static/media/blueprint-icons-20.svg?": "./static/media/blueprint-icons-20.7232a810de8de6f2aeaf.svg",
16
16
  "static/media/blueprint-icons-16.svg?": "./static/media/blueprint-icons-16.a271f661ef44bd0c1da8.svg",
17
- "static/js/index.73b34931.worker.js": "./static/js/index.73b34931.worker.js",
17
+ "static/js/index.f5ea988d.worker.js": "./static/js/index.f5ea988d.worker.js",
18
18
  "static/media/blueprint-icons-20.eot?": "./static/media/blueprint-icons-20.3f4081135062892dbcdc.eot",
19
19
  "static/media/blueprint-icons-20.ttf?": "./static/media/blueprint-icons-20.26d422cf1c72f1a51b25.ttf",
20
20
  "static/media/blueprint-icons-16.eot?": "./static/media/blueprint-icons-16.e1f99a1f15108e234254.eot",
@@ -33,7 +33,7 @@
33
33
  "index.html": "./index.html"
34
34
  },
35
35
  "entrypoints": [
36
- "static/css/main.f89d4550.css",
37
- "static/js/main.3eb48ba0.js"
36
+ "static/css/main.4f08d1bb.css",
37
+ "static/js/main.8626e15a.js"
38
38
  ]
39
39
  }
package/build/index.html CHANGED
@@ -1,4 +1,4 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="./manifest.json"><link rel="shortcut icon" href="./carta_icon_128px.png"><title>CARTA</title><style>.static-text{font-size:14px;font-weight:400;letter-spacing:0;line-height:1.28581;text-transform:none;color:#182026;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",Icons16,sans-serif}.static-pre{color:#182026;font-size:14px;white-space:pre-line}.static-overlay{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;height:400px;width:650px}.loading-div{width:650px;height:400px;background:#f5f8fa;text-align:center;padding:15px;box-shadow:0 0 0 1px rgba(16,22,26,.1),0 4px 8px rgba(16,22,26,.1),0 18px 46px 6px rgba(16,22,26,.1);border-radius:6px;border:2px solid #5480b7;box-sizing:border-box}.static-spinner{align-items:center;display:flex;justify-content:center;vertical-align:middle;margin:20px}.static-spinner-animation{width:30px;height:30px;animation:static-spinner-animation .5s linear infinite}@keyframes static-spinner-animation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.static-spinner-track{fill-opacity:0;stroke:rgba(92,112,128,.2);stroke-width:8px}.static-spinner-head{fill-opacity:0;stroke:rgba(43,149,214,.8);stroke-width:13px}.loading-text{animation:cssAnimation 5s forwards;opacity:0}@keyframes cssAnimation{0%{opacity:0}90%{opacity:0}100%{opacity:1}}</style><script defer="defer" src="./static/js/main.3eb48ba0.js"></script><link href="./static/css/main.f89d4550.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div class="static-overlay"><div class="loading-div"><img src="carta_logo.png" width="150" height="175" alt="CARTA"><div class="static-spinner"><div class="static-spinner-animation"><svg width="30" height="30" viewBox="-1.67 -1.67 103.33 103.33"><path class="static-spinner-track" d="M 50,50 m 0,-45 a 45,45 0 1 1 0,90 a 45,45 0 1 1 0,-90"/><path class="static-spinner-head" d="M 50,50 m 0,-45 a 45,45 0 1 1 0,90 a 45,45 0 1 1 0,-90" pathLength="280" stroke-dasharray="280 280" stroke-dashoffset="210"/></svg></div></div><div class="loading-text"><p class="static-text">Loading CARTA. If this message does not disappear, please <a href="https://refreshyourcache.com/en/cache/">hard-reload</a> this site in your browser using the shortcut below:</p><pre class="static-pre">
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="./manifest.json"><link rel="shortcut icon" href="./carta_icon_128px.png"><title>CARTA</title><style>.static-text{font-size:14px;font-weight:400;letter-spacing:0;line-height:1.28581;text-transform:none;color:#182026;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",Icons16,sans-serif}.static-pre{color:#182026;font-size:14px;white-space:pre-line}.static-overlay{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;height:400px;width:650px}.loading-div{width:650px;height:400px;background:#f5f8fa;text-align:center;padding:15px;box-shadow:0 0 0 1px rgba(16,22,26,.1),0 4px 8px rgba(16,22,26,.1),0 18px 46px 6px rgba(16,22,26,.1);border-radius:6px;border:2px solid #5480b7;box-sizing:border-box}.static-spinner{align-items:center;display:flex;justify-content:center;vertical-align:middle;margin:20px}.static-spinner-animation{width:30px;height:30px;animation:static-spinner-animation .5s linear infinite}@keyframes static-spinner-animation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.static-spinner-track{fill-opacity:0;stroke:rgba(92,112,128,.2);stroke-width:8px}.static-spinner-head{fill-opacity:0;stroke:rgba(43,149,214,.8);stroke-width:13px}.loading-text{animation:cssAnimation 5s forwards;opacity:0}@keyframes cssAnimation{0%{opacity:0}90%{opacity:0}100%{opacity:1}}</style><script defer="defer" src="./static/js/main.8626e15a.js"></script><link href="./static/css/main.4f08d1bb.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div class="static-overlay"><div class="loading-div"><img src="carta_logo.png" width="150" height="175" alt="CARTA"><div class="static-spinner"><div class="static-spinner-animation"><svg width="30" height="30" viewBox="-1.67 -1.67 103.33 103.33"><path class="static-spinner-track" d="M 50,50 m 0,-45 a 45,45 0 1 1 0,90 a 45,45 0 1 1 0,-90"/><path class="static-spinner-head" d="M 50,50 m 0,-45 a 45,45 0 1 1 0,90 a 45,45 0 1 1 0,-90" pathLength="280" stroke-dasharray="280 280" stroke-dashoffset="210"/></svg></div></div><div class="loading-text"><p class="static-text">Loading CARTA. If this message does not disappear, please <a href="https://refreshyourcache.com/en/cache/">hard-reload</a> this site in your browser using the shortcut below:</p><pre class="static-pre">
2
2
  macOS : option + command + R (Safari)
3
3
  macOS : shift + command + R (Chrome, Firefox)
4
4
  Linux : shift + control + R