Releases: plotly/dash-cytoscape
Releases · plotly/dash-cytoscape
v1.0.1
Added
- Expose CyLeaflet subcomponent IDs + Add additional documentation of CyLeaflet design by @emilykl in #211
Fixed
- #205 Fixed updating maxZoom via callback in CyLeaflet AIO component by @Farkites.
- #207 Allow access to updated lat/lon when Cytoscape nodes in CyLeaflet AIO component are modified via UI by @Farkites.
- #208 Allow updating Cytoscape elements in CyLeaflet AIO component via callback by @Farkites.
- #210 Performace improvement: added debounce to update elements event by @Farkites.
- #212 Added call to
cy.resize
to fix mouse position mismatch ontapstart
event by @Farkites.
v1.0.0
Removed
- #202 Drop support for Python 3.7 and below. New minimum Python version is 3.8
Added
- #203 Add
wheelSensitivity
prop to control the speed of scroll wheel interactions - #200 Add
CyLeaflet
all-in-one component for network graphs overlaid on Leaflet maps. Requires thedash-leaflet
package, which can be installed as an extra with this package:pip install dash-cytoscape[leaflet]
. - #196 and #201 Add context menu support:
contextMenu
prop for configuration andcontextMenuData
prop for event handling - #195
- Add
clearOnUnhover
property. - Add timestamp to
tapNodeData
,tapEdgeData
,mouseoverNodeData
, andmouseoverEdgeData
properties.
- Add
- #147 Add
fcose
layout
Changed
Fixed
- #147 Fix
cose-bilkent
layout
v0.3.0 - Add support for Julia, published to CRAN, changes in documentations
Added
- Contributed initial build of Julia package.
- R package now includes an example application for
cytoCytoscape
.
Changed
- Dash has been upgraded to 1.* in requirements.txt and tests/requirements.txt (#123)
- React/react-dom have been upgraded to 16.14+ (#117)
- Docgen upgraded to 5.3.0 (#117)
- Improved prop typing (#117)
Fixed
- Various security fixes
v0.2.0
Added
- Contributed initial build of R package.
- Added access to cytoscape.js PNG and JPG image generation API through
generateImage
and
imageData
properties (PR #88). - Added ability to download image files generated with
generateImage
client-side without sending
data to the server (PR #88). - Used the newly added
generateImage
andimageData
properties to enable svg generation using cytoscape-svg. - Added responsive cytoscape.js graph feature toggled using the
responsive
property (PR #93). - One new demo:
demos/usage-responsive-graph.py
: Example of graph with the ability to toggle the responsive feature on and off.demos/usage-image-export.py
: Shows how to export images as JPG, PNG or SVG.
Changed
- Changed the official package manager from
yarn
tonpm
. utils.Tree
: v0.1.1 broke compatibility with Python 2. Therefore, modified code to be compatible
with Python 2. Addedprops
andedge_props
properties to accept arguments passed directly to
the node's and edge's dictionaries, respectively (e.g., 'classes', 'positions', etc.).- Removed
Tree
's methodadd_child
, because it is redundant withadd_children
called with an
argument of length 1. setup.py
: Removedash-html-components
anddash_renderer
frominstall_requires
.usage-events.py
: Fix the size of the cytoscape graph to 500px by 500px.- Upgrade
react-cytoscape.js
to latest.
Fixed
setup.py
: Usepackages=find_packages(include=[package_name, package_name + ".*"])
so that all
subpackages likeutils
will be included when youpip install dash-cytoscape
.- Issue where
dash-cytoscape
cannot read property of 'length' of undefined when elements is not specified. tests.test_interactions
.
v0.1.1
v0.1.0
Added
- Four new demos:
demos/usage-dag-edges.py
: Example of edges in a directed acyclic graph (DAG). It uses the newdash_cytoscape.utils.Tree
class.demos/usage-elements-extra.py
: Example of loading external layouts.demos/usage-preset-animation.py
: Example of animating nodes using the preset layout.demos/usage-reset-button.py
: Example of resetting the graph position using a button.demos/usage-remove-selected-elements.py
: Example to show how to remove selected elements with button.
dash_cytoscape/dash_cytoscape_extra.[min|dev].js
: New bundles containing the extra layouts. Those bundles are double in size compared to the default bundles. Therefore, they are only loaded when the user usesload_extra_layouts()
to limit bandwidth usage and maximize loading speed. Please view fast3g-cytoscape for an example of the impact on loading time.dash_cytoscape._display_default_values()
: A helper function to display the default prop values by readingmetadata.json
. Useful for documentation.dash_cytoscape.load_extra_layouts()
: A function that can be called before initializing the Dash app (app = dash.Dash(__name__)
) to load the JS bundle containing the external layouts.src/lib/extra_index.js
: Loads external layouts before exporting theCytoscape
class. Needed to generate the new bundles.webpack.[dev|prod].extra.config.js
: Two new webpack config files for external layouts.- Images of new external layouts.
- The ability for the user to feed a dictionary with keys
nodes
andedges
to theelements
prop ofCytoscape
, instead of a list. The values corresponding to these keys will be, respectively, lists of nodes and edges in the graph.
Changed
usage-events.py
: Added IDs for the edges in order to pass Percy tests.src/lib/components/Cytoscape.react.js
: Updated component docstring to include information about new external layouts and a warning about nodes that can't be modified by a callback. Added more default props for a better expected behavior.package.json
: Added new builds for the extra layouts, modifiednpm build:all
to include new builds. Added external layouts as dependencies.MANIFEST.in
: Included newdash_cytoscape.[min|dev].js
files.README.md
: Moved images, added more images at the end, added useful links.
Fixed
v0.0.5
Added
- Two new demos:
usage-grid-social-network.py
andusage-concentric-social-network.py
- Add Issue and PR templates for Github (located in
.github
) tests.test_usage
: Tests for rendering usage files.tests.test_callbacks
: Tests for updatingCytoscape
with callbacks.tests.test_interactions
: Tests for interacting withCytoscape
, and evaluating its event callbacks.tests.test_percy_snapshot
: Creates a Percy build using screenshots from other tests.
Changed
usage-*.py
: Modified all the import statements fromimport dash_cytoscape
toimport dash_cytoscape as cyto
. Optimized imports. They are now linted with pylint/flake8.demos/usage-*
: Formatted all demo apps in order to respect pylint and flake8.usage-phylogeny.py
: Clear callback conditional statementCONTRIBUTING.md
: changeddash-cytoscape-0.0.1
todash-cytoscape-x.x.x
. Added a Code quality & design section. Changed the Making a contribution section and updated title to Publishing. Updated Pre-Release checklist. Added the Development section fromREADME.md
(renamed Setting up the environment). Added a Tests section.npmignore
: Addedvenv
to avoid venvs to be included in the npm distribution package, which makes us a large amount of space and many unnecessary files being distributed.config.yml
: Added steps to run the new tests. Added coverage for Python 3.7. Includeddemos
and all usage examples inpylint
andflake8
. Increased line limit to 100.README.md
: Moved the Development section toCONTRIBUTING.md
. Modified the dash version in Prerequisites.requirements.txt
: Updated the dash version to latest.tests/requiremens.txt
: Updated the dash version to latest.package.json
: Removed"prepublish": "npm run validate-init"
due to conflict with CircleCI build. This script will be deprecated in favor of the upcoming Dash Component CLI.tests/IntegrationTests.py
: Moved thepercy_snapshot
method totest_percy_snapshot
in order to avoid duplicate (failing) builds on Percy. Decrease the number of processes to 1.setup.py
: Added classifiers and download_url.
Removed
extract-meta.js
,extract-meta
- they were moved to the dash component CLI, thus are not needed anymoreconfig.py
,runtime.txt
,Procfile
,index.html
- only needed for hostingusage-*.py
on DDS, they are now moved toplotly/dash-cytoscape-demos
.review_checklist.md
- redundant since all the information is already contained in CONTRIBUTING.mdtests.test_render
: Removed unused test
v0.0.4
Added
- Homepage URL for PyPi
- Long Description for PyPi
Changed
- Cytoscape component docstring for thorough and well-formatted references (#26)
- Refactored code base to match the up-to-date version of
dash-component-boilerplate
(#27)
Fixed
- Console error where
setProps
gets called even when it is undefined (# 28) - Incorrect setProps assignment that causes
setProps
to not be properly defined when nested in bigger apps (e.g.dash-docs
) (#28)
v0.0.3
v0.0.2
Added
- Author email and improve description
- Data section of demos readme
- Added the components "dash", "dash-html-components", and "dash-renderer" as explicit package requirements.
Changed
- Move grid layout data file
- Change App.js react demo data to be local
- Installation steps in readme to use yarn
Updated
- Cytoscape.js version, correct component import
Fixed
- Correct unpkg link error
- Markdown formatting for CONTRIBUTING.md