molstar 3.0.1 → 3.0.2
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/LICENSE +20 -20
- package/README.md +194 -194
- package/build/viewer/embedded.html +43 -43
- package/build/viewer/index.html +106 -106
- package/build/viewer/molstar.js +1 -1
- package/lib/apps/docking-viewer/index.html +36 -36
- package/lib/apps/viewer/embedded.html +43 -43
- package/lib/apps/viewer/index.html +106 -106
- package/lib/commonjs/apps/docking-viewer/index.js +253 -0
- package/lib/commonjs/apps/docking-viewer/viewport.d.ts +2 -2
- package/lib/commonjs/apps/docking-viewer/viewport.js +326 -0
- package/lib/commonjs/apps/viewer/app.d.ts +3 -3
- package/lib/commonjs/cli/chem-comp-dict/create-ions.d.ts +7 -0
- package/lib/commonjs/cli/chem-comp-dict/create-ions.js +68 -0
- package/lib/commonjs/cli/chem-comp-dict/create-table.d.ts +7 -0
- package/lib/commonjs/cli/chem-comp-dict/create-table.js +282 -0
- package/lib/commonjs/cli/chem-comp-dict/util.d.ts +146 -0
- package/lib/commonjs/cli/chem-comp-dict/util.js +144 -0
- package/lib/commonjs/cli/cif2bcif/converter.d.ts +8 -0
- package/lib/commonjs/cli/cif2bcif/converter.js +187 -0
- package/lib/commonjs/cli/cif2bcif/index.d.ts +8 -0
- package/lib/commonjs/cli/cif2bcif/index.js +81 -0
- package/lib/commonjs/cli/cifschema/index.d.ts +7 -0
- package/lib/commonjs/cli/cifschema/index.js +397 -0
- package/lib/commonjs/cli/cifschema/util/cif-dic.d.ts +11 -0
- package/lib/commonjs/cli/cifschema/util/cif-dic.js +456 -0
- package/lib/commonjs/cli/cifschema/util/generate.d.ts +7 -0
- package/lib/commonjs/cli/cifschema/util/generate.js +158 -0
- package/lib/commonjs/cli/cifschema/util/helper.d.ts +10 -0
- package/lib/commonjs/cli/cifschema/util/helper.js +22 -0
- package/lib/commonjs/cli/cifschema/util/schema.d.ts +70 -0
- package/lib/commonjs/cli/cifschema/util/schema.js +64 -0
- package/lib/commonjs/cli/lipid-params/index.d.ts +7 -0
- package/lib/commonjs/cli/lipid-params/index.js +104 -0
- package/lib/commonjs/cli/state-docs/index.js +64 -0
- package/lib/commonjs/cli/state-docs/pd-to-md.js +80 -0
- package/lib/commonjs/cli/structure-info/helpers.d.ts +7 -0
- package/lib/commonjs/cli/structure-info/helpers.js +92 -0
- package/lib/commonjs/cli/structure-info/model.js +336 -0
- package/lib/commonjs/cli/structure-info/volume.js +115 -0
- package/lib/commonjs/examples/alpha-orbitals/controls.js +25 -0
- package/lib/commonjs/examples/alpha-orbitals/example-data.js +60260 -0
- package/lib/commonjs/examples/alpha-orbitals/index.js +230 -0
- package/lib/commonjs/examples/basic-wrapper/coloring.js +31 -0
- package/lib/commonjs/examples/basic-wrapper/controls.js +23 -0
- package/lib/commonjs/examples/basic-wrapper/custom-theme.js +49 -0
- package/lib/commonjs/examples/basic-wrapper/index.js +265 -0
- package/lib/commonjs/examples/basic-wrapper/superposition.js +191 -0
- package/lib/commonjs/examples/domain-annotation-server/mapping.d.ts +6 -0
- package/lib/commonjs/examples/domain-annotation-server/mapping.js +111 -0
- package/lib/commonjs/examples/domain-annotation-server/schemas.d.ts +103 -0
- package/lib/commonjs/examples/domain-annotation-server/schemas.js +73 -0
- package/lib/commonjs/examples/domain-annotation-server/server.d.ts +6 -0
- package/lib/commonjs/examples/domain-annotation-server/server.js +65 -0
- package/lib/commonjs/examples/domain-annotation-server/test.d.ts +6 -0
- package/lib/commonjs/examples/domain-annotation-server/test.js +28 -0
- package/lib/commonjs/examples/lighting/index.js +145 -0
- package/lib/commonjs/examples/proteopedia-wrapper/annotation.js +88 -0
- package/lib/commonjs/examples/proteopedia-wrapper/coloring.js +97 -0
- package/lib/commonjs/examples/proteopedia-wrapper/helpers.js +109 -0
- package/lib/commonjs/examples/proteopedia-wrapper/index.js +498 -0
- package/lib/commonjs/examples/proteopedia-wrapper/ui/controls.js +19 -0
- package/lib/commonjs/examples/task.d.ts +19 -0
- package/lib/commonjs/examples/task.js +221 -0
- package/lib/commonjs/extensions/alpha-orbitals/collocation.js +134 -0
- package/lib/commonjs/extensions/alpha-orbitals/data-model.js +69 -0
- package/lib/commonjs/extensions/alpha-orbitals/density.js +113 -0
- package/lib/commonjs/extensions/alpha-orbitals/gpu/compute.js +157 -0
- package/lib/commonjs/extensions/alpha-orbitals/gpu/shader.frag.d.ts +7 -0
- package/lib/commonjs/extensions/alpha-orbitals/gpu/shader.frag.js +11 -0
- package/lib/commonjs/extensions/alpha-orbitals/orbitals.js +121 -0
- package/lib/commonjs/extensions/alpha-orbitals/spherical-functions.d.ts +11 -0
- package/lib/commonjs/extensions/alpha-orbitals/spherical-functions.js +66 -0
- package/lib/commonjs/extensions/alpha-orbitals/transforms.js +261 -0
- package/lib/commonjs/extensions/anvil/algorithm.js +578 -0
- package/lib/commonjs/extensions/anvil/behavior.d.ts +2 -2
- package/lib/commonjs/extensions/anvil/behavior.js +209 -0
- package/lib/commonjs/extensions/anvil/prop.js +82 -0
- package/lib/commonjs/extensions/anvil/representation.d.ts +5 -5
- package/lib/commonjs/extensions/anvil/representation.js +118 -0
- package/lib/commonjs/extensions/cellpack/color/generate.js +86 -0
- package/lib/commonjs/extensions/cellpack/color/provided.js +68 -0
- package/lib/commonjs/extensions/cellpack/curve.d.ts +9 -0
- package/lib/commonjs/extensions/cellpack/curve.js +203 -0
- package/lib/commonjs/extensions/cellpack/data.d.ts +107 -0
- package/lib/commonjs/extensions/cellpack/data.js +8 -0
- package/lib/commonjs/extensions/cellpack/index.js +39 -0
- package/lib/commonjs/extensions/cellpack/model.js +903 -0
- package/lib/commonjs/extensions/cellpack/preset.js +109 -0
- package/lib/commonjs/extensions/cellpack/property.js +31 -0
- package/lib/commonjs/extensions/cellpack/representation.d.ts +2 -2
- package/lib/commonjs/extensions/cellpack/representation.js +47 -0
- package/lib/commonjs/extensions/cellpack/state.js +397 -0
- package/lib/commonjs/extensions/cellpack/util.js +181 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/behavior.d.ts +1 -1
- package/lib/commonjs/extensions/dnatco/confal-pyramids/behavior.js +121 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/color.js +178 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/property.js +160 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/representation.d.ts +3 -3
- package/lib/commonjs/extensions/dnatco/confal-pyramids/representation.js +159 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/types.js +27 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/util.js +234 -0
- package/lib/commonjs/extensions/dnatco/index.js +12 -0
- package/lib/commonjs/extensions/g3d/data.js +71 -0
- package/lib/commonjs/extensions/g3d/format.js +232 -0
- package/lib/commonjs/extensions/g3d/model.js +215 -0
- package/lib/commonjs/extensions/geo-export/controls.js +109 -0
- package/lib/commonjs/extensions/geo-export/glb-exporter.js +323 -0
- package/lib/commonjs/extensions/geo-export/index.js +36 -0
- package/lib/commonjs/extensions/geo-export/mesh-exporter.js +457 -0
- package/lib/commonjs/extensions/geo-export/obj-exporter.js +212 -0
- package/lib/commonjs/extensions/geo-export/render-object-exporter.js +8 -0
- package/lib/commonjs/extensions/geo-export/stl-exporter.js +131 -0
- package/lib/commonjs/extensions/geo-export/ui.js +116 -0
- package/lib/commonjs/extensions/geo-export/usdz-exporter.js +222 -0
- package/lib/commonjs/extensions/model-archive/quality-assessment/behavior.d.ts +2 -2
- package/lib/commonjs/extensions/model-archive/quality-assessment/behavior.js +236 -0
- package/lib/commonjs/extensions/model-archive/quality-assessment/color/plddt.js +125 -0
- package/lib/commonjs/extensions/model-archive/quality-assessment/color/qmean.js +111 -0
- package/lib/commonjs/extensions/model-archive/quality-assessment/prop.js +130 -0
- package/lib/commonjs/extensions/model-export/export.js +129 -0
- package/lib/commonjs/extensions/model-export/index.js +36 -0
- package/lib/commonjs/extensions/model-export/ui.js +77 -0
- package/lib/commonjs/extensions/mp4-export/controls.js +142 -0
- package/lib/commonjs/extensions/mp4-export/encoder.js +119 -0
- package/lib/commonjs/extensions/mp4-export/index.js +36 -0
- package/lib/commonjs/extensions/mp4-export/ui.js +94 -0
- package/lib/commonjs/extensions/pdbe/index.js +15 -0
- package/lib/commonjs/extensions/pdbe/preferred-assembly.js +98 -0
- package/lib/commonjs/extensions/pdbe/struct-ref-domain.js +128 -0
- package/lib/commonjs/extensions/pdbe/structure-quality-report/behavior.js +75 -0
- package/lib/commonjs/extensions/pdbe/structure-quality-report/color.js +113 -0
- package/lib/commonjs/extensions/pdbe/structure-quality-report/prop.js +288 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/behavior.d.ts +5 -5
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/behavior.js +255 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/color.d.ts +2 -2
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/color.js +101 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/prop.js +220 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/representation.d.ts +1 -1
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/representation.js +363 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/ui.js +215 -0
- package/lib/commonjs/extensions/rcsb/graphql/symmetry.gql.d.ts +1 -0
- package/lib/commonjs/extensions/rcsb/graphql/symmetry.gql.js +5 -0
- package/lib/commonjs/extensions/rcsb/graphql/types.d.ts +12874 -0
- package/lib/commonjs/extensions/rcsb/graphql/types.js +3 -0
- package/lib/commonjs/extensions/rcsb/index.js +13 -0
- package/lib/commonjs/extensions/rcsb/validation-report/behavior.d.ts +3 -3
- package/lib/commonjs/extensions/rcsb/validation-report/behavior.js +421 -0
- package/lib/commonjs/extensions/rcsb/validation-report/color/density-fit.js +79 -0
- package/lib/commonjs/extensions/rcsb/validation-report/color/geometry-quality.js +110 -0
- package/lib/commonjs/extensions/rcsb/validation-report/color/random-coil-index.js +67 -0
- package/lib/commonjs/extensions/rcsb/validation-report/prop.js +490 -0
- package/lib/commonjs/extensions/rcsb/validation-report/representation.d.ts +5 -5
- package/lib/commonjs/extensions/rcsb/validation-report/representation.js +243 -0
- package/lib/commonjs/mol-canvas3d/camera/stereo.js +129 -0
- package/lib/commonjs/mol-canvas3d/camera/transition.js +103 -0
- package/lib/commonjs/mol-canvas3d/camera/util.d.ts +31 -0
- package/lib/commonjs/mol-canvas3d/camera/util.js +94 -0
- package/lib/commonjs/mol-canvas3d/camera.js +334 -0
- package/lib/commonjs/mol-canvas3d/canvas3d.d.ts +4 -4
- package/lib/commonjs/mol-canvas3d/controls/object.js +49 -0
- package/lib/commonjs/mol-canvas3d/controls/trackball.js +426 -0
- package/lib/commonjs/mol-canvas3d/helper/bounding-sphere-helper.js +157 -0
- package/lib/commonjs/mol-canvas3d/helper/camera-helper.d.ts +1 -1
- package/lib/commonjs/mol-canvas3d/helper/camera-helper.js +217 -0
- package/lib/commonjs/mol-canvas3d/helper/handle-helper.d.ts +1 -1
- package/lib/commonjs/mol-canvas3d/helper/handle-helper.js +184 -0
- package/lib/commonjs/mol-canvas3d/helper/helper.js +33 -0
- package/lib/commonjs/mol-canvas3d/passes/fxaa.js +94 -0
- package/lib/commonjs/mol-canvas3d/passes/image.d.ts +2 -2
- package/lib/commonjs/mol-canvas3d/passes/marking.js +131 -0
- package/lib/commonjs/mol-canvas3d/passes/postprocessing.d.ts +2 -2
- package/lib/commonjs/mol-canvas3d/passes/smaa.js +167 -0
- package/lib/commonjs/mol-canvas3d/passes/wboit.d.ts +23 -0
- package/lib/commonjs/mol-canvas3d/passes/wboit.js +115 -0
- package/lib/commonjs/mol-canvas3d/util.d.ts +10 -0
- package/lib/commonjs/mol-canvas3d/util.js +70 -0
- package/lib/commonjs/mol-data/db/column-helpers.d.ts +19 -0
- package/lib/commonjs/mol-data/db/column-helpers.js +44 -0
- package/lib/commonjs/mol-data/db/column.d.ts +135 -0
- package/lib/commonjs/mol-data/db/column.js +425 -0
- package/lib/commonjs/mol-data/db/database.d.ts +25 -0
- package/lib/commonjs/mol-data/db/database.js +40 -0
- package/lib/commonjs/mol-data/db/table.d.ts +57 -0
- package/lib/commonjs/mol-data/db/table.js +302 -0
- package/lib/commonjs/mol-data/db.d.ts +14 -0
- package/lib/commonjs/mol-data/db.js +19 -0
- package/lib/commonjs/mol-data/generic/hash-set.d.ts +12 -0
- package/lib/commonjs/mol-data/generic/hash-set.js +52 -0
- package/lib/commonjs/mol-data/generic/linked-list.d.ts +26 -0
- package/lib/commonjs/mol-data/generic/linked-list.js +95 -0
- package/lib/commonjs/mol-data/generic/unique-array.d.ts +15 -0
- package/lib/commonjs/mol-data/generic/unique-array.js +31 -0
- package/lib/commonjs/mol-data/generic.d.ts +8 -0
- package/lib/commonjs/mol-data/generic.js +12 -0
- package/lib/commonjs/mol-data/index.d.ts +11 -0
- package/lib/commonjs/mol-data/index.js +20 -0
- package/lib/commonjs/mol-data/int/impl/interval.d.ts +30 -0
- package/lib/commonjs/mol-data/int/impl/interval.js +84 -0
- package/lib/commonjs/mol-data/int/impl/ordered-set.d.ts +40 -0
- package/lib/commonjs/mol-data/int/impl/ordered-set.js +423 -0
- package/lib/commonjs/mol-data/int/impl/segmentation.d.ts +41 -0
- package/lib/commonjs/mol-data/int/impl/segmentation.js +109 -0
- package/lib/commonjs/mol-data/int/impl/sorted-array.d.ts +45 -0
- package/lib/commonjs/mol-data/int/impl/sorted-array.js +477 -0
- package/lib/commonjs/mol-data/int/interval.d.ts +53 -0
- package/lib/commonjs/mol-data/int/interval.js +56 -0
- package/lib/commonjs/mol-data/int/linked-index.d.ts +13 -0
- package/lib/commonjs/mol-data/int/linked-index.js +48 -0
- package/lib/commonjs/mol-data/int/map.d.ts +25 -0
- package/lib/commonjs/mol-data/int/map.js +50 -0
- package/lib/commonjs/mol-data/int/ordered-set.d.ts +55 -0
- package/lib/commonjs/mol-data/int/ordered-set.js +80 -0
- package/lib/commonjs/mol-data/int/segmentation.d.ts +32 -0
- package/lib/commonjs/mol-data/int/segmentation.js +22 -0
- package/lib/commonjs/mol-data/int/sorted-array.d.ts +49 -0
- package/lib/commonjs/mol-data/int/sorted-array.js +52 -0
- package/lib/commonjs/mol-data/int/sorted-ranges.d.ts +42 -0
- package/lib/commonjs/mol-data/int/sorted-ranges.js +125 -0
- package/lib/commonjs/mol-data/int/tuple.d.ts +28 -0
- package/lib/commonjs/mol-data/int/tuple.js +86 -0
- package/lib/commonjs/mol-data/int.d.ts +14 -0
- package/lib/commonjs/mol-data/int.js +25 -0
- package/lib/commonjs/mol-data/iterator.d.ts +25 -0
- package/lib/commonjs/mol-data/iterator.js +113 -0
- package/lib/commonjs/mol-data/util/array.d.ts +19 -0
- package/lib/commonjs/mol-data/util/array.js +56 -0
- package/lib/commonjs/mol-data/util/buckets.d.ts +16 -0
- package/lib/commonjs/mol-data/util/buckets.js +81 -0
- package/lib/commonjs/mol-data/util/chunked-array.d.ts +49 -0
- package/lib/commonjs/mol-data/util/chunked-array.js +175 -0
- package/lib/commonjs/mol-data/util/combination.d.ts +17 -0
- package/lib/commonjs/mol-data/util/combination.js +61 -0
- package/lib/commonjs/mol-data/util/equivalence-classes.d.ts +16 -0
- package/lib/commonjs/mol-data/util/equivalence-classes.js +52 -0
- package/lib/commonjs/mol-data/util/grouping.d.ts +23 -0
- package/lib/commonjs/mol-data/util/grouping.js +53 -0
- package/lib/commonjs/mol-data/util/hash-functions.d.ts +26 -0
- package/lib/commonjs/mol-data/util/hash-functions.js +96 -0
- package/lib/commonjs/mol-data/util/interval-iterator.d.ts +19 -0
- package/lib/commonjs/mol-data/util/interval-iterator.js +45 -0
- package/lib/commonjs/mol-data/util/sort.d.ts +12 -0
- package/lib/commonjs/mol-data/util/sort.js +164 -0
- package/lib/commonjs/mol-data/util.d.ts +12 -0
- package/lib/commonjs/mol-data/util.js +16 -0
- package/lib/commonjs/mol-geo/geometry/base.d.ts +5 -5
- package/lib/commonjs/mol-geo/geometry/base.js +152 -0
- package/lib/commonjs/mol-geo/geometry/clipping-data.js +55 -0
- package/lib/commonjs/mol-geo/geometry/color-data.js +235 -0
- package/lib/commonjs/mol-geo/geometry/cylinders/cylinders-builder.js +114 -0
- package/lib/commonjs/mol-geo/geometry/cylinders/cylinders.d.ts +3 -3
- package/lib/commonjs/mol-geo/geometry/cylinders/cylinders.js +197 -0
- package/lib/commonjs/mol-geo/geometry/direct-volume/direct-volume.d.ts +1 -1
- package/lib/commonjs/mol-geo/geometry/direct-volume/direct-volume.js +220 -0
- package/lib/commonjs/mol-geo/geometry/direct-volume/transfer-function.d.ts +15 -0
- package/lib/commonjs/mol-geo/geometry/direct-volume/transfer-function.js +61 -0
- package/lib/commonjs/mol-geo/geometry/geometry.js +89 -0
- package/lib/commonjs/mol-geo/geometry/image/image.d.ts +3 -3
- package/lib/commonjs/mol-geo/geometry/image/image.js +176 -0
- package/lib/commonjs/mol-geo/geometry/lines/lines-builder.js +110 -0
- package/lib/commonjs/mol-geo/geometry/lines/lines.d.ts +2 -1
- package/lib/commonjs/mol-geo/geometry/lines/lines.js +195 -0
- package/lib/commonjs/mol-geo/geometry/marker-data.d.ts +24 -0
- package/lib/commonjs/mol-geo/geometry/marker-data.js +103 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/axes.js +32 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/box.js +100 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/cylinder.js +119 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/ellipsoid.js +24 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/ribbon.js +85 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/sheet.js +187 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/sphere.js +30 -0
- package/lib/commonjs/mol-geo/geometry/mesh/builder/tube.js +175 -0
- package/lib/commonjs/mol-geo/geometry/mesh/color-smoothing.js +325 -0
- package/lib/commonjs/mol-geo/geometry/mesh/laplacian-smoothing.d.ts +5 -0
- package/lib/commonjs/mol-geo/geometry/mesh/laplacian-smoothing.js +75 -0
- package/lib/commonjs/mol-geo/geometry/mesh/mesh-builder.js +154 -0
- package/lib/commonjs/mol-geo/geometry/mesh/mesh.d.ts +1 -1
- package/lib/commonjs/mol-geo/geometry/mesh/mesh.js +638 -0
- package/lib/commonjs/mol-geo/geometry/overpaint-data.d.ts +23 -0
- package/lib/commonjs/mol-geo/geometry/overpaint-data.js +68 -0
- package/lib/commonjs/mol-geo/geometry/picking.d.ts +13 -0
- package/lib/commonjs/mol-geo/geometry/picking.js +16 -0
- package/lib/commonjs/mol-geo/geometry/points/points-builder.js +35 -0
- package/lib/commonjs/mol-geo/geometry/points/points.d.ts +4 -4
- package/lib/commonjs/mol-geo/geometry/points/points.js +175 -0
- package/lib/commonjs/mol-geo/geometry/size-data.js +123 -0
- package/lib/commonjs/mol-geo/geometry/spheres/spheres-builder.js +58 -0
- package/lib/commonjs/mol-geo/geometry/spheres/spheres.d.ts +1 -1
- package/lib/commonjs/mol-geo/geometry/spheres/spheres.js +180 -0
- package/lib/commonjs/mol-geo/geometry/substance-data.js +68 -0
- package/lib/commonjs/mol-geo/geometry/text/font-atlas.js +124 -0
- package/lib/commonjs/mol-geo/geometry/text/text-builder.js +284 -0
- package/lib/commonjs/mol-geo/geometry/text/text.d.ts +1 -1
- package/lib/commonjs/mol-geo/geometry/text/text.js +222 -0
- package/lib/commonjs/mol-geo/geometry/texture-mesh/color-smoothing.d.ts +70 -0
- package/lib/commonjs/mol-geo/geometry/texture-mesh/color-smoothing.js +432 -0
- package/lib/commonjs/mol-geo/geometry/texture-mesh/texture-mesh.d.ts +1 -1
- package/lib/commonjs/mol-geo/geometry/texture-mesh/texture-mesh.js +145 -0
- package/lib/commonjs/mol-geo/geometry/transform-data.d.ts +32 -0
- package/lib/commonjs/mol-geo/geometry/transform-data.js +87 -0
- package/lib/commonjs/mol-geo/geometry/transparency-data.d.ts +24 -0
- package/lib/commonjs/mol-geo/geometry/transparency-data.js +76 -0
- package/lib/commonjs/mol-geo/primitive/box.d.ts +10 -0
- package/lib/commonjs/mol-geo/primitive/box.js +94 -0
- package/lib/commonjs/mol-geo/primitive/cage.d.ts +14 -0
- package/lib/commonjs/mol-geo/primitive/cage.js +33 -0
- package/lib/commonjs/mol-geo/primitive/circle.d.ts +14 -0
- package/lib/commonjs/mol-geo/primitive/circle.js +69 -0
- package/lib/commonjs/mol-geo/primitive/cylinder.d.ts +19 -0
- package/lib/commonjs/mol-geo/primitive/cylinder.js +129 -0
- package/lib/commonjs/mol-geo/primitive/dodecahedron.d.ts +12 -0
- package/lib/commonjs/mol-geo/primitive/dodecahedron.js +67 -0
- package/lib/commonjs/mol-geo/primitive/icosahedron.d.ts +9 -0
- package/lib/commonjs/mol-geo/primitive/icosahedron.js +40 -0
- package/lib/commonjs/mol-geo/primitive/octahedron.d.ts +13 -0
- package/lib/commonjs/mol-geo/primitive/octahedron.js +50 -0
- package/lib/commonjs/mol-geo/primitive/plane.d.ts +9 -0
- package/lib/commonjs/mol-geo/primitive/plane.js +39 -0
- package/lib/commonjs/mol-geo/primitive/polygon.d.ts +10 -0
- package/lib/commonjs/mol-geo/primitive/polygon.js +29 -0
- package/lib/commonjs/mol-geo/primitive/polyhedron.d.ts +12 -0
- package/lib/commonjs/mol-geo/primitive/polyhedron.js +107 -0
- package/lib/commonjs/mol-geo/primitive/primitive.d.ts +24 -0
- package/lib/commonjs/mol-geo/primitive/primitive.js +97 -0
- package/lib/commonjs/mol-geo/primitive/prism.d.ts +29 -0
- package/lib/commonjs/mol-geo/primitive/prism.js +186 -0
- package/lib/commonjs/mol-geo/primitive/pyramid.d.ts +19 -0
- package/lib/commonjs/mol-geo/primitive/pyramid.js +126 -0
- package/lib/commonjs/mol-geo/primitive/sphere.d.ts +10 -0
- package/lib/commonjs/mol-geo/primitive/sphere.js +22 -0
- package/lib/commonjs/mol-geo/primitive/spiked-ball.d.ts +11 -0
- package/lib/commonjs/mol-geo/primitive/spiked-ball.js +61 -0
- package/lib/commonjs/mol-geo/primitive/star.d.ts +14 -0
- package/lib/commonjs/mol-geo/primitive/star.js +49 -0
- package/lib/commonjs/mol-geo/primitive/tetrahedron.d.ts +11 -0
- package/lib/commonjs/mol-geo/primitive/tetrahedron.js +33 -0
- package/lib/commonjs/mol-geo/primitive/torus.d.ts +15 -0
- package/lib/commonjs/mol-geo/primitive/torus.js +64 -0
- package/lib/commonjs/mol-geo/primitive/wedge.d.ts +13 -0
- package/lib/commonjs/mol-geo/primitive/wedge.js +56 -0
- package/lib/commonjs/mol-geo/util/location-iterator.js +91 -0
- package/lib/commonjs/mol-geo/util/marching-cubes/algorithm.js +285 -0
- package/lib/commonjs/mol-geo/util/marching-cubes/builder.js +100 -0
- package/lib/commonjs/mol-geo/util/marching-cubes/tables.d.ts +50 -0
- package/lib/commonjs/mol-geo/util/marching-cubes/tables.js +432 -0
- package/lib/commonjs/mol-geo/util.d.ts +36 -0
- package/lib/commonjs/mol-geo/util.js +137 -0
- package/lib/commonjs/mol-gl/commit-queue.js +61 -0
- package/lib/commonjs/mol-gl/compute/grid3d.d.ts +24 -0
- package/lib/commonjs/mol-gl/compute/grid3d.js +188 -0
- package/lib/commonjs/mol-gl/compute/histogram-pyramid/reduction.d.ts +16 -0
- package/lib/commonjs/mol-gl/compute/histogram-pyramid/reduction.js +158 -0
- package/lib/commonjs/mol-gl/compute/histogram-pyramid/sum.d.ts +8 -0
- package/lib/commonjs/mol-gl/compute/histogram-pyramid/sum.js +79 -0
- package/lib/commonjs/mol-gl/compute/marching-cubes/active-voxels.d.ts +9 -0
- package/lib/commonjs/mol-gl/compute/marching-cubes/active-voxels.js +84 -0
- package/lib/commonjs/mol-gl/compute/marching-cubes/isosurface.d.ts +30 -0
- package/lib/commonjs/mol-gl/compute/marching-cubes/isosurface.js +156 -0
- package/lib/commonjs/mol-gl/compute/marching-cubes/tables.d.ts +8 -0
- package/lib/commonjs/mol-gl/compute/marching-cubes/tables.js +42 -0
- package/lib/commonjs/mol-gl/compute/util.d.ts +39 -0
- package/lib/commonjs/mol-gl/compute/util.js +113 -0
- package/lib/commonjs/mol-gl/object3d.d.ts +16 -0
- package/lib/commonjs/mol-gl/object3d.js +28 -0
- package/lib/commonjs/mol-gl/render-object.js +41 -0
- package/lib/commonjs/mol-gl/renderable/cylinders.d.ts +99 -0
- package/lib/commonjs/mol-gl/renderable/cylinders.js +26 -0
- package/lib/commonjs/mol-gl/renderable/direct-volume.d.ts +104 -0
- package/lib/commonjs/mol-gl/renderable/direct-volume.js +30 -0
- package/lib/commonjs/mol-gl/renderable/image.js +27 -0
- package/lib/commonjs/mol-gl/renderable/lines.d.ts +94 -0
- package/lib/commonjs/mol-gl/renderable/lines.js +26 -0
- package/lib/commonjs/mol-gl/renderable/mesh.d.ts +93 -0
- package/lib/commonjs/mol-gl/renderable/mesh.js +26 -0
- package/lib/commonjs/mol-gl/renderable/points.d.ts +90 -0
- package/lib/commonjs/mol-gl/renderable/points.js +26 -0
- package/lib/commonjs/mol-gl/renderable/schema.d.ts +295 -0
- package/lib/commonjs/mol-gl/renderable/schema.js +203 -0
- package/lib/commonjs/mol-gl/renderable/spheres.d.ts +96 -0
- package/lib/commonjs/mol-gl/renderable/spheres.js +26 -0
- package/lib/commonjs/mol-gl/renderable/text.d.ts +101 -0
- package/lib/commonjs/mol-gl/renderable/text.js +26 -0
- package/lib/commonjs/mol-gl/renderable/texture-mesh.d.ts +93 -0
- package/lib/commonjs/mol-gl/renderable/texture-mesh.js +26 -0
- package/lib/commonjs/mol-gl/renderable/util.d.ts +41 -0
- package/lib/commonjs/mol-gl/renderable/util.js +181 -0
- package/lib/commonjs/mol-gl/renderable.d.ts +38 -0
- package/lib/commonjs/mol-gl/renderable.js +41 -0
- package/lib/commonjs/mol-gl/scene.d.ts +1 -1
- package/lib/commonjs/mol-gl/scene.js +226 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-fog.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-fog.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-interior-color.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-interior-color.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-light-color.glsl.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-light-color.glsl.js +13 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-marker-color.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/apply-marker-color.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-clipping-varying.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-clipping-varying.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-color-varying.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-color-varying.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-group.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-group.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-marker-varying.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-marker-varying.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-material-color.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-material-color.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-position.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-position.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-size.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/assign-size.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/check-picking-alpha.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/check-picking-alpha.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/clip-instance.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/clip-instance.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/clip-pixel.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/clip-pixel.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/color-frag-params.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/color-frag-params.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/color-vert-params.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/color-vert-params.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/common-clip.glsl.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/chunks/common-clip.glsl.js +11 -0
- package/lib/commonjs/mol-gl/shader/chunks/common-frag-params.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/common-frag-params.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/common-vert-params.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/common-vert-params.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/common.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/common.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/float-to-rgba.glsl.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/chunks/float-to-rgba.glsl.js +10 -0
- package/lib/commonjs/mol-gl/shader/chunks/light-frag-params.glsl.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/chunks/light-frag-params.glsl.js +13 -0
- package/lib/commonjs/mol-gl/shader/chunks/matrix-scale.glsl.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/chunks/matrix-scale.glsl.js +10 -0
- package/lib/commonjs/mol-gl/shader/chunks/normal-frag-params.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/normal-frag-params.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/read-from-texture.glsl.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/chunks/read-from-texture.glsl.js +10 -0
- package/lib/commonjs/mol-gl/shader/chunks/rgba-to-float.glsl.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/chunks/rgba-to-float.glsl.js +10 -0
- package/lib/commonjs/mol-gl/shader/chunks/size-vert-params.glsl.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/chunks/size-vert-params.glsl.js +5 -0
- package/lib/commonjs/mol-gl/shader/chunks/texture3d-from-1d-trilinear.glsl.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/chunks/texture3d-from-1d-trilinear.glsl.js +10 -0
- package/lib/commonjs/mol-gl/shader/chunks/texture3d-from-2d-linear.glsl.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/chunks/texture3d-from-2d-linear.glsl.js +11 -0
- package/lib/commonjs/mol-gl/shader/chunks/texture3d-from-2d-nearest.glsl.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/chunks/texture3d-from-2d-nearest.glsl.js +11 -0
- package/lib/commonjs/mol-gl/shader/chunks/wboit-write.glsl.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/chunks/wboit-write.glsl.js +11 -0
- package/lib/commonjs/mol-gl/shader/compose.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/compose.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/compute/color-smoothing/accumulate.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/compute/color-smoothing/accumulate.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/compute/color-smoothing/accumulate.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/compute/color-smoothing/accumulate.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/compute/color-smoothing/normalize.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/compute/color-smoothing/normalize.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/copy.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/copy.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/cylinders.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/cylinders.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/cylinders.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/cylinders.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/depth-merge.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/depth-merge.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/direct-volume.frag.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/direct-volume.frag.js +11 -0
- package/lib/commonjs/mol-gl/shader/direct-volume.vert.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/direct-volume.vert.js +11 -0
- package/lib/commonjs/mol-gl/shader/evaluate-wboit.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/evaluate-wboit.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/fxaa.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/fxaa.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/gaussian-density.frag.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/gaussian-density.frag.js +11 -0
- package/lib/commonjs/mol-gl/shader/gaussian-density.vert.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/gaussian-density.vert.js +11 -0
- package/lib/commonjs/mol-gl/shader/histogram-pyramid/reduction.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/histogram-pyramid/reduction.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/histogram-pyramid/sum.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/histogram-pyramid/sum.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/image.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/image.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/image.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/image.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/lines.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/lines.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/lines.vert.d.ts +8 -0
- package/lib/commonjs/mol-gl/shader/lines.vert.js +12 -0
- package/lib/commonjs/mol-gl/shader/marching-cubes/active-voxels.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/marching-cubes/active-voxels.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/marching-cubes/isosurface.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/marching-cubes/isosurface.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/marking/edge.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/marking/edge.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/marking/overlay.frag.d.ts +1 -0
- package/lib/commonjs/mol-gl/shader/marking/overlay.frag.js +5 -0
- package/lib/commonjs/mol-gl/shader/mesh.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/mesh.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/mesh.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/mesh.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/outlines.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/outlines.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/points.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/points.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/points.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/points.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/postprocessing.frag.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/postprocessing.frag.js +11 -0
- package/lib/commonjs/mol-gl/shader/quad.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/quad.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/smaa/blend.frag.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/smaa/blend.frag.js +13 -0
- package/lib/commonjs/mol-gl/shader/smaa/blend.vert.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/smaa/blend.vert.js +13 -0
- package/lib/commonjs/mol-gl/shader/smaa/edges.frag.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/smaa/edges.frag.js +13 -0
- package/lib/commonjs/mol-gl/shader/smaa/edges.vert.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/smaa/edges.vert.js +13 -0
- package/lib/commonjs/mol-gl/shader/smaa/weights.frag.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/smaa/weights.frag.js +13 -0
- package/lib/commonjs/mol-gl/shader/smaa/weights.vert.d.ts +9 -0
- package/lib/commonjs/mol-gl/shader/smaa/weights.vert.js +13 -0
- package/lib/commonjs/mol-gl/shader/spheres.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/spheres.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/spheres.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/spheres.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/ssao-blur.frag.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/ssao-blur.frag.js +11 -0
- package/lib/commonjs/mol-gl/shader/ssao.frag.d.ts +7 -0
- package/lib/commonjs/mol-gl/shader/ssao.frag.js +11 -0
- package/lib/commonjs/mol-gl/shader/text.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/text.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader/text.vert.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/text.vert.js +10 -0
- package/lib/commonjs/mol-gl/shader/util/grid3d-template.frag.d.ts +6 -0
- package/lib/commonjs/mol-gl/shader/util/grid3d-template.frag.js +10 -0
- package/lib/commonjs/mol-gl/shader-code.d.ts +47 -0
- package/lib/commonjs/mol-gl/shader-code.js +281 -0
- package/lib/commonjs/mol-gl/webgl/buffer.d.ts +67 -0
- package/lib/commonjs/mol-gl/webgl/buffer.js +180 -0
- package/lib/commonjs/mol-gl/webgl/compat.d.ts +96 -0
- package/lib/commonjs/mol-gl/webgl/compat.js +343 -0
- package/lib/commonjs/mol-gl/webgl/context.d.ts +84 -0
- package/lib/commonjs/mol-gl/webgl/context.js +309 -0
- package/lib/commonjs/mol-gl/webgl/extensions.d.ts +25 -0
- package/lib/commonjs/mol-gl/webgl/extensions.js +102 -0
- package/lib/commonjs/mol-gl/webgl/framebuffer.d.ts +15 -0
- package/lib/commonjs/mol-gl/webgl/framebuffer.js +71 -0
- package/lib/commonjs/mol-gl/webgl/program.d.ts +32 -0
- package/lib/commonjs/mol-gl/webgl/program.js +196 -0
- package/lib/commonjs/mol-gl/webgl/render-item.d.ts +54 -0
- package/lib/commonjs/mol-gl/webgl/render-item.js +335 -0
- package/lib/commonjs/mol-gl/webgl/render-target.d.ts +23 -0
- package/lib/commonjs/mol-gl/webgl/render-target.js +89 -0
- package/lib/commonjs/mol-gl/webgl/renderbuffer.d.ts +20 -0
- package/lib/commonjs/mol-gl/webgl/renderbuffer.js +83 -0
- package/lib/commonjs/mol-gl/webgl/resources.d.ts +38 -0
- package/lib/commonjs/mol-gl/webgl/resources.js +128 -0
- package/lib/commonjs/mol-gl/webgl/shader.d.ts +19 -0
- package/lib/commonjs/mol-gl/webgl/shader.js +50 -0
- package/lib/commonjs/mol-gl/webgl/state.d.ts +60 -0
- package/lib/commonjs/mol-gl/webgl/state.js +147 -0
- package/lib/commonjs/mol-gl/webgl/texture.d.ts +75 -0
- package/lib/commonjs/mol-gl/webgl/texture.js +398 -0
- package/lib/commonjs/mol-gl/webgl/uniform.d.ts +45 -0
- package/lib/commonjs/mol-gl/webgl/uniform.js +112 -0
- package/lib/commonjs/mol-gl/webgl/vertex-array.d.ts +17 -0
- package/lib/commonjs/mol-gl/webgl/vertex-array.js +69 -0
- package/lib/commonjs/mol-io/common/ascii.d.ts +6 -0
- package/lib/commonjs/mol-io/common/ascii.js +15 -0
- package/lib/commonjs/mol-io/common/binary-cif/array-encoder.d.ts +50 -0
- package/lib/commonjs/mol-io/common/binary-cif/array-encoder.js +396 -0
- package/lib/commonjs/mol-io/common/binary-cif/classifier.d.ts +8 -0
- package/lib/commonjs/mol-io/common/binary-cif/classifier.js +173 -0
- package/lib/commonjs/mol-io/common/binary-cif/decoder.d.ts +12 -0
- package/lib/commonjs/mol-io/common/binary-cif/decoder.js +180 -0
- package/lib/commonjs/mol-io/common/binary-cif/encoding.d.ts +96 -0
- package/lib/commonjs/mol-io/common/binary-cif/encoding.js +47 -0
- package/lib/commonjs/mol-io/common/binary-cif.d.ts +9 -0
- package/lib/commonjs/mol-io/common/binary-cif.js +15 -0
- package/lib/commonjs/mol-io/common/binary.d.ts +9 -0
- package/lib/commonjs/mol-io/common/binary.js +36 -0
- package/lib/commonjs/mol-io/common/file-handle.d.ts +43 -0
- package/lib/commonjs/mol-io/common/file-handle.js +55 -0
- package/lib/commonjs/mol-io/common/msgpack/decode.d.ts +1 -0
- package/lib/commonjs/mol-io/common/msgpack/decode.js +204 -0
- package/lib/commonjs/mol-io/common/msgpack/encode.d.ts +1 -0
- package/lib/commonjs/mol-io/common/msgpack/encode.js +290 -0
- package/lib/commonjs/mol-io/common/simple-buffer.d.ts +48 -0
- package/lib/commonjs/mol-io/common/simple-buffer.js +90 -0
- package/lib/commonjs/mol-io/common/typed-array.d.ts +30 -0
- package/lib/commonjs/mol-io/common/typed-array.js +83 -0
- package/lib/commonjs/mol-io/common/utf8.d.ts +10 -0
- package/lib/commonjs/mol-io/common/utf8.js +131 -0
- package/lib/commonjs/mol-io/reader/ccp4/parser.d.ts +19 -0
- package/lib/commonjs/mol-io/reader/ccp4/parser.js +193 -0
- package/lib/commonjs/mol-io/reader/ccp4/schema.d.ts +118 -0
- package/lib/commonjs/mol-io/reader/ccp4/schema.js +9 -0
- package/lib/commonjs/mol-io/reader/cif/binary/field.d.ts +9 -0
- package/lib/commonjs/mol-io/reader/cif/binary/field.js +54 -0
- package/lib/commonjs/mol-io/reader/cif/binary/parser.d.ts +9 -0
- package/lib/commonjs/mol-io/reader/cif/binary/parser.js +73 -0
- package/lib/commonjs/mol-io/reader/cif/data-model.d.ts +85 -0
- package/lib/commonjs/mol-io/reader/cif/data-model.js +307 -0
- package/lib/commonjs/mol-io/reader/cif/schema/bird.d.ts +491 -0
- package/lib/commonjs/mol-io/reader/cif/schema/bird.js +497 -0
- package/lib/commonjs/mol-io/reader/cif/schema/ccd-extras.d.ts +12 -0
- package/lib/commonjs/mol-io/reader/cif/schema/ccd-extras.js +18 -0
- package/lib/commonjs/mol-io/reader/cif/schema/ccd.d.ts +390 -0
- package/lib/commonjs/mol-io/reader/cif/schema/ccd.js +398 -0
- package/lib/commonjs/mol-io/reader/cif/schema/cif-core.d.ts +684 -0
- package/lib/commonjs/mol-io/reader/cif/schema/cif-core.js +750 -0
- package/lib/commonjs/mol-io/reader/cif/schema/ddl.d.ts +0 -0
- package/lib/commonjs/mol-io/reader/cif/schema/ddl.js +3 -0
- package/lib/commonjs/mol-io/reader/cif/schema/density-server.d.ts +52 -0
- package/lib/commonjs/mol-io/reader/cif/schema/density-server.js +60 -0
- package/lib/commonjs/mol-io/reader/cif/schema/dic.d.ts +51 -0
- package/lib/commonjs/mol-io/reader/cif/schema/dic.js +63 -0
- package/lib/commonjs/mol-io/reader/cif/schema/mmcif-extras.d.ts +39 -0
- package/lib/commonjs/mol-io/reader/cif/schema/mmcif-extras.js +28 -0
- package/lib/commonjs/mol-io/reader/cif/schema/mmcif.d.ts +5036 -0
- package/lib/commonjs/mol-io/reader/cif/schema/mmcif.js +5046 -0
- package/lib/commonjs/mol-io/reader/cif/schema.d.ts +16 -0
- package/lib/commonjs/mol-io/reader/cif/schema.js +211 -0
- package/lib/commonjs/mol-io/reader/cif/text/parser.d.ts +27 -0
- package/lib/commonjs/mol-io/reader/cif/text/parser.js +732 -0
- package/lib/commonjs/mol-io/reader/cif.d.ts +32 -0
- package/lib/commonjs/mol-io/reader/cif.js +36 -0
- package/lib/commonjs/mol-io/reader/common/binary/column.d.ts +5 -0
- package/lib/commonjs/mol-io/reader/common/binary/column.js +7 -0
- package/lib/commonjs/mol-io/reader/common/text/column/fixed.d.ts +9 -0
- package/lib/commonjs/mol-io/reader/common/text/column/fixed.js +52 -0
- package/lib/commonjs/mol-io/reader/common/text/column/token.d.ts +12 -0
- package/lib/commonjs/mol-io/reader/common/text/column/token.js +63 -0
- package/lib/commonjs/mol-io/reader/common/text/number-parser.d.ts +26 -0
- package/lib/commonjs/mol-io/reader/common/text/number-parser.js +163 -0
- package/lib/commonjs/mol-io/reader/common/text/tokenizer.d.ts +66 -0
- package/lib/commonjs/mol-io/reader/common/text/tokenizer.js +307 -0
- package/lib/commonjs/mol-io/reader/csv/data-model.d.ts +20 -0
- package/lib/commonjs/mol-io/reader/csv/data-model.js +20 -0
- package/lib/commonjs/mol-io/reader/csv/field.d.ts +7 -0
- package/lib/commonjs/mol-io/reader/csv/field.js +11 -0
- package/lib/commonjs/mol-io/reader/csv/parser.d.ts +16 -0
- package/lib/commonjs/mol-io/reader/csv/parser.js +259 -0
- package/lib/commonjs/mol-io/reader/csv/schema.d.ts +6 -0
- package/lib/commonjs/mol-io/reader/csv/schema.js +11 -0
- package/lib/commonjs/mol-io/reader/cube/parser.d.ts +41 -0
- package/lib/commonjs/mol-io/reader/cube/parser.js +114 -0
- package/lib/commonjs/mol-io/reader/dcd/parser.d.ts +30 -0
- package/lib/commonjs/mol-io/reader/dcd/parser.js +170 -0
- package/lib/commonjs/mol-io/reader/dsn6/parser.d.ts +22 -0
- package/lib/commonjs/mol-io/reader/dsn6/parser.js +188 -0
- package/lib/commonjs/mol-io/reader/dsn6/schema.d.ts +43 -0
- package/lib/commonjs/mol-io/reader/dsn6/schema.js +8 -0
- package/lib/commonjs/mol-io/reader/dx/parser.d.ts +24 -0
- package/lib/commonjs/mol-io/reader/dx/parser.js +129 -0
- package/lib/commonjs/mol-io/reader/gro/parser.d.ts +10 -0
- package/lib/commonjs/mol-io/reader/gro/parser.js +173 -0
- package/lib/commonjs/mol-io/reader/mol/parser.d.ts +53 -0
- package/lib/commonjs/mol-io/reader/mol/parser.js +204 -0
- package/lib/commonjs/mol-io/reader/mol2/parser.d.ts +10 -0
- package/lib/commonjs/mol-io/reader/mol2/parser.js +322 -0
- package/lib/commonjs/mol-io/reader/mol2/schema.d.ts +59 -0
- package/lib/commonjs/mol-io/reader/mol2/schema.js +8 -0
- package/lib/commonjs/mol-io/reader/obj/parser.js +35 -0
- package/lib/commonjs/mol-io/reader/pdb/parser.d.ts +10 -0
- package/lib/commonjs/mol-io/reader/pdb/parser.js +35 -0
- package/lib/commonjs/mol-io/reader/pdb/schema.d.ts +12 -0
- package/lib/commonjs/mol-io/reader/pdb/schema.js +9 -0
- package/lib/commonjs/mol-io/reader/ply/parser.d.ts +9 -0
- package/lib/commonjs/mol-io/reader/ply/parser.js +253 -0
- package/lib/commonjs/mol-io/reader/ply/schema.d.ts +52 -0
- package/lib/commonjs/mol-io/reader/ply/schema.js +50 -0
- package/lib/commonjs/mol-io/reader/psf/parser.d.ts +29 -0
- package/lib/commonjs/mol-io/reader/psf/parser.js +282 -0
- package/lib/commonjs/mol-io/reader/result.d.ts +19 -0
- package/lib/commonjs/mol-io/reader/result.js +48 -0
- package/lib/commonjs/mol-io/reader/sdf/parser-v3-util.d.ts +15 -0
- package/lib/commonjs/mol-io/reader/sdf/parser-v3-util.js +100 -0
- package/lib/commonjs/mol-io/reader/sdf/parser.d.ts +24 -0
- package/lib/commonjs/mol-io/reader/sdf/parser.js +111 -0
- package/lib/commonjs/mol-io/reader/xtc/parser.d.ts +23 -0
- package/lib/commonjs/mol-io/reader/xtc/parser.js +377 -0
- package/lib/commonjs/mol-io/reader/xyz/parser.d.ts +19 -0
- package/lib/commonjs/mol-io/reader/xyz/parser.js +61 -0
- package/lib/commonjs/mol-io/utils/short-string-pool.d.ts +18 -0
- package/lib/commonjs/mol-io/utils/short-string-pool.js +26 -0
- package/lib/commonjs/mol-io/writer/cif/encoder/binary.d.ts +33 -0
- package/lib/commonjs/mol-io/writer/cif/encoder/binary.js +191 -0
- package/lib/commonjs/mol-io/writer/cif/encoder/text.d.ts +27 -0
- package/lib/commonjs/mol-io/writer/cif/encoder/text.js +257 -0
- package/lib/commonjs/mol-io/writer/cif/encoder/util.d.ts +19 -0
- package/lib/commonjs/mol-io/writer/cif/encoder/util.js +36 -0
- package/lib/commonjs/mol-io/writer/cif/encoder.d.ts +108 -0
- package/lib/commonjs/mol-io/writer/cif/encoder.js +270 -0
- package/lib/commonjs/mol-io/writer/cif.d.ts +46 -0
- package/lib/commonjs/mol-io/writer/cif.js +98 -0
- package/lib/commonjs/mol-io/writer/encoder.d.ts +12 -0
- package/lib/commonjs/mol-io/writer/encoder.js +8 -0
- package/lib/commonjs/mol-io/writer/ligand-encoder.js +127 -0
- package/lib/commonjs/mol-io/writer/mol/encoder.js +125 -0
- package/lib/commonjs/mol-io/writer/mol.js +18 -0
- package/lib/commonjs/mol-io/writer/mol2/encoder.js +328 -0
- package/lib/commonjs/mol-io/writer/mol2.js +18 -0
- package/lib/commonjs/mol-io/writer/sdf.js +18 -0
- package/lib/commonjs/mol-io/writer/writer.d.ts +12 -0
- package/lib/commonjs/mol-io/writer/writer.js +8 -0
- package/lib/commonjs/mol-math/approx.d.ts +37 -0
- package/lib/commonjs/mol-math/approx.js +211 -0
- package/lib/commonjs/mol-math/easing.d.ts +25 -0
- package/lib/commonjs/mol-math/easing.js +91 -0
- package/lib/commonjs/mol-math/geometry/boundary-helper.d.ts +31 -0
- package/lib/commonjs/mol-math/geometry/boundary-helper.js +150 -0
- package/lib/commonjs/mol-math/geometry/boundary.d.ts +13 -0
- package/lib/commonjs/mol-math/geometry/boundary.js +54 -0
- package/lib/commonjs/mol-math/geometry/centroid-helper.d.ts +31 -0
- package/lib/commonjs/mol-math/geometry/centroid-helper.js +114 -0
- package/lib/commonjs/mol-math/geometry/common.d.ts +41 -0
- package/lib/commonjs/mol-math/geometry/common.js +25 -0
- package/lib/commonjs/mol-math/geometry/distance-transform.d.ts +10 -0
- package/lib/commonjs/mol-math/geometry/distance-transform.js +57 -0
- package/lib/commonjs/mol-math/geometry/gaussian-density/cpu.d.ts +10 -0
- package/lib/commonjs/mol-math/geometry/gaussian-density/cpu.js +139 -0
- package/lib/commonjs/mol-math/geometry/gaussian-density/gpu.d.ts +15 -0
- package/lib/commonjs/mol-math/geometry/gaussian-density/gpu.js +390 -0
- package/lib/commonjs/mol-math/geometry/gaussian-density.d.ts +28 -0
- package/lib/commonjs/mol-math/geometry/gaussian-density.js +52 -0
- package/lib/commonjs/mol-math/geometry/lookup3d/common.d.ts +29 -0
- package/lib/commonjs/mol-math/geometry/lookup3d/common.js +35 -0
- package/lib/commonjs/mol-math/geometry/lookup3d/grid.d.ts +19 -0
- package/lib/commonjs/mol-math/geometry/lookup3d/grid.js +199 -0
- package/lib/commonjs/mol-math/geometry/molecular-surface.js +357 -0
- package/lib/commonjs/mol-math/geometry/primitives/axes3d.d.ts +28 -0
- package/lib/commonjs/mol-math/geometry/primitives/axes3d.js +71 -0
- package/lib/commonjs/mol-math/geometry/primitives/box3d.d.ts +40 -0
- package/lib/commonjs/mol-math/geometry/primitives/box3d.js +131 -0
- package/lib/commonjs/mol-math/geometry/primitives/sphere3d.d.ts +60 -0
- package/lib/commonjs/mol-math/geometry/primitives/sphere3d.js +269 -0
- package/lib/commonjs/mol-math/geometry/spacegroup/cell.d.ts +17 -0
- package/lib/commonjs/mol-math/geometry/spacegroup/cell.js +40 -0
- package/lib/commonjs/mol-math/geometry/spacegroup/construction.d.ts +50 -0
- package/lib/commonjs/mol-math/geometry/spacegroup/construction.js +169 -0
- package/lib/commonjs/mol-math/geometry/spacegroup/tables.d.ts +371 -0
- package/lib/commonjs/mol-math/geometry/spacegroup/tables.js +1532 -0
- package/lib/commonjs/mol-math/geometry/symmetry-operator.d.ts +76 -0
- package/lib/commonjs/mol-math/geometry/symmetry-operator.js +226 -0
- package/lib/commonjs/mol-math/geometry.d.ts +14 -0
- package/lib/commonjs/mol-math/geometry.js +18 -0
- package/lib/commonjs/mol-math/graph/int-adjacency-graph.d.ts +136 -0
- package/lib/commonjs/mol-math/graph/int-adjacency-graph.js +367 -0
- package/lib/commonjs/mol-math/graph/inter-unit-graph.d.ts +71 -0
- package/lib/commonjs/mol-math/graph/inter-unit-graph.js +148 -0
- package/lib/commonjs/mol-math/graph.d.ts +6 -0
- package/lib/commonjs/mol-math/graph.js +10 -0
- package/lib/commonjs/mol-math/histogram.d.ts +15 -0
- package/lib/commonjs/mol-math/histogram.js +35 -0
- package/lib/commonjs/mol-math/interpolate.d.ts +18 -0
- package/lib/commonjs/mol-math/interpolate.js +72 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/common.d.ts +8 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/common.js +26 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/mat3.d.ts +79 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/mat3.js +439 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/mat4.d.ts +150 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/mat4.js +1032 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/minimize-rmsd.d.ts +33 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/minimize-rmsd.js +136 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/quat.d.ts +89 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/quat.js +435 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/vec2.d.ts +50 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/vec2.js +159 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/vec3.d.ts +183 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/vec3.js +583 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/vec4.d.ts +63 -0
- package/lib/commonjs/mol-math/linear-algebra/3d/vec4.js +221 -0
- package/lib/commonjs/mol-math/linear-algebra/3d.d.ts +15 -0
- package/lib/commonjs/mol-math/linear-algebra/3d.js +35 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/evd.d.ts +20 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/evd.js +259 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/matrix.d.ts +36 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/matrix.js +111 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/principal-axes.d.ts +21 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/principal-axes.js +134 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/svd.d.ts +11 -0
- package/lib/commonjs/mol-math/linear-algebra/matrix/svd.js +281 -0
- package/lib/commonjs/mol-math/linear-algebra/tensor.d.ts +49 -0
- package/lib/commonjs/mol-math/linear-algebra/tensor.js +325 -0
- package/lib/commonjs/mol-math/linear-algebra.d.ts +7 -0
- package/lib/commonjs/mol-math/linear-algebra.js +11 -0
- package/lib/commonjs/mol-math/misc.d.ts +16 -0
- package/lib/commonjs/mol-math/misc.js +69 -0
- package/lib/commonjs/mol-model/custom-property.js +82 -0
- package/lib/commonjs/mol-model/location.js +23 -0
- package/lib/commonjs/mol-model/loci.d.ts +20 -20
- package/lib/commonjs/mol-model/sequence/alignment/alignment.d.ts +17 -0
- package/lib/commonjs/mol-model/sequence/alignment/alignment.js +181 -0
- package/lib/commonjs/mol-model/sequence/alignment/sequence.js +97 -0
- package/lib/commonjs/mol-model/sequence/alignment/substitution-matrix.d.ts +23 -0
- package/lib/commonjs/mol-model/sequence/alignment/substitution-matrix.js +75 -0
- package/lib/commonjs/mol-model/sequence/alignment.d.ts +0 -0
- package/lib/commonjs/mol-model/sequence/alignment.js +2 -0
- package/lib/commonjs/mol-model/sequence/constants.d.ts +10 -0
- package/lib/commonjs/mol-model/sequence/constants.js +73 -0
- package/lib/commonjs/mol-model/sequence/sequence.d.ts +43 -0
- package/lib/commonjs/mol-model/sequence/sequence.js +162 -0
- package/lib/commonjs/mol-model/sequence.d.ts +6 -0
- package/lib/commonjs/mol-model/sequence.js +10 -0
- package/lib/commonjs/mol-model/shape/provider.js +8 -0
- package/lib/commonjs/mol-model/shape/shape.d.ts +1 -1
- package/lib/commonjs/mol-model/shape/shape.js +216 -0
- package/lib/commonjs/mol-model/shape.js +10 -0
- package/lib/commonjs/mol-model/structure/coordinates/coordinates.d.ts +62 -0
- package/lib/commonjs/mol-model/structure/coordinates/coordinates.js +124 -0
- package/lib/commonjs/mol-model/structure/coordinates.d.ts +6 -0
- package/lib/commonjs/mol-model/structure/coordinates.js +10 -0
- package/lib/commonjs/mol-model/structure/export/categories/atom_site.js +160 -0
- package/lib/commonjs/mol-model/structure/export/categories/atom_site_operator_mapping.js +89 -0
- package/lib/commonjs/mol-model/structure/export/categories/misc.js +63 -0
- package/lib/commonjs/mol-model/structure/export/categories/secondary-structure.js +102 -0
- package/lib/commonjs/mol-model/structure/export/categories/sequence.js +34 -0
- package/lib/commonjs/mol-model/structure/export/categories/utils.js +110 -0
- package/lib/commonjs/mol-model/structure/export/mmcif.js +247 -0
- package/lib/commonjs/mol-model/structure/model/indexing.d.ts +21 -0
- package/lib/commonjs/mol-model/structure/model/indexing.js +8 -0
- package/lib/commonjs/mol-model/structure/model/model.js +327 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/bonds.d.ts +13 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/bonds.js +93 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/conformation.d.ts +41 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/conformation.js +9 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/hierarchy.d.ts +244 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/hierarchy.js +110 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/measures.d.ts +21 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/measures.js +38 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/types.d.ts +155 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic/types.js +70 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic.d.ts +8 -0
- package/lib/commonjs/mol-model/structure/model/properties/atomic.js +12 -0
- package/lib/commonjs/mol-model/structure/model/properties/coarse/conformation.d.ts +57 -0
- package/lib/commonjs/mol-model/structure/model/properties/coarse/conformation.js +9 -0
- package/lib/commonjs/mol-model/structure/model/properties/common.d.ts +30 -0
- package/lib/commonjs/mol-model/structure/model/properties/common.js +12 -0
- package/lib/commonjs/mol-model/structure/model/properties/custom/indexed.js +197 -0
- package/lib/commonjs/mol-model/structure/model/properties/global-transform.js +82 -0
- package/lib/commonjs/mol-model/structure/model/properties/seconday-structure.d.ts +47 -0
- package/lib/commonjs/mol-model/structure/model/properties/seconday-structure.js +13 -0
- package/lib/commonjs/mol-model/structure/model/properties/symmetry.js +69 -0
- package/lib/commonjs/mol-model/structure/model/properties/utils/atomic-derived.js +84 -0
- package/lib/commonjs/mol-model/structure/model/properties/utils/atomic-index.d.ts +10 -0
- package/lib/commonjs/mol-model/structure/model/properties/utils/atomic-index.js +229 -0
- package/lib/commonjs/mol-model/structure/model/properties/utils/atomic-ranges.js +117 -0
- package/lib/commonjs/mol-model/structure/model/properties/utils/coarse-keys.js +97 -0
- package/lib/commonjs/mol-model/structure/model/properties/utils/residue-set.js +98 -0
- package/lib/commonjs/mol-model/structure/model/types/ions.d.ts +8 -0
- package/lib/commonjs/mol-model/structure/model/types/ions.js +12 -0
- package/lib/commonjs/mol-model/structure/model/types/lipids.d.ts +8 -0
- package/lib/commonjs/mol-model/structure/model/types/lipids.js +12 -0
- package/lib/commonjs/mol-model/structure/model/types.d.ts +261 -0
- package/lib/commonjs/mol-model/structure/model/types.js +620 -0
- package/lib/commonjs/mol-model/structure/model/util.js +52 -0
- package/lib/commonjs/mol-model/structure/model.js +20 -0
- package/lib/commonjs/mol-model/structure/query/context.js +135 -0
- package/lib/commonjs/mol-model/structure/query/predicates.js +120 -0
- package/lib/commonjs/mol-model/structure/query/queries/combinators.js +73 -0
- package/lib/commonjs/mol-model/structure/query/queries/filters.js +309 -0
- package/lib/commonjs/mol-model/structure/query/queries/generators.js +351 -0
- package/lib/commonjs/mol-model/structure/query/queries/internal.js +130 -0
- package/lib/commonjs/mol-model/structure/query/queries/modifiers.js +614 -0
- package/lib/commonjs/mol-model/structure/query/query.js +18 -0
- package/lib/commonjs/mol-model/structure/query/selection.js +163 -0
- package/lib/commonjs/mol-model/structure/query/utils/builders.js +86 -0
- package/lib/commonjs/mol-model/structure/query/utils/structure-distance.js +126 -0
- package/lib/commonjs/mol-model/structure/query/utils/structure-set.js +138 -0
- package/lib/commonjs/mol-model/structure/query.js +29 -0
- package/lib/commonjs/mol-model/structure/structure/carbohydrates/compute.js +390 -0
- package/lib/commonjs/mol-model/structure/structure/carbohydrates/constants.d.ts +64 -0
- package/lib/commonjs/mol-model/structure/structure/carbohydrates/constants.js +322 -0
- package/lib/commonjs/mol-model/structure/structure/carbohydrates/data.js +19 -0
- package/lib/commonjs/mol-model/structure/structure/element/bundle.js +247 -0
- package/lib/commonjs/mol-model/structure/structure/element/element.js +15 -0
- package/lib/commonjs/mol-model/structure/structure/element/location.js +67 -0
- package/lib/commonjs/mol-model/structure/structure/element/loci.d.ts +1 -1
- package/lib/commonjs/mol-model/structure/structure/element/loci.js +723 -0
- package/lib/commonjs/mol-model/structure/structure/element/stats.js +359 -0
- package/lib/commonjs/mol-model/structure/structure/element/util.js +47 -0
- package/lib/commonjs/mol-model/structure/structure/element.js +13 -0
- package/lib/commonjs/mol-model/structure/structure/properties.d.ts +2 -2
- package/lib/commonjs/mol-model/structure/structure/properties.js +177 -0
- package/lib/commonjs/mol-model/structure/structure/structure.js +1390 -0
- package/lib/commonjs/mol-model/structure/structure/symmetry.js +337 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds/common.d.ts +21 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds/common.js +122 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds/data.js +46 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds/element-set-intra-bond-cache.js +50 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds/inter-compute.js +199 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds/intra-compute.js +240 -0
- package/lib/commonjs/mol-model/structure/structure/unit/bonds.js +224 -0
- package/lib/commonjs/mol-model/structure/structure/unit/rings/compute.js +337 -0
- package/lib/commonjs/mol-model/structure/structure/unit/rings.js +218 -0
- package/lib/commonjs/mol-model/structure/structure/unit.d.ts +4 -4
- package/lib/commonjs/mol-model/structure/structure/unit.js +492 -0
- package/lib/commonjs/mol-model/structure/structure/util/boundary.js +50 -0
- package/lib/commonjs/mol-model/structure/structure/util/lookup3d.js +200 -0
- package/lib/commonjs/mol-model/structure/structure/util/polymer.js +123 -0
- package/lib/commonjs/mol-model/structure/structure/util/principal-axes.js +28 -0
- package/lib/commonjs/mol-model/structure/structure/util/subset-builder.js +115 -0
- package/lib/commonjs/mol-model/structure/structure/util/superposition-db-mapping.js +135 -0
- package/lib/commonjs/mol-model/structure/structure/util/superposition.js +91 -0
- package/lib/commonjs/mol-model/structure/structure/util/unique-subset-builder.js +100 -0
- package/lib/commonjs/mol-model/structure/structure/util/unit-transforms.js +73 -0
- package/lib/commonjs/mol-model/structure/structure.js +24 -0
- package/lib/commonjs/mol-model/structure/topology/topology.d.ts +24 -0
- package/lib/commonjs/mol-model/structure/topology/topology.js +24 -0
- package/lib/commonjs/mol-model/structure/topology.d.ts +6 -0
- package/lib/commonjs/mol-model/structure/topology.js +10 -0
- package/lib/commonjs/mol-model/structure/trajectory.js +22 -0
- package/lib/commonjs/mol-model/structure/util.js +60 -0
- package/lib/commonjs/mol-model/structure.js +16 -0
- package/lib/commonjs/mol-model/volume/grid.d.ts +41 -0
- package/lib/commonjs/mol-model/volume/grid.js +67 -0
- package/lib/commonjs/mol-model-formats/format.d.ts +11 -0
- package/lib/commonjs/mol-model-formats/format.js +9 -0
- package/lib/commonjs/mol-model-formats/shape/ply.d.ts +6 -6
- package/lib/commonjs/mol-model-formats/shape/ply.js +295 -0
- package/lib/commonjs/mol-model-formats/structure/basic/atomic.js +174 -0
- package/lib/commonjs/mol-model-formats/structure/basic/coarse.js +84 -0
- package/lib/commonjs/mol-model-formats/structure/basic/entities.js +137 -0
- package/lib/commonjs/mol-model-formats/structure/basic/parser.js +245 -0
- package/lib/commonjs/mol-model-formats/structure/basic/properties.js +132 -0
- package/lib/commonjs/mol-model-formats/structure/basic/schema.d.ts +194 -0
- package/lib/commonjs/mol-model-formats/structure/basic/schema.js +45 -0
- package/lib/commonjs/mol-model-formats/structure/basic/sequence.js +40 -0
- package/lib/commonjs/mol-model-formats/structure/basic/sort.d.ts +13 -0
- package/lib/commonjs/mol-model-formats/structure/basic/sort.js +72 -0
- package/lib/commonjs/mol-model-formats/structure/basic/util.d.ts +8 -0
- package/lib/commonjs/mol-model-formats/structure/basic/util.js +22 -0
- package/lib/commonjs/mol-model-formats/structure/cif-core.js +258 -0
- package/lib/commonjs/mol-model-formats/structure/common/component.d.ts +50 -0
- package/lib/commonjs/mol-model-formats/structure/common/component.js +185 -0
- package/lib/commonjs/mol-model-formats/structure/common/entity.d.ts +40 -0
- package/lib/commonjs/mol-model-formats/structure/common/entity.js +80 -0
- package/lib/commonjs/mol-model-formats/structure/common/property.js +66 -0
- package/lib/commonjs/mol-model-formats/structure/common/util.d.ts +6 -0
- package/lib/commonjs/mol-model-formats/structure/common/util.js +27 -0
- package/lib/commonjs/mol-model-formats/structure/cube.js +78 -0
- package/lib/commonjs/mol-model-formats/structure/dcd.d.ts +9 -0
- package/lib/commonjs/mol-model-formats/structure/dcd.js +67 -0
- package/lib/commonjs/mol-model-formats/structure/gro.js +126 -0
- package/lib/commonjs/mol-model-formats/structure/mmcif.js +93 -0
- package/lib/commonjs/mol-model-formats/structure/mol.js +104 -0
- package/lib/commonjs/mol-model-formats/structure/mol2.js +163 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/anisotropic.d.ts +36 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/anisotropic.js +130 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/assembly.d.ts +10 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/assembly.js +243 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/atom-site.d.ts +35 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/atom-site.js +145 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/conect.d.ts +11 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/conect.js +75 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/entity.d.ts +9 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/entity.js +113 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/secondary-structure.d.ts +9 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/secondary-structure.js +205 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/to-cif.d.ts +9 -0
- package/lib/commonjs/mol-model-formats/structure/pdb/to-cif.js +231 -0
- package/lib/commonjs/mol-model-formats/structure/pdb.js +71 -0
- package/lib/commonjs/mol-model-formats/structure/property/anisotropic.js +72 -0
- package/lib/commonjs/mol-model-formats/structure/property/assembly.js +126 -0
- package/lib/commonjs/mol-model-formats/structure/property/atoms/chem_comp.js +87 -0
- package/lib/commonjs/mol-model-formats/structure/property/bonds/chem_comp.js +117 -0
- package/lib/commonjs/mol-model-formats/structure/property/bonds/index-pair.js +62 -0
- package/lib/commonjs/mol-model-formats/structure/property/bonds/struct_conn.js +167 -0
- package/lib/commonjs/mol-model-formats/structure/property/partial-charge.js +18 -0
- package/lib/commonjs/mol-model-formats/structure/property/secondary-structure.js +190 -0
- package/lib/commonjs/mol-model-formats/structure/property/symmetry.js +77 -0
- package/lib/commonjs/mol-model-formats/structure/psf.d.ts +16 -0
- package/lib/commonjs/mol-model-formats/structure/psf.js +123 -0
- package/lib/commonjs/mol-model-formats/structure/sdf.js +27 -0
- package/lib/commonjs/mol-model-formats/structure/util.d.ts +8 -0
- package/lib/commonjs/mol-model-formats/structure/util.js +79 -0
- package/lib/commonjs/mol-model-formats/structure/xtc.d.ts +10 -0
- package/lib/commonjs/mol-model-formats/structure/xtc.js +48 -0
- package/lib/commonjs/mol-model-formats/structure/xyz.js +92 -0
- package/lib/commonjs/mol-model-formats/volume/ccp4.js +96 -0
- package/lib/commonjs/mol-model-formats/volume/cube.js +75 -0
- package/lib/commonjs/mol-model-formats/volume/density-server.js +61 -0
- package/lib/commonjs/mol-model-formats/volume/dsn6.js +67 -0
- package/lib/commonjs/mol-model-formats/volume/dx.js +58 -0
- package/lib/commonjs/mol-model-props/common/custom-element-property.js +110 -0
- package/lib/commonjs/mol-model-props/common/custom-model-property.js +110 -0
- package/lib/commonjs/mol-model-props/common/custom-property.js +70 -0
- package/lib/commonjs/mol-model-props/common/custom-structure-property.js +114 -0
- package/lib/commonjs/mol-model-props/common/wrapper.js +46 -0
- package/lib/commonjs/mol-model-props/computed/accessible-surface-area/shrake-rupley/area.js +101 -0
- package/lib/commonjs/mol-model-props/computed/accessible-surface-area/shrake-rupley/common.js +46 -0
- package/lib/commonjs/mol-model-props/computed/accessible-surface-area/shrake-rupley/radii.js +148 -0
- package/lib/commonjs/mol-model-props/computed/accessible-surface-area/shrake-rupley.js +121 -0
- package/lib/commonjs/mol-model-props/computed/accessible-surface-area.js +63 -0
- package/lib/commonjs/mol-model-props/computed/chemistry/functional-group.js +207 -0
- package/lib/commonjs/mol-model-props/computed/chemistry/geometry.js +121 -0
- package/lib/commonjs/mol-model-props/computed/chemistry/util.js +122 -0
- package/lib/commonjs/mol-model-props/computed/chemistry/valence-model.js +326 -0
- package/lib/commonjs/mol-model-props/computed/helix-orientation/helix-orientation.js +111 -0
- package/lib/commonjs/mol-model-props/computed/helix-orientation.js +29 -0
- package/lib/commonjs/mol-model-props/computed/interactions.js +39 -0
- package/lib/commonjs/mol-model-props/computed/representations/interactions-inter-unit-cylinder.d.ts +1 -1
- package/lib/commonjs/mol-model-props/computed/representations/interactions-intra-unit-cylinder.d.ts +1 -1
- package/lib/commonjs/mol-model-props/computed/representations/interactions.d.ts +3 -3
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/backbone-hbonds.js +125 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/bends.js +60 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/bridges.js +74 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/common.js +26 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/dihedral-angles.js +51 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/helices.js +64 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/ladders.js +99 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/protein-info.js +37 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/sheets.js +58 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/trace-lookup.js +23 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp/turns.js +40 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/dssp.js +212 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/zhang-skolnik.d.ts +0 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure/zhang-skolnik.js +3 -0
- package/lib/commonjs/mol-model-props/computed/secondary-structure.js +119 -0
- package/lib/commonjs/mol-model-props/computed/themes/accessible-surface-area.js +82 -0
- package/lib/commonjs/mol-model-props/computed/valence-model.js +39 -0
- package/lib/commonjs/mol-model-props/integrative/cross-link-restraint/color.js +68 -0
- package/lib/commonjs/mol-model-props/integrative/cross-link-restraint/format.js +93 -0
- package/lib/commonjs/mol-model-props/integrative/cross-link-restraint/property.js +197 -0
- package/lib/commonjs/mol-model-props/integrative/cross-link-restraint/representation.d.ts +4 -4
- package/lib/commonjs/mol-model-props/integrative/cross-link-restraint/representation.js +127 -0
- package/lib/commonjs/mol-model-props/integrative/pair-restraints.js +41 -0
- package/lib/commonjs/mol-model-props/sequence/best-database-mapping.js +88 -0
- package/lib/commonjs/mol-model-props/sequence/themes/best-database-mapping.d.ts +2 -2
- package/lib/commonjs/mol-model-props/sequence/themes/best-database-mapping.js +119 -0
- package/lib/commonjs/mol-plugin/animation-loop.js +75 -0
- package/lib/commonjs/mol-plugin/behavior/behavior.d.ts +1 -1
- package/lib/commonjs/mol-plugin/behavior/behavior.js +179 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/camera.js +137 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props/computed/accessible-surface-area.js +139 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props/computed/secondary-structure.js +42 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props/computed/valence-model.js +103 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props/integrative/cross-link-restraint.js +47 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props/sequence/best-database-mapping.js +70 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props/structure-info.js +133 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/custom-props.js +24 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/representation.d.ts +3 -3
- package/lib/commonjs/mol-plugin/behavior/dynamic/representation.js +309 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/selection/structure-focus-representation.d.ts +1 -1
- package/lib/commonjs/mol-plugin/behavior/dynamic/selection/structure-focus-representation.js +245 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/behavior.d.ts +4 -4
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/behavior.js +436 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/model.d.ts +3 -2
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/model.js +28 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/transformers.d.ts +4 -4
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/transformers.js +387 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/util.js +167 -0
- package/lib/commonjs/mol-plugin/behavior/static/camera.js +37 -0
- package/lib/commonjs/mol-plugin/behavior/static/misc.js +31 -0
- package/lib/commonjs/mol-plugin/behavior/static/representation.js +100 -0
- package/lib/commonjs/mol-plugin/behavior/static/state.js +259 -0
- package/lib/commonjs/mol-plugin/behavior.js +29 -0
- package/lib/commonjs/mol-plugin/command.js +106 -0
- package/lib/commonjs/mol-plugin/commands.d.ts +2 -2
- package/lib/commonjs/mol-plugin/commands.js +60 -0
- package/lib/commonjs/mol-plugin/config.d.ts +1 -1
- package/lib/commonjs/mol-plugin/context.js +441 -0
- package/lib/commonjs/mol-plugin/features.d.ts +9 -0
- package/lib/commonjs/mol-plugin/features.js +38 -0
- package/lib/commonjs/mol-plugin/layout.d.ts +4 -4
- package/lib/commonjs/mol-plugin/layout.js +179 -0
- package/lib/commonjs/mol-plugin/state.js +184 -0
- package/lib/commonjs/mol-plugin/util/substructure-parent-helper.js +106 -0
- package/lib/commonjs/mol-plugin/util/task-manager.d.ts +40 -0
- package/lib/commonjs/mol-plugin/util/task-manager.js +144 -0
- package/lib/commonjs/mol-plugin/util/toast.js +85 -0
- package/lib/commonjs/mol-plugin/util/viewport-screenshot.d.ts +3 -3
- package/lib/commonjs/mol-plugin/util/viewport-screenshot.js +413 -0
- package/lib/commonjs/mol-plugin/version.d.ts +10 -0
- package/lib/commonjs/mol-plugin/version.js +14 -0
- package/lib/commonjs/mol-plugin-state/actions/file.js +189 -0
- package/lib/commonjs/mol-plugin-state/actions/structure.d.ts +1 -1
- package/lib/commonjs/mol-plugin-state/actions/structure.js +412 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/assembly-unwind.js +115 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/camera-rock.js +62 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/camera-spin.js +61 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/explode-units.js +86 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/model-index.d.ts +2 -2
- package/lib/commonjs/mol-plugin-state/animation/built-in/model-index.js +172 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/spin-structure.js +89 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/state-interpolation.js +81 -0
- package/lib/commonjs/mol-plugin-state/animation/built-in/state-snapshots.js +97 -0
- package/lib/commonjs/mol-plugin-state/animation/helpers.js +88 -0
- package/lib/commonjs/mol-plugin-state/animation/model.js +26 -0
- package/lib/commonjs/mol-plugin-state/builder/data.js +53 -0
- package/lib/commonjs/mol-plugin-state/builder/preset-provider.js +8 -0
- package/lib/commonjs/mol-plugin-state/builder/structure/hierarchy-preset.d.ts +11 -11
- package/lib/commonjs/mol-plugin-state/builder/structure/hierarchy-preset.js +291 -0
- package/lib/commonjs/mol-plugin-state/builder/structure/hierarchy.d.ts +6 -6
- package/lib/commonjs/mol-plugin-state/builder/structure/hierarchy.js +114 -0
- package/lib/commonjs/mol-plugin-state/builder/structure/representation-preset.d.ts +18 -18
- package/lib/commonjs/mol-plugin-state/builder/structure/representation-preset.js +529 -0
- package/lib/commonjs/mol-plugin-state/builder/structure/representation.d.ts +1 -1
- package/lib/commonjs/mol-plugin-state/builder/structure/representation.js +156 -0
- package/lib/commonjs/mol-plugin-state/builder/structure.js +208 -0
- package/lib/commonjs/mol-plugin-state/component.d.ts +22 -0
- package/lib/commonjs/mol-plugin-state/component.js +83 -0
- package/lib/commonjs/mol-plugin-state/formats/provider.js +33 -0
- package/lib/commonjs/mol-plugin-state/formats/shape.js +45 -0
- package/lib/commonjs/mol-plugin-state/formats/structure.js +65 -0
- package/lib/commonjs/mol-plugin-state/formats/trajectory.js +173 -0
- package/lib/commonjs/mol-plugin-state/formats/volume.d.ts +10 -10
- package/lib/commonjs/mol-plugin-state/helpers/root-structure.d.ts +5 -5
- package/lib/commonjs/mol-plugin-state/helpers/root-structure.js +207 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-clipping.js +101 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-component.d.ts +2 -2
- package/lib/commonjs/mol-plugin-state/helpers/structure-component.js +184 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-overpaint.js +126 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-query.js +53 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-representation-params.js +85 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-selection-query.js +723 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-substance.js +126 -0
- package/lib/commonjs/mol-plugin-state/helpers/structure-transparency.js +124 -0
- package/lib/commonjs/mol-plugin-state/helpers/volume-representation-params.js +85 -0
- package/lib/commonjs/mol-plugin-state/manager/animation.js +304 -0
- package/lib/commonjs/mol-plugin-state/manager/camera.js +138 -0
- package/lib/commonjs/mol-plugin-state/manager/interactivity.d.ts +1 -1
- package/lib/commonjs/mol-plugin-state/manager/interactivity.js +268 -0
- package/lib/commonjs/mol-plugin-state/manager/loci-label.js +95 -0
- package/lib/commonjs/mol-plugin-state/manager/snapshots.js +377 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/component.d.ts +1 -1
- package/lib/commonjs/mol-plugin-state/manager/structure/component.js +685 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/focus.js +176 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/hierarchy-state.js +256 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/hierarchy.js +351 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/measurement.js +376 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/selection.js +556 -0
- package/lib/commonjs/mol-plugin-state/manager/volume/hierarchy-state.js +133 -0
- package/lib/commonjs/mol-plugin-state/manager/volume/hierarchy.js +146 -0
- package/lib/commonjs/mol-plugin-state/objects.js +270 -0
- package/lib/commonjs/mol-plugin-state/transforms/data.d.ts +1 -1
- package/lib/commonjs/mol-plugin-state/transforms/data.js +606 -0
- package/lib/commonjs/mol-plugin-state/transforms/helpers.js +43 -0
- package/lib/commonjs/mol-plugin-state/transforms/misc.js +57 -0
- package/lib/commonjs/mol-plugin-state/transforms/model.d.ts +7 -7
- package/lib/commonjs/mol-plugin-state/transforms/model.js +1288 -0
- package/lib/commonjs/mol-plugin-state/transforms/representation.d.ts +13 -13
- package/lib/commonjs/mol-plugin-state/transforms/representation.js +1329 -0
- package/lib/commonjs/mol-plugin-state/transforms/shape.js +72 -0
- package/lib/commonjs/mol-plugin-state/transforms/volume.js +237 -0
- package/lib/commonjs/mol-plugin-state/transforms.js +24 -0
- package/lib/commonjs/mol-plugin-ui/base.js +104 -0
- package/lib/commonjs/mol-plugin-ui/context.js +35 -0
- package/lib/commonjs/mol-plugin-ui/controls/action-menu.js +250 -0
- package/lib/commonjs/mol-plugin-ui/controls/color.js +100 -0
- package/lib/commonjs/mol-plugin-ui/controls/common.d.ts +166 -0
- package/lib/commonjs/mol-plugin-ui/controls/common.js +255 -0
- package/lib/commonjs/mol-plugin-ui/controls/icons.d.ts +84 -0
- package/lib/commonjs/mol-plugin-ui/controls/icons.js +223 -0
- package/lib/commonjs/mol-plugin-ui/controls/legend.js +52 -0
- package/lib/commonjs/mol-plugin-ui/controls/line-graph/line-graph-component.d.ts +40 -0
- package/lib/commonjs/mol-plugin-ui/controls/line-graph/line-graph-component.js +311 -0
- package/lib/commonjs/mol-plugin-ui/controls/line-graph/point-component.d.ts +10 -0
- package/lib/commonjs/mol-plugin-ui/controls/line-graph/point-component.js +38 -0
- package/lib/commonjs/mol-plugin-ui/controls/parameters.js +1334 -0
- package/lib/commonjs/mol-plugin-ui/controls/screenshot.js +260 -0
- package/lib/commonjs/mol-plugin-ui/controls/slider.d.ts +147 -0
- package/lib/commonjs/mol-plugin-ui/controls/slider.js +624 -0
- package/lib/commonjs/mol-plugin-ui/controls.js +301 -0
- package/lib/commonjs/mol-plugin-ui/custom/volume.js +253 -0
- package/lib/commonjs/mol-plugin-ui/hooks/use-behavior.d.ts +14 -0
- package/lib/commonjs/mol-plugin-ui/hooks/use-behavior.js +28 -0
- package/lib/commonjs/mol-plugin-ui/index.js +39 -0
- package/lib/commonjs/mol-plugin-ui/left-panel.js +156 -0
- package/lib/commonjs/mol-plugin-ui/plugin.js +256 -0
- package/lib/commonjs/mol-plugin-ui/sequence/chain.js +88 -0
- package/lib/commonjs/mol-plugin-ui/sequence/element.js +89 -0
- package/lib/commonjs/mol-plugin-ui/sequence/hetero.js +106 -0
- package/lib/commonjs/mol-plugin-ui/sequence/polymer.js +132 -0
- package/lib/commonjs/mol-plugin-ui/sequence/sequence.js +282 -0
- package/lib/commonjs/mol-plugin-ui/sequence/wrapper.js +29 -0
- package/lib/commonjs/mol-plugin-ui/sequence.js +387 -0
- package/lib/commonjs/mol-plugin-ui/spec.js +18 -0
- package/lib/commonjs/mol-plugin-ui/state/actions.js +51 -0
- package/lib/commonjs/mol-plugin-ui/state/animation.js +55 -0
- package/lib/commonjs/mol-plugin-ui/state/apply-action.js +59 -0
- package/lib/commonjs/mol-plugin-ui/state/common.js +203 -0
- package/lib/commonjs/mol-plugin-ui/state/snapshots.js +349 -0
- package/lib/commonjs/mol-plugin-ui/state/tree.js +295 -0
- package/lib/commonjs/mol-plugin-ui/state/update-transform.js +115 -0
- package/lib/commonjs/mol-plugin-ui/structure/components.js +367 -0
- package/lib/commonjs/mol-plugin-ui/structure/focus.js +233 -0
- package/lib/commonjs/mol-plugin-ui/structure/generic.js +155 -0
- package/lib/commonjs/mol-plugin-ui/structure/measurements.d.ts +1 -1
- package/lib/commonjs/mol-plugin-ui/structure/measurements.js +334 -0
- package/lib/commonjs/mol-plugin-ui/structure/selection.d.ts +1 -1
- package/lib/commonjs/mol-plugin-ui/structure/selection.js +354 -0
- package/lib/commonjs/mol-plugin-ui/structure/source.js +340 -0
- package/lib/commonjs/mol-plugin-ui/structure/superposition.js +332 -0
- package/lib/commonjs/mol-plugin-ui/structure/volume.js +324 -0
- package/lib/commonjs/mol-plugin-ui/task.js +98 -0
- package/lib/commonjs/mol-plugin-ui/toast.js +57 -0
- package/lib/commonjs/mol-plugin-ui/viewport/canvas.js +58 -0
- package/lib/commonjs/mol-plugin-ui/viewport/help.js +123 -0
- package/lib/commonjs/mol-plugin-ui/viewport/screenshot.js +103 -0
- package/lib/commonjs/mol-plugin-ui/viewport/simple-settings.js +155 -0
- package/lib/commonjs/mol-plugin-ui/viewport.js +83 -0
- package/lib/commonjs/mol-repr/representation.js +383 -0
- package/lib/commonjs/mol-repr/shape/loci/angle.d.ts +2 -2
- package/lib/commonjs/mol-repr/shape/loci/angle.js +176 -0
- package/lib/commonjs/mol-repr/shape/loci/common.d.ts +3 -3
- package/lib/commonjs/mol-repr/shape/loci/common.js +20 -0
- package/lib/commonjs/mol-repr/shape/loci/dihedral.d.ts +2 -2
- package/lib/commonjs/mol-repr/shape/loci/dihedral.js +257 -0
- package/lib/commonjs/mol-repr/shape/loci/distance.d.ts +2 -2
- package/lib/commonjs/mol-repr/shape/loci/distance.js +96 -0
- package/lib/commonjs/mol-repr/shape/loci/label.d.ts +2 -2
- package/lib/commonjs/mol-repr/shape/loci/label.js +65 -0
- package/lib/commonjs/mol-repr/shape/loci/orientation.d.ts +2 -2
- package/lib/commonjs/mol-repr/shape/loci/orientation.js +103 -0
- package/lib/commonjs/mol-repr/shape/loci/plane.d.ts +1 -1
- package/lib/commonjs/mol-repr/shape/loci/plane.js +61 -0
- package/lib/commonjs/mol-repr/shape/model/unitcell.d.ts +1 -1
- package/lib/commonjs/mol-repr/shape/model/unitcell.js +81 -0
- package/lib/commonjs/mol-repr/shape/representation.js +275 -0
- package/lib/commonjs/mol-repr/structure/complex-representation.js +182 -0
- package/lib/commonjs/mol-repr/structure/complex-visual.d.ts +7 -7
- package/lib/commonjs/mol-repr/structure/complex-visual.js +325 -0
- package/lib/commonjs/mol-repr/structure/params.d.ts +10 -10
- package/lib/commonjs/mol-repr/structure/params.js +37 -0
- package/lib/commonjs/mol-repr/structure/registry.d.ts +25 -25
- package/lib/commonjs/mol-repr/structure/registry.js +59 -0
- package/lib/commonjs/mol-repr/structure/representation/backbone.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/backbone.js +52 -0
- package/lib/commonjs/mol-repr/structure/representation/ball-and-stick.d.ts +6 -6
- package/lib/commonjs/mol-repr/structure/representation/ball-and-stick.js +51 -0
- package/lib/commonjs/mol-repr/structure/representation/carbohydrate.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/carbohydrate.js +46 -0
- package/lib/commonjs/mol-repr/structure/representation/cartoon.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/cartoon.js +96 -0
- package/lib/commonjs/mol-repr/structure/representation/ellipsoid.d.ts +6 -6
- package/lib/commonjs/mol-repr/structure/representation/ellipsoid.js +50 -0
- package/lib/commonjs/mol-repr/structure/representation/gaussian-surface.d.ts +9 -9
- package/lib/commonjs/mol-repr/structure/representation/gaussian-surface.js +42 -0
- package/lib/commonjs/mol-repr/structure/representation/gaussian-volume.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/gaussian-volume.js +40 -0
- package/lib/commonjs/mol-repr/structure/representation/label.d.ts +9 -9
- package/lib/commonjs/mol-repr/structure/representation/label.js +40 -0
- package/lib/commonjs/mol-repr/structure/representation/line.d.ts +9 -9
- package/lib/commonjs/mol-repr/structure/representation/line.js +54 -0
- package/lib/commonjs/mol-repr/structure/representation/molecular-surface.d.ts +9 -9
- package/lib/commonjs/mol-repr/structure/representation/molecular-surface.js +41 -0
- package/lib/commonjs/mol-repr/structure/representation/orientation.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/orientation.js +39 -0
- package/lib/commonjs/mol-repr/structure/representation/point.d.ts +6 -6
- package/lib/commonjs/mol-repr/structure/representation/point.js +38 -0
- package/lib/commonjs/mol-repr/structure/representation/putty.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/putty.js +54 -0
- package/lib/commonjs/mol-repr/structure/representation/spacefill.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/representation/spacefill.js +43 -0
- package/lib/commonjs/mol-repr/structure/representation.js +33 -0
- package/lib/commonjs/mol-repr/structure/units-representation.js +409 -0
- package/lib/commonjs/mol-repr/structure/units-visual.d.ts +10 -10
- package/lib/commonjs/mol-repr/structure/units-visual.js +404 -0
- package/lib/commonjs/mol-repr/structure/visual/bond-inter-unit-cylinder.d.ts +4 -4
- package/lib/commonjs/mol-repr/structure/visual/bond-inter-unit-line.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/bond-intra-unit-cylinder.d.ts +4 -4
- package/lib/commonjs/mol-repr/structure/visual/bond-intra-unit-line.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-link-cylinder.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-link-cylinder.js +113 -0
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-symbol-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-symbol-mesh.js +219 -0
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-terminal-link-cylinder.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-terminal-link-cylinder.js +137 -0
- package/lib/commonjs/mol-repr/structure/visual/element-cross.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/element-cross.js +77 -0
- package/lib/commonjs/mol-repr/structure/visual/element-point.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/element-point.js +64 -0
- package/lib/commonjs/mol-repr/structure/visual/element-sphere.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/element-sphere.js +58 -0
- package/lib/commonjs/mol-repr/structure/visual/ellipsoid-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/ellipsoid-mesh.js +102 -0
- package/lib/commonjs/mol-repr/structure/visual/gaussian-density-volume.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/gaussian-density-volume.js +133 -0
- package/lib/commonjs/mol-repr/structure/visual/gaussian-surface-mesh.d.ts +12 -12
- package/lib/commonjs/mol-repr/structure/visual/gaussian-surface-mesh.js +379 -0
- package/lib/commonjs/mol-repr/structure/visual/gaussian-surface-wireframe.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/gaussian-surface-wireframe.js +69 -0
- package/lib/commonjs/mol-repr/structure/visual/label-text.d.ts +3 -3
- package/lib/commonjs/mol-repr/structure/visual/label-text.js +137 -0
- package/lib/commonjs/mol-repr/structure/visual/molecular-surface-mesh.d.ts +4 -4
- package/lib/commonjs/mol-repr/structure/visual/molecular-surface-mesh.js +99 -0
- package/lib/commonjs/mol-repr/structure/visual/molecular-surface-wireframe.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/molecular-surface-wireframe.js +67 -0
- package/lib/commonjs/mol-repr/structure/visual/nucleotide-block-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/nucleotide-block-mesh.js +148 -0
- package/lib/commonjs/mol-repr/structure/visual/nucleotide-ring-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/nucleotide-ring-mesh.js +202 -0
- package/lib/commonjs/mol-repr/structure/visual/orientation-ellipsoid-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/orientation-ellipsoid-mesh.js +118 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-backbone-cylinder.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/polymer-backbone-cylinder.js +124 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-backbone-sphere.d.ts +2 -2
- package/lib/commonjs/mol-repr/structure/visual/polymer-backbone-sphere.js +101 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-direction-wedge.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/polymer-direction-wedge.js +88 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-gap-cylinder.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/polymer-gap-cylinder.js +89 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-trace-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/polymer-trace-mesh.js +191 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-tube-mesh.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/polymer-tube-mesh.js +111 -0
- package/lib/commonjs/mol-repr/structure/visual/util/bond.d.ts +6 -6
- package/lib/commonjs/mol-repr/structure/visual/util/common.d.ts +1 -1
- package/lib/commonjs/mol-repr/structure/visual/util/common.js +317 -0
- package/lib/commonjs/mol-repr/structure/visual/util/element.js +251 -0
- package/lib/commonjs/mol-repr/structure/visual/util/gaussian.js +104 -0
- package/lib/commonjs/mol-repr/structure/visual/util/link.js +366 -0
- package/lib/commonjs/mol-repr/structure/visual/util/molecular-surface.js +53 -0
- package/lib/commonjs/mol-repr/structure/visual/util/nucleotide.js +76 -0
- package/lib/commonjs/mol-repr/structure/visual/util/polymer/backbone.js +115 -0
- package/lib/commonjs/mol-repr/structure/visual/util/polymer/curve-segment.d.ts +36 -0
- package/lib/commonjs/mol-repr/structure/visual/util/polymer/curve-segment.js +135 -0
- package/lib/commonjs/mol-repr/structure/visual/util/polymer/gap-iterator.js +66 -0
- package/lib/commonjs/mol-repr/structure/visual/util/polymer/trace-iterator.js +449 -0
- package/lib/commonjs/mol-repr/structure/visual/util/polymer.js +269 -0
- package/lib/commonjs/mol-repr/util.js +185 -0
- package/lib/commonjs/mol-repr/visual.js +316 -0
- package/lib/commonjs/mol-repr/volume/direct-volume.d.ts +6 -6
- package/lib/commonjs/mol-repr/volume/direct-volume.js +142 -0
- package/lib/commonjs/mol-repr/volume/isosurface.d.ts +12 -12
- package/lib/commonjs/mol-repr/volume/isosurface.js +267 -0
- package/lib/commonjs/mol-repr/volume/registry.d.ts +8 -8
- package/lib/commonjs/mol-repr/volume/registry.js +37 -0
- package/lib/commonjs/mol-repr/volume/representation.d.ts +1 -1
- package/lib/commonjs/mol-repr/volume/representation.js +310 -0
- package/lib/commonjs/mol-repr/volume/slice.d.ts +12 -12
- package/lib/commonjs/mol-repr/volume/slice.js +202 -0
- package/lib/commonjs/mol-repr/volume/util.js +168 -0
- package/lib/commonjs/mol-script/compiler.d.ts +0 -0
- package/lib/commonjs/mol-script/compiler.js +80 -0
- package/lib/commonjs/mol-script/language/builder.d.ts +756 -0
- package/lib/commonjs/mol-script/language/builder.js +74 -0
- package/lib/commonjs/mol-script/language/container.d.ts +6 -0
- package/lib/commonjs/mol-script/language/container.js +8 -0
- package/lib/commonjs/mol-script/language/expression-formatter.d.ts +2 -0
- package/lib/commonjs/mol-script/language/expression-formatter.js +130 -0
- package/lib/commonjs/mol-script/language/expression.d.ts +24 -0
- package/lib/commonjs/mol-script/language/expression.js +27 -0
- package/lib/commonjs/mol-script/language/helpers.d.ts +5 -0
- package/lib/commonjs/mol-script/language/helpers.js +57 -0
- package/lib/commonjs/mol-script/language/parser.d.ts +7 -0
- package/lib/commonjs/mol-script/language/parser.js +168 -0
- package/lib/commonjs/mol-script/language/symbol-table/core.d.ts +254 -0
- package/lib/commonjs/mol-script/language/symbol-table/core.js +169 -0
- package/lib/commonjs/mol-script/language/symbol-table/internal.d.ts +22 -0
- package/lib/commonjs/mol-script/language/symbol-table/internal.js +33 -0
- package/lib/commonjs/mol-script/language/symbol-table/structure-query.d.ts +363 -0
- package/lib/commonjs/mol-script/language/symbol-table/structure-query.js +281 -0
- package/lib/commonjs/mol-script/language/symbol-table.d.ts +589 -0
- package/lib/commonjs/mol-script/language/symbol-table.js +25 -0
- package/lib/commonjs/mol-script/language/symbol.d.ts +73 -0
- package/lib/commonjs/mol-script/language/symbol.js +55 -0
- package/lib/commonjs/mol-script/language/type.d.ts +60 -0
- package/lib/commonjs/mol-script/language/type.js +40 -0
- package/lib/commonjs/mol-script/runtime/environment.d.ts +0 -0
- package/lib/commonjs/mol-script/runtime/environment.js +32 -0
- package/lib/commonjs/mol-script/runtime/expression.d.ts +0 -0
- package/lib/commonjs/mol-script/runtime/expression.js +21 -0
- package/lib/commonjs/mol-script/runtime/query/base.js +175 -0
- package/lib/commonjs/mol-script/runtime/query/compiler.js +11 -0
- package/lib/commonjs/mol-script/runtime/query/table.js +429 -0
- package/lib/commonjs/mol-script/runtime/runtime-macro.d.ts +0 -0
- package/lib/commonjs/mol-script/runtime/runtime-macro.js +68 -0
- package/lib/commonjs/mol-script/runtime/symbol.d.ts +0 -0
- package/lib/commonjs/mol-script/runtime/symbol.js +26 -0
- package/lib/commonjs/mol-script/script/mol-script/examples.d.ts +0 -0
- package/lib/commonjs/mol-script/script/mol-script/examples.js +105 -0
- package/lib/commonjs/mol-script/script/mol-script/parser.d.ts +0 -0
- package/lib/commonjs/mol-script/script/mol-script/parser.js +162 -0
- package/lib/commonjs/mol-script/script/mol-script/script-macro.d.ts +10 -0
- package/lib/commonjs/mol-script/script/mol-script/script-macro.js +47 -0
- package/lib/commonjs/mol-script/script/mol-script/symbols.d.ts +27 -0
- package/lib/commonjs/mol-script/script/mol-script/symbols.js +370 -0
- package/lib/commonjs/mol-script/script/parser.d.ts +8 -0
- package/lib/commonjs/mol-script/script/parser.js +9 -0
- package/lib/commonjs/mol-script/script.js +57 -0
- package/lib/commonjs/mol-script/util/id-list.js +89 -0
- package/lib/commonjs/mol-state/action/manager.js +99 -0
- package/lib/commonjs/mol-state/action.js +63 -0
- package/lib/commonjs/mol-state/index.js +17 -0
- package/lib/commonjs/mol-state/object.js +189 -0
- package/lib/commonjs/mol-state/state/builder.js +276 -0
- package/lib/commonjs/mol-state/state/selection.js +377 -0
- package/lib/commonjs/mol-state/state.js +992 -0
- package/lib/commonjs/mol-state/transform.js +199 -0
- package/lib/commonjs/mol-state/transformer.js +119 -0
- package/lib/commonjs/mol-state/tree/immutable.js +176 -0
- package/lib/commonjs/mol-state/tree/spine.js +86 -0
- package/lib/commonjs/mol-state/tree/transient.js +301 -0
- package/lib/commonjs/mol-state/tree.js +13 -0
- package/lib/commonjs/mol-task/execution/observable.d.ts +46 -0
- package/lib/commonjs/mol-task/execution/observable.js +246 -0
- package/lib/commonjs/mol-task/execution/progress.d.ts +22 -0
- package/lib/commonjs/mol-task/execution/progress.js +29 -0
- package/lib/commonjs/mol-task/execution/runtime-context.d.ts +24 -0
- package/lib/commonjs/mol-task/execution/runtime-context.js +15 -0
- package/lib/commonjs/mol-task/execution/synchronous.d.ts +12 -0
- package/lib/commonjs/mol-task/execution/synchronous.js +19 -0
- package/lib/commonjs/mol-task/index.d.ts +12 -0
- package/lib/commonjs/mol-task/index.js +21 -0
- package/lib/commonjs/mol-task/task.d.ts +49 -0
- package/lib/commonjs/mol-task/task.js +83 -0
- package/lib/commonjs/mol-task/util/chunked.d.ts +9 -0
- package/lib/commonjs/mol-task/util/chunked.js +53 -0
- package/lib/commonjs/mol-task/util/multistep.d.ts +10 -0
- package/lib/commonjs/mol-task/util/multistep.js +18 -0
- package/lib/commonjs/mol-task/util/scheduler.d.ts +13 -0
- package/lib/commonjs/mol-task/util/scheduler.js +194 -0
- package/lib/commonjs/mol-task/util/user-timing.d.ts +11 -0
- package/lib/commonjs/mol-task/util/user-timing.js +32 -0
- package/lib/commonjs/mol-theme/clipping.js +185 -0
- package/lib/commonjs/mol-theme/color/atom-id.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/atom-id.js +84 -0
- package/lib/commonjs/mol-theme/color/carbohydrate-symbol.js +70 -0
- package/lib/commonjs/mol-theme/color/chain-id.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/chain-id.js +118 -0
- package/lib/commonjs/mol-theme/color/element-index.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/element-index.js +75 -0
- package/lib/commonjs/mol-theme/color/element-symbol.d.ts +10 -10
- package/lib/commonjs/mol-theme/color/entity-id.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/entity-source.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/entity-source.js +156 -0
- package/lib/commonjs/mol-theme/color/hydrophobicity.js +96 -0
- package/lib/commonjs/mol-theme/color/illustrative.d.ts +6 -6
- package/lib/commonjs/mol-theme/color/model-index.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/model-index.js +71 -0
- package/lib/commonjs/mol-theme/color/molecule-type.js +85 -0
- package/lib/commonjs/mol-theme/color/occupancy.js +66 -0
- package/lib/commonjs/mol-theme/color/operator-hkl.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/operator-hkl.js +114 -0
- package/lib/commonjs/mol-theme/color/operator-name.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/operator-name.js +76 -0
- package/lib/commonjs/mol-theme/color/partial-charge.js +63 -0
- package/lib/commonjs/mol-theme/color/polymer-id.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/polymer-id.js +126 -0
- package/lib/commonjs/mol-theme/color/polymer-index.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/polymer-index.js +86 -0
- package/lib/commonjs/mol-theme/color/residue-name.js +138 -0
- package/lib/commonjs/mol-theme/color/secondary-structure.js +130 -0
- package/lib/commonjs/mol-theme/color/sequence-id.js +111 -0
- package/lib/commonjs/mol-theme/color/shape-group.js +43 -0
- package/lib/commonjs/mol-theme/color/uncertainty.js +70 -0
- package/lib/commonjs/mol-theme/color/uniform.js +43 -0
- package/lib/commonjs/mol-theme/color/unit-index.d.ts +2 -2
- package/lib/commonjs/mol-theme/color/unit-index.js +73 -0
- package/lib/commonjs/mol-theme/color/volume-value.js +57 -0
- package/lib/commonjs/mol-theme/color.d.ts +19 -19
- package/lib/commonjs/mol-theme/label.js +362 -0
- package/lib/commonjs/mol-theme/overpaint.js +132 -0
- package/lib/commonjs/mol-theme/size/physical.js +70 -0
- package/lib/commonjs/mol-theme/size/shape-group.js +42 -0
- package/lib/commonjs/mol-theme/size/uncertainty.js +62 -0
- package/lib/commonjs/mol-theme/size/uniform.js +38 -0
- package/lib/commonjs/mol-theme/size.js +36 -0
- package/lib/commonjs/mol-theme/substance.js +141 -0
- package/lib/commonjs/mol-theme/theme.js +136 -0
- package/lib/commonjs/mol-theme/transparency.js +140 -0
- package/lib/commonjs/mol-util/array.d.ts +37 -0
- package/lib/commonjs/mol-util/array.js +177 -0
- package/lib/commonjs/mol-util/assets.d.ts +58 -0
- package/lib/commonjs/mol-util/assets.js +153 -0
- package/lib/commonjs/mol-util/async-queue.d.ts +14 -0
- package/lib/commonjs/mol-util/async-queue.js +54 -0
- package/lib/commonjs/mol-util/binding.d.ts +32 -0
- package/lib/commonjs/mol-util/binding.js +116 -0
- package/lib/commonjs/mol-util/bit-flags.d.ts +13 -0
- package/lib/commonjs/mol-util/bit-flags.js +20 -0
- package/lib/commonjs/mol-util/clip.d.ts +1 -1
- package/lib/commonjs/mol-util/clip.js +97 -0
- package/lib/commonjs/mol-util/color/color.d.ts +68 -0
- package/lib/commonjs/mol-util/color/color.js +153 -0
- package/lib/commonjs/mol-util/color/distinct.js +146 -0
- package/lib/commonjs/mol-util/color/index.d.ts +7 -0
- package/lib/commonjs/mol-util/color/index.js +15 -0
- package/lib/commonjs/mol-util/color/lists.d.ts +74 -0
- package/lib/commonjs/mol-util/color/lists.js +91 -0
- package/lib/commonjs/mol-util/color/names.d.ts +167 -0
- package/lib/commonjs/mol-util/color/names.js +175 -0
- package/lib/commonjs/mol-util/color/palette.d.ts +3 -3
- package/lib/commonjs/mol-util/color/palette.js +89 -0
- package/lib/commonjs/mol-util/color/params.js +19 -0
- package/lib/commonjs/mol-util/color/scale.d.ts +31 -0
- package/lib/commonjs/mol-util/color/scale.js +84 -0
- package/lib/commonjs/mol-util/color/spaces/hcl.d.ts +46 -0
- package/lib/commonjs/mol-util/color/spaces/hcl.js +106 -0
- package/lib/commonjs/mol-util/color/spaces/lab.d.ts +39 -0
- package/lib/commonjs/mol-util/color/spaces/lab.js +152 -0
- package/lib/commonjs/mol-util/color/swatches.d.ts +8 -0
- package/lib/commonjs/mol-util/color/swatches.js +25 -0
- package/lib/commonjs/mol-util/console-logger.d.ts +13 -0
- package/lib/commonjs/mol-util/console-logger.js +52 -0
- package/lib/commonjs/mol-util/data-source.d.ts +48 -0
- package/lib/commonjs/mol-util/data-source.js +389 -0
- package/lib/commonjs/mol-util/date.d.ts +7 -0
- package/lib/commonjs/mol-util/date.js +24 -0
- package/lib/commonjs/mol-util/debug.d.ts +18 -0
- package/lib/commonjs/mol-util/debug.js +46 -0
- package/lib/commonjs/mol-util/download.d.ts +6 -0
- package/lib/commonjs/mol-util/download.js +74 -0
- package/lib/commonjs/mol-util/file-info.d.ts +20 -0
- package/lib/commonjs/mol-util/file-info.js +54 -0
- package/lib/commonjs/mol-util/graphql-client.d.ts +44 -0
- package/lib/commonjs/mol-util/graphql-client.js +67 -0
- package/lib/commonjs/mol-util/id-factory.d.ts +7 -0
- package/lib/commonjs/mol-util/id-factory.js +21 -0
- package/lib/commonjs/mol-util/image.d.ts +18 -0
- package/lib/commonjs/mol-util/image.js +46 -0
- package/lib/commonjs/mol-util/index.d.ts +29 -0
- package/lib/commonjs/mol-util/index.js +222 -0
- package/lib/commonjs/mol-util/input/event-offset.d.ts +7 -0
- package/lib/commonjs/mol-util/input/event-offset.js +27 -0
- package/lib/commonjs/mol-util/input/input-observer.d.ts +136 -0
- package/lib/commonjs/mol-util/input/input-observer.js +593 -0
- package/lib/commonjs/mol-util/is-little-endian.d.ts +6 -0
- package/lib/commonjs/mol-util/is-little-endian.js +18 -0
- package/lib/commonjs/mol-util/legend.d.ts +20 -0
- package/lib/commonjs/mol-util/legend.js +17 -0
- package/lib/commonjs/mol-util/log-entry.d.ts +18 -0
- package/lib/commonjs/mol-util/log-entry.js +21 -0
- package/lib/commonjs/mol-util/lru-cache.d.ts +21 -0
- package/lib/commonjs/mol-util/lru-cache.js +47 -0
- package/lib/commonjs/mol-util/make-dir.d.ts +6 -0
- package/lib/commonjs/mol-util/make-dir.js +24 -0
- package/lib/commonjs/mol-util/map.d.ts +11 -0
- package/lib/commonjs/mol-util/map.js +36 -0
- package/lib/commonjs/mol-util/marker-action.d.ts +49 -0
- package/lib/commonjs/mol-util/marker-action.js +286 -0
- package/lib/commonjs/mol-util/mask.d.ts +48 -0
- package/lib/commonjs/mol-util/mask.js +191 -0
- package/lib/commonjs/mol-util/material.js +43 -0
- package/lib/commonjs/mol-util/memoize.d.ts +9 -0
- package/lib/commonjs/mol-util/memoize.js +45 -0
- package/lib/commonjs/mol-util/monadic-parser.d.ts +119 -0
- package/lib/commonjs/mol-util/monadic-parser.js +490 -0
- package/lib/commonjs/mol-util/now.d.ts +13 -0
- package/lib/commonjs/mol-util/now.js +47 -0
- package/lib/commonjs/mol-util/number-packing.d.ts +11 -0
- package/lib/commonjs/mol-util/number-packing.js +36 -0
- package/lib/commonjs/mol-util/number.d.ts +26 -0
- package/lib/commonjs/mol-util/number.js +85 -0
- package/lib/commonjs/mol-util/object.d.ts +23 -0
- package/lib/commonjs/mol-util/object.js +127 -0
- package/lib/commonjs/mol-util/param-definition.js +612 -0
- package/lib/commonjs/mol-util/param-mapping.js +26 -0
- package/lib/commonjs/mol-util/performance-monitor.d.ts +14 -0
- package/lib/commonjs/mol-util/performance-monitor.js +73 -0
- package/lib/commonjs/mol-util/polyfill.d.ts +5 -0
- package/lib/commonjs/mol-util/polyfill.js +610 -0
- package/lib/commonjs/mol-util/read.d.ts +11 -0
- package/lib/commonjs/mol-util/read.js +70 -0
- package/lib/commonjs/mol-util/reference-cache.d.ts +28 -0
- package/lib/commonjs/mol-util/reference-cache.js +57 -0
- package/lib/commonjs/mol-util/retry-if.d.ts +11 -0
- package/lib/commonjs/mol-util/retry-if.js +48 -0
- package/lib/commonjs/mol-util/rx-event-helper.d.ts +15 -0
- package/lib/commonjs/mol-util/rx-event-helper.js +48 -0
- package/lib/commonjs/mol-util/set.d.ts +26 -0
- package/lib/commonjs/mol-util/set.js +133 -0
- package/lib/commonjs/mol-util/sleep.d.ts +6 -0
- package/lib/commonjs/mol-util/sleep.js +13 -0
- package/lib/commonjs/mol-util/string-builder.d.ts +38 -0
- package/lib/commonjs/mol-util/string-builder.js +164 -0
- package/lib/commonjs/mol-util/string.d.ts +31 -0
- package/lib/commonjs/mol-util/string.js +110 -0
- package/lib/commonjs/mol-util/type-helpers.d.ts +35 -0
- package/lib/commonjs/mol-util/type-helpers.js +23 -0
- package/lib/commonjs/mol-util/url.d.ts +7 -0
- package/lib/commonjs/mol-util/url.js +21 -0
- package/lib/commonjs/mol-util/uuid.d.ts +16 -0
- package/lib/commonjs/mol-util/uuid.js +40 -0
- package/lib/commonjs/mol-util/value-cell.d.ts +41 -0
- package/lib/commonjs/mol-util/value-cell.js +55 -0
- package/lib/commonjs/mol-util/zip/bin.d.ts +17 -0
- package/lib/commonjs/mol-util/zip/bin.js +122 -0
- package/lib/commonjs/mol-util/zip/checksum.d.ts +10 -0
- package/lib/commonjs/mol-util/zip/checksum.js +52 -0
- package/lib/commonjs/mol-util/zip/deflate.d.ts +10 -0
- package/lib/commonjs/mol-util/zip/deflate.js +404 -0
- package/lib/commonjs/mol-util/zip/huffman.d.ts +17 -0
- package/lib/commonjs/mol-util/zip/huffman.js +112 -0
- package/lib/commonjs/mol-util/zip/inflate.d.ts +10 -0
- package/lib/commonjs/mol-util/zip/inflate.js +232 -0
- package/lib/commonjs/mol-util/zip/util.d.ts +40 -0
- package/lib/commonjs/mol-util/zip/util.js +136 -0
- package/lib/commonjs/mol-util/zip/zip.d.ts +29 -0
- package/lib/commonjs/mol-util/zip/zip.js +376 -0
- package/lib/commonjs/servers/common/file-handle.d.ts +8 -0
- package/lib/commonjs/servers/common/file-handle.js +70 -0
- package/lib/commonjs/servers/common/swagger-ui/index.d.ts +16 -0
- package/lib/commonjs/servers/common/swagger-ui/index.js +31 -0
- package/lib/commonjs/servers/common/swagger-ui/indexTemplate.d.ts +1 -0
- package/lib/commonjs/servers/common/swagger-ui/indexTemplate.js +5 -0
- package/lib/commonjs/servers/common/util.d.ts +7 -0
- package/lib/commonjs/servers/common/util.js +31 -0
- package/lib/commonjs/servers/model/config.js +267 -0
- package/lib/commonjs/servers/model/preprocess/converter.d.ts +8 -0
- package/lib/commonjs/servers/model/preprocess/converter.js +81 -0
- package/lib/commonjs/servers/model/preprocess/master.js +74 -0
- package/lib/commonjs/servers/model/preprocess/parallel.js +124 -0
- package/lib/commonjs/servers/model/preprocess/preprocess.js +102 -0
- package/lib/commonjs/servers/model/preprocess/util.d.ts +8 -0
- package/lib/commonjs/servers/model/preprocess/util.js +20 -0
- package/lib/commonjs/servers/model/preprocess.js +20 -0
- package/lib/commonjs/servers/model/properties/pdbe.js +21 -0
- package/lib/commonjs/servers/model/properties/providers/pdbe.js +126 -0
- package/lib/commonjs/servers/model/properties/providers/wwpdb.js +132 -0
- package/lib/commonjs/servers/model/properties/wwpdb.js +19 -0
- package/lib/commonjs/servers/model/property-provider.js +63 -0
- package/lib/commonjs/servers/model/query/atoms.js +110 -0
- package/lib/commonjs/servers/model/query/schemas.d.ts +10 -0
- package/lib/commonjs/servers/model/query/schemas.js +61 -0
- package/lib/commonjs/servers/model/query.js +80 -0
- package/lib/commonjs/servers/model/server/api-local.js +106 -0
- package/lib/commonjs/servers/model/server/api-schema.js +183 -0
- package/lib/commonjs/servers/model/server/api-web-multiple.js +14 -0
- package/lib/commonjs/servers/model/server/api-web.js +191 -0
- package/lib/commonjs/servers/model/server/api.js +294 -0
- package/lib/commonjs/servers/model/server/cache.js +88 -0
- package/lib/commonjs/servers/model/server/jobs.js +88 -0
- package/lib/commonjs/servers/model/server/query.js +377 -0
- package/lib/commonjs/servers/model/server/structure-wrapper.js +354 -0
- package/lib/commonjs/servers/model/server.js +66 -0
- package/lib/commonjs/servers/model/test.d.ts +0 -0
- package/lib/commonjs/servers/model/test.js +82 -0
- package/lib/commonjs/servers/model/utils/fetch-props-pdbe.d.ts +6 -0
- package/lib/commonjs/servers/model/utils/fetch-props-pdbe.js +118 -0
- package/lib/commonjs/servers/model/utils/fetch-retry.d.ts +7 -0
- package/lib/commonjs/servers/model/utils/fetch-retry.js +43 -0
- package/lib/commonjs/servers/model/utils/tar.d.ts +22 -0
- package/lib/commonjs/servers/model/utils/tar.js +179 -0
- package/lib/commonjs/servers/model/utils/writer.d.ts +77 -0
- package/lib/commonjs/servers/model/utils/writer.js +223 -0
- package/lib/commonjs/servers/model/version.d.ts +6 -0
- package/lib/commonjs/servers/model/version.js +10 -0
- package/lib/commonjs/servers/plugin-state/api-schema.d.ts +107 -0
- package/lib/commonjs/servers/plugin-state/api-schema.js +135 -0
- package/lib/commonjs/servers/plugin-state/config.d.ts +12 -0
- package/lib/commonjs/servers/plugin-state/config.js +25 -0
- package/lib/commonjs/servers/plugin-state/index.d.ts +6 -0
- package/lib/commonjs/servers/plugin-state/index.js +208 -0
- package/lib/commonjs/servers/plugin-state/version.d.ts +1 -0
- package/lib/commonjs/servers/plugin-state/version.js +5 -0
- package/lib/commonjs/servers/volume/common/binary-schema.d.ts +42 -0
- package/lib/commonjs/servers/volume/common/binary-schema.js +176 -0
- package/lib/commonjs/servers/volume/common/data-format.d.ts +53 -0
- package/lib/commonjs/servers/volume/common/data-format.js +70 -0
- package/lib/commonjs/servers/volume/common/file.d.ts +12 -0
- package/lib/commonjs/servers/volume/common/file.js +86 -0
- package/lib/commonjs/servers/volume/config.d.ts +47 -0
- package/lib/commonjs/servers/volume/config.js +197 -0
- package/lib/commonjs/servers/volume/pack/data-model.js +43 -0
- package/lib/commonjs/servers/volume/pack/downsampling.js +168 -0
- package/lib/commonjs/servers/volume/pack/format/ccp4.js +72 -0
- package/lib/commonjs/servers/volume/pack/format/dsn6.js +76 -0
- package/lib/commonjs/servers/volume/pack/format.js +82 -0
- package/lib/commonjs/servers/volume/pack/main.js +186 -0
- package/lib/commonjs/servers/volume/pack/sampling.js +272 -0
- package/lib/commonjs/servers/volume/pack/version.d.ts +1 -0
- package/lib/commonjs/servers/volume/pack/version.js +5 -0
- package/lib/commonjs/servers/volume/pack/writer.js +86 -0
- package/lib/commonjs/servers/volume/pack.js +62 -0
- package/lib/commonjs/servers/volume/query.d.ts +10 -0
- package/lib/commonjs/servers/volume/query.js +79 -0
- package/lib/commonjs/servers/volume/server/algebra/box.d.ts +32 -0
- package/lib/commonjs/servers/volume/server/algebra/box.js +123 -0
- package/lib/commonjs/servers/volume/server/algebra/coordinate.d.ts +65 -0
- package/lib/commonjs/servers/volume/server/algebra/coordinate.js +137 -0
- package/lib/commonjs/servers/volume/server/api.d.ts +20 -0
- package/lib/commonjs/servers/volume/server/api.js +115 -0
- package/lib/commonjs/servers/volume/server/local-api.d.ts +36 -0
- package/lib/commonjs/servers/volume/server/local-api.js +145 -0
- package/lib/commonjs/servers/volume/server/query/compose.d.ts +9 -0
- package/lib/commonjs/servers/volume/server/query/compose.js +124 -0
- package/lib/commonjs/servers/volume/server/query/data-model.d.ts +91 -0
- package/lib/commonjs/servers/volume/server/query/data-model.js +10 -0
- package/lib/commonjs/servers/volume/server/query/encode.d.ts +9 -0
- package/lib/commonjs/servers/volume/server/query/encode.js +162 -0
- package/lib/commonjs/servers/volume/server/query/execute.d.ts +9 -0
- package/lib/commonjs/servers/volume/server/query/execute.js +254 -0
- package/lib/commonjs/servers/volume/server/query/identify.d.ts +11 -0
- package/lib/commonjs/servers/volume/server/query/identify.js +112 -0
- package/lib/commonjs/servers/volume/server/state.d.ts +12 -0
- package/lib/commonjs/servers/volume/server/state.js +16 -0
- package/lib/commonjs/servers/volume/server/version.d.ts +2 -0
- package/lib/commonjs/servers/volume/server/version.js +6 -0
- package/lib/commonjs/servers/volume/server/web-api.d.ts +10 -0
- package/lib/commonjs/servers/volume/server/web-api.js +226 -0
- package/lib/commonjs/servers/volume/server/web-schema.d.ts +245 -0
- package/lib/commonjs/servers/volume/server/web-schema.js +263 -0
- package/lib/commonjs/servers/volume/server.d.ts +10 -0
- package/lib/commonjs/servers/volume/server.js +59 -0
- package/lib/examples/alpha-orbitals/index.html +61 -61
- package/lib/examples/basic-wrapper/index.html +137 -137
- package/lib/examples/lighting/index.html +88 -88
- package/lib/examples/proteopedia-wrapper/index.html +236 -236
- package/lib/mol-geo/geometry/cylinders/cylinders.d.ts +2 -2
- package/lib/mol-geo/geometry/lines/lines.d.ts +1 -0
- package/lib/mol-geo/geometry/points/points.d.ts +1 -1
- package/lib/mol-math/geometry/primitives/sphere3d.d.ts +1 -1
- package/lib/mol-math/geometry/primitives/sphere3d.js +17 -4
- package/lib/mol-model/structure/structure/element/loci.d.ts +1 -1
- package/lib/mol-model/structure/structure/element/loci.js +4 -2
- package/lib/mol-plugin/behavior/dynamic/representation.d.ts +1 -1
- package/lib/mol-plugin/behavior/dynamic/representation.js +11 -6
- package/lib/mol-plugin/behavior/dynamic/volume-streaming/model.d.ts +3 -2
- package/lib/mol-plugin/behavior/static/representation.js +1 -1
- package/lib/mol-plugin/version.js +2 -2
- package/lib/mol-plugin-ui/skin/base/base.scss +32 -32
- package/lib/mol-plugin-ui/skin/base/components/controls-base.scss +333 -333
- package/lib/mol-plugin-ui/skin/base/components/controls.scss +418 -418
- package/lib/mol-plugin-ui/skin/base/components/help.scss +27 -27
- package/lib/mol-plugin-ui/skin/base/components/line-graph.scss +67 -67
- package/lib/mol-plugin-ui/skin/base/components/log.scss +100 -100
- package/lib/mol-plugin-ui/skin/base/components/misc.scss +643 -643
- package/lib/mol-plugin-ui/skin/base/components/sequence.scss +125 -125
- package/lib/mol-plugin-ui/skin/base/components/slider.scss +165 -165
- package/lib/mol-plugin-ui/skin/base/components/tasks.scss +99 -99
- package/lib/mol-plugin-ui/skin/base/components/toast.scss +83 -83
- package/lib/mol-plugin-ui/skin/base/components/transformer.scss +163 -163
- package/lib/mol-plugin-ui/skin/base/components/viewport.scss +127 -127
- package/lib/mol-plugin-ui/skin/base/layout/common.scss +71 -71
- package/lib/mol-plugin-ui/skin/base/layout/controls-landscape.scss +89 -89
- package/lib/mol-plugin-ui/skin/base/layout/controls-outside.scss +98 -98
- package/lib/mol-plugin-ui/skin/base/layout/controls-portrait.scss +108 -108
- package/lib/mol-plugin-ui/skin/base/layout.scss +40 -40
- package/lib/mol-plugin-ui/skin/base/logo.scss +12 -12
- package/lib/mol-plugin-ui/skin/base/normalize.scss +209 -209
- package/lib/mol-plugin-ui/skin/base/ui.scss +40 -40
- package/lib/mol-plugin-ui/skin/base/variables.scss +85 -85
- package/lib/mol-plugin-ui/skin/blue.scss +1 -1
- package/lib/mol-plugin-ui/skin/colors/blue.scss +23 -23
- package/lib/mol-plugin-ui/skin/colors/dark.scss +23 -23
- package/lib/mol-plugin-ui/skin/colors/light.scss +29 -29
- package/lib/mol-plugin-ui/skin/dark.scss +1 -1
- package/lib/mol-plugin-ui/skin/light.scss +1 -1
- package/lib/mol-repr/shape/loci/common.d.ts +1 -1
- package/lib/mol-repr/shape/loci/common.js +3 -3
- package/lib/mol-repr/structure/visual/molecular-surface-mesh.d.ts +1 -1
- package/lib/mol-repr/structure/visual/molecular-surface-mesh.js +2 -2
- package/lib/mol-script/language/builder.d.ts +0 -1
- package/lib/mol-state/transform.js +12 -2
- package/package.json +160 -160
|
@@ -0,0 +1,1334 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ScriptControl = exports.ConvertedControl = exports.ConditionedControl = exports.ObjectListControl = exports.MappedControl = exports.GroupControl = exports.MultiSelectControl = exports.FileListControl = exports.FileControl = exports.UrlControl = exports.Mat4Control = exports.Vec3Control = exports.OffsetColorListControl = exports.ColorListControl = exports.ColorControl = exports.BoundedIntervalControl = exports.IntervalControl = exports.ValueRefControl = exports.SelectControl = exports.PureSelectControl = exports.TextControl = exports.NumberRangeControl = exports.NumberInputControl = exports.LineGraphControl = exports.BoolControl = exports.SimpleParam = exports.ParamHelp = exports.ParameterMappingControl = exports.ParameterControls = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
6
|
+
/**
|
|
7
|
+
* Copyright (c) 2018-2021 mol* contributors, licensed under MIT, See LICENSE file for more info.
|
|
8
|
+
*
|
|
9
|
+
* @author David Sehnal <david.sehnal@gmail.com>
|
|
10
|
+
* @author Alexander Rose <alexander.rose@weirdbyte.de>
|
|
11
|
+
*/
|
|
12
|
+
var React = (0, tslib_1.__importStar)(require("react"));
|
|
13
|
+
var linear_algebra_1 = require("../../mol-math/linear-algebra");
|
|
14
|
+
var assets_1 = require("../../mol-util/assets");
|
|
15
|
+
var color_1 = require("../../mol-util/color");
|
|
16
|
+
var lists_1 = require("../../mol-util/color/lists");
|
|
17
|
+
var memoize_1 = require("../../mol-util/memoize");
|
|
18
|
+
var number_1 = require("../../mol-util/number");
|
|
19
|
+
var param_definition_1 = require("../../mol-util/param-definition");
|
|
20
|
+
var string_1 = require("../../mol-util/string");
|
|
21
|
+
var base_1 = require("../base");
|
|
22
|
+
var action_menu_1 = require("./action-menu");
|
|
23
|
+
var color_2 = require("./color");
|
|
24
|
+
var common_1 = require("./common");
|
|
25
|
+
var icons_1 = require("./icons");
|
|
26
|
+
var legend_1 = require("./legend");
|
|
27
|
+
var line_graph_component_1 = require("./line-graph/line-graph-component");
|
|
28
|
+
var slider_1 = require("./slider");
|
|
29
|
+
var ParameterControls = /** @class */ (function (_super) {
|
|
30
|
+
(0, tslib_1.__extends)(ParameterControls, _super);
|
|
31
|
+
function ParameterControls() {
|
|
32
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
33
|
+
_this.onChange = function (params) {
|
|
34
|
+
var _a;
|
|
35
|
+
var _b, _c;
|
|
36
|
+
(_c = (_b = _this.props).onChange) === null || _c === void 0 ? void 0 : _c.call(_b, params, _this.props.values);
|
|
37
|
+
if (_this.props.onChangeValues) {
|
|
38
|
+
var values = (0, tslib_1.__assign)((0, tslib_1.__assign)({}, _this.props.values), (_a = {}, _a[params.name] = params.value, _a));
|
|
39
|
+
_this.props.onChangeValues(values, _this.props.values);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
_this.paramGroups = (0, memoize_1.memoizeLatest)(function (params) { return classifyParams(params); });
|
|
43
|
+
return _this;
|
|
44
|
+
}
|
|
45
|
+
ParameterControls.prototype.renderGroup = function (group) {
|
|
46
|
+
var _a;
|
|
47
|
+
if (group.length === 0)
|
|
48
|
+
return null;
|
|
49
|
+
var values = this.props.values;
|
|
50
|
+
var ctrls = null;
|
|
51
|
+
var category = void 0;
|
|
52
|
+
for (var _i = 0, group_1 = group; _i < group_1.length; _i++) {
|
|
53
|
+
var _b = group_1[_i], key = _b[0], p = _b[1], Control = _b[2];
|
|
54
|
+
if ((_a = p.hideIf) === null || _a === void 0 ? void 0 : _a.call(p, values))
|
|
55
|
+
continue;
|
|
56
|
+
if (!ctrls)
|
|
57
|
+
ctrls = [];
|
|
58
|
+
category = p.category;
|
|
59
|
+
ctrls.push((0, jsx_runtime_1.jsx)(Control, { param: p, onChange: this.onChange, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled, name: key, value: values[key] }, key));
|
|
60
|
+
}
|
|
61
|
+
if (!ctrls)
|
|
62
|
+
return null;
|
|
63
|
+
if (category) {
|
|
64
|
+
return [(0, jsx_runtime_1.jsx)(common_1.ExpandGroup, (0, tslib_1.__assign)({ header: category }, { children: ctrls }), category)];
|
|
65
|
+
}
|
|
66
|
+
return ctrls;
|
|
67
|
+
};
|
|
68
|
+
ParameterControls.prototype.renderPart = function (groups) {
|
|
69
|
+
var parts = null;
|
|
70
|
+
for (var _i = 0, groups_1 = groups; _i < groups_1.length; _i++) {
|
|
71
|
+
var g = groups_1[_i];
|
|
72
|
+
var ctrls = this.renderGroup(g);
|
|
73
|
+
if (!ctrls)
|
|
74
|
+
continue;
|
|
75
|
+
if (!parts)
|
|
76
|
+
parts = [];
|
|
77
|
+
for (var _a = 0, ctrls_1 = ctrls; _a < ctrls_1.length; _a++) {
|
|
78
|
+
var c = ctrls_1[_a];
|
|
79
|
+
parts.push(c);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return parts;
|
|
83
|
+
};
|
|
84
|
+
ParameterControls.prototype.render = function () {
|
|
85
|
+
var groups = this.paramGroups(this.props.params);
|
|
86
|
+
var essentials = this.renderPart(groups.essentials);
|
|
87
|
+
var advanced = this.renderPart(groups.advanced);
|
|
88
|
+
if (essentials && advanced) {
|
|
89
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [essentials, (0, jsx_runtime_1.jsx)(common_1.ExpandGroup, (0, tslib_1.__assign)({ header: 'Advanced Options' }, { children: advanced }), void 0)] }, void 0);
|
|
90
|
+
}
|
|
91
|
+
else if (essentials) {
|
|
92
|
+
return essentials;
|
|
93
|
+
}
|
|
94
|
+
else {
|
|
95
|
+
return advanced;
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
return ParameterControls;
|
|
99
|
+
}(React.PureComponent));
|
|
100
|
+
exports.ParameterControls = ParameterControls;
|
|
101
|
+
var ParameterMappingControl = /** @class */ (function (_super) {
|
|
102
|
+
(0, tslib_1.__extends)(ParameterMappingControl, _super);
|
|
103
|
+
function ParameterMappingControl() {
|
|
104
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
105
|
+
_this.setSettings = function (p, old) {
|
|
106
|
+
var _a;
|
|
107
|
+
var values = (0, tslib_1.__assign)((0, tslib_1.__assign)({}, old), (_a = {}, _a[p.name] = p.value, _a));
|
|
108
|
+
var t = _this.props.mapping.update(values, _this.plugin);
|
|
109
|
+
_this.props.mapping.apply(t, _this.plugin);
|
|
110
|
+
};
|
|
111
|
+
return _this;
|
|
112
|
+
}
|
|
113
|
+
ParameterMappingControl.prototype.componentDidMount = function () {
|
|
114
|
+
var _this = this;
|
|
115
|
+
this.subscribe(this.plugin.events.canvas3d.settingsUpdated, function () { return _this.forceUpdate(); });
|
|
116
|
+
};
|
|
117
|
+
ParameterMappingControl.prototype.render = function () {
|
|
118
|
+
var t = this.props.mapping.getTarget(this.plugin);
|
|
119
|
+
var values = this.props.mapping.getValues(t, this.plugin);
|
|
120
|
+
var params = this.props.mapping.params(this.plugin);
|
|
121
|
+
return (0, jsx_runtime_1.jsx)(ParameterControls, { params: params, values: values, onChange: this.setSettings }, void 0);
|
|
122
|
+
};
|
|
123
|
+
return ParameterMappingControl;
|
|
124
|
+
}(base_1.PluginUIComponent));
|
|
125
|
+
exports.ParameterMappingControl = ParameterMappingControl;
|
|
126
|
+
function classifyParams(params) {
|
|
127
|
+
function addParam(k, p, group) {
|
|
128
|
+
var ctrl = controlFor(p);
|
|
129
|
+
if (!ctrl)
|
|
130
|
+
return;
|
|
131
|
+
if (!p.category)
|
|
132
|
+
group.params[0].push([k, p, ctrl]);
|
|
133
|
+
else {
|
|
134
|
+
if (!group.map)
|
|
135
|
+
group.map = new Map();
|
|
136
|
+
var c = group.map.get(p.category);
|
|
137
|
+
if (!c) {
|
|
138
|
+
c = [];
|
|
139
|
+
group.map.set(p.category, c);
|
|
140
|
+
group.params.push(c);
|
|
141
|
+
}
|
|
142
|
+
c.push([k, p, ctrl]);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
function sortGroups(x, y) {
|
|
146
|
+
var a = x[0], b = y[0];
|
|
147
|
+
if (!a || !a[1].category)
|
|
148
|
+
return -1;
|
|
149
|
+
if (!b || !b[1].category)
|
|
150
|
+
return 1;
|
|
151
|
+
return a[1].category < b[1].category ? -1 : 1;
|
|
152
|
+
}
|
|
153
|
+
var keys = Object.keys(params);
|
|
154
|
+
var essentials = { params: [[]], map: void 0 };
|
|
155
|
+
var advanced = { params: [[]], map: void 0 };
|
|
156
|
+
for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {
|
|
157
|
+
var k = keys_1[_i];
|
|
158
|
+
var p = params[k];
|
|
159
|
+
if (p.isHidden)
|
|
160
|
+
continue;
|
|
161
|
+
if (p.isEssential)
|
|
162
|
+
addParam(k, p, essentials);
|
|
163
|
+
else
|
|
164
|
+
addParam(k, p, advanced);
|
|
165
|
+
}
|
|
166
|
+
essentials.params.sort(sortGroups);
|
|
167
|
+
advanced.params.sort(sortGroups);
|
|
168
|
+
return { essentials: essentials.params, advanced: advanced.params };
|
|
169
|
+
}
|
|
170
|
+
function controlFor(param) {
|
|
171
|
+
switch (param.type) {
|
|
172
|
+
case 'value': return void 0;
|
|
173
|
+
case 'boolean': return BoolControl;
|
|
174
|
+
case 'number': return typeof param.min !== 'undefined' && typeof param.max !== 'undefined'
|
|
175
|
+
? NumberRangeControl : NumberInputControl;
|
|
176
|
+
case 'converted': return ConvertedControl;
|
|
177
|
+
case 'conditioned': return ConditionedControl;
|
|
178
|
+
case 'multi-select': return MultiSelectControl;
|
|
179
|
+
case 'color': return color_2.CombinedColorControl;
|
|
180
|
+
case 'color-list': return param.offsets ? OffsetColorListControl : ColorListControl;
|
|
181
|
+
case 'vec3': return Vec3Control;
|
|
182
|
+
case 'mat4': return Mat4Control;
|
|
183
|
+
case 'url': return UrlControl;
|
|
184
|
+
case 'file': return FileControl;
|
|
185
|
+
case 'file-list': return FileListControl;
|
|
186
|
+
case 'select': return SelectControl;
|
|
187
|
+
case 'value-ref': return ValueRefControl;
|
|
188
|
+
case 'data-ref': return void 0;
|
|
189
|
+
case 'text': return TextControl;
|
|
190
|
+
case 'interval': return typeof param.min !== 'undefined' && typeof param.max !== 'undefined'
|
|
191
|
+
? BoundedIntervalControl : IntervalControl;
|
|
192
|
+
case 'group': return GroupControl;
|
|
193
|
+
case 'mapped': return MappedControl;
|
|
194
|
+
case 'line-graph': return LineGraphControl;
|
|
195
|
+
case 'script': return ScriptControl;
|
|
196
|
+
case 'object-list': return ObjectListControl;
|
|
197
|
+
default:
|
|
198
|
+
var _ = param;
|
|
199
|
+
console.warn("".concat(_, " has no associated UI component"));
|
|
200
|
+
return void 0;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
var ParamHelp = /** @class */ (function (_super) {
|
|
204
|
+
(0, tslib_1.__extends)(ParamHelp, _super);
|
|
205
|
+
function ParamHelp() {
|
|
206
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
207
|
+
}
|
|
208
|
+
ParamHelp.prototype.render = function () {
|
|
209
|
+
var _a = this.props, legend = _a.legend, description = _a.description;
|
|
210
|
+
var Legend = legend && (0, legend_1.legendFor)(legend);
|
|
211
|
+
return (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-help-text' }, { children: (0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-help-description' }, { children: [(0, jsx_runtime_1.jsx)(icons_1.Icon, { svg: icons_1.HelpOutlineSvg, inline: true }, void 0), description] }), void 0), Legend && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-help-legend' }, { children: (0, jsx_runtime_1.jsx)(Legend, { legend: legend }, void 0) }), void 0)] }, void 0) }), void 0);
|
|
212
|
+
};
|
|
213
|
+
return ParamHelp;
|
|
214
|
+
}(React.PureComponent));
|
|
215
|
+
exports.ParamHelp = ParamHelp;
|
|
216
|
+
function renderSimple(options) {
|
|
217
|
+
var props = options.props, state = options.state, control = options.control, toggleHelp = options.toggleHelp, addOn = options.addOn;
|
|
218
|
+
var _className = [];
|
|
219
|
+
if (props.param.shortLabel)
|
|
220
|
+
_className.push('msp-control-label-short');
|
|
221
|
+
if (props.param.twoColumns)
|
|
222
|
+
_className.push('msp-control-col-2');
|
|
223
|
+
var className = _className.join(' ');
|
|
224
|
+
var label = props.param.label || (0, string_1.camelCaseToWords)(props.name);
|
|
225
|
+
var help = props.param.help
|
|
226
|
+
? props.param.help(props.value)
|
|
227
|
+
: { description: props.param.description, legend: props.param.legend };
|
|
228
|
+
var hasHelp = help.description || help.legend;
|
|
229
|
+
var desc = label + (hasHelp ? '. Click for help.' : '');
|
|
230
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { className: className, title: desc, label: (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [label, hasHelp &&
|
|
231
|
+
(0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ className: 'msp-help msp-btn-link msp-btn-icon msp-control-group-expander', onClick: toggleHelp, title: desc || "".concat(state.showHelp ? 'Hide' : 'Show', " help"), style: { background: 'transparent', textAlign: 'left', padding: '0' } }, { children: (0, jsx_runtime_1.jsx)(icons_1.Icon, { svg: icons_1.HelpOutlineSvg }, void 0) }), void 0)] }, void 0), control: control }, void 0), hasHelp && state.showHelp && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: (0, jsx_runtime_1.jsx)(ParamHelp, { legend: help.legend, description: help.description }, void 0) }), void 0), addOn] }, void 0);
|
|
232
|
+
}
|
|
233
|
+
var SimpleParam = /** @class */ (function (_super) {
|
|
234
|
+
(0, tslib_1.__extends)(SimpleParam, _super);
|
|
235
|
+
function SimpleParam() {
|
|
236
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
237
|
+
_this.state = { showHelp: false };
|
|
238
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
239
|
+
return _this;
|
|
240
|
+
}
|
|
241
|
+
SimpleParam.prototype.update = function (value) {
|
|
242
|
+
this.props.onChange({ param: this.props.param, name: this.props.name, value: value });
|
|
243
|
+
};
|
|
244
|
+
SimpleParam.prototype.renderAddOn = function () { return null; };
|
|
245
|
+
SimpleParam.prototype.render = function () {
|
|
246
|
+
return renderSimple({
|
|
247
|
+
props: this.props,
|
|
248
|
+
state: this.state,
|
|
249
|
+
control: this.renderControl(),
|
|
250
|
+
toggleHelp: this.toggleHelp,
|
|
251
|
+
addOn: this.renderAddOn()
|
|
252
|
+
});
|
|
253
|
+
};
|
|
254
|
+
return SimpleParam;
|
|
255
|
+
}(React.PureComponent));
|
|
256
|
+
exports.SimpleParam = SimpleParam;
|
|
257
|
+
var BoolControl = /** @class */ (function (_super) {
|
|
258
|
+
(0, tslib_1.__extends)(BoolControl, _super);
|
|
259
|
+
function BoolControl() {
|
|
260
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
261
|
+
_this.onClick = function (e) { _this.update(!_this.props.value); e.currentTarget.blur(); };
|
|
262
|
+
return _this;
|
|
263
|
+
}
|
|
264
|
+
BoolControl.prototype.renderControl = function () {
|
|
265
|
+
return (0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ onClick: this.onClick, disabled: this.props.isDisabled }, { children: [(0, jsx_runtime_1.jsx)(icons_1.Icon, { svg: this.props.value ? icons_1.CheckSvg : icons_1.ClearSvg }, void 0), this.props.value ? 'On' : 'Off'] }), void 0);
|
|
266
|
+
};
|
|
267
|
+
return BoolControl;
|
|
268
|
+
}(SimpleParam));
|
|
269
|
+
exports.BoolControl = BoolControl;
|
|
270
|
+
var LineGraphControl = /** @class */ (function (_super) {
|
|
271
|
+
(0, tslib_1.__extends)(LineGraphControl, _super);
|
|
272
|
+
function LineGraphControl() {
|
|
273
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
274
|
+
_this.state = {
|
|
275
|
+
isExpanded: false,
|
|
276
|
+
isOverPoint: false,
|
|
277
|
+
message: "".concat(_this.props.param.defaultValue.length, " points"),
|
|
278
|
+
};
|
|
279
|
+
_this.onHover = function (point) {
|
|
280
|
+
_this.setState({ isOverPoint: !_this.state.isOverPoint });
|
|
281
|
+
if (point) {
|
|
282
|
+
_this.setState({ message: "(".concat(point[0].toFixed(2), ", ").concat(point[1].toFixed(2), ")") });
|
|
283
|
+
return;
|
|
284
|
+
}
|
|
285
|
+
_this.setState({ message: "".concat(_this.props.value.length, " points") });
|
|
286
|
+
};
|
|
287
|
+
_this.onDrag = function (point) {
|
|
288
|
+
_this.setState({ message: "(".concat(point[0].toFixed(2), ", ").concat(point[1].toFixed(2), ")") });
|
|
289
|
+
};
|
|
290
|
+
_this.onChange = function (value) {
|
|
291
|
+
_this.props.onChange({ name: _this.props.name, param: _this.props.param, value: value });
|
|
292
|
+
};
|
|
293
|
+
_this.toggleExpanded = function (e) {
|
|
294
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
295
|
+
e.currentTarget.blur();
|
|
296
|
+
};
|
|
297
|
+
return _this;
|
|
298
|
+
}
|
|
299
|
+
LineGraphControl.prototype.render = function () {
|
|
300
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
301
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { label: label, control: (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ onClick: this.toggleExpanded, disabled: this.props.isDisabled }, { children: "".concat(this.state.message) }), void 0) }, void 0), (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset', style: { display: this.state.isExpanded ? 'block' : 'none' } }, { children: (0, jsx_runtime_1.jsx)(line_graph_component_1.LineGraphComponent, { data: this.props.param.defaultValue, onChange: this.onChange, onHover: this.onHover, onDrag: this.onDrag }, void 0) }), void 0)] }, void 0);
|
|
302
|
+
};
|
|
303
|
+
return LineGraphControl;
|
|
304
|
+
}(React.PureComponent));
|
|
305
|
+
exports.LineGraphControl = LineGraphControl;
|
|
306
|
+
var NumberInputControl = /** @class */ (function (_super) {
|
|
307
|
+
(0, tslib_1.__extends)(NumberInputControl, _super);
|
|
308
|
+
function NumberInputControl() {
|
|
309
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
310
|
+
_this.state = { value: '0' };
|
|
311
|
+
_this.update = function (value) {
|
|
312
|
+
var p = (0, number_1.getPrecision)(_this.props.param.step || 0.01);
|
|
313
|
+
value = parseFloat(value.toFixed(p));
|
|
314
|
+
_this.props.onChange({ param: _this.props.param, name: _this.props.name, value: value });
|
|
315
|
+
};
|
|
316
|
+
return _this;
|
|
317
|
+
}
|
|
318
|
+
NumberInputControl.prototype.render = function () {
|
|
319
|
+
var placeholder = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
320
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
321
|
+
var p = (0, number_1.getPrecision)(this.props.param.step || 0.01);
|
|
322
|
+
return (0, jsx_runtime_1.jsx)(common_1.ControlRow, { title: this.props.param.description, label: label, control: (0, jsx_runtime_1.jsx)(common_1.TextInput, { numeric: true, value: parseFloat(this.props.value.toFixed(p)), onEnter: this.props.onEnter, placeholder: placeholder, isDisabled: this.props.isDisabled, onChange: this.update }, void 0) }, void 0);
|
|
323
|
+
};
|
|
324
|
+
return NumberInputControl;
|
|
325
|
+
}(React.PureComponent));
|
|
326
|
+
exports.NumberInputControl = NumberInputControl;
|
|
327
|
+
var NumberRangeControl = /** @class */ (function (_super) {
|
|
328
|
+
(0, tslib_1.__extends)(NumberRangeControl, _super);
|
|
329
|
+
function NumberRangeControl() {
|
|
330
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
331
|
+
_this.onChange = function (v) { _this.update(v); };
|
|
332
|
+
return _this;
|
|
333
|
+
}
|
|
334
|
+
NumberRangeControl.prototype.renderControl = function () {
|
|
335
|
+
var value = typeof this.props.value === 'undefined' ? this.props.param.defaultValue : this.props.value;
|
|
336
|
+
return (0, jsx_runtime_1.jsx)(slider_1.Slider, { value: value, min: this.props.param.min, max: this.props.param.max, step: this.props.param.step, onChange: this.onChange, onChangeImmediate: this.props.param.immediateUpdate ? this.onChange : void 0, disabled: this.props.isDisabled, onEnter: this.props.onEnter }, void 0);
|
|
337
|
+
};
|
|
338
|
+
return NumberRangeControl;
|
|
339
|
+
}(SimpleParam));
|
|
340
|
+
exports.NumberRangeControl = NumberRangeControl;
|
|
341
|
+
var TextControl = /** @class */ (function (_super) {
|
|
342
|
+
(0, tslib_1.__extends)(TextControl, _super);
|
|
343
|
+
function TextControl() {
|
|
344
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
345
|
+
_this.onChange = function (e) {
|
|
346
|
+
var value = e.target.value;
|
|
347
|
+
if (value !== _this.props.value) {
|
|
348
|
+
_this.update(value);
|
|
349
|
+
}
|
|
350
|
+
};
|
|
351
|
+
_this.onKeyPress = function (e) {
|
|
352
|
+
if ((e.keyCode === 13 || e.charCode === 13 || e.key === 'Enter')) {
|
|
353
|
+
if (_this.props.onEnter)
|
|
354
|
+
_this.props.onEnter();
|
|
355
|
+
}
|
|
356
|
+
e.stopPropagation();
|
|
357
|
+
};
|
|
358
|
+
return _this;
|
|
359
|
+
}
|
|
360
|
+
TextControl.prototype.renderControl = function () {
|
|
361
|
+
var placeholder = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
362
|
+
return (0, jsx_runtime_1.jsx)("input", { type: 'text', value: this.props.value || '', placeholder: placeholder, onChange: this.onChange, onKeyPress: this.props.onEnter ? this.onKeyPress : void 0, disabled: this.props.isDisabled }, void 0);
|
|
363
|
+
};
|
|
364
|
+
return TextControl;
|
|
365
|
+
}(SimpleParam));
|
|
366
|
+
exports.TextControl = TextControl;
|
|
367
|
+
var PureSelectControl = /** @class */ (function (_super) {
|
|
368
|
+
(0, tslib_1.__extends)(PureSelectControl, _super);
|
|
369
|
+
function PureSelectControl() {
|
|
370
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
371
|
+
_this.onChange = function (e) {
|
|
372
|
+
if (typeof _this.props.param.defaultValue === 'number') {
|
|
373
|
+
_this.update(parseInt(e.target.value, 10));
|
|
374
|
+
}
|
|
375
|
+
else {
|
|
376
|
+
_this.update(e.target.value);
|
|
377
|
+
}
|
|
378
|
+
};
|
|
379
|
+
return _this;
|
|
380
|
+
}
|
|
381
|
+
PureSelectControl.prototype.update = function (value) {
|
|
382
|
+
this.props.onChange({ param: this.props.param, name: this.props.name, value: value });
|
|
383
|
+
};
|
|
384
|
+
PureSelectControl.prototype.render = function () {
|
|
385
|
+
var _this = this;
|
|
386
|
+
var isInvalid = this.props.value !== void 0 && !this.props.param.options.some(function (e) { return e[0] === _this.props.value; });
|
|
387
|
+
return (0, jsx_runtime_1.jsxs)("select", (0, tslib_1.__assign)({ className: 'msp-form-control', title: this.props.title, value: this.props.value !== void 0 ? this.props.value : this.props.param.defaultValue, onChange: this.onChange, disabled: this.props.isDisabled }, { children: [isInvalid && (0, jsx_runtime_1.jsx)("option", (0, tslib_1.__assign)({ value: this.props.value }, { children: "[Invalid] ".concat(this.props.value) }), this.props.value), this.props.param.options.map(function (_a) {
|
|
388
|
+
var value = _a[0], label = _a[1];
|
|
389
|
+
return (0, jsx_runtime_1.jsx)("option", (0, tslib_1.__assign)({ value: value }, { children: label }), value);
|
|
390
|
+
})] }), void 0);
|
|
391
|
+
};
|
|
392
|
+
return PureSelectControl;
|
|
393
|
+
}(React.PureComponent));
|
|
394
|
+
exports.PureSelectControl = PureSelectControl;
|
|
395
|
+
var SelectControl = /** @class */ (function (_super) {
|
|
396
|
+
(0, tslib_1.__extends)(SelectControl, _super);
|
|
397
|
+
function SelectControl() {
|
|
398
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
399
|
+
_this.state = { showHelp: false, showOptions: false };
|
|
400
|
+
_this.onSelect = function (item) {
|
|
401
|
+
if (!item || item.value === _this.props.value) {
|
|
402
|
+
_this.setState({ showOptions: false });
|
|
403
|
+
}
|
|
404
|
+
else {
|
|
405
|
+
_this.setState({ showOptions: false }, function () {
|
|
406
|
+
_this.props.onChange({ param: _this.props.param, name: _this.props.name, value: item.value });
|
|
407
|
+
});
|
|
408
|
+
}
|
|
409
|
+
};
|
|
410
|
+
_this.toggle = function () { return _this.setState({ showOptions: !_this.state.showOptions }); };
|
|
411
|
+
_this.cycle = function () {
|
|
412
|
+
var options = _this.props.param.options;
|
|
413
|
+
var current = options.findIndex(function (o) { return o[0] === _this.props.value; });
|
|
414
|
+
var next = current === options.length - 1 ? 0 : current + 1;
|
|
415
|
+
_this.props.onChange({ param: _this.props.param, name: _this.props.name, value: options[next][0] });
|
|
416
|
+
};
|
|
417
|
+
_this.items = (0, memoize_1.memoizeLatest)(function (param) { return action_menu_1.ActionMenu.createItemsFromSelectOptions(param.options); });
|
|
418
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
419
|
+
return _this;
|
|
420
|
+
}
|
|
421
|
+
SelectControl.prototype.renderControl = function () {
|
|
422
|
+
var _a;
|
|
423
|
+
var items = this.items(this.props.param);
|
|
424
|
+
var current = this.props.value !== undefined ? action_menu_1.ActionMenu.findItem(items, this.props.value) : void 0;
|
|
425
|
+
var label = current
|
|
426
|
+
? current.label
|
|
427
|
+
: typeof this.props.value === 'undefined'
|
|
428
|
+
? "".concat(((_a = action_menu_1.ActionMenu.getFirstItem(items)) === null || _a === void 0 ? void 0 : _a.label) || '', " [Default]")
|
|
429
|
+
: "[Invalid] ".concat(this.props.value);
|
|
430
|
+
var toggle = this.props.param.cycle ? this.cycle : this.toggle;
|
|
431
|
+
var textAlign = this.props.param.cycle ? 'center' : 'left';
|
|
432
|
+
var icon = this.props.param.cycle
|
|
433
|
+
? (this.props.value === 'on' ? icons_1.CheckSvg
|
|
434
|
+
: this.props.value === 'off' ? icons_1.ClearSvg : void 0)
|
|
435
|
+
: void 0;
|
|
436
|
+
return (0, jsx_runtime_1.jsx)(common_1.ToggleButton, { disabled: this.props.isDisabled, style: { textAlign: textAlign, overflow: 'hidden', textOverflow: 'ellipsis' }, label: label, title: label, icon: icon, toggle: toggle, isSelected: this.state.showOptions }, void 0);
|
|
437
|
+
};
|
|
438
|
+
SelectControl.prototype.renderAddOn = function () {
|
|
439
|
+
if (!this.state.showOptions)
|
|
440
|
+
return null;
|
|
441
|
+
var items = this.items(this.props.param);
|
|
442
|
+
var current = action_menu_1.ActionMenu.findItem(items, this.props.value);
|
|
443
|
+
return (0, jsx_runtime_1.jsx)(action_menu_1.ActionMenu, { items: items, current: current, onSelect: this.onSelect }, void 0);
|
|
444
|
+
};
|
|
445
|
+
SelectControl.prototype.render = function () {
|
|
446
|
+
return renderSimple({
|
|
447
|
+
props: this.props,
|
|
448
|
+
state: this.state,
|
|
449
|
+
control: this.renderControl(),
|
|
450
|
+
toggleHelp: this.toggleHelp,
|
|
451
|
+
addOn: this.renderAddOn()
|
|
452
|
+
});
|
|
453
|
+
};
|
|
454
|
+
return SelectControl;
|
|
455
|
+
}(React.PureComponent));
|
|
456
|
+
exports.SelectControl = SelectControl;
|
|
457
|
+
var ValueRefControl = /** @class */ (function (_super) {
|
|
458
|
+
(0, tslib_1.__extends)(ValueRefControl, _super);
|
|
459
|
+
function ValueRefControl() {
|
|
460
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
461
|
+
_this.state = { showHelp: false, showOptions: false };
|
|
462
|
+
_this.onSelect = function (item) {
|
|
463
|
+
if (!item || item.value === _this.props.value) {
|
|
464
|
+
_this.setState({ showOptions: false });
|
|
465
|
+
}
|
|
466
|
+
else {
|
|
467
|
+
_this.setState({ showOptions: false }, function () {
|
|
468
|
+
_this.props.onChange({ param: _this.props.param, name: _this.props.name, value: { ref: item.value } });
|
|
469
|
+
});
|
|
470
|
+
}
|
|
471
|
+
};
|
|
472
|
+
_this.toggle = function () { return _this.setState({ showOptions: !_this.state.showOptions }); };
|
|
473
|
+
_this.items = (0, memoize_1.memoizeLatest)(function (param) { return action_menu_1.ActionMenu.createItemsFromSelectOptions(param.getOptions()); });
|
|
474
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
475
|
+
return _this;
|
|
476
|
+
}
|
|
477
|
+
ValueRefControl.prototype.renderControl = function () {
|
|
478
|
+
var _a;
|
|
479
|
+
var items = this.items(this.props.param);
|
|
480
|
+
var current = this.props.value.ref ? action_menu_1.ActionMenu.findItem(items, this.props.value.ref) : void 0;
|
|
481
|
+
var label = current
|
|
482
|
+
? current.label
|
|
483
|
+
: "[Ref] ".concat((_a = this.props.value.ref) !== null && _a !== void 0 ? _a : '');
|
|
484
|
+
return (0, jsx_runtime_1.jsx)(common_1.ToggleButton, { disabled: this.props.isDisabled, style: { textAlign: 'left', overflow: 'hidden', textOverflow: 'ellipsis' }, label: label, title: label, toggle: this.toggle, isSelected: this.state.showOptions }, void 0);
|
|
485
|
+
};
|
|
486
|
+
ValueRefControl.prototype.renderAddOn = function () {
|
|
487
|
+
if (!this.state.showOptions)
|
|
488
|
+
return null;
|
|
489
|
+
var items = this.items(this.props.param);
|
|
490
|
+
var current = action_menu_1.ActionMenu.findItem(items, this.props.value.ref);
|
|
491
|
+
return (0, jsx_runtime_1.jsx)(action_menu_1.ActionMenu, { items: items, current: current, onSelect: this.onSelect }, void 0);
|
|
492
|
+
};
|
|
493
|
+
ValueRefControl.prototype.render = function () {
|
|
494
|
+
return renderSimple({
|
|
495
|
+
props: this.props,
|
|
496
|
+
state: this.state,
|
|
497
|
+
control: this.renderControl(),
|
|
498
|
+
toggleHelp: this.toggleHelp,
|
|
499
|
+
addOn: this.renderAddOn()
|
|
500
|
+
});
|
|
501
|
+
};
|
|
502
|
+
return ValueRefControl;
|
|
503
|
+
}(React.PureComponent));
|
|
504
|
+
exports.ValueRefControl = ValueRefControl;
|
|
505
|
+
var IntervalControl = /** @class */ (function (_super) {
|
|
506
|
+
(0, tslib_1.__extends)(IntervalControl, _super);
|
|
507
|
+
function IntervalControl() {
|
|
508
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
509
|
+
_this.state = { isExpanded: false };
|
|
510
|
+
_this.components = {
|
|
511
|
+
0: param_definition_1.ParamDefinition.Numeric(0, { step: _this.props.param.step }, { label: 'Min' }),
|
|
512
|
+
1: param_definition_1.ParamDefinition.Numeric(0, { step: _this.props.param.step }, { label: 'Max' })
|
|
513
|
+
};
|
|
514
|
+
_this.componentChange = function (_a) {
|
|
515
|
+
var name = _a.name, value = _a.value;
|
|
516
|
+
var v = (0, tslib_1.__spreadArray)([], _this.props.value, true);
|
|
517
|
+
v[+name] = value;
|
|
518
|
+
_this.change(v);
|
|
519
|
+
};
|
|
520
|
+
_this.toggleExpanded = function (e) {
|
|
521
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
522
|
+
e.currentTarget.blur();
|
|
523
|
+
};
|
|
524
|
+
return _this;
|
|
525
|
+
}
|
|
526
|
+
IntervalControl.prototype.change = function (value) {
|
|
527
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
528
|
+
};
|
|
529
|
+
IntervalControl.prototype.render = function () {
|
|
530
|
+
var v = this.props.value;
|
|
531
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
532
|
+
var p = (0, number_1.getPrecision)(this.props.param.step || 0.01);
|
|
533
|
+
var value = "[".concat(v[0].toFixed(p), ", ").concat(v[1].toFixed(p), "]");
|
|
534
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { label: label, control: (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ onClick: this.toggleExpanded, disabled: this.props.isDisabled }, { children: value }), void 0) }, void 0), this.state.isExpanded && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: (0, jsx_runtime_1.jsx)(ParameterControls, { params: this.components, values: v, onChange: this.componentChange, onEnter: this.props.onEnter }, void 0) }), void 0)] }, void 0);
|
|
535
|
+
};
|
|
536
|
+
return IntervalControl;
|
|
537
|
+
}(React.PureComponent));
|
|
538
|
+
exports.IntervalControl = IntervalControl;
|
|
539
|
+
var BoundedIntervalControl = /** @class */ (function (_super) {
|
|
540
|
+
(0, tslib_1.__extends)(BoundedIntervalControl, _super);
|
|
541
|
+
function BoundedIntervalControl() {
|
|
542
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
543
|
+
_this.onChange = function (v) { _this.update(v); };
|
|
544
|
+
return _this;
|
|
545
|
+
}
|
|
546
|
+
BoundedIntervalControl.prototype.renderControl = function () {
|
|
547
|
+
return (0, jsx_runtime_1.jsx)(slider_1.Slider2, { value: this.props.value, min: this.props.param.min, max: this.props.param.max, step: this.props.param.step, onChange: this.onChange, disabled: this.props.isDisabled, onEnter: this.props.onEnter }, void 0);
|
|
548
|
+
};
|
|
549
|
+
return BoundedIntervalControl;
|
|
550
|
+
}(SimpleParam));
|
|
551
|
+
exports.BoundedIntervalControl = BoundedIntervalControl;
|
|
552
|
+
var ColorControl = /** @class */ (function (_super) {
|
|
553
|
+
(0, tslib_1.__extends)(ColorControl, _super);
|
|
554
|
+
function ColorControl() {
|
|
555
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
556
|
+
_this.onChange = function (e) {
|
|
557
|
+
_this.update((0, color_1.Color)(parseInt(e.target.value)));
|
|
558
|
+
};
|
|
559
|
+
return _this;
|
|
560
|
+
}
|
|
561
|
+
ColorControl.prototype.stripStyle = function () {
|
|
562
|
+
return {
|
|
563
|
+
background: color_1.Color.toStyle(this.props.value),
|
|
564
|
+
position: 'absolute',
|
|
565
|
+
bottom: '0',
|
|
566
|
+
height: '4px',
|
|
567
|
+
right: '0',
|
|
568
|
+
left: '0'
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
ColorControl.prototype.renderControl = function () {
|
|
572
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ style: { position: 'relative' } }, { children: [(0, jsx_runtime_1.jsxs)("select", (0, tslib_1.__assign)({ value: this.props.value, onChange: this.onChange }, { children: [(0, color_2.ColorValueOption)(this.props.value), (0, color_2.ColorOptions)()] }), void 0), (0, jsx_runtime_1.jsx)("div", { style: this.stripStyle() }, void 0)] }), void 0);
|
|
573
|
+
};
|
|
574
|
+
return ColorControl;
|
|
575
|
+
}(SimpleParam));
|
|
576
|
+
exports.ColorControl = ColorControl;
|
|
577
|
+
function colorEntryToStyle(e, includeOffset) {
|
|
578
|
+
if (includeOffset === void 0) { includeOffset = false; }
|
|
579
|
+
if (Array.isArray(e)) {
|
|
580
|
+
if (includeOffset)
|
|
581
|
+
return "".concat(color_1.Color.toStyle(e[0]), " ").concat((100 * e[1]).toFixed(2), "%");
|
|
582
|
+
return color_1.Color.toStyle(e[0]);
|
|
583
|
+
}
|
|
584
|
+
return color_1.Color.toStyle(e);
|
|
585
|
+
}
|
|
586
|
+
var colorGradientInterpolated = (0, memoize_1.memoize1)(function (colors) {
|
|
587
|
+
var styles = colors.map(function (c) { return colorEntryToStyle(c, true); });
|
|
588
|
+
return "linear-gradient(to right, ".concat(styles.join(', '), ")");
|
|
589
|
+
});
|
|
590
|
+
var colorGradientBanded = (0, memoize_1.memoize1)(function (colors) {
|
|
591
|
+
var n = colors.length;
|
|
592
|
+
var styles = ["".concat(colorEntryToStyle(colors[0]), " ").concat(100 * (1 / n), "%")];
|
|
593
|
+
// TODO: does this need to support offsets?
|
|
594
|
+
for (var i = 1, il = n - 1; i < il; ++i) {
|
|
595
|
+
styles.push("".concat(colorEntryToStyle(colors[i]), " ").concat(100 * (i / n), "%"), "".concat(colorEntryToStyle(colors[i]), " ").concat(100 * ((i + 1) / n), "%"));
|
|
596
|
+
}
|
|
597
|
+
styles.push("".concat(colorEntryToStyle(colors[n - 1]), " ").concat(100 * ((n - 1) / n), "%"));
|
|
598
|
+
return "linear-gradient(to right, ".concat(styles.join(', '), ")");
|
|
599
|
+
});
|
|
600
|
+
function colorStripStyle(list, right) {
|
|
601
|
+
if (right === void 0) { right = '0'; }
|
|
602
|
+
return {
|
|
603
|
+
background: colorGradient(list.colors, list.kind === 'set'),
|
|
604
|
+
position: 'absolute',
|
|
605
|
+
bottom: '0',
|
|
606
|
+
height: '4px',
|
|
607
|
+
right: right,
|
|
608
|
+
left: '0'
|
|
609
|
+
};
|
|
610
|
+
}
|
|
611
|
+
function colorGradient(colors, banded) {
|
|
612
|
+
return banded ? colorGradientBanded(colors) : colorGradientInterpolated(colors);
|
|
613
|
+
}
|
|
614
|
+
function createColorListHelpers() {
|
|
615
|
+
var addOn = function (l) {
|
|
616
|
+
var preset = (0, lists_1.getColorListFromName)(l[0]);
|
|
617
|
+
return (0, jsx_runtime_1.jsx)("div", { style: colorStripStyle({ kind: preset.type !== 'qualitative' ? 'interpolate' : 'set', colors: preset.list }) }, void 0);
|
|
618
|
+
};
|
|
619
|
+
return {
|
|
620
|
+
ColorPresets: {
|
|
621
|
+
all: action_menu_1.ActionMenu.createItemsFromSelectOptions(lists_1.ColorListOptions, { addOn: addOn }),
|
|
622
|
+
scale: action_menu_1.ActionMenu.createItemsFromSelectOptions(lists_1.ColorListOptionsScale, { addOn: addOn }),
|
|
623
|
+
set: action_menu_1.ActionMenu.createItemsFromSelectOptions(lists_1.ColorListOptionsSet, { addOn: addOn })
|
|
624
|
+
},
|
|
625
|
+
ColorsParam: param_definition_1.ParamDefinition.ObjectList({ color: param_definition_1.ParamDefinition.Color(0x0) }, function (_a) {
|
|
626
|
+
var color = _a.color;
|
|
627
|
+
return color_1.Color.toHexString(color).toUpperCase();
|
|
628
|
+
}),
|
|
629
|
+
OffsetColorsParam: param_definition_1.ParamDefinition.ObjectList({ color: param_definition_1.ParamDefinition.Color(0x0), offset: param_definition_1.ParamDefinition.Numeric(0, { min: 0, max: 1, step: 0.01 }) }, function (_a) {
|
|
630
|
+
var color = _a.color, offset = _a.offset;
|
|
631
|
+
return "".concat(color_1.Color.toHexString(color).toUpperCase(), " [").concat(offset.toFixed(2), "]");
|
|
632
|
+
}),
|
|
633
|
+
IsInterpolatedParam: param_definition_1.ParamDefinition.Boolean(false, { label: 'Interpolated' })
|
|
634
|
+
};
|
|
635
|
+
}
|
|
636
|
+
var _colorListHelpers;
|
|
637
|
+
function ColorListHelpers() {
|
|
638
|
+
if (_colorListHelpers)
|
|
639
|
+
return _colorListHelpers;
|
|
640
|
+
_colorListHelpers = createColorListHelpers();
|
|
641
|
+
return _colorListHelpers;
|
|
642
|
+
}
|
|
643
|
+
var ColorListControl = /** @class */ (function (_super) {
|
|
644
|
+
(0, tslib_1.__extends)(ColorListControl, _super);
|
|
645
|
+
function ColorListControl() {
|
|
646
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
647
|
+
_this.state = { showHelp: false, show: void 0 };
|
|
648
|
+
_this.toggleEdit = function () { return _this.setState({ show: _this.state.show === 'edit' ? void 0 : 'edit' }); };
|
|
649
|
+
_this.togglePresets = function () { return _this.setState({ show: _this.state.show === 'presets' ? void 0 : 'presets' }); };
|
|
650
|
+
_this.selectPreset = function (item) {
|
|
651
|
+
if (!item)
|
|
652
|
+
return;
|
|
653
|
+
_this.setState({ show: void 0 });
|
|
654
|
+
var preset = (0, lists_1.getColorListFromName)(item.value);
|
|
655
|
+
_this.update({ kind: preset.type !== 'qualitative' ? 'interpolate' : 'set', colors: preset.list });
|
|
656
|
+
};
|
|
657
|
+
_this.colorsChanged = function (_a) {
|
|
658
|
+
var value = _a.value;
|
|
659
|
+
_this.update({
|
|
660
|
+
kind: _this.props.value.kind,
|
|
661
|
+
colors: value.map(function (c) { return c.color; })
|
|
662
|
+
});
|
|
663
|
+
};
|
|
664
|
+
_this.isInterpolatedChanged = function (_a) {
|
|
665
|
+
var value = _a.value;
|
|
666
|
+
_this.update({ kind: value ? 'interpolate' : 'set', colors: _this.props.value.colors });
|
|
667
|
+
};
|
|
668
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
669
|
+
return _this;
|
|
670
|
+
}
|
|
671
|
+
ColorListControl.prototype.update = function (value) {
|
|
672
|
+
this.props.onChange({ param: this.props.param, name: this.props.name, value: value });
|
|
673
|
+
};
|
|
674
|
+
ColorListControl.prototype.renderControl = function () {
|
|
675
|
+
var value = this.props.value;
|
|
676
|
+
// TODO: fix the button right offset
|
|
677
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ onClick: this.toggleEdit, style: { position: 'relative', paddingRight: '33px' } }, { children: [value.colors.length === 1 ? '1 color' : "".concat(value.colors.length, " colors"), (0, jsx_runtime_1.jsx)("div", { style: colorStripStyle(value, '33px') }, void 0)] }), void 0), (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.BookmarksOutlinedSvg, onClick: this.togglePresets, toggleState: this.state.show === 'presets', title: 'Color Presets', style: { padding: 0, position: 'absolute', right: 0, top: 0, width: '32px' } }, void 0)] }, void 0);
|
|
678
|
+
};
|
|
679
|
+
ColorListControl.prototype.renderColors = function () {
|
|
680
|
+
if (!this.state.show)
|
|
681
|
+
return null;
|
|
682
|
+
var _a = ColorListHelpers(), ColorPresets = _a.ColorPresets, ColorsParam = _a.ColorsParam, IsInterpolatedParam = _a.IsInterpolatedParam;
|
|
683
|
+
var preset = ColorPresets[this.props.param.presetKind];
|
|
684
|
+
if (this.state.show === 'presets')
|
|
685
|
+
return (0, jsx_runtime_1.jsx)(action_menu_1.ActionMenu, { items: preset, onSelect: this.selectPreset }, void 0);
|
|
686
|
+
var values = this.props.value.colors.map(function (color) { return ({ color: color }); });
|
|
687
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: [(0, jsx_runtime_1.jsx)(ObjectListControl, { name: 'colors', param: ColorsParam, value: values, onChange: this.colorsChanged, isDisabled: this.props.isDisabled, onEnter: this.props.onEnter }, void 0), (0, jsx_runtime_1.jsx)(BoolControl, { name: 'isInterpolated', param: IsInterpolatedParam, value: this.props.value.kind === 'interpolate', onChange: this.isInterpolatedChanged, isDisabled: this.props.isDisabled, onEnter: this.props.onEnter }, void 0)] }), void 0);
|
|
688
|
+
};
|
|
689
|
+
ColorListControl.prototype.render = function () {
|
|
690
|
+
return renderSimple({
|
|
691
|
+
props: this.props,
|
|
692
|
+
state: this.state,
|
|
693
|
+
control: this.renderControl(),
|
|
694
|
+
toggleHelp: this.toggleHelp,
|
|
695
|
+
addOn: this.renderColors()
|
|
696
|
+
});
|
|
697
|
+
};
|
|
698
|
+
return ColorListControl;
|
|
699
|
+
}(React.PureComponent));
|
|
700
|
+
exports.ColorListControl = ColorListControl;
|
|
701
|
+
var OffsetColorListControl = /** @class */ (function (_super) {
|
|
702
|
+
(0, tslib_1.__extends)(OffsetColorListControl, _super);
|
|
703
|
+
function OffsetColorListControl() {
|
|
704
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
705
|
+
_this.state = { showHelp: false, show: void 0 };
|
|
706
|
+
_this.toggleEdit = function () { return _this.setState({ show: _this.state.show === 'edit' ? void 0 : 'edit' }); };
|
|
707
|
+
_this.togglePresets = function () { return _this.setState({ show: _this.state.show === 'presets' ? void 0 : 'presets' }); };
|
|
708
|
+
_this.selectPreset = function (item) {
|
|
709
|
+
if (!item)
|
|
710
|
+
return;
|
|
711
|
+
_this.setState({ show: void 0 });
|
|
712
|
+
var preset = (0, lists_1.getColorListFromName)(item.value);
|
|
713
|
+
_this.update({ kind: preset.type !== 'qualitative' ? 'interpolate' : 'set', colors: preset.list });
|
|
714
|
+
};
|
|
715
|
+
_this.colorsChanged = function (_a) {
|
|
716
|
+
var value = _a.value;
|
|
717
|
+
var colors = value.map(function (c) { return [c.color, c.offset]; });
|
|
718
|
+
colors.sort(function (a, b) { return a[1] - b[1]; });
|
|
719
|
+
_this.update({ kind: _this.props.value.kind, colors: colors });
|
|
720
|
+
};
|
|
721
|
+
_this.isInterpolatedChanged = function (_a) {
|
|
722
|
+
var value = _a.value;
|
|
723
|
+
_this.update({ kind: value ? 'interpolate' : 'set', colors: _this.props.value.colors });
|
|
724
|
+
};
|
|
725
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
726
|
+
return _this;
|
|
727
|
+
}
|
|
728
|
+
OffsetColorListControl.prototype.update = function (value) {
|
|
729
|
+
this.props.onChange({ param: this.props.param, name: this.props.name, value: value });
|
|
730
|
+
};
|
|
731
|
+
OffsetColorListControl.prototype.renderControl = function () {
|
|
732
|
+
var value = this.props.value;
|
|
733
|
+
// TODO: fix the button right offset
|
|
734
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ onClick: this.toggleEdit, style: { position: 'relative', paddingRight: '33px' } }, { children: [value.colors.length === 1 ? '1 color' : "".concat(value.colors.length, " colors"), (0, jsx_runtime_1.jsx)("div", { style: colorStripStyle(value, '33px') }, void 0)] }), void 0), (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.BookmarksOutlinedSvg, onClick: this.togglePresets, toggleState: this.state.show === 'presets', title: 'Color Presets', style: { padding: 0, position: 'absolute', right: 0, top: 0, width: '32px' } }, void 0)] }, void 0);
|
|
735
|
+
};
|
|
736
|
+
OffsetColorListControl.prototype.renderColors = function () {
|
|
737
|
+
if (!this.state.show)
|
|
738
|
+
return null;
|
|
739
|
+
var _a = ColorListHelpers(), ColorPresets = _a.ColorPresets, OffsetColorsParam = _a.OffsetColorsParam, IsInterpolatedParam = _a.IsInterpolatedParam;
|
|
740
|
+
var preset = ColorPresets[this.props.param.presetKind];
|
|
741
|
+
if (this.state.show === 'presets')
|
|
742
|
+
return (0, jsx_runtime_1.jsx)(action_menu_1.ActionMenu, { items: preset, onSelect: this.selectPreset }, void 0);
|
|
743
|
+
var colors = this.props.value.colors;
|
|
744
|
+
var values = colors.map(function (color, i) {
|
|
745
|
+
if (Array.isArray(color))
|
|
746
|
+
return { color: color[0], offset: color[1] };
|
|
747
|
+
return { color: color, offset: i / colors.length };
|
|
748
|
+
});
|
|
749
|
+
values.sort(function (a, b) { return a.offset - b.offset; });
|
|
750
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: [(0, jsx_runtime_1.jsx)(ObjectListControl, { name: 'colors', param: OffsetColorsParam, value: values, onChange: this.colorsChanged, isDisabled: this.props.isDisabled, onEnter: this.props.onEnter }, void 0), (0, jsx_runtime_1.jsx)(BoolControl, { name: 'isInterpolated', param: IsInterpolatedParam, value: this.props.value.kind === 'interpolate', onChange: this.isInterpolatedChanged, isDisabled: this.props.isDisabled, onEnter: this.props.onEnter }, void 0)] }), void 0);
|
|
751
|
+
};
|
|
752
|
+
OffsetColorListControl.prototype.render = function () {
|
|
753
|
+
return renderSimple({
|
|
754
|
+
props: this.props,
|
|
755
|
+
state: this.state,
|
|
756
|
+
control: this.renderControl(),
|
|
757
|
+
toggleHelp: this.toggleHelp,
|
|
758
|
+
addOn: this.renderColors()
|
|
759
|
+
});
|
|
760
|
+
};
|
|
761
|
+
return OffsetColorListControl;
|
|
762
|
+
}(React.PureComponent));
|
|
763
|
+
exports.OffsetColorListControl = OffsetColorListControl;
|
|
764
|
+
var Vec3Control = /** @class */ (function (_super) {
|
|
765
|
+
(0, tslib_1.__extends)(Vec3Control, _super);
|
|
766
|
+
function Vec3Control() {
|
|
767
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
768
|
+
_this.state = { isExpanded: false };
|
|
769
|
+
_this.components = {
|
|
770
|
+
0: param_definition_1.ParamDefinition.Numeric(0, { step: _this.props.param.step }, { label: (_this.props.param.fieldLabels && _this.props.param.fieldLabels.x) || 'X' }),
|
|
771
|
+
1: param_definition_1.ParamDefinition.Numeric(0, { step: _this.props.param.step }, { label: (_this.props.param.fieldLabels && _this.props.param.fieldLabels.y) || 'Y' }),
|
|
772
|
+
2: param_definition_1.ParamDefinition.Numeric(0, { step: _this.props.param.step }, { label: (_this.props.param.fieldLabels && _this.props.param.fieldLabels.z) || 'Z' })
|
|
773
|
+
};
|
|
774
|
+
_this.componentChange = function (_a) {
|
|
775
|
+
var name = _a.name, value = _a.value;
|
|
776
|
+
var v = linear_algebra_1.Vec3.copy(linear_algebra_1.Vec3.zero(), _this.props.value);
|
|
777
|
+
v[+name] = value;
|
|
778
|
+
_this.change(v);
|
|
779
|
+
};
|
|
780
|
+
_this.toggleExpanded = function (e) {
|
|
781
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
782
|
+
e.currentTarget.blur();
|
|
783
|
+
};
|
|
784
|
+
return _this;
|
|
785
|
+
}
|
|
786
|
+
Vec3Control.prototype.change = function (value) {
|
|
787
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
788
|
+
};
|
|
789
|
+
Vec3Control.prototype.render = function () {
|
|
790
|
+
var v = this.props.value;
|
|
791
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
792
|
+
var p = (0, number_1.getPrecision)(this.props.param.step || 0.01);
|
|
793
|
+
var value = "[".concat(v[0].toFixed(p), ", ").concat(v[1].toFixed(p), ", ").concat(v[2].toFixed(p), "]");
|
|
794
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { label: label, control: (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ onClick: this.toggleExpanded, disabled: this.props.isDisabled }, { children: value }), void 0) }, void 0), this.state.isExpanded && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: (0, jsx_runtime_1.jsx)(ParameterControls, { params: this.components, values: v, onChange: this.componentChange, onEnter: this.props.onEnter }, void 0) }), void 0)] }, void 0);
|
|
795
|
+
};
|
|
796
|
+
return Vec3Control;
|
|
797
|
+
}(React.PureComponent));
|
|
798
|
+
exports.Vec3Control = Vec3Control;
|
|
799
|
+
var Mat4Control = /** @class */ (function (_super) {
|
|
800
|
+
(0, tslib_1.__extends)(Mat4Control, _super);
|
|
801
|
+
function Mat4Control() {
|
|
802
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
803
|
+
_this.state = { isExpanded: false };
|
|
804
|
+
_this.components = {
|
|
805
|
+
json: param_definition_1.ParamDefinition.Text(JSON.stringify((0, linear_algebra_1.Mat4)()), { description: 'JSON array with 4x4 matrix in a column major (j * 4 + i indexing) format' })
|
|
806
|
+
};
|
|
807
|
+
_this.componentChange = function (_a) {
|
|
808
|
+
var name = _a.name, value = _a.value;
|
|
809
|
+
var v = linear_algebra_1.Mat4.copy((0, linear_algebra_1.Mat4)(), _this.props.value);
|
|
810
|
+
if (name === 'json') {
|
|
811
|
+
linear_algebra_1.Mat4.copy(v, JSON.parse(value));
|
|
812
|
+
}
|
|
813
|
+
else {
|
|
814
|
+
v[+name] = value;
|
|
815
|
+
}
|
|
816
|
+
_this.change(v);
|
|
817
|
+
};
|
|
818
|
+
_this.toggleExpanded = function (e) {
|
|
819
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
820
|
+
e.currentTarget.blur();
|
|
821
|
+
};
|
|
822
|
+
return _this;
|
|
823
|
+
}
|
|
824
|
+
Mat4Control.prototype.change = function (value) {
|
|
825
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
826
|
+
};
|
|
827
|
+
Mat4Control.prototype.changeValue = function (idx) {
|
|
828
|
+
var _this = this;
|
|
829
|
+
return function (v) {
|
|
830
|
+
var m = linear_algebra_1.Mat4.copy((0, linear_algebra_1.Mat4)(), _this.props.value);
|
|
831
|
+
m[idx] = v;
|
|
832
|
+
_this.change(m);
|
|
833
|
+
};
|
|
834
|
+
};
|
|
835
|
+
Object.defineProperty(Mat4Control.prototype, "grid", {
|
|
836
|
+
get: function () {
|
|
837
|
+
var v = this.props.value;
|
|
838
|
+
var rows = [];
|
|
839
|
+
for (var i = 0; i < 4; i++) {
|
|
840
|
+
var row = [];
|
|
841
|
+
for (var j = 0; j < 4; j++) {
|
|
842
|
+
row.push((0, jsx_runtime_1.jsx)(common_1.TextInput, { numeric: true, delayMs: 50, value: linear_algebra_1.Mat4.getValue(v, i, j), onChange: this.changeValue(4 * j + i), className: 'msp-form-control', blurOnEnter: true, isDisabled: this.props.isDisabled }, j));
|
|
843
|
+
}
|
|
844
|
+
rows.push((0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-flex-row' }, { children: row }), i));
|
|
845
|
+
}
|
|
846
|
+
return (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-parameter-matrix' }, { children: rows }), void 0);
|
|
847
|
+
},
|
|
848
|
+
enumerable: false,
|
|
849
|
+
configurable: true
|
|
850
|
+
});
|
|
851
|
+
Mat4Control.prototype.render = function () {
|
|
852
|
+
var v = {
|
|
853
|
+
json: JSON.stringify(this.props.value)
|
|
854
|
+
};
|
|
855
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
856
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { label: label, control: (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ onClick: this.toggleExpanded, disabled: this.props.isDisabled }, { children: '4\u00D74 Matrix' }), void 0) }, void 0), this.state.isExpanded && (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: [this.grid, (0, jsx_runtime_1.jsx)(ParameterControls, { params: this.components, values: v, onChange: this.componentChange, onEnter: this.props.onEnter }, void 0)] }), void 0)] }, void 0);
|
|
857
|
+
};
|
|
858
|
+
return Mat4Control;
|
|
859
|
+
}(React.PureComponent));
|
|
860
|
+
exports.Mat4Control = Mat4Control;
|
|
861
|
+
var UrlControl = /** @class */ (function (_super) {
|
|
862
|
+
(0, tslib_1.__extends)(UrlControl, _super);
|
|
863
|
+
function UrlControl() {
|
|
864
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
865
|
+
_this.onChange = function (e) {
|
|
866
|
+
var value = e.target.value;
|
|
867
|
+
if (value !== assets_1.Asset.getUrl(_this.props.value || '')) {
|
|
868
|
+
_this.update(assets_1.Asset.Url(value));
|
|
869
|
+
}
|
|
870
|
+
};
|
|
871
|
+
_this.onKeyPress = function (e) {
|
|
872
|
+
if ((e.keyCode === 13 || e.charCode === 13 || e.key === 'Enter')) {
|
|
873
|
+
if (_this.props.onEnter)
|
|
874
|
+
_this.props.onEnter();
|
|
875
|
+
}
|
|
876
|
+
e.stopPropagation();
|
|
877
|
+
};
|
|
878
|
+
return _this;
|
|
879
|
+
}
|
|
880
|
+
UrlControl.prototype.renderControl = function () {
|
|
881
|
+
var placeholder = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
882
|
+
return (0, jsx_runtime_1.jsx)("input", { type: 'text', value: assets_1.Asset.getUrl(this.props.value || ''), placeholder: placeholder, onChange: this.onChange, onKeyPress: this.props.onEnter ? this.onKeyPress : void 0, disabled: this.props.isDisabled }, void 0);
|
|
883
|
+
};
|
|
884
|
+
return UrlControl;
|
|
885
|
+
}(SimpleParam));
|
|
886
|
+
exports.UrlControl = UrlControl;
|
|
887
|
+
var FileControl = /** @class */ (function (_super) {
|
|
888
|
+
(0, tslib_1.__extends)(FileControl, _super);
|
|
889
|
+
function FileControl() {
|
|
890
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
891
|
+
_this.state = { showHelp: false };
|
|
892
|
+
_this.onChangeFile = function (e) {
|
|
893
|
+
_this.change(e.target.files[0]);
|
|
894
|
+
};
|
|
895
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
896
|
+
return _this;
|
|
897
|
+
}
|
|
898
|
+
FileControl.prototype.change = function (value) {
|
|
899
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: assets_1.Asset.File(value) });
|
|
900
|
+
};
|
|
901
|
+
FileControl.prototype.renderControl = function () {
|
|
902
|
+
var value = this.props.value;
|
|
903
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-btn msp-btn-block msp-btn-action msp-loader-msp-btn-file', style: { marginTop: '1px' } }, { children: [value ? value.name : 'Select a file...', " ", (0, jsx_runtime_1.jsx)("input", { disabled: this.props.isDisabled, onChange: this.onChangeFile, type: 'file', multiple: false, accept: this.props.param.accept }, void 0)] }), void 0);
|
|
904
|
+
};
|
|
905
|
+
FileControl.prototype.render = function () {
|
|
906
|
+
if (this.props.param.label) {
|
|
907
|
+
return renderSimple({
|
|
908
|
+
props: this.props,
|
|
909
|
+
state: this.state,
|
|
910
|
+
control: this.renderControl(),
|
|
911
|
+
toggleHelp: this.toggleHelp,
|
|
912
|
+
addOn: null
|
|
913
|
+
});
|
|
914
|
+
}
|
|
915
|
+
else {
|
|
916
|
+
return this.renderControl();
|
|
917
|
+
}
|
|
918
|
+
};
|
|
919
|
+
return FileControl;
|
|
920
|
+
}(React.PureComponent));
|
|
921
|
+
exports.FileControl = FileControl;
|
|
922
|
+
var FileListControl = /** @class */ (function (_super) {
|
|
923
|
+
(0, tslib_1.__extends)(FileListControl, _super);
|
|
924
|
+
function FileListControl() {
|
|
925
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
926
|
+
_this.state = { showHelp: false };
|
|
927
|
+
_this.onChangeFileList = function (e) {
|
|
928
|
+
_this.change(e.target.files);
|
|
929
|
+
};
|
|
930
|
+
_this.toggleHelp = function () { return _this.setState({ showHelp: !_this.state.showHelp }); };
|
|
931
|
+
return _this;
|
|
932
|
+
}
|
|
933
|
+
FileListControl.prototype.change = function (value) {
|
|
934
|
+
var files = [];
|
|
935
|
+
if (value) {
|
|
936
|
+
for (var i = 0, il = value.length; i < il; ++i) {
|
|
937
|
+
files.push(assets_1.Asset.File(value[i]));
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: files });
|
|
941
|
+
};
|
|
942
|
+
FileListControl.prototype.renderControl = function () {
|
|
943
|
+
var value = this.props.value;
|
|
944
|
+
var names = [];
|
|
945
|
+
if (value) {
|
|
946
|
+
for (var _i = 0, value_1 = value; _i < value_1.length; _i++) {
|
|
947
|
+
var file = value_1[_i];
|
|
948
|
+
names.push(file.name);
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
var label = names.length === 0
|
|
952
|
+
? 'Select files...' : names.length === 1
|
|
953
|
+
? names[0] : "".concat(names.length, " files selected");
|
|
954
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-btn msp-btn-block msp-btn-action msp-loader-msp-btn-file', style: { marginTop: '1px' } }, { children: [label, " ", (0, jsx_runtime_1.jsx)("input", { disabled: this.props.isDisabled, onChange: this.onChangeFileList, type: 'file', multiple: true, accept: this.props.param.accept }, void 0)] }), void 0);
|
|
955
|
+
};
|
|
956
|
+
FileListControl.prototype.render = function () {
|
|
957
|
+
if (this.props.param.label) {
|
|
958
|
+
return renderSimple({
|
|
959
|
+
props: this.props,
|
|
960
|
+
state: this.state,
|
|
961
|
+
control: this.renderControl(),
|
|
962
|
+
toggleHelp: this.toggleHelp,
|
|
963
|
+
addOn: null
|
|
964
|
+
});
|
|
965
|
+
}
|
|
966
|
+
else {
|
|
967
|
+
return this.renderControl();
|
|
968
|
+
}
|
|
969
|
+
};
|
|
970
|
+
return FileListControl;
|
|
971
|
+
}(React.PureComponent));
|
|
972
|
+
exports.FileListControl = FileListControl;
|
|
973
|
+
var MultiSelectControl = /** @class */ (function (_super) {
|
|
974
|
+
(0, tslib_1.__extends)(MultiSelectControl, _super);
|
|
975
|
+
function MultiSelectControl() {
|
|
976
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
977
|
+
_this.state = { isExpanded: false };
|
|
978
|
+
_this.toggleExpanded = function (e) {
|
|
979
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
980
|
+
e.currentTarget.blur();
|
|
981
|
+
};
|
|
982
|
+
return _this;
|
|
983
|
+
}
|
|
984
|
+
MultiSelectControl.prototype.change = function (value) {
|
|
985
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
986
|
+
};
|
|
987
|
+
MultiSelectControl.prototype.toggle = function (key) {
|
|
988
|
+
var _this = this;
|
|
989
|
+
return function (e) {
|
|
990
|
+
if (_this.props.value.indexOf(key) < 0)
|
|
991
|
+
_this.change(_this.props.value.concat(key));
|
|
992
|
+
else
|
|
993
|
+
_this.change(_this.props.value.filter(function (v) { return v !== key; }));
|
|
994
|
+
e.currentTarget.blur();
|
|
995
|
+
};
|
|
996
|
+
};
|
|
997
|
+
MultiSelectControl.prototype.render = function () {
|
|
998
|
+
var _this = this;
|
|
999
|
+
var current = this.props.value;
|
|
1000
|
+
var emptyLabel = this.props.param.emptyValue;
|
|
1001
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1002
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { label: label, control: (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ onClick: this.toggleExpanded, disabled: this.props.isDisabled }, { children: current.length === 0 && emptyLabel ? emptyLabel : "".concat(current.length, " of ").concat(this.props.param.options.length) }), void 0) }, void 0), this.state.isExpanded && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: this.props.param.options.map(function (_a) {
|
|
1003
|
+
var value = _a[0], label = _a[1];
|
|
1004
|
+
var sel = current.indexOf(value) >= 0;
|
|
1005
|
+
return (0, jsx_runtime_1.jsx)(common_1.Button, (0, tslib_1.__assign)({ onClick: _this.toggle(value), disabled: _this.props.isDisabled, style: { marginTop: '1px' } }, { children: (0, jsx_runtime_1.jsx)("span", (0, tslib_1.__assign)({ style: { float: sel ? 'left' : 'right' } }, { children: sel ? "\u2713 ".concat(label) : "".concat(label, " \u2717") }), void 0) }), value);
|
|
1006
|
+
}) }), void 0)] }, void 0);
|
|
1007
|
+
};
|
|
1008
|
+
return MultiSelectControl;
|
|
1009
|
+
}(React.PureComponent));
|
|
1010
|
+
exports.MultiSelectControl = MultiSelectControl;
|
|
1011
|
+
var GroupControl = /** @class */ (function (_super) {
|
|
1012
|
+
(0, tslib_1.__extends)(GroupControl, _super);
|
|
1013
|
+
function GroupControl() {
|
|
1014
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1015
|
+
_this.state = { isExpanded: !!_this.props.param.isExpanded, showPresets: false, showHelp: false };
|
|
1016
|
+
_this.onChangeParam = function (e) {
|
|
1017
|
+
var _a;
|
|
1018
|
+
_this.change((0, tslib_1.__assign)((0, tslib_1.__assign)({}, _this.props.value), (_a = {}, _a[e.name] = e.value, _a)));
|
|
1019
|
+
};
|
|
1020
|
+
_this.toggleExpanded = function () { return _this.setState({ isExpanded: !_this.state.isExpanded }); };
|
|
1021
|
+
_this.toggleShowPresets = function () { return _this.setState({ showPresets: !_this.state.showPresets }); };
|
|
1022
|
+
_this.presetItems = (0, memoize_1.memoizeLatest)(function (param) { var _a; return action_menu_1.ActionMenu.createItemsFromSelectOptions((_a = param.presets) !== null && _a !== void 0 ? _a : []); });
|
|
1023
|
+
_this.onSelectPreset = function (item) {
|
|
1024
|
+
_this.setState({ showPresets: false });
|
|
1025
|
+
_this.change(item === null || item === void 0 ? void 0 : item.value);
|
|
1026
|
+
};
|
|
1027
|
+
return _this;
|
|
1028
|
+
}
|
|
1029
|
+
GroupControl.prototype.change = function (value) {
|
|
1030
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
1031
|
+
};
|
|
1032
|
+
GroupControl.prototype.pivotedPresets = function () {
|
|
1033
|
+
if (!this.props.param.presets)
|
|
1034
|
+
return null;
|
|
1035
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1036
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-group-wrapper' }, { children: [(0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-group-header' }, { children: (0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ className: 'msp-btn msp-form-control msp-btn-block', onClick: this.toggleShowPresets }, { children: [(0, jsx_runtime_1.jsx)(icons_1.Icon, { svg: icons_1.BookmarksOutlinedSvg }, void 0), label, " Presets"] }), void 0) }), void 0), this.state.showPresets && (0, jsx_runtime_1.jsx)(action_menu_1.ActionMenu, { items: this.presetItems(this.props.param), onSelect: this.onSelectPreset }, void 0)] }), void 0);
|
|
1037
|
+
};
|
|
1038
|
+
GroupControl.prototype.presets = function () {
|
|
1039
|
+
if (!this.props.param.presets)
|
|
1040
|
+
return null;
|
|
1041
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-group-presets-wrapper' }, { children: (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-group-header' }, { children: (0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ className: 'msp-btn msp-form-control msp-btn-block', onClick: this.toggleShowPresets }, { children: [(0, jsx_runtime_1.jsx)(icons_1.Icon, { svg: icons_1.BookmarksOutlinedSvg }, void 0), "Presets"] }), void 0) }), void 0) }), void 0), this.state.showPresets && (0, jsx_runtime_1.jsx)(action_menu_1.ActionMenu, { items: this.presetItems(this.props.param), onSelect: this.onSelectPreset }, void 0)] }, void 0);
|
|
1042
|
+
};
|
|
1043
|
+
GroupControl.prototype.pivoted = function () {
|
|
1044
|
+
var key = this.props.param.pivot;
|
|
1045
|
+
var params = this.props.param.params;
|
|
1046
|
+
var pivot = params[key];
|
|
1047
|
+
var Control = controlFor(pivot);
|
|
1048
|
+
var ctrl = (0, jsx_runtime_1.jsx)(Control, { name: key, param: pivot, value: this.props.value[key], onChange: this.onChangeParam, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled }, void 0);
|
|
1049
|
+
if (!this.state.isExpanded) {
|
|
1050
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-mapped-parameter-group' }, { children: [ctrl, (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.MoreHorizSvg, onClick: this.toggleExpanded, toggleState: this.state.isExpanded, title: "More Options" }, void 0)] }), void 0);
|
|
1051
|
+
}
|
|
1052
|
+
var filtered = Object.create(null);
|
|
1053
|
+
for (var _i = 0, _a = Object.keys(params); _i < _a.length; _i++) {
|
|
1054
|
+
var k = _a[_i];
|
|
1055
|
+
if (k !== key)
|
|
1056
|
+
filtered[k] = params[k];
|
|
1057
|
+
}
|
|
1058
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-mapped-parameter-group' }, { children: [ctrl, (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.MoreHorizSvg, onClick: this.toggleExpanded, toggleState: this.state.isExpanded, title: "More Options" }, void 0), (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: [this.pivotedPresets(), (0, jsx_runtime_1.jsx)(ParameterControls, { params: filtered, onEnter: this.props.onEnter, values: this.props.value, onChange: this.onChangeParam, isDisabled: this.props.isDisabled }, void 0)] }), void 0)] }), void 0);
|
|
1059
|
+
};
|
|
1060
|
+
GroupControl.prototype.render = function () {
|
|
1061
|
+
var params = this.props.param.params;
|
|
1062
|
+
// Do not show if there are no params.
|
|
1063
|
+
if (Object.keys(params).length === 0)
|
|
1064
|
+
return null;
|
|
1065
|
+
if (this.props.param.pivot)
|
|
1066
|
+
return this.pivoted();
|
|
1067
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1068
|
+
var controls = (0, jsx_runtime_1.jsx)(ParameterControls, { params: params, onChange: this.onChangeParam, values: this.props.value, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled }, void 0);
|
|
1069
|
+
if (this.props.inMapped) {
|
|
1070
|
+
return (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: controls }), void 0);
|
|
1071
|
+
}
|
|
1072
|
+
if (this.props.param.isFlat) {
|
|
1073
|
+
return controls;
|
|
1074
|
+
}
|
|
1075
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-group-wrapper', style: { position: 'relative' } }, { children: [(0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-group-header' }, { children: (0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ className: 'msp-btn msp-form-control msp-btn-block', onClick: this.toggleExpanded }, { children: [(0, jsx_runtime_1.jsx)(icons_1.Icon, { svg: this.state.isExpanded ? icons_1.ArrowDropDownSvg : icons_1.ArrowRightSvg }, void 0), label] }), void 0) }), void 0), this.presets(), this.state.isExpanded && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: controls }), void 0)] }), void 0);
|
|
1076
|
+
};
|
|
1077
|
+
return GroupControl;
|
|
1078
|
+
}(React.PureComponent));
|
|
1079
|
+
exports.GroupControl = GroupControl;
|
|
1080
|
+
var MappedControl = /** @class */ (function (_super) {
|
|
1081
|
+
(0, tslib_1.__extends)(MappedControl, _super);
|
|
1082
|
+
function MappedControl() {
|
|
1083
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1084
|
+
_this.state = { isExpanded: false };
|
|
1085
|
+
// TODO: this could lead to a rare bug where the component is reused with different mapped control.
|
|
1086
|
+
// I think there are currently no cases where this could happen in the UI, but still need to watch out..
|
|
1087
|
+
_this.valuesCache = {};
|
|
1088
|
+
_this.onChangeName = function (e) {
|
|
1089
|
+
_this.change({ name: e.value, params: _this.getValues(e.value) });
|
|
1090
|
+
};
|
|
1091
|
+
_this.onChangeParam = function (e) {
|
|
1092
|
+
_this.setValues(_this.props.value.name, e.value);
|
|
1093
|
+
_this.change({ name: _this.props.value.name, params: e.value });
|
|
1094
|
+
};
|
|
1095
|
+
_this.toggleExpanded = function () { return _this.setState({ isExpanded: !_this.state.isExpanded }); };
|
|
1096
|
+
return _this;
|
|
1097
|
+
}
|
|
1098
|
+
MappedControl.prototype.setValues = function (name, values) {
|
|
1099
|
+
this.valuesCache[name] = values;
|
|
1100
|
+
};
|
|
1101
|
+
MappedControl.prototype.getValues = function (name) {
|
|
1102
|
+
if (name in this.valuesCache) {
|
|
1103
|
+
return this.valuesCache[name];
|
|
1104
|
+
}
|
|
1105
|
+
else {
|
|
1106
|
+
return this.props.param.map(name).defaultValue;
|
|
1107
|
+
}
|
|
1108
|
+
};
|
|
1109
|
+
MappedControl.prototype.change = function (value) {
|
|
1110
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
1111
|
+
};
|
|
1112
|
+
MappedControl.prototype.areParamsEmpty = function (params) {
|
|
1113
|
+
for (var _i = 0, _a = Object.keys(params); _i < _a.length; _i++) {
|
|
1114
|
+
var k = _a[_i];
|
|
1115
|
+
if (!params[k].isHidden)
|
|
1116
|
+
return false;
|
|
1117
|
+
}
|
|
1118
|
+
return true;
|
|
1119
|
+
};
|
|
1120
|
+
MappedControl.prototype.render = function () {
|
|
1121
|
+
var _this = this;
|
|
1122
|
+
var value = this.props.value || this.props.param.defaultValue;
|
|
1123
|
+
var param = this.props.param.map(value.name);
|
|
1124
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1125
|
+
var Mapped = controlFor(param);
|
|
1126
|
+
var help = this.props.param.help;
|
|
1127
|
+
var select = help
|
|
1128
|
+
? (0, tslib_1.__assign)((0, tslib_1.__assign)({}, this.props.param.select), { help: function (name) { return help({ name: name, params: _this.getValues(name) }); } }) : this.props.param.select;
|
|
1129
|
+
var Select = (0, jsx_runtime_1.jsx)(SelectControl, { param: select, isDisabled: this.props.isDisabled, onChange: this.onChangeName, onEnter: this.props.onEnter, name: label, value: value.name }, void 0);
|
|
1130
|
+
if (!Mapped) {
|
|
1131
|
+
return Select;
|
|
1132
|
+
}
|
|
1133
|
+
if (param.type === 'group' && !param.isFlat) {
|
|
1134
|
+
if (!this.areParamsEmpty(param.params)) {
|
|
1135
|
+
return (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-mapped-parameter-group' }, { children: [Select, (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.MoreHorizSvg, onClick: this.toggleExpanded, toggleState: this.state.isExpanded, title: "".concat(label, " Properties") }, void 0), this.state.isExpanded && (0, jsx_runtime_1.jsx)(GroupControl, { inMapped: true, param: param, value: value.params, name: value.name, onChange: this.onChangeParam, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled }, void 0)] }), void 0);
|
|
1136
|
+
}
|
|
1137
|
+
return Select;
|
|
1138
|
+
}
|
|
1139
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [Select, (0, jsx_runtime_1.jsx)(Mapped, { param: param, value: value.params, name: value.name, onChange: this.onChangeParam, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled }, void 0)] }, void 0);
|
|
1140
|
+
};
|
|
1141
|
+
return MappedControl;
|
|
1142
|
+
}(React.PureComponent));
|
|
1143
|
+
exports.MappedControl = MappedControl;
|
|
1144
|
+
var ObjectListEditor = /** @class */ (function (_super) {
|
|
1145
|
+
(0, tslib_1.__extends)(ObjectListEditor, _super);
|
|
1146
|
+
function ObjectListEditor() {
|
|
1147
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1148
|
+
_this.state = { current: _this.props.value };
|
|
1149
|
+
_this.onChangeParam = function (e) {
|
|
1150
|
+
var _a;
|
|
1151
|
+
_this.setState({ current: (0, tslib_1.__assign)((0, tslib_1.__assign)({}, _this.state.current), (_a = {}, _a[e.name] = e.value, _a)) });
|
|
1152
|
+
};
|
|
1153
|
+
_this.apply = function () {
|
|
1154
|
+
_this.props.apply(_this.state.current);
|
|
1155
|
+
};
|
|
1156
|
+
return _this;
|
|
1157
|
+
}
|
|
1158
|
+
ObjectListEditor.prototype.componentDidUpdate = function (prevProps) {
|
|
1159
|
+
if (this.props.params !== prevProps.params || this.props.value !== prevProps.value) {
|
|
1160
|
+
this.setState({ current: this.props.value });
|
|
1161
|
+
}
|
|
1162
|
+
};
|
|
1163
|
+
ObjectListEditor.prototype.render = function () {
|
|
1164
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(ParameterControls, { params: this.props.params, onChange: this.onChangeParam, values: this.state.current, onEnter: this.apply, isDisabled: this.props.isDisabled }, void 0), (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ className: "msp-btn msp-btn-block msp-form-control msp-control-top-offset", onClick: this.apply, disabled: this.props.isDisabled }, { children: this.props.isUpdate ? 'Update' : 'Add' }), void 0)] }, void 0);
|
|
1165
|
+
};
|
|
1166
|
+
return ObjectListEditor;
|
|
1167
|
+
}(React.PureComponent));
|
|
1168
|
+
var ObjectListItem = /** @class */ (function (_super) {
|
|
1169
|
+
(0, tslib_1.__extends)(ObjectListItem, _super);
|
|
1170
|
+
function ObjectListItem() {
|
|
1171
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1172
|
+
_this.state = { isExpanded: false };
|
|
1173
|
+
_this.update = function (v) {
|
|
1174
|
+
// this.setState({ isExpanded: false }); // TODO auto update? mark changed state?
|
|
1175
|
+
_this.props.actions.update(v, _this.props.index);
|
|
1176
|
+
};
|
|
1177
|
+
_this.moveUp = function () {
|
|
1178
|
+
_this.props.actions.move(_this.props.index, -1);
|
|
1179
|
+
};
|
|
1180
|
+
_this.moveDown = function () {
|
|
1181
|
+
_this.props.actions.move(_this.props.index, 1);
|
|
1182
|
+
};
|
|
1183
|
+
_this.remove = function () {
|
|
1184
|
+
_this.setState({ isExpanded: false });
|
|
1185
|
+
_this.props.actions.remove(_this.props.index);
|
|
1186
|
+
};
|
|
1187
|
+
_this.toggleExpanded = function (e) {
|
|
1188
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
1189
|
+
e.currentTarget.blur();
|
|
1190
|
+
};
|
|
1191
|
+
return _this;
|
|
1192
|
+
}
|
|
1193
|
+
ObjectListItem.prototype.render = function () {
|
|
1194
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-param-object-list-item' }, { children: [(0, jsx_runtime_1.jsxs)("button", (0, tslib_1.__assign)({ className: 'msp-btn msp-btn-block msp-form-control', onClick: this.toggleExpanded }, { children: [(0, jsx_runtime_1.jsx)("span", { children: "".concat(this.props.index + 1, ": ") }, void 0), this.props.param.getLabel(this.props.value)] }), void 0), (0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.ArrowDownwardSvg, title: 'Move Up', onClick: this.moveUp, small: true }, void 0), (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.ArrowUpwardSvg, title: 'Move Down', onClick: this.moveDown, small: true }, void 0), (0, jsx_runtime_1.jsx)(common_1.IconButton, { svg: icons_1.DeleteOutlinedSvg, title: 'Remove', onClick: this.remove, small: true }, void 0)] }, void 0)] }), void 0), this.state.isExpanded && (0, jsx_runtime_1.jsx)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: (0, jsx_runtime_1.jsx)(ObjectListEditor, { params: this.props.param.element, apply: this.update, value: this.props.value, isUpdate: true, isDisabled: this.props.isDisabled }, void 0) }), void 0)] }, void 0);
|
|
1195
|
+
};
|
|
1196
|
+
return ObjectListItem;
|
|
1197
|
+
}(React.PureComponent));
|
|
1198
|
+
var ObjectListControl = /** @class */ (function (_super) {
|
|
1199
|
+
(0, tslib_1.__extends)(ObjectListControl, _super);
|
|
1200
|
+
function ObjectListControl() {
|
|
1201
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1202
|
+
_this.state = { isExpanded: false };
|
|
1203
|
+
_this.add = function (v) {
|
|
1204
|
+
_this.change((0, tslib_1.__spreadArray)((0, tslib_1.__spreadArray)([], _this.props.value, true), [v], false));
|
|
1205
|
+
};
|
|
1206
|
+
_this.actions = {
|
|
1207
|
+
update: function (v, i) {
|
|
1208
|
+
var value = _this.props.value.slice(0);
|
|
1209
|
+
value[i] = v;
|
|
1210
|
+
_this.change(value);
|
|
1211
|
+
},
|
|
1212
|
+
move: function (i, dir) {
|
|
1213
|
+
var xs = _this.props.value;
|
|
1214
|
+
if (xs.length === 1)
|
|
1215
|
+
return;
|
|
1216
|
+
var j = (i + dir) % xs.length;
|
|
1217
|
+
if (j < 0)
|
|
1218
|
+
j += xs.length;
|
|
1219
|
+
xs = xs.slice(0);
|
|
1220
|
+
var t = xs[i];
|
|
1221
|
+
xs[i] = xs[j];
|
|
1222
|
+
xs[j] = t;
|
|
1223
|
+
_this.change(xs);
|
|
1224
|
+
},
|
|
1225
|
+
remove: function (i) {
|
|
1226
|
+
var xs = _this.props.value;
|
|
1227
|
+
var update = [];
|
|
1228
|
+
for (var j = 0; j < xs.length; j++) {
|
|
1229
|
+
if (i !== j)
|
|
1230
|
+
update.push(xs[j]);
|
|
1231
|
+
}
|
|
1232
|
+
_this.change(update);
|
|
1233
|
+
}
|
|
1234
|
+
};
|
|
1235
|
+
_this.toggleExpanded = function (e) {
|
|
1236
|
+
_this.setState({ isExpanded: !_this.state.isExpanded });
|
|
1237
|
+
e.currentTarget.blur();
|
|
1238
|
+
};
|
|
1239
|
+
return _this;
|
|
1240
|
+
}
|
|
1241
|
+
ObjectListControl.prototype.change = function (value) {
|
|
1242
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
1243
|
+
};
|
|
1244
|
+
ObjectListControl.prototype.render = function () {
|
|
1245
|
+
var _this = this;
|
|
1246
|
+
var v = this.props.value;
|
|
1247
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1248
|
+
var value = "".concat(v.length, " item").concat(v.length !== 1 ? 's' : '');
|
|
1249
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(common_1.ControlRow, { label: label, control: (0, jsx_runtime_1.jsx)("button", (0, tslib_1.__assign)({ onClick: this.toggleExpanded, disabled: this.props.isDisabled }, { children: value }), void 0) }, void 0), this.state.isExpanded && (0, jsx_runtime_1.jsxs)("div", (0, tslib_1.__assign)({ className: 'msp-control-offset' }, { children: [this.props.value.map(function (v, i) { return (0, jsx_runtime_1.jsx)(ObjectListItem, { param: _this.props.param, value: v, index: i, actions: _this.actions, isDisabled: _this.props.isDisabled }, i); }), (0, jsx_runtime_1.jsx)(common_1.ControlGroup, (0, tslib_1.__assign)({ header: 'New Item' }, { children: (0, jsx_runtime_1.jsx)(ObjectListEditor, { params: this.props.param.element, apply: this.add, value: this.props.param.ctor(), isDisabled: this.props.isDisabled }, void 0) }), void 0)] }), void 0)] }, void 0);
|
|
1250
|
+
};
|
|
1251
|
+
return ObjectListControl;
|
|
1252
|
+
}(React.PureComponent));
|
|
1253
|
+
exports.ObjectListControl = ObjectListControl;
|
|
1254
|
+
var ConditionedControl = /** @class */ (function (_super) {
|
|
1255
|
+
(0, tslib_1.__extends)(ConditionedControl, _super);
|
|
1256
|
+
function ConditionedControl() {
|
|
1257
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1258
|
+
_this.onChangeCondition = function (e) {
|
|
1259
|
+
_this.change(_this.props.param.conditionedValue(_this.props.value, e.value));
|
|
1260
|
+
};
|
|
1261
|
+
_this.onChangeParam = function (e) {
|
|
1262
|
+
_this.change(e.value);
|
|
1263
|
+
};
|
|
1264
|
+
return _this;
|
|
1265
|
+
}
|
|
1266
|
+
ConditionedControl.prototype.change = function (value) {
|
|
1267
|
+
this.props.onChange({ name: this.props.name, param: this.props.param, value: value });
|
|
1268
|
+
};
|
|
1269
|
+
ConditionedControl.prototype.render = function () {
|
|
1270
|
+
var value = this.props.value;
|
|
1271
|
+
var condition = this.props.param.conditionForValue(value);
|
|
1272
|
+
var param = this.props.param.conditionParams[condition];
|
|
1273
|
+
var label = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1274
|
+
var Conditioned = controlFor(param);
|
|
1275
|
+
var select = (0, jsx_runtime_1.jsx)(SelectControl, { param: this.props.param.select, isDisabled: this.props.isDisabled, onChange: this.onChangeCondition, onEnter: this.props.onEnter, name: "".concat(label, " Kind"), value: condition }, void 0);
|
|
1276
|
+
if (!Conditioned) {
|
|
1277
|
+
return select;
|
|
1278
|
+
}
|
|
1279
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [select, (0, jsx_runtime_1.jsx)(Conditioned, { param: param, value: value, name: label, onChange: this.onChangeParam, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled }, void 0)] }, void 0);
|
|
1280
|
+
};
|
|
1281
|
+
return ConditionedControl;
|
|
1282
|
+
}(React.PureComponent));
|
|
1283
|
+
exports.ConditionedControl = ConditionedControl;
|
|
1284
|
+
var ConvertedControl = /** @class */ (function (_super) {
|
|
1285
|
+
(0, tslib_1.__extends)(ConvertedControl, _super);
|
|
1286
|
+
function ConvertedControl() {
|
|
1287
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1288
|
+
_this.onChange = function (e) {
|
|
1289
|
+
_this.props.onChange({
|
|
1290
|
+
name: _this.props.name,
|
|
1291
|
+
param: _this.props.param,
|
|
1292
|
+
value: _this.props.param.toValue(e.value)
|
|
1293
|
+
});
|
|
1294
|
+
};
|
|
1295
|
+
return _this;
|
|
1296
|
+
}
|
|
1297
|
+
ConvertedControl.prototype.render = function () {
|
|
1298
|
+
var value = this.props.param.fromValue(this.props.value);
|
|
1299
|
+
var Converted = controlFor(this.props.param.converted);
|
|
1300
|
+
if (!Converted)
|
|
1301
|
+
return null;
|
|
1302
|
+
return (0, jsx_runtime_1.jsx)(Converted, { param: this.props.param.converted, value: value, name: this.props.name, onChange: this.onChange, onEnter: this.props.onEnter, isDisabled: this.props.isDisabled }, void 0);
|
|
1303
|
+
};
|
|
1304
|
+
return ConvertedControl;
|
|
1305
|
+
}(React.PureComponent));
|
|
1306
|
+
exports.ConvertedControl = ConvertedControl;
|
|
1307
|
+
var ScriptControl = /** @class */ (function (_super) {
|
|
1308
|
+
(0, tslib_1.__extends)(ScriptControl, _super);
|
|
1309
|
+
function ScriptControl() {
|
|
1310
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1311
|
+
_this.onChange = function (e) {
|
|
1312
|
+
var value = e.target.value;
|
|
1313
|
+
if (value !== _this.props.value.expression) {
|
|
1314
|
+
_this.update({ language: _this.props.value.language, expression: value });
|
|
1315
|
+
}
|
|
1316
|
+
};
|
|
1317
|
+
_this.onKeyPress = function (e) {
|
|
1318
|
+
if ((e.keyCode === 13 || e.charCode === 13 || e.key === 'Enter')) {
|
|
1319
|
+
if (_this.props.onEnter)
|
|
1320
|
+
_this.props.onEnter();
|
|
1321
|
+
}
|
|
1322
|
+
e.stopPropagation();
|
|
1323
|
+
};
|
|
1324
|
+
return _this;
|
|
1325
|
+
}
|
|
1326
|
+
ScriptControl.prototype.renderControl = function () {
|
|
1327
|
+
// TODO: improve!
|
|
1328
|
+
var placeholder = this.props.param.label || (0, string_1.camelCaseToWords)(this.props.name);
|
|
1329
|
+
return (0, jsx_runtime_1.jsx)("input", { type: 'text', value: this.props.value.expression || '', placeholder: placeholder, onChange: this.onChange, onKeyPress: this.props.onEnter ? this.onKeyPress : void 0, disabled: this.props.isDisabled }, void 0);
|
|
1330
|
+
};
|
|
1331
|
+
return ScriptControl;
|
|
1332
|
+
}(SimpleParam));
|
|
1333
|
+
exports.ScriptControl = ScriptControl;
|
|
1334
|
+
//# sourceMappingURL=parameters.js.map
|