matterviz 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/launch.json +13 -0
- package/.vscodeignore +7 -0
- package/dist/assets/STLExporter-BpTH3YHE.js +8 -0
- package/dist/assets/browser-DdDecX_W.js +1 -0
- package/dist/assets/export-qgn-H9y6.js +2 -0
- package/dist/assets/main-DiKYzti2.css +1 -0
- package/dist/assets/moyo_wasm_bg-0ocwg7xY.wasm +0 -0
- package/dist/extension.js +31293 -0
- package/dist/src/lib/FilePicker.svelte +360 -0
- package/dist/src/lib/MillerIndexInput.svelte +66 -0
- package/dist/src/lib/api/mp.ts +26 -0
- package/dist/src/lib/api/optimade.ts +204 -0
- package/dist/src/lib/app.css +247 -0
- package/dist/src/lib/brillouin/BrillouinZone.svelte +549 -0
- package/dist/src/lib/brillouin/BrillouinZoneControls.svelte +144 -0
- package/dist/src/lib/brillouin/BrillouinZoneExportPane.svelte +146 -0
- package/dist/src/lib/brillouin/BrillouinZoneInfoPane.svelte +146 -0
- package/dist/src/lib/brillouin/BrillouinZoneScene.svelte +476 -0
- package/dist/src/lib/brillouin/BrillouinZoneTooltip.svelte +92 -0
- package/dist/src/lib/brillouin/compute.ts +529 -0
- package/dist/src/lib/brillouin/index.ts +8 -0
- package/dist/src/lib/brillouin/types.ts +51 -0
- package/dist/src/lib/chempot-diagram/ChemPotDiagram.svelte +327 -0
- package/dist/src/lib/chempot-diagram/ChemPotDiagram2D.svelte +846 -0
- package/dist/src/lib/chempot-diagram/ChemPotDiagram3D.svelte +3193 -0
- package/dist/src/lib/chempot-diagram/async-compute.svelte.ts +94 -0
- package/dist/src/lib/chempot-diagram/chempot-worker.ts +11 -0
- package/dist/src/lib/chempot-diagram/color.ts +42 -0
- package/dist/src/lib/chempot-diagram/compute.ts +1014 -0
- package/dist/src/lib/chempot-diagram/index.ts +6 -0
- package/dist/src/lib/chempot-diagram/pointer.ts +56 -0
- package/dist/src/lib/chempot-diagram/temperature.ts +77 -0
- package/dist/src/lib/chempot-diagram/types.ts +130 -0
- package/dist/src/lib/colors/index.ts +249 -0
- package/dist/src/lib/composition/BarChart.svelte +297 -0
- package/dist/src/lib/composition/BubbleChart.svelte +218 -0
- package/dist/src/lib/composition/Composition.svelte +165 -0
- package/dist/src/lib/composition/Formula.svelte +268 -0
- package/dist/src/lib/composition/FormulaFilter.svelte +1257 -0
- package/dist/src/lib/composition/PieChart.svelte +323 -0
- package/dist/src/lib/composition/format.ts +155 -0
- package/dist/src/lib/composition/index.ts +37 -0
- package/dist/src/lib/composition/parse.ts +605 -0
- package/dist/src/lib/constants.ts +134 -0
- package/dist/src/lib/controls.ts +42 -0
- package/dist/src/lib/convex-hull/ConvexHull.svelte +157 -0
- package/dist/src/lib/convex-hull/ConvexHull2D.svelte +825 -0
- package/dist/src/lib/convex-hull/ConvexHull3D.svelte +1801 -0
- package/dist/src/lib/convex-hull/ConvexHull4D.svelte +1398 -0
- package/dist/src/lib/convex-hull/ConvexHullControls.svelte +535 -0
- package/dist/src/lib/convex-hull/ConvexHullInfoPane.svelte +125 -0
- package/dist/src/lib/convex-hull/ConvexHullStats.svelte +929 -0
- package/dist/src/lib/convex-hull/ConvexHullTooltip.svelte +131 -0
- package/dist/src/lib/convex-hull/GasPressureControls.svelte +247 -0
- package/dist/src/lib/convex-hull/StructurePopup.svelte +151 -0
- package/dist/src/lib/convex-hull/TemperatureSlider.svelte +140 -0
- package/dist/src/lib/convex-hull/barycentric-coords.ts +246 -0
- package/dist/src/lib/convex-hull/demo-temperature.ts +63 -0
- package/dist/src/lib/convex-hull/gas-thermodynamics.ts +405 -0
- package/dist/src/lib/convex-hull/helpers.ts +932 -0
- package/dist/src/lib/convex-hull/index.ts +202 -0
- package/dist/src/lib/convex-hull/thermodynamics.ts +2192 -0
- package/dist/src/lib/convex-hull/types.ts +267 -0
- package/dist/src/lib/coordination/CoordinationBarPlot.svelte +311 -0
- package/dist/src/lib/coordination/calc-coordination.ts +93 -0
- package/dist/src/lib/coordination/index.ts +9 -0
- package/dist/src/lib/effects.svelte.ts +48 -0
- package/dist/src/lib/element/BohrAtom.svelte +147 -0
- package/dist/src/lib/element/ElementHeading.svelte +26 -0
- package/dist/src/lib/element/ElementPhoto.svelte +57 -0
- package/dist/src/lib/element/ElementStats.svelte +80 -0
- package/dist/src/lib/element/ElementTile.svelte +484 -0
- package/dist/src/lib/element/data.json.gz.d.ts +4 -0
- package/dist/src/lib/element/data.ts +14 -0
- package/dist/src/lib/element/index.ts +8 -0
- package/dist/src/lib/element/types.ts +62 -0
- package/dist/src/lib/feedback/ClickFeedback.svelte +58 -0
- package/dist/src/lib/feedback/DragOverlay.svelte +42 -0
- package/dist/src/lib/feedback/index.ts +4 -0
- package/dist/src/lib/fermi-surface/FermiSlice.svelte +189 -0
- package/dist/src/lib/fermi-surface/FermiSurface.svelte +600 -0
- package/dist/src/lib/fermi-surface/FermiSurfaceControls.svelte +448 -0
- package/dist/src/lib/fermi-surface/FermiSurfaceScene.svelte +794 -0
- package/dist/src/lib/fermi-surface/FermiSurfaceTooltip.svelte +111 -0
- package/dist/src/lib/fermi-surface/compute.ts +728 -0
- package/dist/src/lib/fermi-surface/constants.ts +32 -0
- package/dist/src/lib/fermi-surface/export.ts +64 -0
- package/dist/src/lib/fermi-surface/index.ts +14 -0
- package/dist/src/lib/fermi-surface/marching-cubes.ts +3 -0
- package/dist/src/lib/fermi-surface/parse.ts +574 -0
- package/dist/src/lib/fermi-surface/symmetry.ts +56 -0
- package/dist/src/lib/fermi-surface/types.ts +159 -0
- package/dist/src/lib/heatmap-matrix/HeatmapMatrix.svelte +1545 -0
- package/dist/src/lib/heatmap-matrix/HeatmapMatrixControls.svelte +225 -0
- package/dist/src/lib/heatmap-matrix/index.ts +167 -0
- package/dist/src/lib/heatmap-matrix/shared.ts +7 -0
- package/dist/src/lib/icons.ts +650 -0
- package/dist/src/lib/index.ts +61 -0
- package/dist/src/lib/io/decompress.ts +92 -0
- package/dist/src/lib/io/export.ts +385 -0
- package/dist/src/lib/io/fetch.ts +46 -0
- package/dist/src/lib/io/file-drop.ts +51 -0
- package/dist/src/lib/io/index.ts +7 -0
- package/dist/src/lib/io/is-binary.ts +24 -0
- package/dist/src/lib/io/types.ts +8 -0
- package/dist/src/lib/io/url-drop.ts +141 -0
- package/dist/src/lib/isosurface/Isosurface.svelte +285 -0
- package/dist/src/lib/isosurface/IsosurfaceControls.svelte +277 -0
- package/dist/src/lib/isosurface/index.ts +7 -0
- package/dist/src/lib/isosurface/parse.ts +656 -0
- package/dist/src/lib/isosurface/slice.ts +175 -0
- package/dist/src/lib/isosurface/types.ts +309 -0
- package/dist/src/lib/labels.ts +320 -0
- package/dist/src/lib/layout/FullscreenToggle.svelte +50 -0
- package/dist/src/lib/layout/InfoCard.svelte +120 -0
- package/dist/src/lib/layout/InfoTag.svelte +185 -0
- package/dist/src/lib/layout/PropertyFilter.svelte +246 -0
- package/dist/src/lib/layout/SettingsSection.svelte +148 -0
- package/dist/src/lib/layout/SubpageGrid.svelte +82 -0
- package/dist/src/lib/layout/fullscreen.ts +65 -0
- package/dist/src/lib/layout/index.ts +11 -0
- package/dist/src/lib/layout/json-tree/JsonNode.svelte +548 -0
- package/dist/src/lib/layout/json-tree/JsonTree.svelte +1230 -0
- package/dist/src/lib/layout/json-tree/JsonValue.svelte +334 -0
- package/dist/src/lib/layout/json-tree/index.ts +3 -0
- package/dist/src/lib/layout/json-tree/types.ts +126 -0
- package/dist/src/lib/layout/json-tree/utils.ts +682 -0
- package/dist/src/lib/marching-cubes.ts +614 -0
- package/dist/src/lib/math.ts +1081 -0
- package/dist/src/lib/overlays/ContextMenu.svelte +162 -0
- package/dist/src/lib/overlays/CopyButton.svelte +45 -0
- package/dist/src/lib/overlays/DragControlTab.svelte +98 -0
- package/dist/src/lib/overlays/DraggablePane.svelte +487 -0
- package/dist/src/lib/overlays/InfoPaneCards.svelte +149 -0
- package/dist/src/lib/overlays/index.ts +3 -0
- package/dist/src/lib/periodic-table/PeriodicTable.svelte +469 -0
- package/dist/src/lib/periodic-table/PeriodicTableControls.svelte +557 -0
- package/dist/src/lib/periodic-table/PropertySelect.svelte +37 -0
- package/dist/src/lib/periodic-table/index.ts +12 -0
- package/dist/src/lib/phase-diagram/IsobaricBinaryPhaseDiagram.svelte +1086 -0
- package/dist/src/lib/phase-diagram/PhaseDiagramControls.svelte +444 -0
- package/dist/src/lib/phase-diagram/PhaseDiagramEditorPane.svelte +126 -0
- package/dist/src/lib/phase-diagram/PhaseDiagramExportPane.svelte +184 -0
- package/dist/src/lib/phase-diagram/PhaseDiagramTooltip.svelte +391 -0
- package/dist/src/lib/phase-diagram/TdbInfoPanel.svelte +203 -0
- package/dist/src/lib/phase-diagram/build-diagram.ts +186 -0
- package/dist/src/lib/phase-diagram/colors.ts +58 -0
- package/dist/src/lib/phase-diagram/diagram-input.ts +40 -0
- package/dist/src/lib/phase-diagram/index.ts +13 -0
- package/dist/src/lib/phase-diagram/parse.ts +348 -0
- package/dist/src/lib/phase-diagram/svg-to-diagram.ts +1023 -0
- package/dist/src/lib/phase-diagram/types.ts +144 -0
- package/dist/src/lib/phase-diagram/utils.ts +775 -0
- package/dist/src/lib/plot/AxisLabel.svelte +51 -0
- package/dist/src/lib/plot/BarPlot.svelte +2113 -0
- package/dist/src/lib/plot/BarPlotControls.svelte +66 -0
- package/dist/src/lib/plot/BinnedScatterPlot.svelte +1114 -0
- package/dist/src/lib/plot/ColorBar.svelte +721 -0
- package/dist/src/lib/plot/ColorScaleSelect.svelte +54 -0
- package/dist/src/lib/plot/ElementScatter.svelte +63 -0
- package/dist/src/lib/plot/FillArea.svelte +223 -0
- package/dist/src/lib/plot/Histogram.svelte +1558 -0
- package/dist/src/lib/plot/HistogramControls.svelte +212 -0
- package/dist/src/lib/plot/InteractiveAxisLabel.svelte +96 -0
- package/dist/src/lib/plot/Line.svelte +84 -0
- package/dist/src/lib/plot/PlotAxis.svelte +169 -0
- package/dist/src/lib/plot/PlotControls.svelte +537 -0
- package/dist/src/lib/plot/PlotLegend.svelte +569 -0
- package/dist/src/lib/plot/PlotTooltip.svelte +67 -0
- package/dist/src/lib/plot/PortalSelect.svelte +253 -0
- package/dist/src/lib/plot/ReferenceLine3D.svelte +156 -0
- package/dist/src/lib/plot/ReferencePlane.svelte +175 -0
- package/dist/src/lib/plot/ScatterPlot.svelte +2778 -0
- package/dist/src/lib/plot/ScatterPlot3D.svelte +529 -0
- package/dist/src/lib/plot/ScatterPlot3DControls.svelte +437 -0
- package/dist/src/lib/plot/ScatterPlot3DScene.svelte +912 -0
- package/dist/src/lib/plot/ScatterPlotControls.svelte +306 -0
- package/dist/src/lib/plot/ScatterPoint.svelte +182 -0
- package/dist/src/lib/plot/SpacegroupBarPlot.svelte +293 -0
- package/dist/src/lib/plot/Surface3D.svelte +197 -0
- package/dist/src/lib/plot/ZeroLines.svelte +97 -0
- package/dist/src/lib/plot/ZoomRect.svelte +23 -0
- package/dist/src/lib/plot/adaptive-density.ts +316 -0
- package/dist/src/lib/plot/auto-place.ts +184 -0
- package/dist/src/lib/plot/axis-utils.ts +122 -0
- package/dist/src/lib/plot/binned-scatter-types.ts +83 -0
- package/dist/src/lib/plot/data-cleaning.ts +1069 -0
- package/dist/src/lib/plot/data-transform.ts +69 -0
- package/dist/src/lib/plot/defaults.ts +9 -0
- package/dist/src/lib/plot/fill-utils.ts +494 -0
- package/dist/src/lib/plot/hover-lock.svelte.ts +60 -0
- package/dist/src/lib/plot/index.ts +53 -0
- package/dist/src/lib/plot/interactions.ts +119 -0
- package/dist/src/lib/plot/layout.ts +425 -0
- package/dist/src/lib/plot/reference-line.ts +426 -0
- package/dist/src/lib/plot/scales.ts +654 -0
- package/dist/src/lib/plot/svg.ts +23 -0
- package/dist/src/lib/plot/types.ts +1144 -0
- package/dist/src/lib/plot/utils/label-placement.ts +541 -0
- package/dist/src/lib/plot/utils/series-visibility.ts +140 -0
- package/dist/src/lib/plot/utils.ts +11 -0
- package/dist/src/lib/rdf/RdfPlot.svelte +247 -0
- package/dist/src/lib/rdf/calc-rdf.ts +167 -0
- package/dist/src/lib/rdf/index.ts +27 -0
- package/dist/src/lib/sanitize.ts +126 -0
- package/dist/src/lib/settings.ts +1479 -0
- package/dist/src/lib/spectral/Bands.svelte +1040 -0
- package/dist/src/lib/spectral/BandsAndDos.svelte +134 -0
- package/dist/src/lib/spectral/BrillouinBandsDos.svelte +252 -0
- package/dist/src/lib/spectral/Dos.svelte +697 -0
- package/dist/src/lib/spectral/helpers.ts +1381 -0
- package/dist/src/lib/spectral/index.ts +8 -0
- package/dist/src/lib/spectral/types.ts +112 -0
- package/dist/src/lib/state.svelte.ts +64 -0
- package/dist/src/lib/structure/Arrow.svelte +72 -0
- package/dist/src/lib/structure/AtomLegend.svelte +815 -0
- package/dist/src/lib/structure/Bond.svelte +140 -0
- package/dist/src/lib/structure/CanvasTooltip.svelte +33 -0
- package/dist/src/lib/structure/CellSelect.svelte +349 -0
- package/dist/src/lib/structure/Cylinder.svelte +45 -0
- package/dist/src/lib/structure/Lattice.svelte +196 -0
- package/dist/src/lib/structure/Structure.svelte +2248 -0
- package/dist/src/lib/structure/StructureControls.svelte +1273 -0
- package/dist/src/lib/structure/StructureExportPane.svelte +252 -0
- package/dist/src/lib/structure/StructureInfoPane.svelte +737 -0
- package/dist/src/lib/structure/StructureScene.svelte +2255 -0
- package/dist/src/lib/structure/atom-properties.ts +316 -0
- package/dist/src/lib/structure/bond-order-perception.ts +447 -0
- package/dist/src/lib/structure/bonding.ts +944 -0
- package/dist/src/lib/structure/export.ts +861 -0
- package/dist/src/lib/structure/index.ts +291 -0
- package/dist/src/lib/structure/label-placement.ts +130 -0
- package/dist/src/lib/structure/measure.ts +45 -0
- package/dist/src/lib/structure/parse.ts +1705 -0
- package/dist/src/lib/structure/partial-occupancy.ts +183 -0
- package/dist/src/lib/structure/pbc.ts +164 -0
- package/dist/src/lib/structure/supercell.ts +226 -0
- package/dist/src/lib/structure/validation.ts +11 -0
- package/dist/src/lib/symmetry/SymmetryStats.svelte +226 -0
- package/dist/src/lib/symmetry/WyckoffTable.svelte +120 -0
- package/dist/src/lib/symmetry/cell-transform.ts +118 -0
- package/dist/src/lib/symmetry/index.ts +348 -0
- package/dist/src/lib/symmetry/spacegroups.ts +404 -0
- package/dist/src/lib/table/HeatmapTable.svelte +1833 -0
- package/dist/src/lib/table/ToggleMenu.svelte +385 -0
- package/dist/src/lib/table/index.ts +139 -0
- package/dist/src/lib/theme/ThemeControl.svelte +53 -0
- package/dist/src/lib/theme/index.ts +107 -0
- package/dist/src/lib/theme/themes.mjs +297 -0
- package/dist/src/lib/time.ts +71 -0
- package/dist/src/lib/tooltip/TooltipContent.svelte +58 -0
- package/dist/src/lib/tooltip/index.ts +2 -0
- package/dist/src/lib/tooltip/types.ts +13 -0
- package/dist/src/lib/trajectory/Trajectory.svelte +1545 -0
- package/dist/src/lib/trajectory/TrajectoryError.svelte +128 -0
- package/dist/src/lib/trajectory/TrajectoryExportPane.svelte +357 -0
- package/dist/src/lib/trajectory/TrajectoryInfoPane.svelte +313 -0
- package/dist/src/lib/trajectory/constants.ts +7 -0
- package/dist/src/lib/trajectory/extract.ts +196 -0
- package/dist/src/lib/trajectory/format-detect.ts +96 -0
- package/dist/src/lib/trajectory/frame-reader.ts +456 -0
- package/dist/src/lib/trajectory/helpers.ts +217 -0
- package/dist/src/lib/trajectory/index.ts +218 -0
- package/dist/src/lib/trajectory/parse/ase.ts +109 -0
- package/dist/src/lib/trajectory/parse/hdf5.ts +173 -0
- package/dist/src/lib/trajectory/parse/index.ts +411 -0
- package/dist/src/lib/trajectory/parse/lammps.ts +215 -0
- package/dist/src/lib/trajectory/parse/vasp.ts +102 -0
- package/dist/src/lib/trajectory/parse/xyz.ts +143 -0
- package/dist/src/lib/trajectory/plotting.ts +599 -0
- package/dist/src/lib/trajectory/types.ts +13 -0
- package/dist/src/lib/utils.ts +56 -0
- package/dist/src/lib/xrd/XrdPlot.svelte +615 -0
- package/dist/src/lib/xrd/broadening.ts +130 -0
- package/dist/src/lib/xrd/calc-xrd.ts +397 -0
- package/dist/src/lib/xrd/index.ts +38 -0
- package/dist/src/lib/xrd/parse.ts +858 -0
- package/dist/webview.js +29421 -0
- package/icon.png +0 -0
- package/license +1 -1
- package/matterviz-0.3.2.vsix +0 -0
- package/matterviz-0.3.4.vsix +0 -0
- package/matterviz-0.3.5.vsix +0 -0
- package/package.json +1461 -231
- package/readme.md +171 -98
- package/scripts/sync-config.ts +101 -0
- package/src/declarations.d.ts +2 -0
- package/src/extension.ts +972 -0
- package/src/node-io.ts +65 -0
- package/src/types.ts +17 -0
- package/src/webview/JsonBrowser.svelte +1079 -0
- package/src/webview/PlotPanel.svelte +346 -0
- package/src/webview/detect.ts +444 -0
- package/src/webview/main.ts +764 -0
- package/src/webview/plot-utils.ts +250 -0
- package/test-fixtures/all-viz-types.json.gz +0 -0
- package/test-fixtures/plot-demo-data.json.gz +0 -0
- package/tests/detect.test.ts +604 -0
- package/tests/extension.test.ts +2041 -0
- package/tests/node-io.test.ts +39 -0
- package/tests/plot-utils.test.ts +302 -0
- package/tests/vite-plugin-json-gz.test.ts +114 -0
- package/tests/vscode-mock.ts +18 -0
- package/tests/webview.test.ts +231 -0
- package/tsconfig.json +20 -0
- package/vite-plugin-json-gz.ts +29 -0
- package/vite.config.ts +34 -0
- package/vite.extension.config.ts +34 -0
- package/dist/EmptyState.svelte.d.ts +0 -9
- package/dist/FilePicker.svelte +0 -360
- package/dist/FilePicker.svelte.d.ts +0 -17
- package/dist/Icon.svelte.d.ts +0 -13
- package/dist/MillerIndexInput.svelte +0 -66
- package/dist/MillerIndexInput.svelte.d.ts +0 -7
- package/dist/api/mp.d.ts +0 -6
- package/dist/api/mp.js +0 -22
- package/dist/api/optimade.d.ts +0 -45
- package/dist/api/optimade.js +0 -135
- package/dist/app.css +0 -240
- package/dist/brillouin/BrillouinZone.svelte +0 -543
- package/dist/brillouin/BrillouinZone.svelte.d.ts +0 -83
- package/dist/brillouin/BrillouinZoneControls.svelte +0 -144
- package/dist/brillouin/BrillouinZoneControls.svelte.d.ts +0 -17
- package/dist/brillouin/BrillouinZoneExportPane.svelte +0 -148
- package/dist/brillouin/BrillouinZoneExportPane.svelte.d.ts +0 -15
- package/dist/brillouin/BrillouinZoneInfoPane.svelte +0 -146
- package/dist/brillouin/BrillouinZoneInfoPane.svelte.d.ts +0 -13
- package/dist/brillouin/BrillouinZoneScene.svelte +0 -476
- package/dist/brillouin/BrillouinZoneScene.svelte.d.ts +0 -48
- package/dist/brillouin/BrillouinZoneTooltip.svelte +0 -92
- package/dist/brillouin/BrillouinZoneTooltip.svelte.d.ts +0 -8
- package/dist/brillouin/compute.d.ts +0 -17
- package/dist/brillouin/compute.js +0 -422
- package/dist/brillouin/index.d.ts +0 -8
- package/dist/brillouin/index.js +0 -8
- package/dist/brillouin/types.d.ts +0 -48
- package/dist/brillouin/types.js +0 -1
- package/dist/chempot-diagram/ChemPotDiagram.svelte +0 -327
- package/dist/chempot-diagram/ChemPotDiagram.svelte.d.ts +0 -13
- package/dist/chempot-diagram/ChemPotDiagram2D.svelte +0 -847
- package/dist/chempot-diagram/ChemPotDiagram2D.svelte.d.ts +0 -16
- package/dist/chempot-diagram/ChemPotDiagram3D.svelte +0 -3194
- package/dist/chempot-diagram/ChemPotDiagram3D.svelte.d.ts +0 -16
- package/dist/chempot-diagram/ChemPotScene3D.svelte.d.ts +0 -7
- package/dist/chempot-diagram/async-compute.svelte.d.ts +0 -3
- package/dist/chempot-diagram/async-compute.svelte.js +0 -77
- package/dist/chempot-diagram/chempot-worker.d.ts +0 -1
- package/dist/chempot-diagram/chempot-worker.js +0 -11
- package/dist/chempot-diagram/color.d.ts +0 -10
- package/dist/chempot-diagram/color.js +0 -32
- package/dist/chempot-diagram/compute.d.ts +0 -48
- package/dist/chempot-diagram/compute.js +0 -812
- package/dist/chempot-diagram/index.d.ts +0 -6
- package/dist/chempot-diagram/index.js +0 -6
- package/dist/chempot-diagram/pointer.d.ts +0 -16
- package/dist/chempot-diagram/pointer.js +0 -40
- package/dist/chempot-diagram/temperature.d.ts +0 -15
- package/dist/chempot-diagram/temperature.js +0 -36
- package/dist/chempot-diagram/types.d.ts +0 -86
- package/dist/chempot-diagram/types.js +0 -28
- package/dist/colors/index.d.ts +0 -47
- package/dist/colors/index.js +0 -203
- package/dist/composition/BarChart.svelte +0 -297
- package/dist/composition/BarChart.svelte.d.ts +0 -39
- package/dist/composition/BubbleChart.svelte +0 -218
- package/dist/composition/BubbleChart.svelte.d.ts +0 -28
- package/dist/composition/Composition.svelte +0 -164
- package/dist/composition/Composition.svelte.d.ts +0 -15
- package/dist/composition/Formula.svelte +0 -265
- package/dist/composition/Formula.svelte.d.ts +0 -19
- package/dist/composition/FormulaFilter.svelte +0 -1259
- package/dist/composition/FormulaFilter.svelte.d.ts +0 -51
- package/dist/composition/PieChart.svelte +0 -323
- package/dist/composition/PieChart.svelte.d.ts +0 -37
- package/dist/composition/format.d.ts +0 -15
- package/dist/composition/format.js +0 -109
- package/dist/composition/index.d.ts +0 -20
- package/dist/composition/index.js +0 -14
- package/dist/composition/parse.d.ts +0 -55
- package/dist/composition/parse.js +0 -459
- package/dist/constants.d.ts +0 -29
- package/dist/constants.js +0 -105
- package/dist/controls.d.ts +0 -14
- package/dist/controls.js +0 -30
- package/dist/convex-hull/ConvexHull.svelte +0 -157
- package/dist/convex-hull/ConvexHull.svelte.d.ts +0 -13
- package/dist/convex-hull/ConvexHull2D.svelte +0 -813
- package/dist/convex-hull/ConvexHull2D.svelte.d.ts +0 -11
- package/dist/convex-hull/ConvexHull3D.svelte +0 -1788
- package/dist/convex-hull/ConvexHull3D.svelte.d.ts +0 -8
- package/dist/convex-hull/ConvexHull4D.svelte +0 -1374
- package/dist/convex-hull/ConvexHull4D.svelte.d.ts +0 -8
- package/dist/convex-hull/ConvexHullControls.svelte +0 -546
- package/dist/convex-hull/ConvexHullControls.svelte.d.ts +0 -48
- package/dist/convex-hull/ConvexHullInfoPane.svelte +0 -115
- package/dist/convex-hull/ConvexHullInfoPane.svelte.d.ts +0 -18
- package/dist/convex-hull/ConvexHullStats.svelte +0 -905
- package/dist/convex-hull/ConvexHullStats.svelte.d.ts +0 -15
- package/dist/convex-hull/ConvexHullTooltip.svelte +0 -131
- package/dist/convex-hull/ConvexHullTooltip.svelte.d.ts +0 -33
- package/dist/convex-hull/GasPressureControls.svelte +0 -247
- package/dist/convex-hull/GasPressureControls.svelte.d.ts +0 -11
- package/dist/convex-hull/StructurePopup.svelte +0 -116
- package/dist/convex-hull/StructurePopup.svelte.d.ts +0 -18
- package/dist/convex-hull/TemperatureSlider.svelte +0 -137
- package/dist/convex-hull/TemperatureSlider.svelte.d.ts +0 -8
- package/dist/convex-hull/barycentric-coords.d.ts +0 -18
- package/dist/convex-hull/barycentric-coords.js +0 -182
- package/dist/convex-hull/demo-temperature.d.ts +0 -6
- package/dist/convex-hull/demo-temperature.js +0 -40
- package/dist/convex-hull/gas-thermodynamics.d.ts +0 -16
- package/dist/convex-hull/gas-thermodynamics.js +0 -316
- package/dist/convex-hull/helpers.d.ts +0 -103
- package/dist/convex-hull/helpers.js +0 -671
- package/dist/convex-hull/index.d.ts +0 -118
- package/dist/convex-hull/index.js +0 -57
- package/dist/convex-hull/thermodynamics.d.ts +0 -66
- package/dist/convex-hull/thermodynamics.js +0 -1752
- package/dist/convex-hull/types.d.ts +0 -162
- package/dist/convex-hull/types.js +0 -36
- package/dist/coordination/CoordinationBarPlot.svelte +0 -311
- package/dist/coordination/CoordinationBarPlot.svelte.d.ts +0 -30
- package/dist/coordination/calc-coordination.d.ts +0 -15
- package/dist/coordination/calc-coordination.js +0 -63
- package/dist/coordination/index.d.ts +0 -8
- package/dist/coordination/index.js +0 -7
- package/dist/element/BohrAtom.svelte +0 -149
- package/dist/element/BohrAtom.svelte.d.ts +0 -20
- package/dist/element/ElementHeading.svelte +0 -26
- package/dist/element/ElementHeading.svelte.d.ts +0 -8
- package/dist/element/ElementPhoto.svelte +0 -57
- package/dist/element/ElementPhoto.svelte.d.ts +0 -9
- package/dist/element/ElementStats.svelte +0 -80
- package/dist/element/ElementStats.svelte.d.ts +0 -8
- package/dist/element/ElementTile.svelte +0 -484
- package/dist/element/ElementTile.svelte.d.ts +0 -29
- package/dist/element/Nucleus.svelte.d.ts +0 -17
- package/dist/element/data.d.ts +0 -3
- package/dist/element/data.js +0 -2
- package/dist/element/data.json.gz.d.ts +0 -2
- package/dist/element/index.d.ts +0 -8
- package/dist/element/index.js +0 -8
- package/dist/element/types.d.ts +0 -57
- package/dist/element/types.js +0 -1
- package/dist/feedback/ClickFeedback.svelte +0 -58
- package/dist/feedback/ClickFeedback.svelte.d.ts +0 -12
- package/dist/feedback/DragOverlay.svelte +0 -42
- package/dist/feedback/DragOverlay.svelte.d.ts +0 -7
- package/dist/feedback/Spinner.svelte.d.ts +0 -7
- package/dist/feedback/StatusMessage.svelte.d.ts +0 -9
- package/dist/feedback/index.d.ts +0 -4
- package/dist/feedback/index.js +0 -4
- package/dist/fermi-surface/FermiSlice.svelte +0 -189
- package/dist/fermi-surface/FermiSlice.svelte.d.ts +0 -24
- package/dist/fermi-surface/FermiSurface.svelte +0 -597
- package/dist/fermi-surface/FermiSurface.svelte.d.ts +0 -83
- package/dist/fermi-surface/FermiSurfaceControls.svelte +0 -452
- package/dist/fermi-surface/FermiSurfaceControls.svelte.d.ts +0 -35
- package/dist/fermi-surface/FermiSurfaceScene.svelte +0 -792
- package/dist/fermi-surface/FermiSurfaceScene.svelte.d.ts +0 -50
- package/dist/fermi-surface/FermiSurfaceTooltip.svelte +0 -111
- package/dist/fermi-surface/FermiSurfaceTooltip.svelte.d.ts +0 -8
- package/dist/fermi-surface/compute.d.ts +0 -5
- package/dist/fermi-surface/compute.js +0 -538
- package/dist/fermi-surface/constants.d.ts +0 -9
- package/dist/fermi-surface/constants.js +0 -27
- package/dist/fermi-surface/export.d.ts +0 -5
- package/dist/fermi-surface/export.js +0 -63
- package/dist/fermi-surface/index.d.ts +0 -12
- package/dist/fermi-surface/index.js +0 -13
- package/dist/fermi-surface/marching-cubes.d.ts +0 -2
- package/dist/fermi-surface/marching-cubes.js +0 -2
- package/dist/fermi-surface/parse.d.ts +0 -2
- package/dist/fermi-surface/parse.js +0 -495
- package/dist/fermi-surface/symmetry.d.ts +0 -3
- package/dist/fermi-surface/symmetry.js +0 -46
- package/dist/fermi-surface/types.d.ts +0 -113
- package/dist/fermi-surface/types.js +0 -4
- package/dist/heatmap-matrix/HeatmapMatrix.svelte +0 -1527
- package/dist/heatmap-matrix/HeatmapMatrix.svelte.d.ts +0 -110
- package/dist/heatmap-matrix/HeatmapMatrixControls.svelte +0 -225
- package/dist/heatmap-matrix/HeatmapMatrixControls.svelte.d.ts +0 -30
- package/dist/heatmap-matrix/index.d.ts +0 -53
- package/dist/heatmap-matrix/index.js +0 -100
- package/dist/heatmap-matrix/shared.d.ts +0 -2
- package/dist/heatmap-matrix/shared.js +0 -4
- package/dist/icons.d.ts +0 -569
- package/dist/icons.js +0 -648
- package/dist/index.d.ts +0 -39
- package/dist/index.js +0 -39
- package/dist/io/decompress.d.ts +0 -10
- package/dist/io/decompress.js +0 -69
- package/dist/io/export.d.ts +0 -16
- package/dist/io/export.js +0 -312
- package/dist/io/fetch.d.ts +0 -5
- package/dist/io/fetch.js +0 -39
- package/dist/io/file-drop.d.ts +0 -7
- package/dist/io/file-drop.js +0 -43
- package/dist/io/index.d.ts +0 -7
- package/dist/io/index.js +0 -7
- package/dist/io/is-binary.d.ts +0 -1
- package/dist/io/is-binary.js +0 -5
- package/dist/io/types.d.ts +0 -8
- package/dist/io/types.js +0 -1
- package/dist/io/url-drop.d.ts +0 -2
- package/dist/io/url-drop.js +0 -117
- package/dist/isosurface/Isosurface.svelte +0 -285
- package/dist/isosurface/Isosurface.svelte.d.ts +0 -8
- package/dist/isosurface/IsosurfaceControls.svelte +0 -291
- package/dist/isosurface/IsosurfaceControls.svelte.d.ts +0 -9
- package/dist/isosurface/index.d.ts +0 -5
- package/dist/isosurface/index.js +0 -6
- package/dist/isosurface/parse.d.ts +0 -6
- package/dist/isosurface/parse.js +0 -553
- package/dist/isosurface/slice.d.ts +0 -11
- package/dist/isosurface/slice.js +0 -140
- package/dist/isosurface/types.d.ts +0 -56
- package/dist/isosurface/types.js +0 -227
- package/dist/labels.d.ts +0 -53
- package/dist/labels.js +0 -274
- package/dist/layout/FullscreenToggle.svelte +0 -50
- package/dist/layout/FullscreenToggle.svelte.d.ts +0 -7
- package/dist/layout/InfoCard.svelte +0 -120
- package/dist/layout/InfoCard.svelte.d.ts +0 -21
- package/dist/layout/InfoTag.svelte +0 -183
- package/dist/layout/InfoTag.svelte.d.ts +0 -19
- package/dist/layout/PropertyFilter.svelte +0 -244
- package/dist/layout/PropertyFilter.svelte.d.ts +0 -24
- package/dist/layout/SettingsSection.svelte +0 -148
- package/dist/layout/SettingsSection.svelte.d.ts +0 -17
- package/dist/layout/SubpageGrid.svelte +0 -82
- package/dist/layout/SubpageGrid.svelte.d.ts +0 -14
- package/dist/layout/fullscreen.d.ts +0 -9
- package/dist/layout/fullscreen.js +0 -53
- package/dist/layout/index.d.ts +0 -10
- package/dist/layout/index.js +0 -8
- package/dist/layout/json-tree/JsonNode.svelte +0 -547
- package/dist/layout/json-tree/JsonNode.svelte.d.ts +0 -11
- package/dist/layout/json-tree/JsonTree.svelte +0 -1222
- package/dist/layout/json-tree/JsonTree.svelte.d.ts +0 -6
- package/dist/layout/json-tree/JsonValue.svelte +0 -334
- package/dist/layout/json-tree/JsonValue.svelte.d.ts +0 -9
- package/dist/layout/json-tree/index.d.ts +0 -3
- package/dist/layout/json-tree/index.js +0 -3
- package/dist/layout/json-tree/types.d.ts +0 -73
- package/dist/layout/json-tree/types.js +0 -3
- package/dist/layout/json-tree/utils.d.ts +0 -29
- package/dist/layout/json-tree/utils.js +0 -648
- package/dist/marching-cubes.d.ts +0 -14
- package/dist/marching-cubes.js +0 -542
- package/dist/math.d.ts +0 -91
- package/dist/math.js +0 -896
- package/dist/overlays/ContextMenu.svelte +0 -162
- package/dist/overlays/ContextMenu.svelte.d.ts +0 -25
- package/dist/overlays/DraggablePane.svelte +0 -564
- package/dist/overlays/DraggablePane.svelte.d.ts +0 -36
- package/dist/overlays/index.d.ts +0 -2
- package/dist/overlays/index.js +0 -2
- package/dist/periodic-table/PeriodicTable.svelte +0 -469
- package/dist/periodic-table/PeriodicTable.svelte.d.ts +0 -55
- package/dist/periodic-table/PeriodicTableControls.svelte +0 -557
- package/dist/periodic-table/PeriodicTableControls.svelte.d.ts +0 -24
- package/dist/periodic-table/PropertySelect.svelte +0 -37
- package/dist/periodic-table/PropertySelect.svelte.d.ts +0 -13
- package/dist/periodic-table/TableInset.svelte.d.ts +0 -9
- package/dist/periodic-table/index.d.ts +0 -10
- package/dist/periodic-table/index.js +0 -4
- package/dist/phase-diagram/IsobaricBinaryPhaseDiagram.svelte +0 -1086
- package/dist/phase-diagram/IsobaricBinaryPhaseDiagram.svelte.d.ts +0 -44
- package/dist/phase-diagram/PhaseDiagramControls.svelte +0 -451
- package/dist/phase-diagram/PhaseDiagramControls.svelte.d.ts +0 -30
- package/dist/phase-diagram/PhaseDiagramEditorPane.svelte +0 -126
- package/dist/phase-diagram/PhaseDiagramEditorPane.svelte.d.ts +0 -15
- package/dist/phase-diagram/PhaseDiagramExportPane.svelte +0 -192
- package/dist/phase-diagram/PhaseDiagramExportPane.svelte.d.ts +0 -19
- package/dist/phase-diagram/PhaseDiagramTooltip.svelte +0 -392
- package/dist/phase-diagram/PhaseDiagramTooltip.svelte.d.ts +0 -16
- package/dist/phase-diagram/TdbInfoPanel.svelte +0 -203
- package/dist/phase-diagram/TdbInfoPanel.svelte.d.ts +0 -12
- package/dist/phase-diagram/build-diagram.d.ts +0 -11
- package/dist/phase-diagram/build-diagram.js +0 -167
- package/dist/phase-diagram/colors.d.ts +0 -35
- package/dist/phase-diagram/colors.js +0 -51
- package/dist/phase-diagram/diagram-input.d.ts +0 -33
- package/dist/phase-diagram/diagram-input.js +0 -3
- package/dist/phase-diagram/index.d.ts +0 -13
- package/dist/phase-diagram/index.js +0 -13
- package/dist/phase-diagram/parse.d.ts +0 -55
- package/dist/phase-diagram/parse.js +0 -276
- package/dist/phase-diagram/svg-to-diagram.d.ts +0 -2
- package/dist/phase-diagram/svg-to-diagram.js +0 -869
- package/dist/phase-diagram/types.d.ts +0 -99
- package/dist/phase-diagram/types.js +0 -1
- package/dist/phase-diagram/utils.d.ts +0 -118
- package/dist/phase-diagram/utils.js +0 -606
- package/dist/plot/AxisLabel.svelte +0 -51
- package/dist/plot/AxisLabel.svelte.d.ts +0 -16
- package/dist/plot/BarPlot.svelte +0 -2256
- package/dist/plot/BarPlot.svelte.d.ts +0 -82
- package/dist/plot/BarPlotControls.svelte +0 -66
- package/dist/plot/BarPlotControls.svelte.d.ts +0 -18
- package/dist/plot/ColorBar.svelte +0 -719
- package/dist/plot/ColorBar.svelte.d.ts +0 -31
- package/dist/plot/ColorScaleSelect.svelte +0 -54
- package/dist/plot/ColorScaleSelect.svelte.d.ts +0 -15
- package/dist/plot/ElementScatter.svelte +0 -63
- package/dist/plot/ElementScatter.svelte.d.ts +0 -14
- package/dist/plot/FillArea.svelte +0 -226
- package/dist/plot/FillArea.svelte.d.ts +0 -20
- package/dist/plot/Histogram.svelte +0 -1654
- package/dist/plot/Histogram.svelte.d.ts +0 -50
- package/dist/plot/HistogramControls.svelte +0 -212
- package/dist/plot/HistogramControls.svelte.d.ts +0 -22
- package/dist/plot/InteractiveAxisLabel.svelte +0 -94
- package/dist/plot/InteractiveAxisLabel.svelte.d.ts +0 -14
- package/dist/plot/Line.svelte +0 -85
- package/dist/plot/Line.svelte.d.ts +0 -15
- package/dist/plot/PlotControls.svelte +0 -537
- package/dist/plot/PlotControls.svelte.d.ts +0 -4
- package/dist/plot/PlotLegend.svelte +0 -498
- package/dist/plot/PlotLegend.svelte.d.ts +0 -25
- package/dist/plot/PlotTooltip.svelte +0 -67
- package/dist/plot/PlotTooltip.svelte.d.ts +0 -17
- package/dist/plot/PortalSelect.svelte +0 -253
- package/dist/plot/PortalSelect.svelte.d.ts +0 -16
- package/dist/plot/ReferenceLine.svelte.d.ts +0 -20
- package/dist/plot/ReferenceLine3D.svelte +0 -154
- package/dist/plot/ReferenceLine3D.svelte.d.ts +0 -14
- package/dist/plot/ReferencePlane.svelte +0 -178
- package/dist/plot/ReferencePlane.svelte.d.ts +0 -14
- package/dist/plot/ScatterPlot.svelte +0 -2831
- package/dist/plot/ScatterPlot.svelte.d.ts +0 -92
- package/dist/plot/ScatterPlot3D.svelte +0 -499
- package/dist/plot/ScatterPlot3D.svelte.d.ts +0 -94
- package/dist/plot/ScatterPlot3DControls.svelte +0 -437
- package/dist/plot/ScatterPlot3DControls.svelte.d.ts +0 -20
- package/dist/plot/ScatterPlot3DScene.svelte +0 -912
- package/dist/plot/ScatterPlot3DScene.svelte.d.ts +0 -74
- package/dist/plot/ScatterPlotControls.svelte +0 -307
- package/dist/plot/ScatterPlotControls.svelte.d.ts +0 -17
- package/dist/plot/ScatterPoint.svelte +0 -185
- package/dist/plot/ScatterPoint.svelte.d.ts +0 -19
- package/dist/plot/SpacegroupBarPlot.svelte +0 -292
- package/dist/plot/SpacegroupBarPlot.svelte.d.ts +0 -9
- package/dist/plot/Surface3D.svelte +0 -200
- package/dist/plot/Surface3D.svelte.d.ts +0 -13
- package/dist/plot/ZeroLines.svelte +0 -96
- package/dist/plot/ZeroLines.svelte.d.ts +0 -32
- package/dist/plot/ZoomRect.svelte +0 -23
- package/dist/plot/ZoomRect.svelte.d.ts +0 -8
- package/dist/plot/axis-utils.d.ts +0 -19
- package/dist/plot/axis-utils.js +0 -80
- package/dist/plot/data-cleaning.d.ts +0 -37
- package/dist/plot/data-cleaning.js +0 -855
- package/dist/plot/data-transform.d.ts +0 -16
- package/dist/plot/data-transform.js +0 -45
- package/dist/plot/defaults.d.ts +0 -19
- package/dist/plot/defaults.js +0 -9
- package/dist/plot/fill-utils.d.ts +0 -51
- package/dist/plot/fill-utils.js +0 -337
- package/dist/plot/hover-lock.svelte.d.ts +0 -14
- package/dist/plot/hover-lock.svelte.js +0 -46
- package/dist/plot/index.d.ts +0 -43
- package/dist/plot/index.js +0 -37
- package/dist/plot/interactions.d.ts +0 -12
- package/dist/plot/interactions.js +0 -100
- package/dist/plot/layout.d.ts +0 -60
- package/dist/plot/layout.js +0 -230
- package/dist/plot/reference-line.d.ts +0 -60
- package/dist/plot/reference-line.js +0 -316
- package/dist/plot/scales.d.ts +0 -48
- package/dist/plot/scales.js +0 -484
- package/dist/plot/svg.d.ts +0 -1
- package/dist/plot/svg.js +0 -11
- package/dist/plot/types.d.ts +0 -863
- package/dist/plot/types.js +0 -103
- package/dist/plot/utils/label-placement.d.ts +0 -47
- package/dist/plot/utils/label-placement.js +0 -256
- package/dist/plot/utils/series-visibility.d.ts +0 -9
- package/dist/plot/utils/series-visibility.js +0 -67
- package/dist/plot/utils.d.ts +0 -1
- package/dist/plot/utils.js +0 -14
- package/dist/rdf/RdfPlot.svelte +0 -247
- package/dist/rdf/RdfPlot.svelte.d.ts +0 -27
- package/dist/rdf/calc-rdf.d.ts +0 -4
- package/dist/rdf/calc-rdf.js +0 -111
- package/dist/rdf/index.d.ts +0 -23
- package/dist/rdf/index.js +0 -2
- package/dist/sanitize.d.ts +0 -4
- package/dist/sanitize.js +0 -107
- package/dist/settings.d.ts +0 -253
- package/dist/settings.js +0 -1123
- package/dist/spectral/Bands.svelte +0 -1040
- package/dist/spectral/Bands.svelte.d.ts +0 -40
- package/dist/spectral/BandsAndDos.svelte +0 -128
- package/dist/spectral/BandsAndDos.svelte.d.ts +0 -18
- package/dist/spectral/BrillouinBandsDos.svelte +0 -248
- package/dist/spectral/BrillouinBandsDos.svelte.d.ts +0 -20
- package/dist/spectral/Dos.svelte +0 -697
- package/dist/spectral/Dos.svelte.d.ts +0 -29
- package/dist/spectral/helpers.d.ts +0 -117
- package/dist/spectral/helpers.js +0 -1023
- package/dist/spectral/index.d.ts +0 -6
- package/dist/spectral/index.js +0 -7
- package/dist/spectral/types.d.ts +0 -84
- package/dist/spectral/types.js +0 -2
- package/dist/state.svelte.d.ts +0 -25
- package/dist/state.svelte.js +0 -45
- package/dist/structure/Arrow.svelte +0 -72
- package/dist/structure/Arrow.svelte.d.ts +0 -15
- package/dist/structure/AtomLegend.svelte +0 -798
- package/dist/structure/AtomLegend.svelte.d.ts +0 -34
- package/dist/structure/Bond.svelte +0 -140
- package/dist/structure/Bond.svelte.d.ts +0 -9
- package/dist/structure/CanvasTooltip.svelte +0 -33
- package/dist/structure/CanvasTooltip.svelte.d.ts +0 -12
- package/dist/structure/CellSelect.svelte +0 -351
- package/dist/structure/CellSelect.svelte.d.ts +0 -13
- package/dist/structure/Cylinder.svelte +0 -45
- package/dist/structure/Cylinder.svelte.d.ts +0 -10
- package/dist/structure/Lattice.svelte +0 -196
- package/dist/structure/Lattice.svelte.d.ts +0 -17
- package/dist/structure/Structure.svelte +0 -1857
- package/dist/structure/Structure.svelte.d.ts +0 -83
- package/dist/structure/StructureControls.svelte +0 -1184
- package/dist/structure/StructureControls.svelte.d.ts +0 -31
- package/dist/structure/StructureExportPane.svelte +0 -251
- package/dist/structure/StructureExportPane.svelte.d.ts +0 -17
- package/dist/structure/StructureInfoPane.svelte +0 -434
- package/dist/structure/StructureInfoPane.svelte.d.ts +0 -18
- package/dist/structure/StructureScene.svelte +0 -1574
- package/dist/structure/StructureScene.svelte.d.ts +0 -104
- package/dist/structure/atom-properties.d.ts +0 -37
- package/dist/structure/atom-properties.js +0 -198
- package/dist/structure/bonding.d.ts +0 -33
- package/dist/structure/bonding.js +0 -304
- package/dist/structure/export.d.ts +0 -20
- package/dist/structure/export.js +0 -725
- package/dist/structure/ferrox-wasm-types.d.ts +0 -46
- package/dist/structure/ferrox-wasm-types.js +0 -18
- package/dist/structure/ferrox-wasm.d.ts +0 -94
- package/dist/structure/ferrox-wasm.js +0 -249
- package/dist/structure/index.d.ts +0 -110
- package/dist/structure/index.js +0 -168
- package/dist/structure/measure.d.ts +0 -6
- package/dist/structure/measure.js +0 -29
- package/dist/structure/parse.d.ts +0 -65
- package/dist/structure/parse.js +0 -1374
- package/dist/structure/partial-occupancy.d.ts +0 -25
- package/dist/structure/partial-occupancy.js +0 -99
- package/dist/structure/pbc.d.ts +0 -9
- package/dist/structure/pbc.js +0 -123
- package/dist/structure/supercell.d.ts +0 -8
- package/dist/structure/supercell.js +0 -137
- package/dist/structure/validation.d.ts +0 -2
- package/dist/structure/validation.js +0 -10
- package/dist/symmetry/SymmetryStats.svelte +0 -226
- package/dist/symmetry/SymmetryStats.svelte.d.ts +0 -21
- package/dist/symmetry/WyckoffTable.svelte +0 -113
- package/dist/symmetry/WyckoffTable.svelte.d.ts +0 -11
- package/dist/symmetry/cell-transform.d.ts +0 -12
- package/dist/symmetry/cell-transform.js +0 -77
- package/dist/symmetry/index.d.ts +0 -43
- package/dist/symmetry/index.js +0 -229
- package/dist/symmetry/spacegroups.d.ts +0 -9
- package/dist/symmetry/spacegroups.js +0 -394
- package/dist/table/HeatmapTable.svelte +0 -1854
- package/dist/table/HeatmapTable.svelte.d.ts +0 -49
- package/dist/table/ToggleMenu.svelte +0 -376
- package/dist/table/ToggleMenu.svelte.d.ts +0 -11
- package/dist/table/index.d.ts +0 -74
- package/dist/table/index.js +0 -38
- package/dist/theme/ThemeControl.svelte +0 -53
- package/dist/theme/ThemeControl.svelte.d.ts +0 -9
- package/dist/theme/index.d.ts +0 -29
- package/dist/theme/index.js +0 -79
- package/dist/theme/themes.mjs +0 -285
- package/dist/time.d.ts +0 -4
- package/dist/time.js +0 -70
- package/dist/tooltip/TooltipContent.svelte +0 -58
- package/dist/tooltip/TooltipContent.svelte.d.ts +0 -31
- package/dist/tooltip/index.d.ts +0 -2
- package/dist/tooltip/index.js +0 -2
- package/dist/tooltip/types.d.ts +0 -8
- package/dist/tooltip/types.js +0 -1
- package/dist/trajectory/Trajectory.svelte +0 -1517
- package/dist/trajectory/Trajectory.svelte.d.ts +0 -77
- package/dist/trajectory/TrajectoryError.svelte +0 -128
- package/dist/trajectory/TrajectoryError.svelte.d.ts +0 -13
- package/dist/trajectory/TrajectoryExportPane.svelte +0 -357
- package/dist/trajectory/TrajectoryExportPane.svelte.d.ts +0 -17
- package/dist/trajectory/TrajectoryInfoPane.svelte +0 -387
- package/dist/trajectory/TrajectoryInfoPane.svelte.d.ts +0 -17
- package/dist/trajectory/constants.d.ts +0 -6
- package/dist/trajectory/constants.js +0 -7
- package/dist/trajectory/extract.d.ts +0 -5
- package/dist/trajectory/extract.js +0 -162
- package/dist/trajectory/format-detect.d.ts +0 -9
- package/dist/trajectory/format-detect.js +0 -76
- package/dist/trajectory/frame-reader.d.ts +0 -17
- package/dist/trajectory/frame-reader.js +0 -332
- package/dist/trajectory/helpers.d.ts +0 -14
- package/dist/trajectory/helpers.js +0 -172
- package/dist/trajectory/index.d.ts +0 -63
- package/dist/trajectory/index.js +0 -126
- package/dist/trajectory/parse/ase.d.ts +0 -2
- package/dist/trajectory/parse/ase.js +0 -77
- package/dist/trajectory/parse/hdf5.d.ts +0 -2
- package/dist/trajectory/parse/hdf5.js +0 -129
- package/dist/trajectory/parse/index.d.ts +0 -12
- package/dist/trajectory/parse/index.js +0 -299
- package/dist/trajectory/parse/lammps.d.ts +0 -5
- package/dist/trajectory/parse/lammps.js +0 -179
- package/dist/trajectory/parse/vasp.d.ts +0 -2
- package/dist/trajectory/parse/vasp.js +0 -68
- package/dist/trajectory/parse/xyz.d.ts +0 -2
- package/dist/trajectory/parse/xyz.js +0 -110
- package/dist/trajectory/plotting.d.ts +0 -28
- package/dist/trajectory/plotting.js +0 -423
- package/dist/trajectory/types.d.ts +0 -11
- package/dist/trajectory/types.js +0 -1
- package/dist/utils.d.ts +0 -5
- package/dist/utils.js +0 -36
- package/dist/xrd/XrdPlot.svelte +0 -615
- package/dist/xrd/XrdPlot.svelte.d.ts +0 -28
- package/dist/xrd/broadening.d.ts +0 -20
- package/dist/xrd/broadening.js +0 -97
- package/dist/xrd/calc-xrd.d.ts +0 -37
- package/dist/xrd/calc-xrd.js +0 -337
- package/dist/xrd/index.d.ts +0 -37
- package/dist/xrd/index.js +0 -4
- package/dist/xrd/parse.d.ts +0 -13
- package/dist/xrd/parse.js +0 -749
- /package/dist/{EmptyState.svelte → src/lib/EmptyState.svelte} +0 -0
- /package/dist/{Icon.svelte → src/lib/Icon.svelte} +0 -0
- /package/dist/{chempot-diagram → src/lib/chempot-diagram}/ChemPotScene3D.svelte +0 -0
- /package/dist/{colors → src/lib/colors}/alloy-colors.json +0 -0
- /package/dist/{colors → src/lib/colors}/dark-mode-colors.json +0 -0
- /package/dist/{colors → src/lib/colors}/jmol-colors.json +0 -0
- /package/dist/{colors → src/lib/colors}/muted-colors.json +0 -0
- /package/dist/{colors → src/lib/colors}/pastel-colors.json +0 -0
- /package/dist/{colors → src/lib/colors}/vesta-colors.json +0 -0
- /package/dist/{element → src/lib/element}/Nucleus.svelte +0 -0
- /package/dist/{element → src/lib/element}/data.json +0 -0
- /package/dist/{element → src/lib/element}/data.json.gz +0 -0
- /package/dist/{element → src/lib/element}/data.schema.json +0 -0
- /package/dist/{element-image-urls.json → src/lib/element-image-urls.json} +0 -0
- /package/dist/{feedback → src/lib/feedback}/Spinner.svelte +0 -0
- /package/dist/{feedback → src/lib/feedback}/StatusMessage.svelte +0 -0
- /package/dist/{periodic-table → src/lib/periodic-table}/TableInset.svelte +0 -0
- /package/dist/{plot → src/lib/plot}/ReferenceLine.svelte +0 -0
- /package/dist/{xrd → src/lib/xrd}/atomic_scattering_params.json +0 -0
package/package.json
CHANGED
|
@@ -1,243 +1,1473 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterviz",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
3
|
+
"displayName": "MatterViz",
|
|
4
|
+
"version": "0.3.6",
|
|
5
|
+
"description": "Visualize crystal structures and MD trajectories in VSCode",
|
|
6
|
+
"categories": [
|
|
7
|
+
"Data Science",
|
|
8
|
+
"Education",
|
|
9
|
+
"Machine Learning",
|
|
10
|
+
"Notebooks",
|
|
11
|
+
"Visualization"
|
|
12
12
|
],
|
|
13
|
-
"homepage": "https://janosh.github.io/matterviz",
|
|
14
|
-
"bugs": "https://github.com/janosh/matterviz/issues",
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"author": "Janosh Riebesell <janosh.riebesell@gmail.com>",
|
|
17
13
|
"repository": "https://github.com/janosh/matterviz",
|
|
18
|
-
"
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
14
|
+
"publisher": "janosh",
|
|
21
15
|
"type": "module",
|
|
22
|
-
"
|
|
23
|
-
"svelte": "./dist/index.js",
|
|
24
|
-
"exports": {
|
|
25
|
-
".": {
|
|
26
|
-
"types": "./dist/index.d.ts",
|
|
27
|
-
"svelte": "./dist/index.js",
|
|
28
|
-
"default": "./dist/index.js"
|
|
29
|
-
},
|
|
30
|
-
"./element/data": {
|
|
31
|
-
"types": "./dist/element/data.d.ts",
|
|
32
|
-
"default": "./dist/element/data.js"
|
|
33
|
-
},
|
|
34
|
-
"./app.css": {
|
|
35
|
-
"types": "./dist/app.css.d.ts",
|
|
36
|
-
"default": "./dist/app.css"
|
|
37
|
-
},
|
|
38
|
-
"./brillouin": {
|
|
39
|
-
"types": "./dist/brillouin/index.d.ts",
|
|
40
|
-
"default": "./dist/brillouin/index.js"
|
|
41
|
-
},
|
|
42
|
-
"./composition": {
|
|
43
|
-
"types": "./dist/composition/index.d.ts",
|
|
44
|
-
"default": "./dist/composition/index.js"
|
|
45
|
-
},
|
|
46
|
-
"./chempot-diagram": {
|
|
47
|
-
"types": "./dist/chempot-diagram/index.d.ts",
|
|
48
|
-
"default": "./dist/chempot-diagram/index.js"
|
|
49
|
-
},
|
|
50
|
-
"./colors": {
|
|
51
|
-
"types": "./dist/colors/index.d.ts",
|
|
52
|
-
"default": "./dist/colors/index.js"
|
|
53
|
-
},
|
|
54
|
-
"./element": {
|
|
55
|
-
"types": "./dist/element/index.d.ts",
|
|
56
|
-
"default": "./dist/element/index.js"
|
|
57
|
-
},
|
|
58
|
-
"./feedback": {
|
|
59
|
-
"types": "./dist/feedback/index.d.ts",
|
|
60
|
-
"default": "./dist/feedback/index.js"
|
|
61
|
-
},
|
|
62
|
-
"./fermi-surface": {
|
|
63
|
-
"types": "./dist/fermi-surface/index.d.ts",
|
|
64
|
-
"default": "./dist/fermi-surface/index.js"
|
|
65
|
-
},
|
|
66
|
-
"./io": {
|
|
67
|
-
"types": "./dist/io/index.d.ts",
|
|
68
|
-
"default": "./dist/io/index.js"
|
|
69
|
-
},
|
|
70
|
-
"./labels": {
|
|
71
|
-
"types": "./dist/labels.d.ts",
|
|
72
|
-
"default": "./dist/labels.js"
|
|
73
|
-
},
|
|
74
|
-
"./layout": {
|
|
75
|
-
"types": "./dist/layout/index.d.ts",
|
|
76
|
-
"default": "./dist/layout/index.js"
|
|
77
|
-
},
|
|
78
|
-
"./math": {
|
|
79
|
-
"types": "./dist/math.d.ts",
|
|
80
|
-
"default": "./dist/math.js"
|
|
81
|
-
},
|
|
82
|
-
"./overlays": {
|
|
83
|
-
"types": "./dist/overlays/index.d.ts",
|
|
84
|
-
"default": "./dist/overlays/index.js"
|
|
85
|
-
},
|
|
86
|
-
"./periodic-table": {
|
|
87
|
-
"types": "./dist/periodic-table.d.ts",
|
|
88
|
-
"default": "./dist/periodic-table.js"
|
|
89
|
-
},
|
|
90
|
-
"./phase-diagram": {
|
|
91
|
-
"types": "./dist/phase-diagram/index.d.ts",
|
|
92
|
-
"default": "./dist/phase-diagram/index.js"
|
|
93
|
-
},
|
|
94
|
-
"./convex-hull": {
|
|
95
|
-
"types": "./dist/convex-hull/index.d.ts",
|
|
96
|
-
"default": "./dist/convex-hull/index.js"
|
|
97
|
-
},
|
|
98
|
-
"./plot": {
|
|
99
|
-
"types": "./dist/plot/index.d.ts",
|
|
100
|
-
"default": "./dist/plot/index.js"
|
|
101
|
-
},
|
|
102
|
-
"./rdf": {
|
|
103
|
-
"types": "./dist/rdf/index.d.ts",
|
|
104
|
-
"default": "./dist/rdf/index.js"
|
|
105
|
-
},
|
|
106
|
-
"./spectral": {
|
|
107
|
-
"types": "./dist/spectral/index.d.ts",
|
|
108
|
-
"default": "./dist/spectral/index.js"
|
|
109
|
-
},
|
|
110
|
-
"./structure": {
|
|
111
|
-
"types": "./dist/structure/index.d.ts",
|
|
112
|
-
"default": "./dist/structure/index.js"
|
|
113
|
-
},
|
|
114
|
-
"./structure/ferrox-wasm": {
|
|
115
|
-
"types": "./dist/structure/ferrox-wasm.d.ts",
|
|
116
|
-
"default": "./dist/structure/ferrox-wasm.js"
|
|
117
|
-
},
|
|
118
|
-
"./structure/parse": {
|
|
119
|
-
"types": "./dist/structure/parse.d.ts",
|
|
120
|
-
"default": "./dist/structure/parse.js"
|
|
121
|
-
},
|
|
122
|
-
"./symmetry": {
|
|
123
|
-
"types": "./dist/symmetry/index.d.ts",
|
|
124
|
-
"default": "./dist/symmetry/index.js"
|
|
125
|
-
},
|
|
126
|
-
"./table": {
|
|
127
|
-
"types": "./dist/table/index.d.ts",
|
|
128
|
-
"default": "./dist/table/index.js"
|
|
129
|
-
},
|
|
130
|
-
"./theme": {
|
|
131
|
-
"types": "./dist/theme/index.d.ts",
|
|
132
|
-
"default": "./dist/theme/index.js"
|
|
133
|
-
},
|
|
134
|
-
"./theme/themes": {
|
|
135
|
-
"types": "./dist/theme/themes.d.ts",
|
|
136
|
-
"default": "./dist/theme/themes.mjs"
|
|
137
|
-
},
|
|
138
|
-
"./tooltip": {
|
|
139
|
-
"types": "./dist/tooltip/index.d.ts",
|
|
140
|
-
"default": "./dist/tooltip/index.js"
|
|
141
|
-
},
|
|
142
|
-
"./time": {
|
|
143
|
-
"types": "./dist/time.d.ts",
|
|
144
|
-
"default": "./dist/time.js"
|
|
145
|
-
},
|
|
146
|
-
"./trajectory": {
|
|
147
|
-
"types": "./dist/trajectory/index.d.ts",
|
|
148
|
-
"default": "./dist/trajectory/index.js"
|
|
149
|
-
},
|
|
150
|
-
"./utils": {
|
|
151
|
-
"types": "./dist/utils.d.ts",
|
|
152
|
-
"default": "./dist/utils.js"
|
|
153
|
-
},
|
|
154
|
-
"./xrd": {
|
|
155
|
-
"types": "./dist/xrd/index.d.ts",
|
|
156
|
-
"default": "./dist/xrd/index.js"
|
|
157
|
-
},
|
|
158
|
-
"./xrd/atomic_scattering_params.json": "./dist/xrd/atomic_scattering_params.json"
|
|
159
|
-
},
|
|
160
|
-
"publishConfig": {
|
|
161
|
-
"access": "public"
|
|
162
|
-
},
|
|
16
|
+
"main": "./dist/extension.js",
|
|
163
17
|
"scripts": {
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"lint": "vp lint",
|
|
170
|
-
"fmt": "vp fmt --write",
|
|
171
|
-
"package-dist-assets": "NODE_OPTIONS=--experimental-strip-types node scripts/package-dist-assets.ts",
|
|
172
|
-
"package:dist": "svelte-package && npm run package-dist-assets",
|
|
173
|
-
"package": "npm run package:dist",
|
|
174
|
-
"prepare": "NODE_OPTIONS=--experimental-strip-types svelte-kit sync && npm run package:dist",
|
|
175
|
-
"prepublishOnly": "npm run package:dist"
|
|
176
|
-
},
|
|
177
|
-
"dependencies": {
|
|
178
|
-
"@spglib/moyo-wasm": "^0.7.9",
|
|
179
|
-
"@sveltejs/kit": "2.58.0",
|
|
180
|
-
"@threlte/core": "^8.5.10",
|
|
181
|
-
"@threlte/extras": "^9.15.0",
|
|
182
|
-
"@types/d3-hierarchy": "^3.1.7",
|
|
183
|
-
"@types/js-yaml": "^4.0.9",
|
|
184
|
-
"d3": "^7.9.0",
|
|
185
|
-
"d3-array": "^3.2.4",
|
|
186
|
-
"d3-color": "^3.1.0",
|
|
187
|
-
"d3-format": "^3.1.2",
|
|
188
|
-
"d3-hierarchy": "^3.1.2",
|
|
189
|
-
"d3-interpolate-path": "^2.3.0",
|
|
190
|
-
"d3-scale": "^4.0.2",
|
|
191
|
-
"d3-scale-chromatic": "^3.1.0",
|
|
192
|
-
"d3-shape": "^3.2.0",
|
|
193
|
-
"dompurify": "^3.4.1",
|
|
194
|
-
"fflate": "^0.8.2",
|
|
195
|
-
"h5wasm": "^0.10.1",
|
|
196
|
-
"js-yaml": "^4.1.1",
|
|
197
|
-
"svelte-multiselect": "^11.7.0",
|
|
198
|
-
"three": "^0.184.0"
|
|
18
|
+
"sync-config": "npx tsx scripts/sync-config.ts",
|
|
19
|
+
"prebuild": "npm run sync-config",
|
|
20
|
+
"build": "rm -rf dist && vite build --config vite.extension.config.ts && mkdir -p dist/src && cp -r ../../src/lib dist/src/lib/ && vite build",
|
|
21
|
+
"package": "npm run build && vsce package --no-dependencies",
|
|
22
|
+
"test": "vitest"
|
|
199
23
|
},
|
|
200
24
|
"devDependencies": {
|
|
201
|
-
"@
|
|
202
|
-
"@
|
|
203
|
-
"@
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"@types/d3-format": "^3.0.4",
|
|
209
|
-
"@types/d3-interpolate-path": "^2.0.3",
|
|
210
|
-
"@types/d3-scale": "^4.0.9",
|
|
211
|
-
"@types/d3-scale-chromatic": "^3.1.0",
|
|
212
|
-
"@types/d3-shape": "^3.1.8",
|
|
213
|
-
"@types/d3-time-format": "^4.0.3",
|
|
214
|
-
"@types/node": "^25.6.0",
|
|
215
|
-
"@types/three": "^0.184.0",
|
|
216
|
-
"@typescript/native-preview": "7.0.0-dev.20260429.1",
|
|
217
|
-
"@vitest/coverage-v8": "4.1.5",
|
|
218
|
-
"@wooorm/starry-night": "^3.9.0",
|
|
219
|
-
"d3-time-format": "^4.1.0",
|
|
220
|
-
"happy-dom": "^20.9.0",
|
|
221
|
-
"matterviz-wasm": "^0.0.10",
|
|
222
|
-
"mdsvex": "^0.12.7",
|
|
223
|
-
"rehype-katex": "^7.0.1",
|
|
224
|
-
"remark-math": "3.0.1",
|
|
225
|
-
"svelte": "5.55.5",
|
|
226
|
-
"svelte-check-rs": "0.9.7",
|
|
227
|
-
"typescript": "6.0.3",
|
|
228
|
-
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.20",
|
|
229
|
-
"vite-plus": "latest",
|
|
230
|
-
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.20"
|
|
25
|
+
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
|
26
|
+
"@types/node": "^25.9.1",
|
|
27
|
+
"@types/vscode": "1.120.0",
|
|
28
|
+
"svelte": "^5.56.0",
|
|
29
|
+
"typescript": "^6.0.3",
|
|
30
|
+
"vite": "^8.0.14",
|
|
31
|
+
"vitest": "^4.1.7"
|
|
231
32
|
},
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
33
|
+
"contributes": {
|
|
34
|
+
"commands": [
|
|
35
|
+
{
|
|
36
|
+
"command": "matterviz.open",
|
|
37
|
+
"title": "Open",
|
|
38
|
+
"category": "MatterViz"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"command": "matterviz.report_bug",
|
|
42
|
+
"title": "Report Bug",
|
|
43
|
+
"category": "MatterViz"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"keybindings": [
|
|
47
|
+
{
|
|
48
|
+
"command": "matterviz.open",
|
|
49
|
+
"key": "ctrl+shift+v",
|
|
50
|
+
"mac": "cmd+shift+v",
|
|
51
|
+
"when": "matterviz.supported_resource && editorLangId != 'markdown'"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"menus": {
|
|
55
|
+
"explorer/context": [
|
|
56
|
+
{
|
|
57
|
+
"command": "matterviz.open",
|
|
58
|
+
"when": "matterviz.supported_resource"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"customEditors": [
|
|
63
|
+
{
|
|
64
|
+
"viewType": "matterviz.viewer",
|
|
65
|
+
"displayName": "MatterViz Viewer",
|
|
66
|
+
"selector": [
|
|
67
|
+
{
|
|
68
|
+
"filenamePattern": "*.{traj,h5,hdf5,dcd,xtc,trr,lammpstrj}"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"filenamePattern": "*.{cif,mcif,mmcif,xyz,extxyz,poscar,vasp,cube,pdb,mol,mol2,sdf,lmp,data,dump}"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"filenamePattern": "*.{cif,mcif,mmcif,xyz,extxyz,poscar,vasp,cube,pdb,mol,mol2,sdf,lmp,data,dump}.gz"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"filenamePattern": "*{structure,material,crystal,lattice,geometry}.{json,yaml,yml}.gz"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"filenamePattern": "*{poscar,xdatcar,contcar,outcar}"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"filenamePattern": "*{trajectory,traj,relax,npt,nvt,nve,qha,md,dynamics,simulation}*"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"filenamePattern": "*.{bxsf,frmsf}"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"filenamePattern": "*.{bxsf,frmsf}.gz"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"filenamePattern": "*.cube.gz"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"filenamePattern": "{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"filenamePattern": "{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}.gz"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"filenamePattern": "{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}[._-]*"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"filenamePattern": "{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}[._-]*.gz"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"filenamePattern": "*[._-]{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"filenamePattern": "*[._-]{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}.gz"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"filenamePattern": "*[._-]{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}[._-]*"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"filenamePattern": "*[._-]{AECCAR,AECCAR0,AECCAR1,AECCAR2,CHGCAR,ELFCAR,LOCPOT,PARCHG}[._-]*.gz"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"priority": "option"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"configuration": {
|
|
123
|
+
"title": "MatterViz",
|
|
124
|
+
"properties": {
|
|
125
|
+
"matterviz.theme": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"enum": [
|
|
128
|
+
"auto",
|
|
129
|
+
"light",
|
|
130
|
+
"dark",
|
|
131
|
+
"white",
|
|
132
|
+
"black"
|
|
133
|
+
],
|
|
134
|
+
"default": "auto",
|
|
135
|
+
"description": "Theme for MatterViz visualizations. 'auto' follows VSCode's theme."
|
|
136
|
+
},
|
|
137
|
+
"matterviz.auto_render": {
|
|
138
|
+
"type": "boolean",
|
|
139
|
+
"default": false,
|
|
140
|
+
"description": "Automatically render supported file types (structures and trajectories) when opening them. If rendering fails, falls back to regular editor."
|
|
141
|
+
},
|
|
142
|
+
"matterviz.open_beside": {
|
|
143
|
+
"type": "boolean",
|
|
144
|
+
"default": false,
|
|
145
|
+
"description": "Open MatterViz viewer beside the current editor instead of replacing it. When false (default), the viewer replaces the active tab."
|
|
146
|
+
},
|
|
147
|
+
"matterviz.color_scheme": {
|
|
148
|
+
"type": "string",
|
|
149
|
+
"default": "Vesta",
|
|
150
|
+
"description": "Color scheme for atoms and bonds",
|
|
151
|
+
"enum": [
|
|
152
|
+
"Vesta",
|
|
153
|
+
"Jmol",
|
|
154
|
+
"Alloy",
|
|
155
|
+
"Pastel",
|
|
156
|
+
"Muted",
|
|
157
|
+
"Dark Mode"
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
"matterviz.background_color": {
|
|
161
|
+
"type": "string",
|
|
162
|
+
"default": "#000000",
|
|
163
|
+
"description": "Background color of the 3D viewport"
|
|
164
|
+
},
|
|
165
|
+
"matterviz.background_opacity": {
|
|
166
|
+
"type": "number",
|
|
167
|
+
"default": 0,
|
|
168
|
+
"description": "Opacity of the background (0.0 = transparent, 1.0 = opaque)",
|
|
169
|
+
"minimum": 0,
|
|
170
|
+
"maximum": 1
|
|
171
|
+
},
|
|
172
|
+
"matterviz.symmetry.symprec": {
|
|
173
|
+
"type": "number",
|
|
174
|
+
"default": 0.0001,
|
|
175
|
+
"description": "Symmetry precision tolerance for spacegroup detection",
|
|
176
|
+
"minimum": 1e-8,
|
|
177
|
+
"maximum": 1
|
|
178
|
+
},
|
|
179
|
+
"matterviz.symmetry.algo": {
|
|
180
|
+
"type": "string",
|
|
181
|
+
"default": "Moyo",
|
|
182
|
+
"description": "Algorithm for symmetry analysis",
|
|
183
|
+
"enum": [
|
|
184
|
+
"Moyo",
|
|
185
|
+
"Spglib"
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
"matterviz.structure.atom_radius": {
|
|
189
|
+
"type": "number",
|
|
190
|
+
"default": 0.7,
|
|
191
|
+
"description": "Radius multiplier for atoms (0.7 = standard atomic radii)",
|
|
192
|
+
"minimum": 0.1,
|
|
193
|
+
"maximum": 3
|
|
194
|
+
},
|
|
195
|
+
"matterviz.structure.same_size_atoms": {
|
|
196
|
+
"type": "boolean",
|
|
197
|
+
"default": false,
|
|
198
|
+
"description": "Render all atoms with the same size regardless of element"
|
|
199
|
+
},
|
|
200
|
+
"matterviz.structure.show_atoms": {
|
|
201
|
+
"type": "boolean",
|
|
202
|
+
"default": true,
|
|
203
|
+
"description": "Display atoms in the structure"
|
|
204
|
+
},
|
|
205
|
+
"matterviz.structure.show_image_atoms": {
|
|
206
|
+
"type": "boolean",
|
|
207
|
+
"default": true,
|
|
208
|
+
"description": "Show atoms on the edge of the cell that are not part of the primitive basis"
|
|
209
|
+
},
|
|
210
|
+
"matterviz.structure.sphere_segments": {
|
|
211
|
+
"type": "number",
|
|
212
|
+
"default": 20,
|
|
213
|
+
"description": "Number of segments for sphere rendering (higher = smoother)",
|
|
214
|
+
"minimum": 8,
|
|
215
|
+
"maximum": 64
|
|
216
|
+
},
|
|
217
|
+
"matterviz.structure.bond_thickness": {
|
|
218
|
+
"type": "number",
|
|
219
|
+
"default": 0.07,
|
|
220
|
+
"description": "Thickness of bonds relative to atom radius",
|
|
221
|
+
"minimum": 0.01,
|
|
222
|
+
"maximum": 1
|
|
223
|
+
},
|
|
224
|
+
"matterviz.structure.auto_bond_order": {
|
|
225
|
+
"type": "boolean",
|
|
226
|
+
"default": false,
|
|
227
|
+
"description": "Automatically perceive double/triple/aromatic bonds from geometry (main-group/organic; metals fall back to single)"
|
|
228
|
+
},
|
|
229
|
+
"matterviz.structure.aromatic_display": {
|
|
230
|
+
"type": "string",
|
|
231
|
+
"default": "aromatic",
|
|
232
|
+
"description": "How to render perceived aromatic rings",
|
|
233
|
+
"enum": [
|
|
234
|
+
"aromatic",
|
|
235
|
+
"kekule"
|
|
236
|
+
]
|
|
237
|
+
},
|
|
238
|
+
"matterviz.structure.show_bonds": {
|
|
239
|
+
"type": "string",
|
|
240
|
+
"default": "always",
|
|
241
|
+
"description": "When to display bonds between atoms",
|
|
242
|
+
"enum": [
|
|
243
|
+
"never",
|
|
244
|
+
"always",
|
|
245
|
+
"crystals",
|
|
246
|
+
"molecules"
|
|
247
|
+
]
|
|
248
|
+
},
|
|
249
|
+
"matterviz.structure.bond_color": {
|
|
250
|
+
"type": "string",
|
|
251
|
+
"default": "#666666",
|
|
252
|
+
"description": "Color for bonds (hex color code)"
|
|
253
|
+
},
|
|
254
|
+
"matterviz.structure.bonding_strategy": {
|
|
255
|
+
"type": "string",
|
|
256
|
+
"default": "electroneg_ratio",
|
|
257
|
+
"description": "Method for determining bonds between atoms",
|
|
258
|
+
"enum": [
|
|
259
|
+
"electroneg_ratio",
|
|
260
|
+
"solid_angle"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"matterviz.structure.atom_color_mode": {
|
|
264
|
+
"type": "string",
|
|
265
|
+
"default": "element",
|
|
266
|
+
"description": "Property to use for atom coloring",
|
|
267
|
+
"enum": [
|
|
268
|
+
"element",
|
|
269
|
+
"coordination",
|
|
270
|
+
"wyckoff"
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
"matterviz.structure.atom_color_scale": {
|
|
274
|
+
"type": "string",
|
|
275
|
+
"default": "interpolateViridis",
|
|
276
|
+
"description": "D3 color scale for property-based coloring (e.g. interpolateViridis, interpolatePlasma)"
|
|
277
|
+
},
|
|
278
|
+
"matterviz.structure.atom_color_scale_type": {
|
|
279
|
+
"type": "string",
|
|
280
|
+
"default": "continuous",
|
|
281
|
+
"description": "Color scale type for property-based coloring",
|
|
282
|
+
"enum": [
|
|
283
|
+
"continuous",
|
|
284
|
+
"categorical"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
"matterviz.structure.show_gizmo": {
|
|
288
|
+
"type": "boolean",
|
|
289
|
+
"default": true,
|
|
290
|
+
"description": "Show orientation gizmo in the corner of structure viewer"
|
|
291
|
+
},
|
|
292
|
+
"matterviz.structure.camera_position": {
|
|
293
|
+
"type": "array",
|
|
294
|
+
"default": [
|
|
295
|
+
0,
|
|
296
|
+
0,
|
|
297
|
+
0
|
|
298
|
+
],
|
|
299
|
+
"description": "Initial camera position [x, y, z]",
|
|
300
|
+
"minItems": 3,
|
|
301
|
+
"maxItems": 3,
|
|
302
|
+
"items": {
|
|
303
|
+
"type": "number"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"matterviz.structure.camera_projection": {
|
|
307
|
+
"type": "string",
|
|
308
|
+
"default": "orthographic",
|
|
309
|
+
"description": "Camera projection type",
|
|
310
|
+
"enum": [
|
|
311
|
+
"perspective",
|
|
312
|
+
"orthographic"
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
"matterviz.structure.initial_zoom": {
|
|
316
|
+
"type": "number",
|
|
317
|
+
"default": 35,
|
|
318
|
+
"description": "Initial zoom level for orthographic projection (ignored for perspective)",
|
|
319
|
+
"minimum": 0.1,
|
|
320
|
+
"maximum": 200
|
|
321
|
+
},
|
|
322
|
+
"matterviz.structure.fov": {
|
|
323
|
+
"type": "number",
|
|
324
|
+
"default": 10,
|
|
325
|
+
"description": "Field of view in degrees for perspective projection",
|
|
326
|
+
"minimum": 10,
|
|
327
|
+
"maximum": 150
|
|
328
|
+
},
|
|
329
|
+
"matterviz.structure.rotation_damping": {
|
|
330
|
+
"type": "number",
|
|
331
|
+
"default": 0.1,
|
|
332
|
+
"description": "Camera rotation damping factor (0 = no damping, 1 = heavy damping)",
|
|
333
|
+
"minimum": 0,
|
|
334
|
+
"maximum": 1
|
|
335
|
+
},
|
|
336
|
+
"matterviz.structure.rotate_speed": {
|
|
337
|
+
"type": "number",
|
|
338
|
+
"default": 1,
|
|
339
|
+
"description": "Mouse rotation sensitivity (set to 0 to disable rotation)",
|
|
340
|
+
"minimum": 0,
|
|
341
|
+
"maximum": 2
|
|
342
|
+
},
|
|
343
|
+
"matterviz.structure.zoom_speed": {
|
|
344
|
+
"type": "number",
|
|
345
|
+
"default": 0.5,
|
|
346
|
+
"description": "Mouse wheel zoom sensitivity",
|
|
347
|
+
"minimum": 0.1,
|
|
348
|
+
"maximum": 2
|
|
349
|
+
},
|
|
350
|
+
"matterviz.structure.pan_speed": {
|
|
351
|
+
"type": "number",
|
|
352
|
+
"default": 0.5,
|
|
353
|
+
"description": "Mouse pan sensitivity",
|
|
354
|
+
"minimum": 0.1,
|
|
355
|
+
"maximum": 2
|
|
356
|
+
},
|
|
357
|
+
"matterviz.structure.zoom_to_cursor": {
|
|
358
|
+
"type": "boolean",
|
|
359
|
+
"default": false,
|
|
360
|
+
"description": "Zoom toward cursor position instead of scene center (double click canvas to reset camera)"
|
|
361
|
+
},
|
|
362
|
+
"matterviz.structure.max_zoom": {
|
|
363
|
+
"type": "number",
|
|
364
|
+
"default": 500,
|
|
365
|
+
"description": "Maximum zoom level (orthographic: larger = more zoomed out, perspective: larger = further away)"
|
|
366
|
+
},
|
|
367
|
+
"matterviz.structure.min_zoom": {
|
|
368
|
+
"type": "number",
|
|
369
|
+
"default": 10,
|
|
370
|
+
"description": "Minimum zoom level (orthographic: smaller = more zoomed in, perspective: smaller = closer)"
|
|
371
|
+
},
|
|
372
|
+
"matterviz.structure.auto_rotate": {
|
|
373
|
+
"type": "number",
|
|
374
|
+
"default": 0.2,
|
|
375
|
+
"description": "Automatic rotation speed (0 = disabled, positive = clockwise)",
|
|
376
|
+
"minimum": 0,
|
|
377
|
+
"maximum": 10
|
|
378
|
+
},
|
|
379
|
+
"matterviz.structure.rotation": {
|
|
380
|
+
"type": "array",
|
|
381
|
+
"default": [
|
|
382
|
+
0,
|
|
383
|
+
0,
|
|
384
|
+
0
|
|
385
|
+
],
|
|
386
|
+
"description": "Manual rotation around X, Y, Z axes, displayed in degrees [0, 360] but normalized as radians to [-π, π] for each of [x, y, z]. Combines additively with auto-rotation when both are active.",
|
|
387
|
+
"minItems": 3,
|
|
388
|
+
"maxItems": 3,
|
|
389
|
+
"items": {
|
|
390
|
+
"type": "number"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"matterviz.structure.show_site_labels": {
|
|
394
|
+
"type": "boolean",
|
|
395
|
+
"default": false,
|
|
396
|
+
"description": "Show element labels on atoms"
|
|
397
|
+
},
|
|
398
|
+
"matterviz.structure.show_site_indices": {
|
|
399
|
+
"type": "boolean",
|
|
400
|
+
"default": false,
|
|
401
|
+
"description": "Show site index numbers on atoms"
|
|
402
|
+
},
|
|
403
|
+
"matterviz.structure.site_label_size": {
|
|
404
|
+
"type": "number",
|
|
405
|
+
"default": 1,
|
|
406
|
+
"description": "Font size for atom labels",
|
|
407
|
+
"minimum": 0.5,
|
|
408
|
+
"maximum": 5
|
|
409
|
+
},
|
|
410
|
+
"matterviz.structure.site_label_color": {
|
|
411
|
+
"type": "string",
|
|
412
|
+
"default": "#111111",
|
|
413
|
+
"description": "Text color for atom labels"
|
|
414
|
+
},
|
|
415
|
+
"matterviz.structure.site_label_bg_color": {
|
|
416
|
+
"type": "string",
|
|
417
|
+
"default": "color-mix(in srgb, #000000 0%, transparent)",
|
|
418
|
+
"description": "Background color for atom labels"
|
|
419
|
+
},
|
|
420
|
+
"matterviz.structure.site_label_padding": {
|
|
421
|
+
"type": "number",
|
|
422
|
+
"default": 2,
|
|
423
|
+
"description": "Padding around atom labels in pixels",
|
|
424
|
+
"minimum": 0,
|
|
425
|
+
"maximum": 20
|
|
426
|
+
},
|
|
427
|
+
"matterviz.structure.site_label_offset": {
|
|
428
|
+
"type": "array",
|
|
429
|
+
"default": [
|
|
430
|
+
0,
|
|
431
|
+
0.5,
|
|
432
|
+
0
|
|
433
|
+
],
|
|
434
|
+
"description": "3D offset for atom labels [x, y, z]",
|
|
435
|
+
"minItems": 3,
|
|
436
|
+
"maxItems": 3,
|
|
437
|
+
"items": {
|
|
438
|
+
"type": "number"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"matterviz.structure.ambient_light": {
|
|
442
|
+
"type": "number",
|
|
443
|
+
"default": 1.5,
|
|
444
|
+
"description": "Ambient light intensity (0 = dark, higher = brighter)",
|
|
445
|
+
"minimum": 0,
|
|
446
|
+
"maximum": 4
|
|
447
|
+
},
|
|
448
|
+
"matterviz.structure.directional_light": {
|
|
449
|
+
"type": "number",
|
|
450
|
+
"default": 2.2,
|
|
451
|
+
"description": "Directional light intensity (0 = no shadows, higher = stronger shadows)",
|
|
452
|
+
"minimum": 0,
|
|
453
|
+
"maximum": 4
|
|
454
|
+
},
|
|
455
|
+
"matterviz.structure.vector_configs": {
|
|
456
|
+
"type": "string",
|
|
457
|
+
"default": {},
|
|
458
|
+
"description": "Per-key configuration for site vector layers. Keys map to site property names (e.g. force, magmom, force_DFT). Auto-populated when a structure with vector data loads."
|
|
459
|
+
},
|
|
460
|
+
"matterviz.structure.vector_scale": {
|
|
461
|
+
"type": "number",
|
|
462
|
+
"default": 1,
|
|
463
|
+
"description": "Scale factor for site vector arrows",
|
|
464
|
+
"minimum": 0.1,
|
|
465
|
+
"maximum": 10
|
|
466
|
+
},
|
|
467
|
+
"matterviz.structure.vector_color": {
|
|
468
|
+
"type": "string",
|
|
469
|
+
"default": "#ff0000",
|
|
470
|
+
"description": "Color for site vector arrows (used in uniform mode and as fallback)"
|
|
471
|
+
},
|
|
472
|
+
"matterviz.structure.vector_color_mode": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"default": "auto",
|
|
475
|
+
"description": "How to color arrows. auto = element for force, spin-direction for magmom/spin. element = majority species color. spin_direction = red/blue by z-component. magnitude = continuous color scale by vector length. uniform = single color (vector_color)."
|
|
476
|
+
},
|
|
477
|
+
"matterviz.structure.vector_color_scale": {
|
|
478
|
+
"type": "string",
|
|
479
|
+
"default": "interpolateViridis",
|
|
480
|
+
"description": "D3 color scale for magnitude coloring mode"
|
|
481
|
+
},
|
|
482
|
+
"matterviz.structure.vector_normalize": {
|
|
483
|
+
"type": "boolean",
|
|
484
|
+
"default": false,
|
|
485
|
+
"description": "Show all arrows at the same length (direction only). Useful for spin/magmom visualization where orientation matters but magnitude does not."
|
|
486
|
+
},
|
|
487
|
+
"matterviz.structure.vector_uniform_thickness": {
|
|
488
|
+
"type": "boolean",
|
|
489
|
+
"default": false,
|
|
490
|
+
"description": "Use the same shaft and head size for all arrows regardless of length. When off (default), thickness scales with arrow length."
|
|
491
|
+
},
|
|
492
|
+
"matterviz.structure.vector_origin_gap": {
|
|
493
|
+
"type": "number",
|
|
494
|
+
"default": 0,
|
|
495
|
+
"description": "Fraction of visual atom radius to offset each arrow origin when multiple vectors are shown per site. 0 = all from atom center, 0.5 = halfway to surface.",
|
|
496
|
+
"minimum": 0,
|
|
497
|
+
"maximum": 0.5
|
|
498
|
+
},
|
|
499
|
+
"matterviz.structure.vector_shaft_radius": {
|
|
500
|
+
"type": "number",
|
|
501
|
+
"default": -0.03,
|
|
502
|
+
"description": "Radius of vector shaft (negative = relative to length, positive = absolute)",
|
|
503
|
+
"minimum": -0.1,
|
|
504
|
+
"maximum": 0.1
|
|
505
|
+
},
|
|
506
|
+
"matterviz.structure.vector_arrow_head_radius": {
|
|
507
|
+
"type": "number",
|
|
508
|
+
"default": -0.06,
|
|
509
|
+
"description": "Radius of vector arrow head (negative = relative to length, positive = absolute)",
|
|
510
|
+
"minimum": -0.2,
|
|
511
|
+
"maximum": 0.2
|
|
512
|
+
},
|
|
513
|
+
"matterviz.structure.vector_arrow_head_length": {
|
|
514
|
+
"type": "number",
|
|
515
|
+
"default": -0.15,
|
|
516
|
+
"description": "Length of vector arrow head (negative = relative to length, positive = absolute)",
|
|
517
|
+
"minimum": -0.5,
|
|
518
|
+
"maximum": 0.5
|
|
519
|
+
},
|
|
520
|
+
"matterviz.structure.show_cell": {
|
|
521
|
+
"type": "boolean",
|
|
522
|
+
"default": false,
|
|
523
|
+
"description": "Display system cell"
|
|
524
|
+
},
|
|
525
|
+
"matterviz.structure.show_cell_vectors": {
|
|
526
|
+
"type": "boolean",
|
|
527
|
+
"default": true,
|
|
528
|
+
"description": "Display cell vectors"
|
|
529
|
+
},
|
|
530
|
+
"matterviz.structure.cell_edge_opacity": {
|
|
531
|
+
"type": "number",
|
|
532
|
+
"default": 0.3,
|
|
533
|
+
"description": "Opacity of cell edge lines",
|
|
534
|
+
"minimum": 0,
|
|
535
|
+
"maximum": 1
|
|
536
|
+
},
|
|
537
|
+
"matterviz.structure.cell_surface_opacity": {
|
|
538
|
+
"type": "number",
|
|
539
|
+
"default": 0.1,
|
|
540
|
+
"description": "Opacity of cell surfaces",
|
|
541
|
+
"minimum": 0,
|
|
542
|
+
"maximum": 1
|
|
543
|
+
},
|
|
544
|
+
"matterviz.structure.cell_edge_color": {
|
|
545
|
+
"type": "string",
|
|
546
|
+
"default": "#808080",
|
|
547
|
+
"description": "Color of cell edges"
|
|
548
|
+
},
|
|
549
|
+
"matterviz.structure.cell_surface_color": {
|
|
550
|
+
"type": "string",
|
|
551
|
+
"default": "#e0e0e0",
|
|
552
|
+
"description": "Color of cell surfaces"
|
|
553
|
+
},
|
|
554
|
+
"matterviz.structure.cell_edge_width": {
|
|
555
|
+
"type": "number",
|
|
556
|
+
"default": 1.5,
|
|
557
|
+
"description": "Width of cell edge lines",
|
|
558
|
+
"minimum": 0.5,
|
|
559
|
+
"maximum": 5
|
|
560
|
+
},
|
|
561
|
+
"matterviz.trajectory.auto_play": {
|
|
562
|
+
"type": "boolean",
|
|
563
|
+
"default": false,
|
|
564
|
+
"description": "Automatically start playing trajectory when opened"
|
|
565
|
+
},
|
|
566
|
+
"matterviz.trajectory.fps": {
|
|
567
|
+
"type": "number",
|
|
568
|
+
"default": 10,
|
|
569
|
+
"description": "Frames per second for trajectory playback",
|
|
570
|
+
"minimum": 0.1,
|
|
571
|
+
"maximum": 60
|
|
572
|
+
},
|
|
573
|
+
"matterviz.trajectory.fps_range": {
|
|
574
|
+
"type": "array",
|
|
575
|
+
"default": [
|
|
576
|
+
0.2,
|
|
577
|
+
60
|
|
578
|
+
],
|
|
579
|
+
"description": "Allowed range for playback speed [min, max]",
|
|
580
|
+
"minItems": 2,
|
|
581
|
+
"maxItems": 2,
|
|
582
|
+
"items": {
|
|
583
|
+
"type": "number"
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"matterviz.trajectory.display_mode": {
|
|
587
|
+
"type": "string",
|
|
588
|
+
"default": "structure+scatter",
|
|
589
|
+
"description": "Visualization mode for trajectory data",
|
|
590
|
+
"enum": [
|
|
591
|
+
"structure+scatter",
|
|
592
|
+
"structure",
|
|
593
|
+
"scatter",
|
|
594
|
+
"histogram",
|
|
595
|
+
"structure+histogram"
|
|
596
|
+
]
|
|
597
|
+
},
|
|
598
|
+
"matterviz.trajectory.show_controls": {
|
|
599
|
+
"type": "boolean",
|
|
600
|
+
"default": true,
|
|
601
|
+
"description": "Show playback controls"
|
|
602
|
+
},
|
|
603
|
+
"matterviz.trajectory.step_labels": {
|
|
604
|
+
"type": "number",
|
|
605
|
+
"default": 5,
|
|
606
|
+
"description": "Number of frame labels to display",
|
|
607
|
+
"minimum": 0,
|
|
608
|
+
"maximum": 20
|
|
609
|
+
},
|
|
610
|
+
"matterviz.trajectory.layout": {
|
|
611
|
+
"type": "string",
|
|
612
|
+
"default": "auto",
|
|
613
|
+
"description": "Layout arrangement for trajectory viewer",
|
|
614
|
+
"enum": [
|
|
615
|
+
"auto",
|
|
616
|
+
"horizontal",
|
|
617
|
+
"vertical"
|
|
618
|
+
]
|
|
619
|
+
},
|
|
620
|
+
"matterviz.trajectory.allow_file_drop": {
|
|
621
|
+
"type": "boolean",
|
|
622
|
+
"default": true,
|
|
623
|
+
"description": "Allow drag-and-drop of trajectory files"
|
|
624
|
+
},
|
|
625
|
+
"matterviz.trajectory.bin_file_threshold": {
|
|
626
|
+
"type": "number",
|
|
627
|
+
"default": 50000000,
|
|
628
|
+
"description": "File size threshold for binary loading (bytes)",
|
|
629
|
+
"minimum": 1000000,
|
|
630
|
+
"maximum": 500000000
|
|
631
|
+
},
|
|
632
|
+
"matterviz.trajectory.text_file_threshold": {
|
|
633
|
+
"type": "number",
|
|
634
|
+
"default": 25000000,
|
|
635
|
+
"description": "File size threshold for text loading (bytes)",
|
|
636
|
+
"minimum": 500000,
|
|
637
|
+
"maximum": 250000000
|
|
638
|
+
},
|
|
639
|
+
"matterviz.trajectory.use_indexing": {
|
|
640
|
+
"type": "boolean",
|
|
641
|
+
"default": false,
|
|
642
|
+
"description": "Use frame indexing for large trajectories"
|
|
643
|
+
},
|
|
644
|
+
"matterviz.trajectory.chunk_size": {
|
|
645
|
+
"type": "number",
|
|
646
|
+
"default": 1000,
|
|
647
|
+
"description": "Number of frames to process at once",
|
|
648
|
+
"minimum": 10,
|
|
649
|
+
"maximum": 10000
|
|
650
|
+
},
|
|
651
|
+
"matterviz.trajectory.step_label_format": {
|
|
652
|
+
"type": "string",
|
|
653
|
+
"default": ".3~s",
|
|
654
|
+
"description": "Number format for step labels (D3 format specifier)"
|
|
655
|
+
},
|
|
656
|
+
"matterviz.trajectory.property_value_format": {
|
|
657
|
+
"type": "string",
|
|
658
|
+
"default": ".2~s",
|
|
659
|
+
"description": "Number format for property values (D3 format specifier)"
|
|
660
|
+
},
|
|
661
|
+
"matterviz.trajectory.tooltip_format": {
|
|
662
|
+
"type": "string",
|
|
663
|
+
"default": ".3~s",
|
|
664
|
+
"description": "Number format for tooltips (D3 format specifier)"
|
|
665
|
+
},
|
|
666
|
+
"matterviz.trajectory.enable_keyboard_shortcuts": {
|
|
667
|
+
"type": "boolean",
|
|
668
|
+
"default": true,
|
|
669
|
+
"description": "Enable keyboard shortcuts for playback"
|
|
670
|
+
},
|
|
671
|
+
"matterviz.trajectory.show_parsing_progress": {
|
|
672
|
+
"type": "boolean",
|
|
673
|
+
"default": true,
|
|
674
|
+
"description": "Show progress indicator while parsing files"
|
|
675
|
+
},
|
|
676
|
+
"matterviz.trajectory.compact_controls": {
|
|
677
|
+
"type": "boolean",
|
|
678
|
+
"default": false,
|
|
679
|
+
"description": "Use compact layout for playback controls"
|
|
680
|
+
},
|
|
681
|
+
"matterviz.trajectory.show_filename_in_controls": {
|
|
682
|
+
"type": "boolean",
|
|
683
|
+
"default": true,
|
|
684
|
+
"description": "Display filename in control pane"
|
|
685
|
+
},
|
|
686
|
+
"matterviz.trajectory.smooth_playback": {
|
|
687
|
+
"type": "boolean",
|
|
688
|
+
"default": false,
|
|
689
|
+
"description": "Use smooth interpolation between frames"
|
|
690
|
+
},
|
|
691
|
+
"matterviz.trajectory.loop_playback": {
|
|
692
|
+
"type": "boolean",
|
|
693
|
+
"default": true,
|
|
694
|
+
"description": "Loop trajectory playback"
|
|
695
|
+
},
|
|
696
|
+
"matterviz.trajectory.pause_on_hover": {
|
|
697
|
+
"type": "boolean",
|
|
698
|
+
"default": false,
|
|
699
|
+
"description": "Pause playback when hovering over controls"
|
|
700
|
+
},
|
|
701
|
+
"matterviz.trajectory.highlight_current_frame": {
|
|
702
|
+
"type": "boolean",
|
|
703
|
+
"default": true,
|
|
704
|
+
"description": "Highlight current frame in timeline"
|
|
705
|
+
},
|
|
706
|
+
"matterviz.trajectory.show_frame_info": {
|
|
707
|
+
"type": "boolean",
|
|
708
|
+
"default": true,
|
|
709
|
+
"description": "Show frame information overlay"
|
|
710
|
+
},
|
|
711
|
+
"matterviz.trajectory.max_frames_in_memory": {
|
|
712
|
+
"type": "number",
|
|
713
|
+
"default": 1000,
|
|
714
|
+
"description": "Maximum frames to keep in memory",
|
|
715
|
+
"minimum": 10,
|
|
716
|
+
"maximum": 10000
|
|
717
|
+
},
|
|
718
|
+
"matterviz.trajectory.memory_usage_warning_threshold": {
|
|
719
|
+
"type": "number",
|
|
720
|
+
"default": 500,
|
|
721
|
+
"description": "Frame count threshold for memory warnings",
|
|
722
|
+
"minimum": 10,
|
|
723
|
+
"maximum": 5000
|
|
724
|
+
},
|
|
725
|
+
"matterviz.trajectory.enable_performance_monitoring": {
|
|
726
|
+
"type": "boolean",
|
|
727
|
+
"default": false,
|
|
728
|
+
"description": "Enable performance monitoring"
|
|
729
|
+
},
|
|
730
|
+
"matterviz.trajectory.prefetch_frames": {
|
|
731
|
+
"type": "number",
|
|
732
|
+
"default": 5,
|
|
733
|
+
"description": "Number of frames to prefetch ahead",
|
|
734
|
+
"minimum": 0,
|
|
735
|
+
"maximum": 100
|
|
736
|
+
},
|
|
737
|
+
"matterviz.trajectory.cache_parsed_data": {
|
|
738
|
+
"type": "boolean",
|
|
739
|
+
"default": true,
|
|
740
|
+
"description": "Cache parsed trajectory data"
|
|
741
|
+
},
|
|
742
|
+
"matterviz.histogram.mode": {
|
|
743
|
+
"type": "string",
|
|
744
|
+
"default": "overlay",
|
|
745
|
+
"description": "Histogram display mode. 'overlay' shows multiple histograms in the same plot, 'single' shows a single histogram",
|
|
746
|
+
"enum": [
|
|
747
|
+
"overlay",
|
|
748
|
+
"single"
|
|
749
|
+
]
|
|
750
|
+
},
|
|
751
|
+
"matterviz.histogram.show_legend": {
|
|
752
|
+
"type": "boolean",
|
|
753
|
+
"default": true,
|
|
754
|
+
"description": "Show legend in histogram plots"
|
|
755
|
+
},
|
|
756
|
+
"matterviz.histogram.bin_count": {
|
|
757
|
+
"type": "number",
|
|
758
|
+
"default": 100,
|
|
759
|
+
"description": "Number of bins for histogram plots",
|
|
760
|
+
"minimum": 1,
|
|
761
|
+
"maximum": 1000
|
|
762
|
+
},
|
|
763
|
+
"matterviz.histogram.bar.color": {
|
|
764
|
+
"type": "string",
|
|
765
|
+
"default": "#4A9EFF",
|
|
766
|
+
"description": "Histogram bar fill color"
|
|
767
|
+
},
|
|
768
|
+
"matterviz.histogram.bar.opacity": {
|
|
769
|
+
"type": "number",
|
|
770
|
+
"default": 0.7,
|
|
771
|
+
"description": "Histogram bar opacity",
|
|
772
|
+
"minimum": 0,
|
|
773
|
+
"maximum": 1
|
|
774
|
+
},
|
|
775
|
+
"matterviz.histogram.bar.stroke_width": {
|
|
776
|
+
"type": "number",
|
|
777
|
+
"default": 1,
|
|
778
|
+
"description": "Histogram bar stroke width",
|
|
779
|
+
"minimum": 0,
|
|
780
|
+
"maximum": 5
|
|
781
|
+
},
|
|
782
|
+
"matterviz.histogram.bar.stroke_color": {
|
|
783
|
+
"type": "string",
|
|
784
|
+
"default": "#000000",
|
|
785
|
+
"description": "Histogram bar stroke color"
|
|
786
|
+
},
|
|
787
|
+
"matterviz.histogram.bar.stroke_opacity": {
|
|
788
|
+
"type": "number",
|
|
789
|
+
"default": 0.5,
|
|
790
|
+
"description": "Histogram bar stroke opacity",
|
|
791
|
+
"minimum": 0,
|
|
792
|
+
"maximum": 1
|
|
793
|
+
},
|
|
794
|
+
"matterviz.histogram.display.x_grid": {
|
|
795
|
+
"type": "boolean",
|
|
796
|
+
"default": true,
|
|
797
|
+
"description": "Show X-axis grid lines"
|
|
798
|
+
},
|
|
799
|
+
"matterviz.histogram.display.y_grid": {
|
|
800
|
+
"type": "boolean",
|
|
801
|
+
"default": true,
|
|
802
|
+
"description": "Show Y-axis grid lines"
|
|
803
|
+
},
|
|
804
|
+
"matterviz.histogram.display.y2_grid": {
|
|
805
|
+
"type": "boolean",
|
|
806
|
+
"default": false,
|
|
807
|
+
"description": "Show Y2-axis grid lines"
|
|
808
|
+
},
|
|
809
|
+
"matterviz.histogram.display.x_zero_line": {
|
|
810
|
+
"type": "boolean",
|
|
811
|
+
"default": true,
|
|
812
|
+
"description": "Show X-axis zero reference line"
|
|
813
|
+
},
|
|
814
|
+
"matterviz.histogram.display.y_zero_line": {
|
|
815
|
+
"type": "boolean",
|
|
816
|
+
"default": true,
|
|
817
|
+
"description": "Show Y-axis zero reference line"
|
|
818
|
+
},
|
|
819
|
+
"matterviz.bar.bar.color": {
|
|
820
|
+
"type": "string",
|
|
821
|
+
"default": "#4A9EFF",
|
|
822
|
+
"description": "Bar plot fill color"
|
|
823
|
+
},
|
|
824
|
+
"matterviz.bar.bar.opacity": {
|
|
825
|
+
"type": "number",
|
|
826
|
+
"default": 0.6,
|
|
827
|
+
"description": "Bar plot opacity (overlay mode)",
|
|
828
|
+
"minimum": 0,
|
|
829
|
+
"maximum": 1
|
|
830
|
+
},
|
|
831
|
+
"matterviz.bar.bar.border_radius": {
|
|
832
|
+
"type": "number",
|
|
833
|
+
"default": 3,
|
|
834
|
+
"description": "Corner radius for bar tops (px)",
|
|
835
|
+
"minimum": 0,
|
|
836
|
+
"maximum": 10
|
|
837
|
+
},
|
|
838
|
+
"matterviz.bar.line.width": {
|
|
839
|
+
"type": "number",
|
|
840
|
+
"default": 2,
|
|
841
|
+
"description": "Bar plot line width",
|
|
842
|
+
"minimum": 0.5,
|
|
843
|
+
"maximum": 10
|
|
844
|
+
},
|
|
845
|
+
"matterviz.bar.line.color": {
|
|
846
|
+
"type": "string",
|
|
847
|
+
"default": "#4A9EFF",
|
|
848
|
+
"description": "Bar plot line color"
|
|
849
|
+
},
|
|
850
|
+
"matterviz.bar.display.x_grid": {
|
|
851
|
+
"type": "boolean",
|
|
852
|
+
"default": true,
|
|
853
|
+
"description": "Show X-axis grid lines"
|
|
854
|
+
},
|
|
855
|
+
"matterviz.bar.display.y_grid": {
|
|
856
|
+
"type": "boolean",
|
|
857
|
+
"default": true,
|
|
858
|
+
"description": "Show Y-axis grid lines"
|
|
859
|
+
},
|
|
860
|
+
"matterviz.bar.display.y2_grid": {
|
|
861
|
+
"type": "boolean",
|
|
862
|
+
"default": false,
|
|
863
|
+
"description": "Show Y2-axis grid lines"
|
|
864
|
+
},
|
|
865
|
+
"matterviz.bar.display.x_zero_line": {
|
|
866
|
+
"type": "boolean",
|
|
867
|
+
"default": true,
|
|
868
|
+
"description": "Show X-axis zero reference line"
|
|
869
|
+
},
|
|
870
|
+
"matterviz.bar.display.y_zero_line": {
|
|
871
|
+
"type": "boolean",
|
|
872
|
+
"default": true,
|
|
873
|
+
"description": "Show Y-axis zero reference line"
|
|
874
|
+
},
|
|
875
|
+
"matterviz.composition.display_mode": {
|
|
876
|
+
"type": "string",
|
|
877
|
+
"default": "pie",
|
|
878
|
+
"description": "Display mode for composition data",
|
|
879
|
+
"enum": [
|
|
880
|
+
"pie",
|
|
881
|
+
"bubble",
|
|
882
|
+
"bar"
|
|
883
|
+
]
|
|
884
|
+
},
|
|
885
|
+
"matterviz.composition.color_scheme": {
|
|
886
|
+
"type": "string",
|
|
887
|
+
"default": "Vesta",
|
|
888
|
+
"description": "Color scheme for composition visualization",
|
|
889
|
+
"enum": [
|
|
890
|
+
"Vesta",
|
|
891
|
+
"Jmol",
|
|
892
|
+
"Alloy",
|
|
893
|
+
"Pastel",
|
|
894
|
+
"Muted",
|
|
895
|
+
"Dark Mode"
|
|
896
|
+
]
|
|
897
|
+
},
|
|
898
|
+
"matterviz.scatter.symbol_type": {
|
|
899
|
+
"type": "string",
|
|
900
|
+
"default": "Circle",
|
|
901
|
+
"description": "Default symbol type for scatter plots",
|
|
902
|
+
"enum": [
|
|
903
|
+
"Circle",
|
|
904
|
+
"Cross",
|
|
905
|
+
"Diamond",
|
|
906
|
+
"Square",
|
|
907
|
+
"Star",
|
|
908
|
+
"Triangle",
|
|
909
|
+
"Wye",
|
|
910
|
+
"Plus",
|
|
911
|
+
"Times",
|
|
912
|
+
"Triangle2",
|
|
913
|
+
"Asterisk",
|
|
914
|
+
"Square2",
|
|
915
|
+
"Diamond2"
|
|
916
|
+
]
|
|
917
|
+
},
|
|
918
|
+
"matterviz.scatter.show_legend": {
|
|
919
|
+
"type": "boolean",
|
|
920
|
+
"default": true,
|
|
921
|
+
"description": "Show legend in scatter plots"
|
|
922
|
+
},
|
|
923
|
+
"matterviz.scatter.show_points": {
|
|
924
|
+
"type": "boolean",
|
|
925
|
+
"default": true,
|
|
926
|
+
"description": "Show points in scatter plots"
|
|
927
|
+
},
|
|
928
|
+
"matterviz.scatter.show_lines": {
|
|
929
|
+
"type": "boolean",
|
|
930
|
+
"default": true,
|
|
931
|
+
"description": "Show connecting lines in scatter plots"
|
|
932
|
+
},
|
|
933
|
+
"matterviz.scatter.display.x_grid": {
|
|
934
|
+
"type": "boolean",
|
|
935
|
+
"default": true,
|
|
936
|
+
"description": "Show X-axis grid lines"
|
|
937
|
+
},
|
|
938
|
+
"matterviz.scatter.display.y_grid": {
|
|
939
|
+
"type": "boolean",
|
|
940
|
+
"default": true,
|
|
941
|
+
"description": "Show Y-axis grid lines"
|
|
942
|
+
},
|
|
943
|
+
"matterviz.scatter.display.y2_grid": {
|
|
944
|
+
"type": "boolean",
|
|
945
|
+
"default": false,
|
|
946
|
+
"description": "Show Y2-axis grid lines"
|
|
947
|
+
},
|
|
948
|
+
"matterviz.scatter.display.x_zero_line": {
|
|
949
|
+
"type": "boolean",
|
|
950
|
+
"default": true,
|
|
951
|
+
"description": "Show X-axis zero reference line"
|
|
952
|
+
},
|
|
953
|
+
"matterviz.scatter.display.y_zero_line": {
|
|
954
|
+
"type": "boolean",
|
|
955
|
+
"default": true,
|
|
956
|
+
"description": "Show Y-axis zero reference line"
|
|
957
|
+
},
|
|
958
|
+
"matterviz.scatter.point.size": {
|
|
959
|
+
"type": "number",
|
|
960
|
+
"default": 4,
|
|
961
|
+
"description": "Point size for scatter plots",
|
|
962
|
+
"minimum": 1,
|
|
963
|
+
"maximum": 20
|
|
964
|
+
},
|
|
965
|
+
"matterviz.scatter.point.color": {
|
|
966
|
+
"type": "string",
|
|
967
|
+
"default": "#4A9EFF",
|
|
968
|
+
"description": "Default color for scatter plot points"
|
|
969
|
+
},
|
|
970
|
+
"matterviz.scatter.point.opacity": {
|
|
971
|
+
"type": "number",
|
|
972
|
+
"default": 1,
|
|
973
|
+
"description": "Opacity of scatter plot points",
|
|
974
|
+
"minimum": 0,
|
|
975
|
+
"maximum": 1
|
|
976
|
+
},
|
|
977
|
+
"matterviz.scatter.point.stroke_width": {
|
|
978
|
+
"type": "number",
|
|
979
|
+
"default": 1,
|
|
980
|
+
"description": "Stroke width for scatter plot points",
|
|
981
|
+
"minimum": 0,
|
|
982
|
+
"maximum": 5
|
|
983
|
+
},
|
|
984
|
+
"matterviz.scatter.point.stroke_color": {
|
|
985
|
+
"type": "string",
|
|
986
|
+
"default": "#000000",
|
|
987
|
+
"description": "Stroke color for scatter plot points"
|
|
988
|
+
},
|
|
989
|
+
"matterviz.scatter.point.stroke_opacity": {
|
|
990
|
+
"type": "number",
|
|
991
|
+
"default": 1,
|
|
992
|
+
"description": "Stroke opacity for scatter plot points",
|
|
993
|
+
"minimum": 0,
|
|
994
|
+
"maximum": 1
|
|
995
|
+
},
|
|
996
|
+
"matterviz.scatter.line.width": {
|
|
997
|
+
"type": "number",
|
|
998
|
+
"default": 2,
|
|
999
|
+
"description": "Line width for scatter plot connections",
|
|
1000
|
+
"minimum": 0.5,
|
|
1001
|
+
"maximum": 10
|
|
1002
|
+
},
|
|
1003
|
+
"matterviz.scatter.line.color": {
|
|
1004
|
+
"type": "string",
|
|
1005
|
+
"default": "#4A9EFF",
|
|
1006
|
+
"description": "Default color for scatter plot lines"
|
|
1007
|
+
},
|
|
1008
|
+
"matterviz.scatter.line.opacity": {
|
|
1009
|
+
"type": "number",
|
|
1010
|
+
"default": 1,
|
|
1011
|
+
"description": "Opacity of scatter plot lines",
|
|
1012
|
+
"minimum": 0,
|
|
1013
|
+
"maximum": 1
|
|
1014
|
+
},
|
|
1015
|
+
"matterviz.scatter.line.dash": {
|
|
1016
|
+
"type": "string",
|
|
1017
|
+
"default": "solid",
|
|
1018
|
+
"description": "Line dash pattern for scatter plots (e.g. \"4,4\" for dashed)"
|
|
1019
|
+
},
|
|
1020
|
+
"matterviz.plot.animation_duration": {
|
|
1021
|
+
"type": "number",
|
|
1022
|
+
"default": 200,
|
|
1023
|
+
"description": "Duration of plot animations in milliseconds",
|
|
1024
|
+
"minimum": 0,
|
|
1025
|
+
"maximum": 2000
|
|
1026
|
+
},
|
|
1027
|
+
"matterviz.plot.enable_zoom": {
|
|
1028
|
+
"type": "boolean",
|
|
1029
|
+
"default": true,
|
|
1030
|
+
"description": "Enable zooming in plots"
|
|
1031
|
+
},
|
|
1032
|
+
"matterviz.plot.zoom_factor": {
|
|
1033
|
+
"type": "number",
|
|
1034
|
+
"default": 1.5,
|
|
1035
|
+
"description": "Zoom factor for plot interactions",
|
|
1036
|
+
"minimum": 1.1,
|
|
1037
|
+
"maximum": 5
|
|
1038
|
+
},
|
|
1039
|
+
"matterviz.plot.auto_fit_range": {
|
|
1040
|
+
"type": "boolean",
|
|
1041
|
+
"default": true,
|
|
1042
|
+
"description": "Automatically fit plot range to data"
|
|
1043
|
+
},
|
|
1044
|
+
"matterviz.plot.grid_lines": {
|
|
1045
|
+
"type": "boolean",
|
|
1046
|
+
"default": true,
|
|
1047
|
+
"description": "Show grid lines in plots"
|
|
1048
|
+
},
|
|
1049
|
+
"matterviz.plot.axis_labels": {
|
|
1050
|
+
"type": "boolean",
|
|
1051
|
+
"default": true,
|
|
1052
|
+
"description": "Show axis labels in plots"
|
|
1053
|
+
},
|
|
1054
|
+
"matterviz.plot.show_x_zero_line": {
|
|
1055
|
+
"type": "boolean",
|
|
1056
|
+
"default": true,
|
|
1057
|
+
"description": "Show X-axis zero reference line"
|
|
1058
|
+
},
|
|
1059
|
+
"matterviz.plot.show_y_zero_line": {
|
|
1060
|
+
"type": "boolean",
|
|
1061
|
+
"default": true,
|
|
1062
|
+
"description": "Show Y-axis zero reference line"
|
|
1063
|
+
},
|
|
1064
|
+
"matterviz.plot.show_x_grid": {
|
|
1065
|
+
"type": "boolean",
|
|
1066
|
+
"default": true,
|
|
1067
|
+
"description": "Show X-axis grid lines"
|
|
1068
|
+
},
|
|
1069
|
+
"matterviz.plot.show_x2_grid": {
|
|
1070
|
+
"type": "boolean",
|
|
1071
|
+
"default": false,
|
|
1072
|
+
"description": "Show secondary X-axis grid lines"
|
|
1073
|
+
},
|
|
1074
|
+
"matterviz.plot.show_y_grid": {
|
|
1075
|
+
"type": "boolean",
|
|
1076
|
+
"default": true,
|
|
1077
|
+
"description": "Show Y-axis grid lines"
|
|
1078
|
+
},
|
|
1079
|
+
"matterviz.plot.show_y2_grid": {
|
|
1080
|
+
"type": "boolean",
|
|
1081
|
+
"default": true,
|
|
1082
|
+
"description": "Show secondary Y-axis grid lines"
|
|
1083
|
+
},
|
|
1084
|
+
"matterviz.plot.x_format": {
|
|
1085
|
+
"type": "string",
|
|
1086
|
+
"default": ".2~s",
|
|
1087
|
+
"description": "Number format for X-axis ticks (D3 format specifier)"
|
|
1088
|
+
},
|
|
1089
|
+
"matterviz.plot.x2_format": {
|
|
1090
|
+
"type": "string",
|
|
1091
|
+
"default": "",
|
|
1092
|
+
"description": "Number format for secondary X-axis ticks (D3 format specifier)"
|
|
1093
|
+
},
|
|
1094
|
+
"matterviz.plot.y_format": {
|
|
1095
|
+
"type": "string",
|
|
1096
|
+
"default": "d",
|
|
1097
|
+
"description": "Number format for Y-axis ticks (D3 format specifier)"
|
|
1098
|
+
},
|
|
1099
|
+
"matterviz.plot.y2_format": {
|
|
1100
|
+
"type": "string",
|
|
1101
|
+
"default": "",
|
|
1102
|
+
"description": "Number format for secondary Y-axis ticks (D3 format specifier)"
|
|
1103
|
+
},
|
|
1104
|
+
"matterviz.plot.x_scale_type": {
|
|
1105
|
+
"type": "string",
|
|
1106
|
+
"default": "linear",
|
|
1107
|
+
"description": "Scale type for X-axis",
|
|
1108
|
+
"enum": [
|
|
1109
|
+
"linear",
|
|
1110
|
+
"log"
|
|
1111
|
+
]
|
|
1112
|
+
},
|
|
1113
|
+
"matterviz.plot.y_scale_type": {
|
|
1114
|
+
"type": "string",
|
|
1115
|
+
"default": "linear",
|
|
1116
|
+
"description": "Scale type for Y-axis",
|
|
1117
|
+
"enum": [
|
|
1118
|
+
"linear",
|
|
1119
|
+
"log"
|
|
1120
|
+
]
|
|
1121
|
+
},
|
|
1122
|
+
"matterviz.plot.x_ticks": {
|
|
1123
|
+
"type": "number",
|
|
1124
|
+
"default": 8,
|
|
1125
|
+
"description": "Number of ticks on X-axis",
|
|
1126
|
+
"minimum": 2,
|
|
1127
|
+
"maximum": 20
|
|
1128
|
+
},
|
|
1129
|
+
"matterviz.plot.y_ticks": {
|
|
1130
|
+
"type": "number",
|
|
1131
|
+
"default": 6,
|
|
1132
|
+
"description": "Number of ticks on Y-axis",
|
|
1133
|
+
"minimum": 2,
|
|
1134
|
+
"maximum": 20
|
|
1135
|
+
},
|
|
1136
|
+
"matterviz.convex_hull.binary.camera_zoom": {
|
|
1137
|
+
"type": "number",
|
|
1138
|
+
"default": 1,
|
|
1139
|
+
"description": "Initial zoom for binary (2D) convex hull",
|
|
1140
|
+
"minimum": 0.1,
|
|
1141
|
+
"maximum": 10
|
|
1142
|
+
},
|
|
1143
|
+
"matterviz.convex_hull.binary.camera_center_x": {
|
|
1144
|
+
"type": "number",
|
|
1145
|
+
"default": 0,
|
|
1146
|
+
"description": "Initial X center for binary (2D) convex hull"
|
|
1147
|
+
},
|
|
1148
|
+
"matterviz.convex_hull.binary.camera_center_y": {
|
|
1149
|
+
"type": "number",
|
|
1150
|
+
"default": 0,
|
|
1151
|
+
"description": "Initial Y center for binary (2D) convex hull"
|
|
1152
|
+
},
|
|
1153
|
+
"matterviz.convex_hull.binary.color_mode": {
|
|
1154
|
+
"type": "string",
|
|
1155
|
+
"default": "energy",
|
|
1156
|
+
"description": "Color mode for 2D convex hull points",
|
|
1157
|
+
"enum": [
|
|
1158
|
+
"stability",
|
|
1159
|
+
"energy"
|
|
1160
|
+
]
|
|
1161
|
+
},
|
|
1162
|
+
"matterviz.convex_hull.binary.color_scale": {
|
|
1163
|
+
"type": "string",
|
|
1164
|
+
"default": "interpolateViridis",
|
|
1165
|
+
"description": "D3 interpolate color scale for 2D convex hull energy mode"
|
|
1166
|
+
},
|
|
1167
|
+
"matterviz.convex_hull.binary.show_stable": {
|
|
1168
|
+
"type": "boolean",
|
|
1169
|
+
"default": true,
|
|
1170
|
+
"description": "Show stable phases in 2D convex hull"
|
|
1171
|
+
},
|
|
1172
|
+
"matterviz.convex_hull.binary.show_unstable": {
|
|
1173
|
+
"type": "boolean",
|
|
1174
|
+
"default": true,
|
|
1175
|
+
"description": "Show unstable phases in 2D convex hull"
|
|
1176
|
+
},
|
|
1177
|
+
"matterviz.convex_hull.binary.show_stable_labels": {
|
|
1178
|
+
"type": "boolean",
|
|
1179
|
+
"default": true,
|
|
1180
|
+
"description": "Show labels for stable phases in 2D convex hull"
|
|
1181
|
+
},
|
|
1182
|
+
"matterviz.convex_hull.binary.show_unstable_labels": {
|
|
1183
|
+
"type": "boolean",
|
|
1184
|
+
"default": false,
|
|
1185
|
+
"description": "Show labels for unstable phases in 2D convex hull"
|
|
1186
|
+
},
|
|
1187
|
+
"matterviz.convex_hull.binary.max_hull_dist_show_phases": {
|
|
1188
|
+
"type": "number",
|
|
1189
|
+
"default": 0.1,
|
|
1190
|
+
"description": "Max eV/atom above hull for showing unstable entries in 2D convex hull",
|
|
1191
|
+
"minimum": 0,
|
|
1192
|
+
"maximum": 2
|
|
1193
|
+
},
|
|
1194
|
+
"matterviz.convex_hull.binary.max_hull_dist_show_labels": {
|
|
1195
|
+
"type": "number",
|
|
1196
|
+
"default": 0.1,
|
|
1197
|
+
"description": "Max eV/atom above hull for labeling unstable entries in 2D convex hull",
|
|
1198
|
+
"minimum": 0,
|
|
1199
|
+
"maximum": 2
|
|
1200
|
+
},
|
|
1201
|
+
"matterviz.convex_hull.binary.fullscreen": {
|
|
1202
|
+
"type": "boolean",
|
|
1203
|
+
"default": false,
|
|
1204
|
+
"description": "Start in fullscreen for 2D convex hull"
|
|
1205
|
+
},
|
|
1206
|
+
"matterviz.convex_hull.binary.info_pane_open": {
|
|
1207
|
+
"type": "boolean",
|
|
1208
|
+
"default": false,
|
|
1209
|
+
"description": "Info pane open by default for 2D convex hull"
|
|
1210
|
+
},
|
|
1211
|
+
"matterviz.convex_hull.binary.legend_pane_open": {
|
|
1212
|
+
"type": "boolean",
|
|
1213
|
+
"default": false,
|
|
1214
|
+
"description": "Legend pane open by default for 2D convex hull"
|
|
1215
|
+
},
|
|
1216
|
+
"matterviz.convex_hull.ternary.camera_elevation": {
|
|
1217
|
+
"type": "number",
|
|
1218
|
+
"default": 45,
|
|
1219
|
+
"description": "Initial camera elevation (deg) for ternary (3D) convex hull",
|
|
1220
|
+
"minimum": -180,
|
|
1221
|
+
"maximum": 180
|
|
1222
|
+
},
|
|
1223
|
+
"matterviz.convex_hull.ternary.camera_azimuth": {
|
|
1224
|
+
"type": "number",
|
|
1225
|
+
"default": 60,
|
|
1226
|
+
"description": "Initial camera azimuth (deg) for ternary (3D) convex hull",
|
|
1227
|
+
"minimum": -360,
|
|
1228
|
+
"maximum": 360
|
|
1229
|
+
},
|
|
1230
|
+
"matterviz.convex_hull.ternary.camera_zoom": {
|
|
1231
|
+
"type": "number",
|
|
1232
|
+
"default": 1.5,
|
|
1233
|
+
"description": "Initial camera zoom for ternary (3D) convex hull",
|
|
1234
|
+
"minimum": 0.1,
|
|
1235
|
+
"maximum": 10
|
|
1236
|
+
},
|
|
1237
|
+
"matterviz.convex_hull.ternary.camera_center_x": {
|
|
1238
|
+
"type": "number",
|
|
1239
|
+
"default": 0,
|
|
1240
|
+
"description": "Initial X center for ternary (3D) convex hull"
|
|
1241
|
+
},
|
|
1242
|
+
"matterviz.convex_hull.ternary.camera_center_y": {
|
|
1243
|
+
"type": "number",
|
|
1244
|
+
"default": -50,
|
|
1245
|
+
"description": "Initial Y center for ternary (3D) convex hull"
|
|
1246
|
+
},
|
|
1247
|
+
"matterviz.convex_hull.ternary.color_mode": {
|
|
1248
|
+
"type": "string",
|
|
1249
|
+
"default": "energy",
|
|
1250
|
+
"description": "Color mode for 3D convex hull points",
|
|
1251
|
+
"enum": [
|
|
1252
|
+
"stability",
|
|
1253
|
+
"energy"
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"matterviz.convex_hull.ternary.color_scale": {
|
|
1257
|
+
"type": "string",
|
|
1258
|
+
"default": "interpolateViridis",
|
|
1259
|
+
"description": "D3 interpolate color scale for 3D convex hull energy mode"
|
|
1260
|
+
},
|
|
1261
|
+
"matterviz.convex_hull.ternary.show_stable": {
|
|
1262
|
+
"type": "boolean",
|
|
1263
|
+
"default": true,
|
|
1264
|
+
"description": "Show stable phases in 3D convex hull"
|
|
1265
|
+
},
|
|
1266
|
+
"matterviz.convex_hull.ternary.show_unstable": {
|
|
1267
|
+
"type": "boolean",
|
|
1268
|
+
"default": true,
|
|
1269
|
+
"description": "Show unstable phases in 3D convex hull"
|
|
1270
|
+
},
|
|
1271
|
+
"matterviz.convex_hull.ternary.show_stable_labels": {
|
|
1272
|
+
"type": "boolean",
|
|
1273
|
+
"default": true,
|
|
1274
|
+
"description": "Show labels for stable phases in 3D convex hull"
|
|
1275
|
+
},
|
|
1276
|
+
"matterviz.convex_hull.ternary.show_unstable_labels": {
|
|
1277
|
+
"type": "boolean",
|
|
1278
|
+
"default": false,
|
|
1279
|
+
"description": "Show labels for unstable phases in 3D convex hull"
|
|
1280
|
+
},
|
|
1281
|
+
"matterviz.convex_hull.ternary.max_hull_dist_show_phases": {
|
|
1282
|
+
"type": "number",
|
|
1283
|
+
"default": 0.5,
|
|
1284
|
+
"description": "Max eV/atom above hull for showing unstable entries in 3D convex hull",
|
|
1285
|
+
"minimum": 0,
|
|
1286
|
+
"maximum": 2
|
|
1287
|
+
},
|
|
1288
|
+
"matterviz.convex_hull.ternary.max_hull_dist_show_labels": {
|
|
1289
|
+
"type": "number",
|
|
1290
|
+
"default": 0.1,
|
|
1291
|
+
"description": "Max eV/atom above hull for labeling unstable entries in 3D convex hull",
|
|
1292
|
+
"minimum": 0,
|
|
1293
|
+
"maximum": 2
|
|
1294
|
+
},
|
|
1295
|
+
"matterviz.convex_hull.ternary.show_hull_faces": {
|
|
1296
|
+
"type": "boolean",
|
|
1297
|
+
"default": true,
|
|
1298
|
+
"description": "Render lower hull faces in 3D convex hull"
|
|
1299
|
+
},
|
|
1300
|
+
"matterviz.convex_hull.ternary.hull_face_color": {
|
|
1301
|
+
"type": "string",
|
|
1302
|
+
"default": "#4caf50",
|
|
1303
|
+
"description": "Color for lower hull faces in 3D convex hull"
|
|
1304
|
+
},
|
|
1305
|
+
"matterviz.convex_hull.ternary.hull_face_opacity": {
|
|
1306
|
+
"type": "number",
|
|
1307
|
+
"default": 0.3,
|
|
1308
|
+
"description": "Opacity for hull faces in 3D convex hull (0-1)",
|
|
1309
|
+
"minimum": 0,
|
|
1310
|
+
"maximum": 1
|
|
1311
|
+
},
|
|
1312
|
+
"matterviz.convex_hull.ternary.hull_face_color_mode": {
|
|
1313
|
+
"type": "string",
|
|
1314
|
+
"default": "uniform",
|
|
1315
|
+
"description": "Coloring mode for hull faces: uniform (single color), formation_energy (by E_form), dominant_element (by element), or facet_index (categorical)",
|
|
1316
|
+
"enum": [
|
|
1317
|
+
"uniform",
|
|
1318
|
+
"formation_energy",
|
|
1319
|
+
"dominant_element",
|
|
1320
|
+
"facet_index"
|
|
1321
|
+
]
|
|
1322
|
+
},
|
|
1323
|
+
"matterviz.convex_hull.ternary.fullscreen": {
|
|
1324
|
+
"type": "boolean",
|
|
1325
|
+
"default": false,
|
|
1326
|
+
"description": "Start in fullscreen for 3D convex hull"
|
|
1327
|
+
},
|
|
1328
|
+
"matterviz.convex_hull.ternary.info_pane_open": {
|
|
1329
|
+
"type": "boolean",
|
|
1330
|
+
"default": false,
|
|
1331
|
+
"description": "Info pane open by default for 3D convex hull"
|
|
1332
|
+
},
|
|
1333
|
+
"matterviz.convex_hull.ternary.legend_pane_open": {
|
|
1334
|
+
"type": "boolean",
|
|
1335
|
+
"default": false,
|
|
1336
|
+
"description": "Legend pane open by default for 3D convex hull"
|
|
1337
|
+
},
|
|
1338
|
+
"matterviz.convex_hull.quaternary.camera_rotation_x": {
|
|
1339
|
+
"type": "number",
|
|
1340
|
+
"default": -0.6,
|
|
1341
|
+
"description": "Initial camera X rotation (rad) for quaternary (4D) convex hull",
|
|
1342
|
+
"minimum": -6.283,
|
|
1343
|
+
"maximum": 6.283
|
|
1344
|
+
},
|
|
1345
|
+
"matterviz.convex_hull.quaternary.camera_rotation_y": {
|
|
1346
|
+
"type": "number",
|
|
1347
|
+
"default": 0.8,
|
|
1348
|
+
"description": "Initial camera Y rotation (rad) for quaternary (4D) convex hull",
|
|
1349
|
+
"minimum": -6.283,
|
|
1350
|
+
"maximum": 6.283
|
|
1351
|
+
},
|
|
1352
|
+
"matterviz.convex_hull.quaternary.camera_zoom": {
|
|
1353
|
+
"type": "number",
|
|
1354
|
+
"default": 1.4,
|
|
1355
|
+
"description": "Initial camera zoom for quaternary (4D) convex hull",
|
|
1356
|
+
"minimum": 0.1,
|
|
1357
|
+
"maximum": 20
|
|
1358
|
+
},
|
|
1359
|
+
"matterviz.convex_hull.quaternary.camera_center_x": {
|
|
1360
|
+
"type": "number",
|
|
1361
|
+
"default": 0,
|
|
1362
|
+
"description": "Initial X center for quaternary (4D) convex hull"
|
|
1363
|
+
},
|
|
1364
|
+
"matterviz.convex_hull.quaternary.camera_center_y": {
|
|
1365
|
+
"type": "number",
|
|
1366
|
+
"default": 20,
|
|
1367
|
+
"description": "Initial Y center for quaternary (4D) convex hull"
|
|
1368
|
+
},
|
|
1369
|
+
"matterviz.convex_hull.quaternary.color_mode": {
|
|
1370
|
+
"type": "string",
|
|
1371
|
+
"default": "energy",
|
|
1372
|
+
"description": "Color mode for 4D convex hull points",
|
|
1373
|
+
"enum": [
|
|
1374
|
+
"stability",
|
|
1375
|
+
"energy"
|
|
1376
|
+
]
|
|
1377
|
+
},
|
|
1378
|
+
"matterviz.convex_hull.quaternary.color_scale": {
|
|
1379
|
+
"type": "string",
|
|
1380
|
+
"default": "interpolateViridis",
|
|
1381
|
+
"description": "D3 interpolate color scale for 4D convex hull energy mode"
|
|
1382
|
+
},
|
|
1383
|
+
"matterviz.convex_hull.quaternary.show_stable": {
|
|
1384
|
+
"type": "boolean",
|
|
1385
|
+
"default": true,
|
|
1386
|
+
"description": "Show stable phases in 4D convex hull"
|
|
1387
|
+
},
|
|
1388
|
+
"matterviz.convex_hull.quaternary.show_unstable": {
|
|
1389
|
+
"type": "boolean",
|
|
1390
|
+
"default": true,
|
|
1391
|
+
"description": "Show unstable phases in 4D convex hull"
|
|
1392
|
+
},
|
|
1393
|
+
"matterviz.convex_hull.quaternary.show_stable_labels": {
|
|
1394
|
+
"type": "boolean",
|
|
1395
|
+
"default": true,
|
|
1396
|
+
"description": "Show labels for stable phases in 4D convex hull"
|
|
1397
|
+
},
|
|
1398
|
+
"matterviz.convex_hull.quaternary.show_unstable_labels": {
|
|
1399
|
+
"type": "boolean",
|
|
1400
|
+
"default": false,
|
|
1401
|
+
"description": "Show labels for unstable phases in 4D convex hull"
|
|
1402
|
+
},
|
|
1403
|
+
"matterviz.convex_hull.quaternary.show_hull_faces": {
|
|
1404
|
+
"type": "boolean",
|
|
1405
|
+
"default": true,
|
|
1406
|
+
"description": "Show convex hull faces in 4D convex hull"
|
|
1407
|
+
},
|
|
1408
|
+
"matterviz.convex_hull.quaternary.hull_face_color": {
|
|
1409
|
+
"type": "string",
|
|
1410
|
+
"default": "#4caf50",
|
|
1411
|
+
"description": "Color for hull faces in 4D convex hull"
|
|
1412
|
+
},
|
|
1413
|
+
"matterviz.convex_hull.quaternary.hull_face_opacity": {
|
|
1414
|
+
"type": "number",
|
|
1415
|
+
"default": 0.03,
|
|
1416
|
+
"description": "Opacity for hull faces in 4D convex hull (0-1)",
|
|
1417
|
+
"minimum": 0,
|
|
1418
|
+
"maximum": 1
|
|
1419
|
+
},
|
|
1420
|
+
"matterviz.convex_hull.quaternary.hull_face_color_mode": {
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"default": "dominant_element",
|
|
1423
|
+
"description": "Coloring mode for hull faces: uniform (single color), formation_energy (by E_form), dominant_element (by element), or facet_index (categorical)",
|
|
1424
|
+
"enum": [
|
|
1425
|
+
"uniform",
|
|
1426
|
+
"formation_energy",
|
|
1427
|
+
"dominant_element",
|
|
1428
|
+
"facet_index"
|
|
1429
|
+
]
|
|
1430
|
+
},
|
|
1431
|
+
"matterviz.convex_hull.quaternary.max_hull_dist_show_phases": {
|
|
1432
|
+
"type": "number",
|
|
1433
|
+
"default": 0.1,
|
|
1434
|
+
"description": "Max eV/atom above hull for showing unstable entries in 4D convex hull",
|
|
1435
|
+
"minimum": 0,
|
|
1436
|
+
"maximum": 2
|
|
1437
|
+
},
|
|
1438
|
+
"matterviz.convex_hull.quaternary.max_hull_dist_show_labels": {
|
|
1439
|
+
"type": "number",
|
|
1440
|
+
"default": 0.1,
|
|
1441
|
+
"description": "Max eV/atom above hull for labeling unstable entries in 4D convex hull",
|
|
1442
|
+
"minimum": 0,
|
|
1443
|
+
"maximum": 2
|
|
1444
|
+
},
|
|
1445
|
+
"matterviz.convex_hull.quaternary.fullscreen": {
|
|
1446
|
+
"type": "boolean",
|
|
1447
|
+
"default": false,
|
|
1448
|
+
"description": "Start in fullscreen for 4D convex hull"
|
|
1449
|
+
},
|
|
1450
|
+
"matterviz.convex_hull.quaternary.info_pane_open": {
|
|
1451
|
+
"type": "boolean",
|
|
1452
|
+
"default": false,
|
|
1453
|
+
"description": "Info pane open by default for 4D convex hull"
|
|
1454
|
+
},
|
|
1455
|
+
"matterviz.convex_hull.quaternary.legend_pane_open": {
|
|
1456
|
+
"type": "boolean",
|
|
1457
|
+
"default": false,
|
|
1458
|
+
"description": "Legend pane open by default for 4D convex hull"
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
238
1462
|
},
|
|
1463
|
+
"activationEvents": [
|
|
1464
|
+
"onStartupFinished"
|
|
1465
|
+
],
|
|
1466
|
+
"extensionKind": [
|
|
1467
|
+
"workspace"
|
|
1468
|
+
],
|
|
1469
|
+
"icon": "icon.png",
|
|
239
1470
|
"engines": {
|
|
240
|
-
"
|
|
241
|
-
}
|
|
242
|
-
"packageManager": "pnpm@10.33.0"
|
|
1471
|
+
"vscode": "^1.100.0"
|
|
1472
|
+
}
|
|
243
1473
|
}
|