FrantzUml

Results 9 issues of FrantzUml

The module Clipboard uses the 'document.execCommand' in its copy function. As 'execCommand' is deprecated, I suggest to use : if(navigator.clipboard){ if (sel){ navigator.clipboard.write(sel); sel.removeAllRanges() } else{ navigator.clipboard.writeText(textRange); } } else...

Suggested Feature

I discover this library that is great (thanks). But I noticed 2 points : 1. in "constants" file for KEY_CODES object : BACK_KEY should be 8 (and not 46), and...

bug
accepting PRs

Using setData with ajax request, we can detect errors by: - event = that works - promise catch = not working The catch is not working to detect errors (table.setData(url).catch(function(error){...

Possible Bug

From the page 'localize' (https://tabulator.info/docs/6.2/localize), i cannot find any language packages. The link 'list of locale codes' does not work (http://www.science.co.il/Language/Locale-codes.php) with result 'The requested file was not found'

The algorithm used to calculate the height of tree is not correct. The method calculate the max depth of a node N, but not the depth (+1) of the deepest...

I understand Key as the Id of the Node, so: - the find method must compare keys - the delete method must remove by key - the add method must...

Changed the return type to 'static' for PhpDocs. A minima 'UriInterface' if you do not want static

Enhancement

Tabulator version: 6.3.1 Chrome version 132.0.6834.160 No javascript framework used. When a header filter shows less than 10 rows, after updating the filter (with more than 10 rows) a message...

Possible Bug

### Prerequisites - [X] I have [searched](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue) for duplicate or closed issues - [X] I have [validated](https://html5.validator.nu/) any HTML to avoid common problems - [X] I have read the [contributing...

js
v5