You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node.type is now a first-class property of FancytreeNode.
Node data {..., type: "foo"} is now available as node.type (before: node.data.type).
The properties tree.types and tree.columns have been added to Fancytree.
If passed with source data, they are now available directly instead of tree.data.types or tree.data.columns.
Support patterns for node types:
The properties node.type and tree.types are recommended to implement node-type
specific configuration (details).
Event data argument contains typeInfo == tree.types[node.type].
Improved ext-glyph:
[Added] support for ligature icons (e.g. material icons).
[Added] icon option can now return a dict to create a ligature icon.
Improved tree.loadKeyPath():
[Added] support for a custom path segment matcher.
This allows to have key paths with segments other than node.key.
[Improved] the returned deferred promise now triggers progress() events which can
be used instead of the callback.
The property tree.columns was added to Fancytree. Currently only reserved as
recommended pattern to pass global meta-data for ext-table.
[Added] ext-edit: new trigger mode clickActive for option triggerStart: [...].
[Added] #798 Tooltip support for icons (dynamic option iconTooltip).
[Added] #808 Pass custom storage providers to ext-persist.
[Improved] ext-table no longer needs empty tbody/tr if thead is present.