sl-vue-tree icon indicating copy to clipboard operation
sl-vue-tree copied to clipboard

Customizable draggable tree component for Vue.js

Results 51 sl-vue-tree issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 4.6.6 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) v4.8.0 Support for numeric separators (million...

dependencies

There doesn't seem to be a way of **cancelling** a drag once it started. In most UI supporting drag-drop the **ESC key** causes the drag to be aborted. The problem...

enhancement

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Hi, Can you add the property `node` to the slot of draginfo to access the current node that is dragging.

This occurs using sl-vue-tree in a .vue component. It seems to be triggered by having a item 'selected' within a sl-vue-tree row. Also, there is no onDragendHandler in sl-vue-tree.js.

Well, I'm trying to create something where I'd need to drag leaves/folders from one tree and drop them to another tree. Is there any way I can do it or...

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.5&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Add a method for removing of selected nodes. Current syntax: ``` var paths = this.$refs.tree.getSelected().map(m => m.path); this.$refs.tree.remove(paths); ``` After changes ``` this.$refs.tree.removeSelected(); ```

Hi, I know how to insert node to tree. ``` var lastNode = this.$refs.slVueTree.getLastNode(); this.$refs.slVueTree.insert( { node: lastNode, placement: 'after' } , { title: 'Node Test'} ); ``` But how...