Skip to content

Commit

Permalink
Bump version to 2.36.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Jul 25, 2020
1 parent 3de09e1 commit 76548ef
Show file tree
Hide file tree
Showing 41 changed files with 211 additions and 190 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jquery.fancytree",
"description": "JavaScript tree view / tree grid plugin with support for keyboard, inline editing, filtering, checkboxes, drag'n'drop, and lazy loading",
"version": "2.36.1-0",
"version": "2.36.1",
"main": [
"dist/jquery.fancytree-all-deps.min.js"
],
Expand Down
89 changes: 48 additions & 41 deletions dist/jquery.fancytree-all-deps.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! jQuery Fancytree Plugin - 2.36.0 - 2020-07-15T20:15:15Z
/*! jQuery Fancytree Plugin - 2.36.1 - 2020-07-25T09:03:47Z
* https://github.com/mar10/fancytree
* Copyright (c) 2020 Martin Wendt; Licensed MIT
*/
Expand Down Expand Up @@ -1365,8 +1365,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

/** Core Fancytree module.
Expand Down Expand Up @@ -5763,6 +5763,12 @@ var uniqueId = $.fn.extend( {
dataType: source.dataType,
}
);
if (res.error) {
tree.warn(
"postProcess returned error:",
res
);
}
} catch (e) {
res = {
error: e,
Expand Down Expand Up @@ -8057,7 +8063,7 @@ var uniqueId = $.fn.extend( {
{
/** Version number `"MAJOR.MINOR.PATCH"`
* @type {string} */
version: "2.36.0", // Set to semver by 'grunt release'
version: "2.36.1", // Set to semver by 'grunt release'
/** @type {string}
* @description `"production" for release builds` */
buildType: "production", // Set to 'production' by 'grunt build'
Expand Down Expand Up @@ -8692,8 +8698,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

// To keep the global namespace clean, we wrap everything in a closure.
Expand Down Expand Up @@ -8812,7 +8818,7 @@ var uniqueId = $.fn.extend( {
// Every extension must be registered by a unique name.
name: "childcounter",
// Version information should be compliant with [semver](http://semver.org)
version: "2.36.0",
version: "2.36.1",

// Extension specific options and their defaults.
// This options will be available as `tree.options.childcounter.hideExpanded`
Expand Down Expand Up @@ -8923,8 +8929,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -9282,7 +9288,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "clones",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
highlightActiveClones: true, // set 'fancytree-active-clone' on active clones and all peers
Expand Down Expand Up @@ -9444,8 +9450,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

/*
Expand Down Expand Up @@ -10462,13 +10468,14 @@ var uniqueId = $.fn.extend( {

$.ui.fancytree.registerExtension({
name: "dnd5",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
autoExpandMS: 1500, // Expand nodes after n milliseconds of hovering
dropMarkerInsertOffsetX: -16, // Additional offset for drop-marker with hitMode = "before"/"after"
dropMarkerOffsetX: -24, // Absolute position offset for .fancytree-drop-marker relatively to ..fancytree-title (icon/img near a node accepting drop)
dropMarkerParent: document.body, // Root Container used for drop marker (could be a shadow root)
// #1021 `document.body` is not available yet
dropMarkerParent: "body", // Root Container used for drop marker (could be a shadow root)
multiSource: false, // true: Drag multiple (i.e. selected) nodes. Also a callback() is allowed
effectAllowed: "all", // Restrict the possible cursor shapes and modifier operations (can also be set in the dragStart event)
// dropEffect: "auto", // 'copy'|'link'|'move'|'auto'(calculate from `effectAllowed`+modifier keys) or callback(node, data) that returns such string.
Expand Down Expand Up @@ -10597,8 +10604,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -10890,7 +10897,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "edit",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
adjustWidthOfs: 4, // null: don't adjust input size to content
Expand Down Expand Up @@ -11001,8 +11008,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -11340,7 +11347,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "filter",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
autoApply: true, // Re-apply last filter if lazy data is loaded
Expand Down Expand Up @@ -11460,8 +11467,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -11644,7 +11651,7 @@ var uniqueId = $.fn.extend( {

$.ui.fancytree.registerExtension({
name: "glyph",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
preset: null, // 'awesome3', 'awesome4', 'bootstrap3', 'material'
Expand Down Expand Up @@ -11798,8 +11805,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -11916,7 +11923,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "gridnav",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
autofocusInput: false, // Focus first embedded input if node gets activated
Expand Down Expand Up @@ -12023,8 +12030,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -12053,7 +12060,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "multi",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
allowNoSelect: false, //
Expand Down Expand Up @@ -12155,8 +12162,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -12356,7 +12363,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "persist",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
cookieDelimiter: "~",
Expand Down Expand Up @@ -12649,8 +12656,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -12733,7 +12740,7 @@ var uniqueId = $.fn.extend( {

$.ui.fancytree.registerExtension({
name: "table",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
checkboxColumnIdx: null, // render the checkboxes into the this column index (default: nodeColumnIdx)
Expand Down Expand Up @@ -13199,8 +13206,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand All @@ -13223,7 +13230,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "themeroller",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
activeClass: "ui-state-active", // Class added to active node
Expand Down Expand Up @@ -13319,8 +13326,8 @@ var uniqueId = $.fn.extend( {
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.36.0
* @date 2020-07-15T20:15:15Z
* @version 2.36.1
* @date 2020-07-25T09:03:47Z
*/

(function(factory) {
Expand Down Expand Up @@ -13450,7 +13457,7 @@ var uniqueId = $.fn.extend( {
*/
$.ui.fancytree.registerExtension({
name: "wide",
version: "2.36.0",
version: "2.36.1",
// Default options for this extension.
options: {
iconWidth: null, // Adjust this if @fancy-icon-width != "16px"
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.fancytree-all-deps.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.fancytree-all-deps.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 76548ef

Please sign in to comment.