rebuild dist files & updated docs assets

pull/2197/head
REJack 2019-08-26 10:39:29 +02:00
parent e8b6ff4e56
commit c9b02625dd
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
16 changed files with 7644 additions and 1110 deletions

3943
dist/css/adminlte.css vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

374
dist/js/adminlte.js vendored
View File

@ -21,8 +21,13 @@
* ==================================================== * ====================================================
*/ */
var NAME = 'ControlSidebar'; var NAME = 'ControlSidebar';
var DATA_KEY = 'lte.control.sidebar'; var DATA_KEY = 'lte.controlsidebar';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME]; var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
COLLAPSED: "collapsed" + EVENT_KEY,
EXPANDED: "expanded" + EVENT_KEY
};
var Selector = { var Selector = {
CONTROL_SIDEBAR: '.control-sidebar', CONTROL_SIDEBAR: '.control-sidebar',
DATA_TOGGLE: '[data-widget="control-sidebar"]', DATA_TOGGLE: '[data-widget="control-sidebar"]',
@ -34,7 +39,7 @@
CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open' CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open'
}; };
var Default = { var Default = {
slide: true controlsidebarSlide: true
/** /**
* Class Definition * Class Definition
* ==================================================== * ====================================================
@ -55,7 +60,7 @@
_proto.show = function show() { _proto.show = function show() {
// Show the control sidebar // Show the control sidebar
if (this._config.slide) { if (this._config.controlsidebarSlide) {
$('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE); $('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE);
$('body').removeClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () { $('body').removeClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () {
$(Selector.CONTROL_SIDEBAR).hide(); $(Selector.CONTROL_SIDEBAR).hide();
@ -65,13 +70,16 @@
} else { } else {
$('body').removeClass(ClassName.CONTROL_SIDEBAR_OPEN); $('body').removeClass(ClassName.CONTROL_SIDEBAR_OPEN);
} }
var expandedEvent = $.Event(Event.EXPANDED);
$(this._element).trigger(expandedEvent);
}; };
_proto.collapse = function collapse() { _proto.collapse = function collapse() {
// Collapse the control sidebar // Collapse the control sidebar
if (this._config.slide) { if (this._config.controlsidebarSlide) {
$('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE); $('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE);
$(Selector.CONTROL_SIDEBAR).show().delay(100).queue(function () { $(Selector.CONTROL_SIDEBAR).show().delay(10).queue(function () {
$('body').addClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () { $('body').addClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () {
$('html').removeClass(ClassName.CONTROL_SIDEBAR_ANIMATE); $('html').removeClass(ClassName.CONTROL_SIDEBAR_ANIMATE);
$(this).dequeue(); $(this).dequeue();
@ -81,11 +89,12 @@
} else { } else {
$('body').addClass(ClassName.CONTROL_SIDEBAR_OPEN); $('body').addClass(ClassName.CONTROL_SIDEBAR_OPEN);
} }
var collapsedEvent = $.Event(Event.COLLAPSED);
$(this._element).trigger(collapsedEvent);
}; };
_proto.toggle = function toggle() { _proto.toggle = function toggle() {
this._setMargin();
var shouldOpen = $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || $('body').hasClass(ClassName.CONTROL_SIDEBAR_SLIDE); var shouldOpen = $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || $('body').hasClass(ClassName.CONTROL_SIDEBAR_SLIDE);
if (shouldOpen) { if (shouldOpen) {
@ -100,12 +109,6 @@
_proto._getConfig = function _getConfig(config) { _proto._getConfig = function _getConfig(config) {
return $.extend({}, Default, config); return $.extend({}, Default, config);
};
_proto._setMargin = function _setMargin() {
$(Selector.CONTROL_SIDEBAR).css({
top: $(Selector.MAIN_HEADER).innerHeight()
});
} // Static } // Static
; ;
@ -356,7 +359,9 @@
}; };
var Default = { var Default = {
autoCollapseSize: false, autoCollapseSize: false,
screenCollapseSize: 768 screenCollapseSize: 768,
enableRemember: false,
noTransitionAfterReload: true
}; };
var Selector = { var Selector = {
TOGGLE_BUTTON: '[data-widget="pushmenu"]', TOGGLE_BUTTON: '[data-widget="pushmenu"]',
@ -397,12 +402,22 @@
_proto.show = function show() { _proto.show = function show() {
$(Selector.BODY).addClass(ClassName.OPEN).removeClass(ClassName.COLLAPSED); $(Selector.BODY).addClass(ClassName.OPEN).removeClass(ClassName.COLLAPSED);
if (this._options.enableRemember) {
localStorage.setItem("remember" + EVENT_KEY, ClassName.OPEN);
}
var shownEvent = $.Event(Event.SHOWN); var shownEvent = $.Event(Event.SHOWN);
$(this._element).trigger(shownEvent); $(this._element).trigger(shownEvent);
}; };
_proto.collapse = function collapse() { _proto.collapse = function collapse() {
$(Selector.BODY).removeClass(ClassName.OPEN).addClass(ClassName.COLLAPSED); $(Selector.BODY).removeClass(ClassName.OPEN).addClass(ClassName.COLLAPSED);
if (this._options.enableRemember) {
localStorage.setItem("remember" + EVENT_KEY, ClassName.COLLAPSED);
}
var collapsedEvent = $.Event(Event.COLLAPSED); var collapsedEvent = $.Event(Event.COLLAPSED);
$(this._element).trigger(collapsedEvent); $(this._element).trigger(collapsedEvent);
}; };
@ -435,12 +450,30 @@
} }
} }
} }
};
_proto.remember = function remember() {
if (this._options.enableRemember) {
var toggleState = localStorage.getItem("remember" + EVENT_KEY);
if (toggleState == ClassName.COLLAPSED) {
if (this._options.noTransitionAfterReload) {
$("body").addClass('hold-transition').addClass(ClassName.COLLAPSED).delay(10).queue(function () {
$(this).removeClass('hold-transition');
$(this).dequeue();
});
} else {
$("body").addClass(ClassName.COLLAPSED);
}
}
}
} // Private } // Private
; ;
_proto._init = function _init() { _proto._init = function _init() {
var _this = this; var _this = this;
this.remember();
this.autoCollapse(); this.autoCollapse();
$(window).resize(function () { $(window).resize(function () {
_this.autoCollapse(); _this.autoCollapse();
@ -585,7 +618,7 @@
this.collapse(openTreeview, openMenuLi); this.collapse(openTreeview, openMenuLi);
} }
treeviewMenu.slideDown(this._config.animationSpeed, function () { treeviewMenu.stop().slideDown(this._config.animationSpeed, function () {
parentLi.addClass(ClassName.OPEN); parentLi.addClass(ClassName.OPEN);
$(_this._element).trigger(expandedEvent); $(_this._element).trigger(expandedEvent);
}); });
@ -595,7 +628,7 @@
var _this2 = this; var _this2 = this;
var collapsedEvent = $.Event(Event.COLLAPSED); var collapsedEvent = $.Event(Event.COLLAPSED);
treeviewMenu.slideUp(this._config.animationSpeed, function () { treeviewMenu.stop().slideUp(this._config.animationSpeed, function () {
parentLi.removeClass(ClassName.OPEN); parentLi.removeClass(ClassName.OPEN);
$(_this2._element).trigger(collapsedEvent); $(_this2._element).trigger(collapsedEvent);
treeviewMenu.find(Selector.OPEN + " > " + Selector.TREEVIEW_MENU).slideUp(); treeviewMenu.find(Selector.OPEN + " > " + Selector.TREEVIEW_MENU).slideUp();
@ -692,6 +725,9 @@
var NAME = 'DirectChat'; var NAME = 'DirectChat';
var DATA_KEY = 'lte.directchat'; var DATA_KEY = 'lte.directchat';
var JQUERY_NO_CONFLICT = $.fn[NAME]; var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
TOGGLED: "toggled{EVENT_KEY}"
};
var Selector = { var Selector = {
DATA_TOGGLE: '[data-widget="chat-pane-toggle"]', DATA_TOGGLE: '[data-widget="chat-pane-toggle"]',
DIRECT_CHAT: '.direct-chat' DIRECT_CHAT: '.direct-chat'
@ -715,6 +751,8 @@
_proto.toggle = function toggle() { _proto.toggle = function toggle() {
$(this._element).parents(Selector.DIRECT_CHAT).first().toggleClass(ClassName.DIRECT_CHAT_OPEN); $(this._element).parents(Selector.DIRECT_CHAT).first().toggleClass(ClassName.DIRECT_CHAT_OPEN);
var toggledEvent = $.Event(Event.TOGGLED);
$(this._element).trigger(toggledEvent);
} // Static } // Static
; ;
@ -883,17 +921,17 @@
/** /**
* -------------------------------------------- * --------------------------------------------
* AdminLTE Widget.js * AdminLTE CardWidget.js
* License MIT * License MIT
* -------------------------------------------- * --------------------------------------------
*/ */
var Widget = function ($) { var CardWidget = function ($) {
/** /**
* Constants * Constants
* ==================================================== * ====================================================
*/ */
var NAME = 'Widget'; var NAME = 'CardWidget';
var DATA_KEY = 'lte.widget'; var DATA_KEY = 'lte.cardwidget';
var EVENT_KEY = "." + DATA_KEY; var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME]; var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = { var Event = {
@ -903,43 +941,48 @@
MINIMIZED: "minimized" + EVENT_KEY, MINIMIZED: "minimized" + EVENT_KEY,
REMOVED: "removed" + EVENT_KEY REMOVED: "removed" + EVENT_KEY
}; };
var ClassName = {
CARD: 'card',
COLLAPSED: 'collapsed-card',
WAS_COLLAPSED: 'was-collapsed',
MAXIMIZED: 'maximized-card'
};
var Selector = { var Selector = {
DATA_REMOVE: '[data-widget="remove"]', DATA_REMOVE: '[data-card-widget="remove"]',
DATA_COLLAPSE: '[data-widget="collapse"]', DATA_COLLAPSE: '[data-card-widget="collapse"]',
DATA_MAXIMIZE: '[data-widget="maximize"]', DATA_MAXIMIZE: '[data-card-widget="maximize"]',
CARD: '.card', CARD: "." + ClassName.CARD,
CARD_HEADER: '.card-header', CARD_HEADER: '.card-header',
CARD_BODY: '.card-body', CARD_BODY: '.card-body',
CARD_FOOTER: '.card-footer', CARD_FOOTER: '.card-footer',
COLLAPSED: '.collapsed-card', COLLAPSED: "." + ClassName.COLLAPSED
COLLAPSE_ICON: '.fa-minus',
EXPAND_ICON: '.fa-plus'
};
var ClassName = {
COLLAPSED: 'collapsed-card',
WAS_COLLAPSED: 'was-collapsed',
MAXIMIZED: 'maximized-card',
COLLAPSE_ICON: 'fa-minus',
EXPAND_ICON: 'fa-plus',
MAXIMIZE_ICON: 'fa-expand',
MINIMIZE_ICON: 'fa-compress'
}; };
var Default = { var Default = {
animationSpeed: 'normal', animationSpeed: 'normal',
collapseTrigger: Selector.DATA_COLLAPSE, collapseTrigger: Selector.DATA_COLLAPSE,
removeTrigger: Selector.DATA_REMOVE removeTrigger: Selector.DATA_REMOVE,
maximizeTrigger: Selector.DATA_MAXIMIZE,
collapseIcon: 'fa-minus',
expandIcon: 'fa-plus',
maximizeIcon: 'fa-expand',
minimizeIcon: 'fa-compress'
}; };
var Widget = var CardWidget =
/*#__PURE__*/ /*#__PURE__*/
function () { function () {
function Widget(element, settings) { function CardWidget(element, settings) {
this._element = element; this._element = element;
this._parent = element.parents(Selector.CARD).first(); this._parent = element.parents(Selector.CARD).first();
if (element.hasClass(ClassName.CARD)) {
this._parent = element;
}
this._settings = $.extend({}, Default, settings); this._settings = $.extend({}, Default, settings);
} }
var _proto = Widget.prototype; var _proto = CardWidget.prototype;
_proto.collapse = function collapse() { _proto.collapse = function collapse() {
var _this = this; var _this = this;
@ -948,7 +991,7 @@
_this._parent.addClass(ClassName.COLLAPSED); _this._parent.addClass(ClassName.COLLAPSED);
}); });
this._element.children(Selector.COLLAPSE_ICON).addClass(ClassName.EXPAND_ICON).removeClass(ClassName.COLLAPSE_ICON); this._element.children(this._settings.collapseTrigger + ' .' + this._settings.collapseIcon).addClass(this._settings.expandIcon).removeClass(this._settings.collapseIcon);
var collapsed = $.Event(Event.COLLAPSED); var collapsed = $.Event(Event.COLLAPSED);
@ -962,7 +1005,7 @@
_this2._parent.removeClass(ClassName.COLLAPSED); _this2._parent.removeClass(ClassName.COLLAPSED);
}); });
this._element.children(Selector.EXPAND_ICON).addClass(ClassName.COLLAPSE_ICON).removeClass(ClassName.EXPAND_ICON); this._element.children(this._settings.collapseTrigger + ' .' + this._settings.expandIcon).addClass(this._settings.collapseIcon).removeClass(this._settings.expandIcon);
var expanded = $.Event(Event.EXPANDED); var expanded = $.Event(Event.EXPANDED);
@ -986,16 +1029,35 @@
this.collapse(); this.collapse();
}; };
_proto.toggleMaximize = function toggleMaximize() { _proto.maximize = function maximize() {
var button = this._element.find('i'); this._element.children(this._settings.maximizeTrigger + ' .' + this._settings.maximizeIcon).addClass(this._settings.minimizeIcon).removeClass(this._settings.maximizeIcon);
if (this._parent.hasClass(ClassName.MAXIMIZED)) { this._parent.css({
button.addClass(ClassName.MAXIMIZE_ICON).removeClass(ClassName.MINIMIZE_ICON); 'height': this._parent.height(),
'width': this._parent.width(),
'transition': 'all .15s'
}).delay(150).queue(function () {
$(this).addClass(ClassName.MAXIMIZED);
$('html').addClass(ClassName.MAXIMIZED);
this._parent.css('cssText', 'height:' + this._parent[0].style.height + ' !important;' + 'width:' + this._parent[0].style.width + ' !important; transition: all .15s;').delay(100).queue(function () { if ($(this).hasClass(ClassName.COLLAPSED)) {
$(this).addClass(ClassName.WAS_COLLAPSED);
}
$(this).dequeue();
});
var maximized = $.Event(Event.MAXIMIZED);
this._element.trigger(maximized, this._parent);
};
_proto.minimize = function minimize() {
this._element.children(this._settings.maximizeTrigger + ' .' + this._settings.minimizeIcon).addClass(this._settings.maximizeIcon).removeClass(this._settings.minimizeIcon);
this._parent.css('cssText', 'height:' + this._parent[0].style.height + ' !important;' + 'width:' + this._parent[0].style.width + ' !important; transition: all .15s;').delay(10).queue(function () {
$(this).removeClass(ClassName.MAXIMIZED); $(this).removeClass(ClassName.MAXIMIZED);
$('html').removeClass(ClassName.MAXIMIZED); $('html').removeClass(ClassName.MAXIMIZED);
$(this).trigger(Event.MINIMIZED);
$(this).css({ $(this).css({
'height': 'inherit', 'height': 'inherit',
'width': 'inherit' 'width': 'inherit'
@ -1007,25 +1069,19 @@
$(this).dequeue(); $(this).dequeue();
}); });
} else {
button.addClass(ClassName.MINIMIZE_ICON).removeClass(ClassName.MAXIMIZE_ICON);
this._parent.css({ var MINIMIZED = $.Event(Event.MINIMIZED);
'height': this._parent.height(),
'width': this._parent.width(),
'transition': 'all .15s'
}).delay(150).queue(function () {
$(this).addClass(ClassName.MAXIMIZED);
$('html').addClass(ClassName.MAXIMIZED);
$(this).trigger(Event.MAXIMIZED);
if ($(this).hasClass(ClassName.COLLAPSED)) { this._element.trigger(MINIMIZED, this._parent);
$(this).addClass(ClassName.WAS_COLLAPSED); };
_proto.toggleMaximize = function toggleMaximize() {
if (this._parent.hasClass(ClassName.MAXIMIZED)) {
this.minimize();
return;
} }
$(this).dequeue(); this.maximize();
});
}
} // Private } // Private
; ;
@ -1036,30 +1092,31 @@
$(this).find(this._settings.collapseTrigger).click(function () { $(this).find(this._settings.collapseTrigger).click(function () {
_this3.toggle(); _this3.toggle();
}); });
$(this).find(this._settings.maximizeTrigger).click(function () {
_this3.toggleMaximize();
});
$(this).find(this._settings.removeTrigger).click(function () { $(this).find(this._settings.removeTrigger).click(function () {
_this3.remove(); _this3.remove();
}); });
} // Static } // Static
; ;
Widget._jQueryInterface = function _jQueryInterface(config) { CardWidget._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY); var data = $(this).data(DATA_KEY);
if (!data) { if (!data) {
data = new Widget($(this), data); data = new CardWidget($(this), data);
$(this).data(DATA_KEY, typeof config === 'string' ? data : config); $(this).data(DATA_KEY, typeof config === 'string' ? data : config);
} }
if (typeof config === 'string' && config.match(/collapse|expand|remove|toggle|toggleMaximize/)) { if (typeof config === 'string' && config.match(/collapse|expand|remove|toggle|maximize|minimize|toggleMaximize/)) {
data[config](); data[config]();
} else if (typeof config === 'object') { } else if (typeof config === 'object') {
data._init($(this)); data._init($(this));
} }
});
}; };
return Widget; return CardWidget;
}(); }();
/** /**
* Data API * Data API
@ -1072,45 +1129,208 @@
event.preventDefault(); event.preventDefault();
} }
Widget._jQueryInterface.call($(this), 'toggle'); CardWidget._jQueryInterface.call($(this), 'toggle');
}); });
$(document).on('click', Selector.DATA_REMOVE, function (event) { $(document).on('click', Selector.DATA_REMOVE, function (event) {
if (event) { if (event) {
event.preventDefault(); event.preventDefault();
} }
Widget._jQueryInterface.call($(this), 'remove'); CardWidget._jQueryInterface.call($(this), 'remove');
}); });
$(document).on('click', Selector.DATA_MAXIMIZE, function (event) { $(document).on('click', Selector.DATA_MAXIMIZE, function (event) {
if (event) { if (event) {
event.preventDefault(); event.preventDefault();
} }
Widget._jQueryInterface.call($(this), 'toggleMaximize'); CardWidget._jQueryInterface.call($(this), 'toggleMaximize');
}); });
/** /**
* jQuery API * jQuery API
* ==================================================== * ====================================================
*/ */
$.fn[NAME] = Widget._jQueryInterface; $.fn[NAME] = CardWidget._jQueryInterface;
$.fn[NAME].Constructor = Widget; $.fn[NAME].Constructor = CardWidget;
$.fn[NAME].noConflict = function () { $.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT; $.fn[NAME] = JQUERY_NO_CONFLICT;
return Widget._jQueryInterface; return CardWidget._jQueryInterface;
}; };
return Widget; return CardWidget;
}(jQuery); }(jQuery);
/**
* --------------------------------------------
* AdminLTE CardRefresh.js
* License MIT
* --------------------------------------------
*/
var CardRefresh = function ($) {
/**
* Constants
* ====================================================
*/
var NAME = 'CardRefresh';
var DATA_KEY = 'lte.cardrefresh';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
LOADED: "loaded" + EVENT_KEY,
OVERLAY_ADDED: "overlay.added" + EVENT_KEY,
OVERLAY_REMOVED: "overlay.removed" + EVENT_KEY
};
var ClassName = {
CARD: 'card'
};
var Selector = {
CARD: "." + ClassName.CARD,
DATA_REFRESH: '[data-card-widget="card-refresh"]'
};
var Default = {
source: '',
sourceSelector: '',
params: {},
trigger: Selector.DATA_REFRESH,
content: '.card-body',
loadInContent: true,
loadOnInit: true,
responseType: '',
overlayTemplate: '<div class="overlay"><i class="fas fa-2x fa-sync-alt fa-spin"></i></div>',
onLoadStart: function onLoadStart() {},
onLoadDone: function onLoadDone(response) {
return response;
}
};
var CardRefresh =
/*#__PURE__*/
function () {
function CardRefresh(element, settings) {
this._element = element;
this._parent = element.parents(Selector.CARD).first();
this._settings = $.extend({}, Default, settings);
this._overlay = $(this._settings.overlayTemplate);
if (element.hasClass(ClassName.CARD)) {
this._parent = element;
}
if (this._settings.source === '') {
throw new Error('Source url was not defined. Please specify a url in your CardRefresh source option.');
}
this._init();
if (this._settings.loadOnInit) {
this.load();
}
}
var _proto = CardRefresh.prototype;
_proto.load = function load() {
this._addOverlay();
this._settings.onLoadStart.call($(this));
$.get(this._settings.source, this._settings.params, function (response) {
if (this._settings.loadInContent) {
if (this._settings.sourceSelector != '') {
response = $(response).find(this._settings.sourceSelector).html();
}
this._parent.find(this._settings.content).html(response);
}
this._settings.onLoadDone.call($(this), response);
this._removeOverlay();
}.bind(this), this._settings.responseType !== '' && this._settings.responseType);
var loadedEvent = $.Event(Event.LOADED);
$(this._element).trigger(loadedEvent);
};
_proto._addOverlay = function _addOverlay() {
this._parent.append(this._overlay);
var overlayAddedEvent = $.Event(Event.OVERLAY_ADDED);
$(this._element).trigger(overlayAddedEvent);
};
_proto._removeOverlay = function _removeOverlay() {
this._parent.find(this._overlay).remove();
var overlayRemovedEvent = $.Event(Event.OVERLAY_REMOVED);
$(this._element).trigger(overlayRemovedEvent);
};
// Private
_proto._init = function _init(card) {
var _this = this;
$(this).find(this._settings.trigger).on('click', function () {
_this.load();
});
} // Static
;
CardRefresh._jQueryInterface = function _jQueryInterface(config) {
var data = $(this).data(DATA_KEY);
var options = $(this).data();
if (!data) {
data = new CardRefresh($(this), options);
$(this).data(DATA_KEY, typeof config === 'string' ? data : config);
}
if (typeof config === 'string' && config.match(/load/)) {
data[config]();
} else if (typeof config === 'object') {
data._init($(this));
}
};
return CardRefresh;
}();
/**
* Data API
* ====================================================
*/
$(document).on('click', Selector.DATA_REFRESH, function (event) {
if (event) {
event.preventDefault();
}
CardRefresh._jQueryInterface.call($(this), 'load');
});
/**
* jQuery API
* ====================================================
*/
$.fn[NAME] = CardRefresh._jQueryInterface;
$.fn[NAME].Constructor = CardRefresh;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return CardRefresh._jQueryInterface;
};
return CardRefresh;
}(jQuery);
exports.CardRefresh = CardRefresh;
exports.CardWidget = CardWidget;
exports.ControlSidebar = ControlSidebar; exports.ControlSidebar = ControlSidebar;
exports.DirectChat = DirectChat; exports.DirectChat = DirectChat;
exports.Layout = Layout; exports.Layout = Layout;
exports.PushMenu = PushMenu; exports.PushMenu = PushMenu;
exports.TodoList = TodoList; exports.TodoList = TodoList;
exports.Treeview = Treeview; exports.Treeview = Treeview;
exports.Widget = Widget;
Object.defineProperty(exports, '__esModule', { value: true }); Object.defineProperty(exports, '__esModule', { value: true });

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -21,8 +21,13 @@
* ==================================================== * ====================================================
*/ */
var NAME = 'ControlSidebar'; var NAME = 'ControlSidebar';
var DATA_KEY = 'lte.control.sidebar'; var DATA_KEY = 'lte.controlsidebar';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME]; var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
COLLAPSED: "collapsed" + EVENT_KEY,
EXPANDED: "expanded" + EVENT_KEY
};
var Selector = { var Selector = {
CONTROL_SIDEBAR: '.control-sidebar', CONTROL_SIDEBAR: '.control-sidebar',
DATA_TOGGLE: '[data-widget="control-sidebar"]', DATA_TOGGLE: '[data-widget="control-sidebar"]',
@ -34,7 +39,7 @@
CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open' CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open'
}; };
var Default = { var Default = {
slide: true controlsidebarSlide: true
/** /**
* Class Definition * Class Definition
* ==================================================== * ====================================================
@ -55,7 +60,7 @@
_proto.show = function show() { _proto.show = function show() {
// Show the control sidebar // Show the control sidebar
if (this._config.slide) { if (this._config.controlsidebarSlide) {
$('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE); $('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE);
$('body').removeClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () { $('body').removeClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () {
$(Selector.CONTROL_SIDEBAR).hide(); $(Selector.CONTROL_SIDEBAR).hide();
@ -65,13 +70,16 @@
} else { } else {
$('body').removeClass(ClassName.CONTROL_SIDEBAR_OPEN); $('body').removeClass(ClassName.CONTROL_SIDEBAR_OPEN);
} }
var expandedEvent = $.Event(Event.EXPANDED);
$(this._element).trigger(expandedEvent);
}; };
_proto.collapse = function collapse() { _proto.collapse = function collapse() {
// Collapse the control sidebar // Collapse the control sidebar
if (this._config.slide) { if (this._config.controlsidebarSlide) {
$('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE); $('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE);
$(Selector.CONTROL_SIDEBAR).show().delay(100).queue(function () { $(Selector.CONTROL_SIDEBAR).show().delay(10).queue(function () {
$('body').addClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () { $('body').addClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () {
$('html').removeClass(ClassName.CONTROL_SIDEBAR_ANIMATE); $('html').removeClass(ClassName.CONTROL_SIDEBAR_ANIMATE);
$(this).dequeue(); $(this).dequeue();
@ -81,11 +89,12 @@
} else { } else {
$('body').addClass(ClassName.CONTROL_SIDEBAR_OPEN); $('body').addClass(ClassName.CONTROL_SIDEBAR_OPEN);
} }
var collapsedEvent = $.Event(Event.COLLAPSED);
$(this._element).trigger(collapsedEvent);
}; };
_proto.toggle = function toggle() { _proto.toggle = function toggle() {
this._setMargin();
var shouldOpen = $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || $('body').hasClass(ClassName.CONTROL_SIDEBAR_SLIDE); var shouldOpen = $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || $('body').hasClass(ClassName.CONTROL_SIDEBAR_SLIDE);
if (shouldOpen) { if (shouldOpen) {
@ -100,12 +109,6 @@
_proto._getConfig = function _getConfig(config) { _proto._getConfig = function _getConfig(config) {
return $.extend({}, Default, config); return $.extend({}, Default, config);
};
_proto._setMargin = function _setMargin() {
$(Selector.CONTROL_SIDEBAR).css({
top: $(Selector.MAIN_HEADER).innerHeight()
});
} // Static } // Static
; ;
@ -356,7 +359,9 @@
}; };
var Default = { var Default = {
autoCollapseSize: false, autoCollapseSize: false,
screenCollapseSize: 768 screenCollapseSize: 768,
enableRemember: false,
noTransitionAfterReload: true
}; };
var Selector = { var Selector = {
TOGGLE_BUTTON: '[data-widget="pushmenu"]', TOGGLE_BUTTON: '[data-widget="pushmenu"]',
@ -397,12 +402,22 @@
_proto.show = function show() { _proto.show = function show() {
$(Selector.BODY).addClass(ClassName.OPEN).removeClass(ClassName.COLLAPSED); $(Selector.BODY).addClass(ClassName.OPEN).removeClass(ClassName.COLLAPSED);
if (this._options.enableRemember) {
localStorage.setItem("remember" + EVENT_KEY, ClassName.OPEN);
}
var shownEvent = $.Event(Event.SHOWN); var shownEvent = $.Event(Event.SHOWN);
$(this._element).trigger(shownEvent); $(this._element).trigger(shownEvent);
}; };
_proto.collapse = function collapse() { _proto.collapse = function collapse() {
$(Selector.BODY).removeClass(ClassName.OPEN).addClass(ClassName.COLLAPSED); $(Selector.BODY).removeClass(ClassName.OPEN).addClass(ClassName.COLLAPSED);
if (this._options.enableRemember) {
localStorage.setItem("remember" + EVENT_KEY, ClassName.COLLAPSED);
}
var collapsedEvent = $.Event(Event.COLLAPSED); var collapsedEvent = $.Event(Event.COLLAPSED);
$(this._element).trigger(collapsedEvent); $(this._element).trigger(collapsedEvent);
}; };
@ -435,12 +450,30 @@
} }
} }
} }
};
_proto.remember = function remember() {
if (this._options.enableRemember) {
var toggleState = localStorage.getItem("remember" + EVENT_KEY);
if (toggleState == ClassName.COLLAPSED) {
if (this._options.noTransitionAfterReload) {
$("body").addClass('hold-transition').addClass(ClassName.COLLAPSED).delay(10).queue(function () {
$(this).removeClass('hold-transition');
$(this).dequeue();
});
} else {
$("body").addClass(ClassName.COLLAPSED);
}
}
}
} // Private } // Private
; ;
_proto._init = function _init() { _proto._init = function _init() {
var _this = this; var _this = this;
this.remember();
this.autoCollapse(); this.autoCollapse();
$(window).resize(function () { $(window).resize(function () {
_this.autoCollapse(); _this.autoCollapse();
@ -585,7 +618,7 @@
this.collapse(openTreeview, openMenuLi); this.collapse(openTreeview, openMenuLi);
} }
treeviewMenu.slideDown(this._config.animationSpeed, function () { treeviewMenu.stop().slideDown(this._config.animationSpeed, function () {
parentLi.addClass(ClassName.OPEN); parentLi.addClass(ClassName.OPEN);
$(_this._element).trigger(expandedEvent); $(_this._element).trigger(expandedEvent);
}); });
@ -595,7 +628,7 @@
var _this2 = this; var _this2 = this;
var collapsedEvent = $.Event(Event.COLLAPSED); var collapsedEvent = $.Event(Event.COLLAPSED);
treeviewMenu.slideUp(this._config.animationSpeed, function () { treeviewMenu.stop().slideUp(this._config.animationSpeed, function () {
parentLi.removeClass(ClassName.OPEN); parentLi.removeClass(ClassName.OPEN);
$(_this2._element).trigger(collapsedEvent); $(_this2._element).trigger(collapsedEvent);
treeviewMenu.find(Selector.OPEN + " > " + Selector.TREEVIEW_MENU).slideUp(); treeviewMenu.find(Selector.OPEN + " > " + Selector.TREEVIEW_MENU).slideUp();
@ -692,6 +725,9 @@
var NAME = 'DirectChat'; var NAME = 'DirectChat';
var DATA_KEY = 'lte.directchat'; var DATA_KEY = 'lte.directchat';
var JQUERY_NO_CONFLICT = $.fn[NAME]; var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
TOGGLED: "toggled{EVENT_KEY}"
};
var Selector = { var Selector = {
DATA_TOGGLE: '[data-widget="chat-pane-toggle"]', DATA_TOGGLE: '[data-widget="chat-pane-toggle"]',
DIRECT_CHAT: '.direct-chat' DIRECT_CHAT: '.direct-chat'
@ -715,6 +751,8 @@
_proto.toggle = function toggle() { _proto.toggle = function toggle() {
$(this._element).parents(Selector.DIRECT_CHAT).first().toggleClass(ClassName.DIRECT_CHAT_OPEN); $(this._element).parents(Selector.DIRECT_CHAT).first().toggleClass(ClassName.DIRECT_CHAT_OPEN);
var toggledEvent = $.Event(Event.TOGGLED);
$(this._element).trigger(toggledEvent);
} // Static } // Static
; ;
@ -883,17 +921,17 @@
/** /**
* -------------------------------------------- * --------------------------------------------
* AdminLTE Widget.js * AdminLTE CardWidget.js
* License MIT * License MIT
* -------------------------------------------- * --------------------------------------------
*/ */
var Widget = function ($) { var CardWidget = function ($) {
/** /**
* Constants * Constants
* ==================================================== * ====================================================
*/ */
var NAME = 'Widget'; var NAME = 'CardWidget';
var DATA_KEY = 'lte.widget'; var DATA_KEY = 'lte.cardwidget';
var EVENT_KEY = "." + DATA_KEY; var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME]; var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = { var Event = {
@ -903,43 +941,48 @@
MINIMIZED: "minimized" + EVENT_KEY, MINIMIZED: "minimized" + EVENT_KEY,
REMOVED: "removed" + EVENT_KEY REMOVED: "removed" + EVENT_KEY
}; };
var ClassName = {
CARD: 'card',
COLLAPSED: 'collapsed-card',
WAS_COLLAPSED: 'was-collapsed',
MAXIMIZED: 'maximized-card'
};
var Selector = { var Selector = {
DATA_REMOVE: '[data-widget="remove"]', DATA_REMOVE: '[data-card-widget="remove"]',
DATA_COLLAPSE: '[data-widget="collapse"]', DATA_COLLAPSE: '[data-card-widget="collapse"]',
DATA_MAXIMIZE: '[data-widget="maximize"]', DATA_MAXIMIZE: '[data-card-widget="maximize"]',
CARD: '.card', CARD: "." + ClassName.CARD,
CARD_HEADER: '.card-header', CARD_HEADER: '.card-header',
CARD_BODY: '.card-body', CARD_BODY: '.card-body',
CARD_FOOTER: '.card-footer', CARD_FOOTER: '.card-footer',
COLLAPSED: '.collapsed-card', COLLAPSED: "." + ClassName.COLLAPSED
COLLAPSE_ICON: '.fa-minus',
EXPAND_ICON: '.fa-plus'
};
var ClassName = {
COLLAPSED: 'collapsed-card',
WAS_COLLAPSED: 'was-collapsed',
MAXIMIZED: 'maximized-card',
COLLAPSE_ICON: 'fa-minus',
EXPAND_ICON: 'fa-plus',
MAXIMIZE_ICON: 'fa-expand',
MINIMIZE_ICON: 'fa-compress'
}; };
var Default = { var Default = {
animationSpeed: 'normal', animationSpeed: 'normal',
collapseTrigger: Selector.DATA_COLLAPSE, collapseTrigger: Selector.DATA_COLLAPSE,
removeTrigger: Selector.DATA_REMOVE removeTrigger: Selector.DATA_REMOVE,
maximizeTrigger: Selector.DATA_MAXIMIZE,
collapseIcon: 'fa-minus',
expandIcon: 'fa-plus',
maximizeIcon: 'fa-expand',
minimizeIcon: 'fa-compress'
}; };
var Widget = var CardWidget =
/*#__PURE__*/ /*#__PURE__*/
function () { function () {
function Widget(element, settings) { function CardWidget(element, settings) {
this._element = element; this._element = element;
this._parent = element.parents(Selector.CARD).first(); this._parent = element.parents(Selector.CARD).first();
if (element.hasClass(ClassName.CARD)) {
this._parent = element;
}
this._settings = $.extend({}, Default, settings); this._settings = $.extend({}, Default, settings);
} }
var _proto = Widget.prototype; var _proto = CardWidget.prototype;
_proto.collapse = function collapse() { _proto.collapse = function collapse() {
var _this = this; var _this = this;
@ -948,7 +991,7 @@
_this._parent.addClass(ClassName.COLLAPSED); _this._parent.addClass(ClassName.COLLAPSED);
}); });
this._element.children(Selector.COLLAPSE_ICON).addClass(ClassName.EXPAND_ICON).removeClass(ClassName.COLLAPSE_ICON); this._element.children(this._settings.collapseTrigger + ' .' + this._settings.collapseIcon).addClass(this._settings.expandIcon).removeClass(this._settings.collapseIcon);
var collapsed = $.Event(Event.COLLAPSED); var collapsed = $.Event(Event.COLLAPSED);
@ -962,7 +1005,7 @@
_this2._parent.removeClass(ClassName.COLLAPSED); _this2._parent.removeClass(ClassName.COLLAPSED);
}); });
this._element.children(Selector.EXPAND_ICON).addClass(ClassName.COLLAPSE_ICON).removeClass(ClassName.EXPAND_ICON); this._element.children(this._settings.collapseTrigger + ' .' + this._settings.expandIcon).addClass(this._settings.collapseIcon).removeClass(this._settings.expandIcon);
var expanded = $.Event(Event.EXPANDED); var expanded = $.Event(Event.EXPANDED);
@ -986,16 +1029,35 @@
this.collapse(); this.collapse();
}; };
_proto.toggleMaximize = function toggleMaximize() { _proto.maximize = function maximize() {
var button = this._element.find('i'); this._element.children(this._settings.maximizeTrigger + ' .' + this._settings.maximizeIcon).addClass(this._settings.minimizeIcon).removeClass(this._settings.maximizeIcon);
if (this._parent.hasClass(ClassName.MAXIMIZED)) { this._parent.css({
button.addClass(ClassName.MAXIMIZE_ICON).removeClass(ClassName.MINIMIZE_ICON); 'height': this._parent.height(),
'width': this._parent.width(),
'transition': 'all .15s'
}).delay(150).queue(function () {
$(this).addClass(ClassName.MAXIMIZED);
$('html').addClass(ClassName.MAXIMIZED);
this._parent.css('cssText', 'height:' + this._parent[0].style.height + ' !important;' + 'width:' + this._parent[0].style.width + ' !important; transition: all .15s;').delay(100).queue(function () { if ($(this).hasClass(ClassName.COLLAPSED)) {
$(this).addClass(ClassName.WAS_COLLAPSED);
}
$(this).dequeue();
});
var maximized = $.Event(Event.MAXIMIZED);
this._element.trigger(maximized, this._parent);
};
_proto.minimize = function minimize() {
this._element.children(this._settings.maximizeTrigger + ' .' + this._settings.minimizeIcon).addClass(this._settings.maximizeIcon).removeClass(this._settings.minimizeIcon);
this._parent.css('cssText', 'height:' + this._parent[0].style.height + ' !important;' + 'width:' + this._parent[0].style.width + ' !important; transition: all .15s;').delay(10).queue(function () {
$(this).removeClass(ClassName.MAXIMIZED); $(this).removeClass(ClassName.MAXIMIZED);
$('html').removeClass(ClassName.MAXIMIZED); $('html').removeClass(ClassName.MAXIMIZED);
$(this).trigger(Event.MINIMIZED);
$(this).css({ $(this).css({
'height': 'inherit', 'height': 'inherit',
'width': 'inherit' 'width': 'inherit'
@ -1007,25 +1069,19 @@
$(this).dequeue(); $(this).dequeue();
}); });
} else {
button.addClass(ClassName.MINIMIZE_ICON).removeClass(ClassName.MAXIMIZE_ICON);
this._parent.css({ var MINIMIZED = $.Event(Event.MINIMIZED);
'height': this._parent.height(),
'width': this._parent.width(),
'transition': 'all .15s'
}).delay(150).queue(function () {
$(this).addClass(ClassName.MAXIMIZED);
$('html').addClass(ClassName.MAXIMIZED);
$(this).trigger(Event.MAXIMIZED);
if ($(this).hasClass(ClassName.COLLAPSED)) { this._element.trigger(MINIMIZED, this._parent);
$(this).addClass(ClassName.WAS_COLLAPSED); };
_proto.toggleMaximize = function toggleMaximize() {
if (this._parent.hasClass(ClassName.MAXIMIZED)) {
this.minimize();
return;
} }
$(this).dequeue(); this.maximize();
});
}
} // Private } // Private
; ;
@ -1036,30 +1092,31 @@
$(this).find(this._settings.collapseTrigger).click(function () { $(this).find(this._settings.collapseTrigger).click(function () {
_this3.toggle(); _this3.toggle();
}); });
$(this).find(this._settings.maximizeTrigger).click(function () {
_this3.toggleMaximize();
});
$(this).find(this._settings.removeTrigger).click(function () { $(this).find(this._settings.removeTrigger).click(function () {
_this3.remove(); _this3.remove();
}); });
} // Static } // Static
; ;
Widget._jQueryInterface = function _jQueryInterface(config) { CardWidget._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY); var data = $(this).data(DATA_KEY);
if (!data) { if (!data) {
data = new Widget($(this), data); data = new CardWidget($(this), data);
$(this).data(DATA_KEY, typeof config === 'string' ? data : config); $(this).data(DATA_KEY, typeof config === 'string' ? data : config);
} }
if (typeof config === 'string' && config.match(/collapse|expand|remove|toggle|toggleMaximize/)) { if (typeof config === 'string' && config.match(/collapse|expand|remove|toggle|maximize|minimize|toggleMaximize/)) {
data[config](); data[config]();
} else if (typeof config === 'object') { } else if (typeof config === 'object') {
data._init($(this)); data._init($(this));
} }
});
}; };
return Widget; return CardWidget;
}(); }();
/** /**
* Data API * Data API
@ -1072,45 +1129,208 @@
event.preventDefault(); event.preventDefault();
} }
Widget._jQueryInterface.call($(this), 'toggle'); CardWidget._jQueryInterface.call($(this), 'toggle');
}); });
$(document).on('click', Selector.DATA_REMOVE, function (event) { $(document).on('click', Selector.DATA_REMOVE, function (event) {
if (event) { if (event) {
event.preventDefault(); event.preventDefault();
} }
Widget._jQueryInterface.call($(this), 'remove'); CardWidget._jQueryInterface.call($(this), 'remove');
}); });
$(document).on('click', Selector.DATA_MAXIMIZE, function (event) { $(document).on('click', Selector.DATA_MAXIMIZE, function (event) {
if (event) { if (event) {
event.preventDefault(); event.preventDefault();
} }
Widget._jQueryInterface.call($(this), 'toggleMaximize'); CardWidget._jQueryInterface.call($(this), 'toggleMaximize');
}); });
/** /**
* jQuery API * jQuery API
* ==================================================== * ====================================================
*/ */
$.fn[NAME] = Widget._jQueryInterface; $.fn[NAME] = CardWidget._jQueryInterface;
$.fn[NAME].Constructor = Widget; $.fn[NAME].Constructor = CardWidget;
$.fn[NAME].noConflict = function () { $.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT; $.fn[NAME] = JQUERY_NO_CONFLICT;
return Widget._jQueryInterface; return CardWidget._jQueryInterface;
}; };
return Widget; return CardWidget;
}(jQuery); }(jQuery);
/**
* --------------------------------------------
* AdminLTE CardRefresh.js
* License MIT
* --------------------------------------------
*/
var CardRefresh = function ($) {
/**
* Constants
* ====================================================
*/
var NAME = 'CardRefresh';
var DATA_KEY = 'lte.cardrefresh';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
LOADED: "loaded" + EVENT_KEY,
OVERLAY_ADDED: "overlay.added" + EVENT_KEY,
OVERLAY_REMOVED: "overlay.removed" + EVENT_KEY
};
var ClassName = {
CARD: 'card'
};
var Selector = {
CARD: "." + ClassName.CARD,
DATA_REFRESH: '[data-card-widget="card-refresh"]'
};
var Default = {
source: '',
sourceSelector: '',
params: {},
trigger: Selector.DATA_REFRESH,
content: '.card-body',
loadInContent: true,
loadOnInit: true,
responseType: '',
overlayTemplate: '<div class="overlay"><i class="fas fa-2x fa-sync-alt fa-spin"></i></div>',
onLoadStart: function onLoadStart() {},
onLoadDone: function onLoadDone(response) {
return response;
}
};
var CardRefresh =
/*#__PURE__*/
function () {
function CardRefresh(element, settings) {
this._element = element;
this._parent = element.parents(Selector.CARD).first();
this._settings = $.extend({}, Default, settings);
this._overlay = $(this._settings.overlayTemplate);
if (element.hasClass(ClassName.CARD)) {
this._parent = element;
}
if (this._settings.source === '') {
throw new Error('Source url was not defined. Please specify a url in your CardRefresh source option.');
}
this._init();
if (this._settings.loadOnInit) {
this.load();
}
}
var _proto = CardRefresh.prototype;
_proto.load = function load() {
this._addOverlay();
this._settings.onLoadStart.call($(this));
$.get(this._settings.source, this._settings.params, function (response) {
if (this._settings.loadInContent) {
if (this._settings.sourceSelector != '') {
response = $(response).find(this._settings.sourceSelector).html();
}
this._parent.find(this._settings.content).html(response);
}
this._settings.onLoadDone.call($(this), response);
this._removeOverlay();
}.bind(this), this._settings.responseType !== '' && this._settings.responseType);
var loadedEvent = $.Event(Event.LOADED);
$(this._element).trigger(loadedEvent);
};
_proto._addOverlay = function _addOverlay() {
this._parent.append(this._overlay);
var overlayAddedEvent = $.Event(Event.OVERLAY_ADDED);
$(this._element).trigger(overlayAddedEvent);
};
_proto._removeOverlay = function _removeOverlay() {
this._parent.find(this._overlay).remove();
var overlayRemovedEvent = $.Event(Event.OVERLAY_REMOVED);
$(this._element).trigger(overlayRemovedEvent);
};
// Private
_proto._init = function _init(card) {
var _this = this;
$(this).find(this._settings.trigger).on('click', function () {
_this.load();
});
} // Static
;
CardRefresh._jQueryInterface = function _jQueryInterface(config) {
var data = $(this).data(DATA_KEY);
var options = $(this).data();
if (!data) {
data = new CardRefresh($(this), options);
$(this).data(DATA_KEY, typeof config === 'string' ? data : config);
}
if (typeof config === 'string' && config.match(/load/)) {
data[config]();
} else if (typeof config === 'object') {
data._init($(this));
}
};
return CardRefresh;
}();
/**
* Data API
* ====================================================
*/
$(document).on('click', Selector.DATA_REFRESH, function (event) {
if (event) {
event.preventDefault();
}
CardRefresh._jQueryInterface.call($(this), 'load');
});
/**
* jQuery API
* ====================================================
*/
$.fn[NAME] = CardRefresh._jQueryInterface;
$.fn[NAME].Constructor = CardRefresh;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return CardRefresh._jQueryInterface;
};
return CardRefresh;
}(jQuery);
exports.CardRefresh = CardRefresh;
exports.CardWidget = CardWidget;
exports.ControlSidebar = ControlSidebar; exports.ControlSidebar = ControlSidebar;
exports.DirectChat = DirectChat; exports.DirectChat = DirectChat;
exports.Layout = Layout; exports.Layout = Layout;
exports.PushMenu = PushMenu; exports.PushMenu = PushMenu;
exports.TodoList = TodoList; exports.TodoList = TodoList;
exports.Treeview = Treeview; exports.Treeview = Treeview;
exports.Widget = Widget;
Object.defineProperty(exports, '__esModule', { value: true }); Object.defineProperty(exports, '__esModule', { value: true });

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long